2 * Copyright (C) 2012 - Julien Desfossez <jdesfossez@efficios.com>
3 * David Goulet <dgoulet@efficios.com>
4 * 2013 - Jérémie Galarneau <jeremie.galarneau@efficios.com>
5 * 2015 - Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
7 * This program is free software; you can redistribute it and/or modify
8 * it under the terms of the GNU General Public License, version 2 only,
9 * as published by the Free Software Foundation.
11 * This program is distributed in the hope that it will be useful, but WITHOUT
12 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
13 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
16 * You should have received a copy of the GNU General Public License along
17 * with this program; if not, write to the Free Software Foundation, Inc.,
18 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
31 #include <sys/mount.h>
32 #include <sys/resource.h>
33 #include <sys/socket.h>
35 #include <sys/types.h>
38 #include <urcu/futex.h>
39 #include <urcu/uatomic.h>
43 #include <lttng/lttng.h>
44 #include <common/common.h>
45 #include <common/compat/poll.h>
46 #include <common/compat/socket.h>
47 #include <common/compat/endian.h>
48 #include <common/compat/getenv.h>
49 #include <common/defaults.h>
50 #include <common/daemonize.h>
51 #include <common/futex.h>
52 #include <common/sessiond-comm/sessiond-comm.h>
53 #include <common/sessiond-comm/inet.h>
54 #include <common/sessiond-comm/relayd.h>
55 #include <common/uri.h>
56 #include <common/utils.h>
57 #include <common/align.h>
58 #include <common/config/session-config.h>
59 #include <common/dynamic-buffer.h>
60 #include <common/buffer-view.h>
61 #include <urcu/rculist.h>
64 #include "ctf-trace.h"
67 #include "lttng-relayd.h"
69 #include "health-relayd.h"
70 #include "testpoint.h"
71 #include "viewer-stream.h"
74 #include "connection.h"
75 #include "tracefile-array.h"
76 #include "tcp_keep_alive.h"
78 static const char *help_msg
=
79 #ifdef LTTNG_EMBED_HELP
80 #include <lttng-relayd.8.h>
86 enum relay_connection_status
{
87 RELAY_CONNECTION_STATUS_OK
,
88 /* An error occured while processing an event on the connection. */
89 RELAY_CONNECTION_STATUS_ERROR
,
90 /* Connection closed/shutdown cleanly. */
91 RELAY_CONNECTION_STATUS_CLOSED
,
94 /* command line options */
95 char *opt_output_path
;
96 static int opt_daemon
, opt_background
;
99 * We need to wait for listener and live listener threads, as well as
100 * health check thread, before being ready to signal readiness.
102 #define NR_LTTNG_RELAY_READY 3
103 static int lttng_relay_ready
= NR_LTTNG_RELAY_READY
;
105 /* Size of receive buffer. */
106 #define RECV_DATA_BUFFER_SIZE 65536
107 #define FILE_COPY_BUFFER_SIZE 65536
109 static int recv_child_signal
; /* Set to 1 when a SIGUSR1 signal is received. */
110 static pid_t child_ppid
; /* Internal parent PID use with daemonize. */
112 static struct lttng_uri
*control_uri
;
113 static struct lttng_uri
*data_uri
;
114 static struct lttng_uri
*live_uri
;
116 const char *progname
;
118 const char *tracing_group_name
= DEFAULT_TRACING_GROUP
;
119 static int tracing_group_name_override
;
121 const char * const config_section_name
= "relayd";
124 * Quit pipe for all threads. This permits a single cancellation point
125 * for all threads when receiving an event on the pipe.
127 int thread_quit_pipe
[2] = { -1, -1 };
130 * This pipe is used to inform the worker thread that a command is queued and
131 * ready to be processed.
133 static int relay_conn_pipe
[2] = { -1, -1 };
135 /* Shared between threads */
136 static int dispatch_thread_exit
;
138 static pthread_t listener_thread
;
139 static pthread_t dispatcher_thread
;
140 static pthread_t worker_thread
;
141 static pthread_t health_thread
;
144 * last_relay_stream_id_lock protects last_relay_stream_id increment
145 * atomicity on 32-bit architectures.
147 static pthread_mutex_t last_relay_stream_id_lock
= PTHREAD_MUTEX_INITIALIZER
;
148 static uint64_t last_relay_stream_id
;
151 * Relay command queue.
153 * The relay_thread_listener and relay_thread_dispatcher communicate with this
156 static struct relay_conn_queue relay_conn_queue
;
158 /* Global relay stream hash table. */
159 struct lttng_ht
*relay_streams_ht
;
161 /* Global relay viewer stream hash table. */
162 struct lttng_ht
*viewer_streams_ht
;
164 /* Global relay sessions hash table. */
165 struct lttng_ht
*sessions_ht
;
167 /* Relayd health monitoring */
168 struct health_app
*health_relayd
;
170 static struct option long_options
[] = {
171 { "control-port", 1, 0, 'C', },
172 { "data-port", 1, 0, 'D', },
173 { "live-port", 1, 0, 'L', },
174 { "daemonize", 0, 0, 'd', },
175 { "background", 0, 0, 'b', },
176 { "group", 1, 0, 'g', },
177 { "help", 0, 0, 'h', },
178 { "output", 1, 0, 'o', },
179 { "verbose", 0, 0, 'v', },
180 { "config", 1, 0, 'f' },
181 { "version", 0, 0, 'V' },
185 static const char *config_ignore_options
[] = { "help", "config", "version" };
188 * Take an option from the getopt output and set it in the right variable to be
191 * Return 0 on success else a negative value.
193 static int set_option(int opt
, const char *arg
, const char *optname
)
199 fprintf(stderr
, "option %s", optname
);
201 fprintf(stderr
, " with arg %s\n", arg
);
205 if (lttng_is_setuid_setgid()) {
206 WARN("Getting '%s' argument from setuid/setgid binary refused for security reasons.",
207 "-C, --control-port");
209 ret
= uri_parse(arg
, &control_uri
);
211 ERR("Invalid control URI specified");
214 if (control_uri
->port
== 0) {
215 control_uri
->port
= DEFAULT_NETWORK_CONTROL_PORT
;
220 if (lttng_is_setuid_setgid()) {
221 WARN("Getting '%s' argument from setuid/setgid binary refused for security reasons.",
224 ret
= uri_parse(arg
, &data_uri
);
226 ERR("Invalid data URI specified");
229 if (data_uri
->port
== 0) {
230 data_uri
->port
= DEFAULT_NETWORK_DATA_PORT
;
235 if (lttng_is_setuid_setgid()) {
236 WARN("Getting '%s' argument from setuid/setgid binary refused for security reasons.",
239 ret
= uri_parse(arg
, &live_uri
);
241 ERR("Invalid live URI specified");
244 if (live_uri
->port
== 0) {
245 live_uri
->port
= DEFAULT_NETWORK_VIEWER_PORT
;
256 if (lttng_is_setuid_setgid()) {
257 WARN("Getting '%s' argument from setuid/setgid binary refused for security reasons.",
260 tracing_group_name
= strdup(arg
);
261 if (tracing_group_name
== NULL
) {
266 tracing_group_name_override
= 1;
270 ret
= utils_show_help(8, "lttng-relayd", help_msg
);
272 ERR("Cannot show --help for `lttng-relayd`");
277 fprintf(stdout
, "%s\n", VERSION
);
280 if (lttng_is_setuid_setgid()) {
281 WARN("Getting '%s' argument from setuid/setgid binary refused for security reasons.",
284 ret
= asprintf(&opt_output_path
, "%s", arg
);
287 PERROR("asprintf opt_output_path");
293 /* Verbose level can increase using multiple -v */
295 lttng_opt_verbose
= config_parse_value(arg
);
297 /* Only 3 level of verbosity (-vvv). */
298 if (lttng_opt_verbose
< 3) {
299 lttng_opt_verbose
+= 1;
304 /* Unknown option or other error.
305 * Error is printed by getopt, just return */
318 * config_entry_handler_cb used to handle options read from a config file.
319 * See config_entry_handler_cb comment in common/config/session-config.h for the
320 * return value conventions.
322 static int config_entry_handler(const struct config_entry
*entry
, void *unused
)
326 if (!entry
|| !entry
->name
|| !entry
->value
) {
331 /* Check if the option is to be ignored */
332 for (i
= 0; i
< sizeof(config_ignore_options
) / sizeof(char *); i
++) {
333 if (!strcmp(entry
->name
, config_ignore_options
[i
])) {
338 for (i
= 0; i
< (sizeof(long_options
) / sizeof(struct option
)) - 1; i
++) {
339 /* Ignore if entry name is not fully matched. */
340 if (strcmp(entry
->name
, long_options
[i
].name
)) {
345 * If the option takes no argument on the command line,
346 * we have to check if the value is "true". We support
347 * non-zero numeric values, true, on and yes.
349 if (!long_options
[i
].has_arg
) {
350 ret
= config_parse_value(entry
->value
);
353 WARN("Invalid configuration value \"%s\" for option %s",
354 entry
->value
, entry
->name
);
356 /* False, skip boolean config option. */
361 ret
= set_option(long_options
[i
].val
, entry
->value
, entry
->name
);
365 WARN("Unrecognized option \"%s\" in daemon configuration file.",
372 static int set_options(int argc
, char **argv
)
374 int c
, ret
= 0, option_index
= 0, retval
= 0;
375 int orig_optopt
= optopt
, orig_optind
= optind
;
376 char *default_address
, *optstring
;
377 const char *config_path
= NULL
;
379 optstring
= utils_generate_optstring(long_options
,
380 sizeof(long_options
) / sizeof(struct option
));
386 /* Check for the --config option */
388 while ((c
= getopt_long(argc
, argv
, optstring
, long_options
,
389 &option_index
)) != -1) {
393 } else if (c
!= 'f') {
397 if (lttng_is_setuid_setgid()) {
398 WARN("Getting '%s' argument from setuid/setgid binary refused for security reasons.",
401 config_path
= utils_expand_path(optarg
);
403 ERR("Failed to resolve path: %s", optarg
);
408 ret
= config_get_section_entries(config_path
, config_section_name
,
409 config_entry_handler
, NULL
);
412 ERR("Invalid configuration option at line %i", ret
);
418 /* Reset getopt's global state */
419 optopt
= orig_optopt
;
420 optind
= orig_optind
;
422 c
= getopt_long(argc
, argv
, optstring
, long_options
, &option_index
);
427 ret
= set_option(c
, optarg
, long_options
[option_index
].name
);
434 /* assign default values */
435 if (control_uri
== NULL
) {
436 ret
= asprintf(&default_address
,
437 "tcp://" DEFAULT_NETWORK_CONTROL_BIND_ADDRESS
":%d",
438 DEFAULT_NETWORK_CONTROL_PORT
);
440 PERROR("asprintf default data address");
445 ret
= uri_parse(default_address
, &control_uri
);
446 free(default_address
);
448 ERR("Invalid control URI specified");
453 if (data_uri
== NULL
) {
454 ret
= asprintf(&default_address
,
455 "tcp://" DEFAULT_NETWORK_DATA_BIND_ADDRESS
":%d",
456 DEFAULT_NETWORK_DATA_PORT
);
458 PERROR("asprintf default data address");
463 ret
= uri_parse(default_address
, &data_uri
);
464 free(default_address
);
466 ERR("Invalid data URI specified");
471 if (live_uri
== NULL
) {
472 ret
= asprintf(&default_address
,
473 "tcp://" DEFAULT_NETWORK_VIEWER_BIND_ADDRESS
":%d",
474 DEFAULT_NETWORK_VIEWER_PORT
);
476 PERROR("asprintf default viewer control address");
481 ret
= uri_parse(default_address
, &live_uri
);
482 free(default_address
);
484 ERR("Invalid viewer control URI specified");
495 static void print_global_objects(void)
497 rcu_register_thread();
499 print_viewer_streams();
500 print_relay_streams();
503 rcu_unregister_thread();
509 static void relayd_cleanup(void)
511 print_global_objects();
515 if (viewer_streams_ht
)
516 lttng_ht_destroy(viewer_streams_ht
);
517 if (relay_streams_ht
)
518 lttng_ht_destroy(relay_streams_ht
);
520 lttng_ht_destroy(sessions_ht
);
522 /* free the dynamically allocated opt_output_path */
523 free(opt_output_path
);
525 /* Close thread quit pipes */
526 utils_close_pipe(thread_quit_pipe
);
528 uri_free(control_uri
);
530 /* Live URI is freed in the live thread. */
532 if (tracing_group_name_override
) {
533 free((void *) tracing_group_name
);
538 * Write to writable pipe used to notify a thread.
540 static int notify_thread_pipe(int wpipe
)
544 ret
= lttng_write(wpipe
, "!", 1);
546 PERROR("write poll pipe");
554 static int notify_health_quit_pipe(int *pipe
)
558 ret
= lttng_write(pipe
[1], "4", 1);
560 PERROR("write relay health quit");
569 * Stop all relayd and relayd-live threads.
571 int lttng_relay_stop_threads(void)
575 /* Stopping all threads */
576 DBG("Terminating all threads");
577 if (notify_thread_pipe(thread_quit_pipe
[1])) {
578 ERR("write error on thread quit pipe");
582 if (notify_health_quit_pipe(health_quit_pipe
)) {
583 ERR("write error on health quit pipe");
586 /* Dispatch thread */
587 CMM_STORE_SHARED(dispatch_thread_exit
, 1);
588 futex_nto1_wake(&relay_conn_queue
.futex
);
590 if (relayd_live_stop()) {
591 ERR("Error stopping live threads");
598 * Signal handler for the daemon
600 * Simply stop all worker threads, leaving main() return gracefully after
601 * joining all threads and calling cleanup().
603 static void sighandler(int sig
)
607 DBG("SIGINT caught");
608 if (lttng_relay_stop_threads()) {
609 ERR("Error stopping threads");
613 DBG("SIGTERM caught");
614 if (lttng_relay_stop_threads()) {
615 ERR("Error stopping threads");
619 CMM_STORE_SHARED(recv_child_signal
, 1);
627 * Setup signal handler for :
628 * SIGINT, SIGTERM, SIGPIPE
630 static int set_signal_handler(void)
636 if ((ret
= sigemptyset(&sigset
)) < 0) {
637 PERROR("sigemptyset");
644 sa
.sa_handler
= sighandler
;
645 if ((ret
= sigaction(SIGTERM
, &sa
, NULL
)) < 0) {
650 if ((ret
= sigaction(SIGINT
, &sa
, NULL
)) < 0) {
655 if ((ret
= sigaction(SIGUSR1
, &sa
, NULL
)) < 0) {
660 sa
.sa_handler
= SIG_IGN
;
661 if ((ret
= sigaction(SIGPIPE
, &sa
, NULL
)) < 0) {
666 DBG("Signal handler set for SIGTERM, SIGUSR1, SIGPIPE and SIGINT");
671 void lttng_relay_notify_ready(void)
673 /* Notify the parent of the fork() process that we are ready. */
674 if (opt_daemon
|| opt_background
) {
675 if (uatomic_sub_return(<tng_relay_ready
, 1) == 0) {
676 kill(child_ppid
, SIGUSR1
);
682 * Init thread quit pipe.
684 * Return -1 on error or 0 if all pipes are created.
686 static int init_thread_quit_pipe(void)
690 ret
= utils_create_pipe_cloexec(thread_quit_pipe
);
696 * Create a poll set with O_CLOEXEC and add the thread quit pipe to the set.
698 static int create_thread_poll_set(struct lttng_poll_event
*events
, int size
)
702 if (events
== NULL
|| size
== 0) {
707 ret
= lttng_poll_create(events
, size
, LTTNG_CLOEXEC
);
713 ret
= lttng_poll_add(events
, thread_quit_pipe
[0], LPOLLIN
| LPOLLERR
);
725 * Check if the thread quit pipe was triggered.
727 * Return 1 if it was triggered else 0;
729 static int check_thread_quit_pipe(int fd
, uint32_t events
)
731 if (fd
== thread_quit_pipe
[0] && (events
& LPOLLIN
)) {
739 * Create and init socket from uri.
741 static struct lttcomm_sock
*relay_socket_create(struct lttng_uri
*uri
)
744 struct lttcomm_sock
*sock
= NULL
;
746 sock
= lttcomm_alloc_sock_from_uri(uri
);
748 ERR("Allocating socket");
752 ret
= lttcomm_create_sock(sock
);
756 DBG("Listening on sock %d", sock
->fd
);
758 ret
= sock
->ops
->bind(sock
);
760 PERROR("Failed to bind socket");
764 ret
= sock
->ops
->listen(sock
, -1);
774 lttcomm_destroy_sock(sock
);
780 * This thread manages the listening for new connections on the network
782 static void *relay_thread_listener(void *data
)
784 int i
, ret
, pollfd
, err
= -1;
785 uint32_t revents
, nb_fd
;
786 struct lttng_poll_event events
;
787 struct lttcomm_sock
*control_sock
, *data_sock
;
789 DBG("[thread] Relay listener started");
791 health_register(health_relayd
, HEALTH_RELAYD_TYPE_LISTENER
);
793 health_code_update();
795 control_sock
= relay_socket_create(control_uri
);
797 goto error_sock_control
;
800 data_sock
= relay_socket_create(data_uri
);
802 goto error_sock_relay
;
806 * Pass 3 as size here for the thread quit pipe, control and
809 ret
= create_thread_poll_set(&events
, 3);
811 goto error_create_poll
;
814 /* Add the control socket */
815 ret
= lttng_poll_add(&events
, control_sock
->fd
, LPOLLIN
| LPOLLRDHUP
);
820 /* Add the data socket */
821 ret
= lttng_poll_add(&events
, data_sock
->fd
, LPOLLIN
| LPOLLRDHUP
);
826 lttng_relay_notify_ready();
828 if (testpoint(relayd_thread_listener
)) {
829 goto error_testpoint
;
833 health_code_update();
835 DBG("Listener accepting connections");
839 ret
= lttng_poll_wait(&events
, -1);
843 * Restart interrupted system call.
845 if (errno
== EINTR
) {
853 DBG("Relay new connection received");
854 for (i
= 0; i
< nb_fd
; i
++) {
855 health_code_update();
857 /* Fetch once the poll data */
858 revents
= LTTNG_POLL_GETEV(&events
, i
);
859 pollfd
= LTTNG_POLL_GETFD(&events
, i
);
863 * No activity for this FD (poll
869 /* Thread quit pipe has been closed. Killing thread. */
870 ret
= check_thread_quit_pipe(pollfd
, revents
);
876 if (revents
& LPOLLIN
) {
878 * A new connection is requested, therefore a
879 * sessiond/consumerd connection is allocated in
880 * this thread, enqueued to a global queue and
881 * dequeued (and freed) in the worker thread.
884 struct relay_connection
*new_conn
;
885 struct lttcomm_sock
*newsock
;
886 enum connection_type type
;
888 if (pollfd
== data_sock
->fd
) {
890 newsock
= data_sock
->ops
->accept(data_sock
);
891 DBG("Relay data connection accepted, socket %d",
894 assert(pollfd
== control_sock
->fd
);
895 type
= RELAY_CONTROL
;
896 newsock
= control_sock
->ops
->accept(control_sock
);
897 DBG("Relay control connection accepted, socket %d",
901 PERROR("accepting sock");
905 ret
= setsockopt(newsock
->fd
, SOL_SOCKET
, SO_REUSEADDR
, &val
,
908 PERROR("setsockopt inet");
909 lttcomm_destroy_sock(newsock
);
913 ret
= socket_apply_keep_alive_config(newsock
->fd
);
915 ERR("Failed to apply TCP keep-alive configuration on socket (%i)",
917 lttcomm_destroy_sock(newsock
);
921 new_conn
= connection_create(newsock
, type
);
923 lttcomm_destroy_sock(newsock
);
927 /* Enqueue request for the dispatcher thread. */
928 cds_wfcq_enqueue(&relay_conn_queue
.head
, &relay_conn_queue
.tail
,
932 * Wake the dispatch queue futex.
933 * Implicit memory barrier with the
934 * exchange in cds_wfcq_enqueue.
936 futex_nto1_wake(&relay_conn_queue
.futex
);
937 } else if (revents
& (LPOLLERR
| LPOLLHUP
| LPOLLRDHUP
)) {
938 ERR("socket poll error");
941 ERR("Unexpected poll events %u for sock %d", revents
, pollfd
);
951 lttng_poll_clean(&events
);
953 if (data_sock
->fd
>= 0) {
954 ret
= data_sock
->ops
->close(data_sock
);
959 lttcomm_destroy_sock(data_sock
);
961 if (control_sock
->fd
>= 0) {
962 ret
= control_sock
->ops
->close(control_sock
);
967 lttcomm_destroy_sock(control_sock
);
971 ERR("Health error occurred in %s", __func__
);
973 health_unregister(health_relayd
);
974 DBG("Relay listener thread cleanup complete");
975 lttng_relay_stop_threads();
980 * This thread manages the dispatching of the requests to worker threads
982 static void *relay_thread_dispatcher(void *data
)
986 struct cds_wfcq_node
*node
;
987 struct relay_connection
*new_conn
= NULL
;
989 DBG("[thread] Relay dispatcher started");
991 health_register(health_relayd
, HEALTH_RELAYD_TYPE_DISPATCHER
);
993 if (testpoint(relayd_thread_dispatcher
)) {
994 goto error_testpoint
;
997 health_code_update();
1000 health_code_update();
1002 /* Atomically prepare the queue futex */
1003 futex_nto1_prepare(&relay_conn_queue
.futex
);
1005 if (CMM_LOAD_SHARED(dispatch_thread_exit
)) {
1010 health_code_update();
1012 /* Dequeue commands */
1013 node
= cds_wfcq_dequeue_blocking(&relay_conn_queue
.head
,
1014 &relay_conn_queue
.tail
);
1016 DBG("Woken up but nothing in the relay command queue");
1017 /* Continue thread execution */
1020 new_conn
= caa_container_of(node
, struct relay_connection
, qnode
);
1022 DBG("Dispatching request waiting on sock %d", new_conn
->sock
->fd
);
1025 * Inform worker thread of the new request. This
1026 * call is blocking so we can be assured that
1027 * the data will be read at some point in time
1028 * or wait to the end of the world :)
1030 ret
= lttng_write(relay_conn_pipe
[1], &new_conn
, sizeof(new_conn
));
1032 PERROR("write connection pipe");
1033 connection_put(new_conn
);
1036 } while (node
!= NULL
);
1038 /* Futex wait on queue. Blocking call on futex() */
1039 health_poll_entry();
1040 futex_nto1_wait(&relay_conn_queue
.futex
);
1044 /* Normal exit, no error */
1051 ERR("Health error occurred in %s", __func__
);
1053 health_unregister(health_relayd
);
1054 DBG("Dispatch thread dying");
1055 lttng_relay_stop_threads();
1060 * Set index data from the control port to a given index object.
1062 static int set_index_control_data(struct relay_index
*index
,
1063 struct lttcomm_relayd_index
*data
,
1064 struct relay_connection
*conn
)
1066 struct ctf_packet_index index_data
;
1069 * The index on disk is encoded in big endian.
1071 index_data
.packet_size
= htobe64(data
->packet_size
);
1072 index_data
.content_size
= htobe64(data
->content_size
);
1073 index_data
.timestamp_begin
= htobe64(data
->timestamp_begin
);
1074 index_data
.timestamp_end
= htobe64(data
->timestamp_end
);
1075 index_data
.events_discarded
= htobe64(data
->events_discarded
);
1076 index_data
.stream_id
= htobe64(data
->stream_id
);
1078 if (conn
->minor
>= 8) {
1079 index
->index_data
.stream_instance_id
= htobe64(data
->stream_instance_id
);
1080 index
->index_data
.packet_seq_num
= htobe64(data
->packet_seq_num
);
1083 return relay_index_set_data(index
, &index_data
);
1087 * Handle the RELAYD_CREATE_SESSION command.
1089 * On success, send back the session id or else return a negative value.
1091 static int relay_create_session(const struct lttcomm_relayd_hdr
*recv_hdr
,
1092 struct relay_connection
*conn
,
1093 const struct lttng_buffer_view
*payload
)
1097 struct relay_session
*session
;
1098 struct lttcomm_relayd_status_session reply
;
1099 char session_name
[LTTNG_NAME_MAX
];
1100 char hostname
[LTTNG_HOST_NAME_MAX
];
1101 uint32_t live_timer
= 0;
1102 bool snapshot
= false;
1104 memset(session_name
, 0, LTTNG_NAME_MAX
);
1105 memset(hostname
, 0, LTTNG_HOST_NAME_MAX
);
1107 memset(&reply
, 0, sizeof(reply
));
1109 switch (conn
->minor
) {
1114 case 4: /* LTTng sessiond 2.4 */
1116 ret
= cmd_create_session_2_4(payload
, session_name
,
1117 hostname
, &live_timer
, &snapshot
);
1123 session
= session_create(session_name
, hostname
, live_timer
,
1124 snapshot
, conn
->major
, conn
->minor
);
1129 assert(!conn
->session
);
1130 conn
->session
= session
;
1131 DBG("Created session %" PRIu64
, session
->id
);
1133 reply
.session_id
= htobe64(session
->id
);
1137 reply
.ret_code
= htobe32(LTTNG_ERR_FATAL
);
1139 reply
.ret_code
= htobe32(LTTNG_OK
);
1142 send_ret
= conn
->sock
->ops
->sendmsg(conn
->sock
, &reply
, sizeof(reply
), 0);
1143 if (send_ret
< (ssize_t
) sizeof(reply
)) {
1144 ERR("Failed to send \"create session\" command reply (ret = %zd)",
1153 * When we have received all the streams and the metadata for a channel,
1154 * we make them visible to the viewer threads.
1156 static void publish_connection_local_streams(struct relay_connection
*conn
)
1158 struct relay_stream
*stream
;
1159 struct relay_session
*session
= conn
->session
;
1162 * We publish all streams belonging to a session atomically wrt
1165 pthread_mutex_lock(&session
->lock
);
1167 cds_list_for_each_entry_rcu(stream
, &session
->recv_list
,
1169 stream_publish(stream
);
1174 * Inform the viewer that there are new streams in the session.
1176 if (session
->viewer_attached
) {
1177 uatomic_set(&session
->new_streams
, 1);
1179 pthread_mutex_unlock(&session
->lock
);
1183 * relay_add_stream: allocate a new stream for a session
1185 static int relay_add_stream(const struct lttcomm_relayd_hdr
*recv_hdr
,
1186 struct relay_connection
*conn
,
1187 const struct lttng_buffer_view
*payload
)
1191 struct relay_session
*session
= conn
->session
;
1192 struct relay_stream
*stream
= NULL
;
1193 struct lttcomm_relayd_status_stream reply
;
1194 struct ctf_trace
*trace
= NULL
;
1195 uint64_t stream_handle
= -1ULL;
1196 char *path_name
= NULL
, *channel_name
= NULL
;
1197 uint64_t tracefile_size
= 0, tracefile_count
= 0;
1199 if (!session
|| !conn
->version_check_done
) {
1200 ERR("Trying to add a stream before version check");
1202 goto end_no_session
;
1205 switch (session
->minor
) {
1206 case 1: /* LTTng sessiond 2.1. Allocates path_name and channel_name. */
1207 ret
= cmd_recv_stream_2_1(payload
, &path_name
,
1210 case 2: /* LTTng sessiond 2.2. Allocates path_name and channel_name. */
1212 ret
= cmd_recv_stream_2_2(payload
, &path_name
,
1213 &channel_name
, &tracefile_size
, &tracefile_count
);
1220 trace
= ctf_trace_get_by_path_or_create(session
, path_name
);
1224 /* This stream here has one reference on the trace. */
1226 pthread_mutex_lock(&last_relay_stream_id_lock
);
1227 stream_handle
= ++last_relay_stream_id
;
1228 pthread_mutex_unlock(&last_relay_stream_id_lock
);
1230 /* We pass ownership of path_name and channel_name. */
1231 stream
= stream_create(trace
, stream_handle
, path_name
,
1232 channel_name
, tracefile_size
, tracefile_count
);
1234 channel_name
= NULL
;
1237 * Streams are the owners of their trace. Reference to trace is
1238 * kept within stream_create().
1240 ctf_trace_put(trace
);
1243 memset(&reply
, 0, sizeof(reply
));
1244 reply
.handle
= htobe64(stream_handle
);
1246 reply
.ret_code
= htobe32(LTTNG_ERR_UNK
);
1248 reply
.ret_code
= htobe32(LTTNG_OK
);
1251 send_ret
= conn
->sock
->ops
->sendmsg(conn
->sock
, &reply
,
1252 sizeof(struct lttcomm_relayd_status_stream
), 0);
1253 if (send_ret
< (ssize_t
) sizeof(reply
)) {
1254 ERR("Failed to send \"add stream\" command reply (ret = %zd)",
1266 * relay_close_stream: close a specific stream
1268 static int relay_close_stream(const struct lttcomm_relayd_hdr
*recv_hdr
,
1269 struct relay_connection
*conn
,
1270 const struct lttng_buffer_view
*payload
)
1274 struct relay_session
*session
= conn
->session
;
1275 struct lttcomm_relayd_close_stream stream_info
;
1276 struct lttcomm_relayd_generic_reply reply
;
1277 struct relay_stream
*stream
;
1279 DBG("Close stream received");
1281 if (!session
|| !conn
->version_check_done
) {
1282 ERR("Trying to close a stream before version check");
1284 goto end_no_session
;
1287 if (payload
->size
< sizeof(stream_info
)) {
1288 ERR("Unexpected payload size in \"relay_close_stream\": expected >= %zu bytes, got %zu bytes",
1289 sizeof(stream_info
), payload
->size
);
1291 goto end_no_session
;
1293 memcpy(&stream_info
, payload
->data
, sizeof(stream_info
));
1294 stream_info
.stream_id
= be64toh(stream_info
.stream_id
);
1295 stream_info
.last_net_seq_num
= be64toh(stream_info
.last_net_seq_num
);
1297 stream
= stream_get_by_id(stream_info
.stream_id
);
1304 * Set last_net_seq_num before the close flag. Required by data
1307 pthread_mutex_lock(&stream
->lock
);
1308 stream
->last_net_seq_num
= stream_info
.last_net_seq_num
;
1309 pthread_mutex_unlock(&stream
->lock
);
1312 * This is one of the conditions which may trigger a stream close
1313 * with the others being:
1314 * 1) A close command is received for a stream
1315 * 2) The control connection owning the stream is closed
1316 * 3) We have received all of the stream's data _after_ a close
1319 try_stream_close(stream
);
1320 if (stream
->is_metadata
) {
1321 struct relay_viewer_stream
*vstream
;
1323 vstream
= viewer_stream_get_by_id(stream
->stream_handle
);
1325 if (vstream
->metadata_sent
== stream
->metadata_received
) {
1327 * Since all the metadata has been sent to the
1328 * viewer and that we have a request to close
1329 * its stream, we can safely teardown the
1330 * corresponding metadata viewer stream.
1332 viewer_stream_put(vstream
);
1334 /* Put local reference. */
1335 viewer_stream_put(vstream
);
1342 memset(&reply
, 0, sizeof(reply
));
1344 reply
.ret_code
= htobe32(LTTNG_ERR_UNK
);
1346 reply
.ret_code
= htobe32(LTTNG_OK
);
1348 send_ret
= conn
->sock
->ops
->sendmsg(conn
->sock
, &reply
,
1349 sizeof(struct lttcomm_relayd_generic_reply
), 0);
1350 if (send_ret
< (ssize_t
) sizeof(reply
)) {
1351 ERR("Failed to send \"close stream\" command reply (ret = %zd)",
1361 * relay_reset_metadata: reset a metadata stream
1364 int relay_reset_metadata(const struct lttcomm_relayd_hdr
*recv_hdr
,
1365 struct relay_connection
*conn
,
1366 const struct lttng_buffer_view
*payload
)
1370 struct relay_session
*session
= conn
->session
;
1371 struct lttcomm_relayd_reset_metadata stream_info
;
1372 struct lttcomm_relayd_generic_reply reply
;
1373 struct relay_stream
*stream
;
1375 DBG("Reset metadata received");
1377 if (!session
|| !conn
->version_check_done
) {
1378 ERR("Trying to reset a metadata stream before version check");
1380 goto end_no_session
;
1383 if (payload
->size
< sizeof(stream_info
)) {
1384 ERR("Unexpected payload size in \"relay_reset_metadata\": expected >= %zu bytes, got %zu bytes",
1385 sizeof(stream_info
), payload
->size
);
1387 goto end_no_session
;
1389 memcpy(&stream_info
, payload
->data
, sizeof(stream_info
));
1390 stream_info
.stream_id
= be64toh(stream_info
.stream_id
);
1391 stream_info
.version
= be64toh(stream_info
.version
);
1393 DBG("Update metadata to version %" PRIu64
, stream_info
.version
);
1395 /* Unsupported for live sessions for now. */
1396 if (session
->live_timer
!= 0) {
1401 stream
= stream_get_by_id(stream_info
.stream_id
);
1406 pthread_mutex_lock(&stream
->lock
);
1407 if (!stream
->is_metadata
) {
1412 ret
= utils_rotate_stream_file(stream
->path_name
, stream
->channel_name
,
1413 0, 0, -1, -1, stream
->stream_fd
->fd
, NULL
,
1414 &stream
->stream_fd
->fd
);
1416 ERR("Failed to rotate metadata file %s of channel %s",
1417 stream
->path_name
, stream
->channel_name
);
1422 pthread_mutex_unlock(&stream
->lock
);
1426 memset(&reply
, 0, sizeof(reply
));
1428 reply
.ret_code
= htobe32(LTTNG_ERR_UNK
);
1430 reply
.ret_code
= htobe32(LTTNG_OK
);
1432 send_ret
= conn
->sock
->ops
->sendmsg(conn
->sock
, &reply
,
1433 sizeof(struct lttcomm_relayd_generic_reply
), 0);
1434 if (send_ret
< (ssize_t
) sizeof(reply
)) {
1435 ERR("Failed to send \"reset metadata\" command reply (ret = %zd)",
1445 * relay_unknown_command: send -1 if received unknown command
1447 static void relay_unknown_command(struct relay_connection
*conn
)
1449 struct lttcomm_relayd_generic_reply reply
;
1452 memset(&reply
, 0, sizeof(reply
));
1453 reply
.ret_code
= htobe32(LTTNG_ERR_UNK
);
1454 send_ret
= conn
->sock
->ops
->sendmsg(conn
->sock
, &reply
, sizeof(reply
), 0);
1455 if (send_ret
< sizeof(reply
)) {
1456 ERR("Failed to send \"unknown command\" command reply (ret = %zd)", send_ret
);
1461 * relay_start: send an acknowledgment to the client to tell if we are
1462 * ready to receive data. We are ready if a session is established.
1464 static int relay_start(const struct lttcomm_relayd_hdr
*recv_hdr
,
1465 struct relay_connection
*conn
,
1466 const struct lttng_buffer_view
*payload
)
1470 struct lttcomm_relayd_generic_reply reply
;
1471 struct relay_session
*session
= conn
->session
;
1474 DBG("Trying to start the streaming without a session established");
1475 ret
= htobe32(LTTNG_ERR_UNK
);
1478 memset(&reply
, 0, sizeof(reply
));
1479 reply
.ret_code
= htobe32(LTTNG_OK
);
1480 send_ret
= conn
->sock
->ops
->sendmsg(conn
->sock
, &reply
,
1482 if (send_ret
< (ssize_t
) sizeof(reply
)) {
1483 ERR("Failed to send \"relay_start\" command reply (ret = %zd)",
1492 * Append padding to the file pointed by the file descriptor fd.
1494 static int write_padding_to_file(int fd
, uint32_t size
)
1503 zeros
= zmalloc(size
);
1504 if (zeros
== NULL
) {
1505 PERROR("zmalloc zeros for padding");
1510 ret
= lttng_write(fd
, zeros
, size
);
1512 PERROR("write padding to file");
1522 * Close the current index file if it is open, and create a new one.
1524 * Return 0 on success, -1 on error.
1527 int create_rotate_index_file(struct relay_stream
*stream
)
1530 uint32_t major
, minor
;
1532 /* Put ref on previous index_file. */
1533 if (stream
->index_file
) {
1534 lttng_index_file_put(stream
->index_file
);
1535 stream
->index_file
= NULL
;
1537 major
= stream
->trace
->session
->major
;
1538 minor
= stream
->trace
->session
->minor
;
1539 stream
->index_file
= lttng_index_file_create(stream
->path_name
,
1540 stream
->channel_name
,
1541 -1, -1, stream
->tracefile_size
,
1542 tracefile_array_get_file_index_head(stream
->tfa
),
1543 lttng_to_index_major(major
, minor
),
1544 lttng_to_index_minor(major
, minor
));
1545 if (!stream
->index_file
) {
1557 int do_rotate_stream(struct relay_stream
*stream
)
1561 /* Perform the stream rotation. */
1562 ret
= utils_rotate_stream_file(stream
->path_name
,
1563 stream
->channel_name
, stream
->tracefile_size
,
1564 stream
->tracefile_count
, -1,
1565 -1, stream
->stream_fd
->fd
,
1566 NULL
, &stream
->stream_fd
->fd
);
1568 ERR("Rotating stream output file");
1571 stream
->tracefile_size_current
= 0;
1573 /* Rotate also the index if the stream is not a metadata stream. */
1574 if (!stream
->is_metadata
) {
1575 ret
= create_rotate_index_file(stream
);
1577 ERR("Failed to rotate index file");
1582 stream
->rotate_at_seq_num
= -1ULL;
1583 stream
->pos_after_last_complete_data_index
= 0;
1590 * If too much data has been written in a tracefile before we received the
1591 * rotation command, we have to move the excess data to the new tracefile and
1592 * perform the rotation. This can happen because the control and data
1593 * connections are separate, the indexes as well as the commands arrive from
1594 * the control connection and we have no control over the order so we could be
1595 * in a situation where too much data has been received on the data connection
1596 * before the rotation command on the control connection arrives. We don't need
1597 * to update the index because its order is guaranteed with the rotation
1601 int rotate_truncate_stream(struct relay_stream
*stream
)
1605 uint64_t diff
, pos
= 0;
1606 char buf
[FILE_COPY_BUFFER_SIZE
];
1608 assert(!stream
->is_metadata
);
1610 assert(stream
->tracefile_size_current
>
1611 stream
->pos_after_last_complete_data_index
);
1612 diff
= stream
->tracefile_size_current
-
1613 stream
->pos_after_last_complete_data_index
;
1615 /* Create the new tracefile. */
1616 new_fd
= utils_create_stream_file(stream
->path_name
,
1617 stream
->channel_name
,
1618 stream
->tracefile_size
, stream
->tracefile_count
,
1619 /* uid */ -1, /* gid */ -1, /* suffix */ NULL
);
1621 ERR("Failed to create new stream file at path %s for channel %s",
1622 stream
->path_name
, stream
->channel_name
);
1628 * Rewind the current tracefile to the position at which the rotation
1629 * should have occured.
1631 lseek_ret
= lseek(stream
->stream_fd
->fd
,
1632 stream
->pos_after_last_complete_data_index
, SEEK_SET
);
1633 if (lseek_ret
< 0) {
1634 PERROR("seek truncate stream");
1639 /* Move data from the old file to the new file. */
1640 while (pos
< diff
) {
1641 uint64_t count
, bytes_left
;
1644 bytes_left
= diff
- pos
;
1645 count
= bytes_left
> sizeof(buf
) ? sizeof(buf
) : bytes_left
;
1646 assert(count
<= SIZE_MAX
);
1648 io_ret
= lttng_read(stream
->stream_fd
->fd
, buf
, count
);
1649 if (io_ret
< (ssize_t
) count
) {
1650 char error_string
[256];
1652 snprintf(error_string
, sizeof(error_string
),
1653 "Failed to read %" PRIu64
" bytes from fd %i in rotate_truncate_stream(), returned %zi",
1654 count
, stream
->stream_fd
->fd
, io_ret
);
1656 PERROR("%s", error_string
);
1658 ERR("%s", error_string
);
1664 io_ret
= lttng_write(new_fd
, buf
, count
);
1665 if (io_ret
< (ssize_t
) count
) {
1666 char error_string
[256];
1668 snprintf(error_string
, sizeof(error_string
),
1669 "Failed to write %" PRIu64
" bytes from fd %i in rotate_truncate_stream(), returned %zi",
1670 count
, new_fd
, io_ret
);
1672 PERROR("%s", error_string
);
1674 ERR("%s", error_string
);
1683 /* Truncate the file to get rid of the excess data. */
1684 ret
= ftruncate(stream
->stream_fd
->fd
,
1685 stream
->pos_after_last_complete_data_index
);
1687 PERROR("ftruncate");
1691 ret
= close(stream
->stream_fd
->fd
);
1693 PERROR("Closing tracefile");
1697 ret
= create_rotate_index_file(stream
);
1699 ERR("Rotate stream index file");
1704 * Update the offset and FD of all the eventual indexes created by the
1705 * data connection before the rotation command arrived.
1707 ret
= relay_index_switch_all_files(stream
);
1709 ERR("Failed to rotate index file");
1713 stream
->stream_fd
->fd
= new_fd
;
1714 stream
->tracefile_size_current
= diff
;
1715 stream
->pos_after_last_complete_data_index
= 0;
1716 stream
->rotate_at_seq_num
= -1ULL;
1725 * Check if a stream should perform a rotation (for session rotation).
1726 * Must be called with the stream lock held.
1728 * Return 0 on success, a negative value on error.
1731 int try_rotate_stream(struct relay_stream
*stream
)
1735 /* No rotation expected. */
1736 if (stream
->rotate_at_seq_num
== -1ULL) {
1740 if (stream
->prev_seq
< stream
->rotate_at_seq_num
||
1741 stream
->prev_seq
== -1ULL) {
1742 DBG("Stream %" PRIu64
" no yet ready for rotation",
1743 stream
->stream_handle
);
1745 } else if (stream
->prev_seq
> stream
->rotate_at_seq_num
) {
1746 DBG("Rotation after too much data has been written in tracefile "
1747 "for stream %" PRIu64
", need to truncate before "
1748 "rotating", stream
->stream_handle
);
1749 ret
= rotate_truncate_stream(stream
);
1751 ERR("Failed to truncate stream");
1755 /* stream->prev_seq == stream->rotate_at_seq_num */
1756 DBG("Stream %" PRIu64
" ready for rotation",
1757 stream
->stream_handle
);
1758 ret
= do_rotate_stream(stream
);
1766 * relay_recv_metadata: receive the metadata for the session.
1768 static int relay_recv_metadata(const struct lttcomm_relayd_hdr
*recv_hdr
,
1769 struct relay_connection
*conn
,
1770 const struct lttng_buffer_view
*payload
)
1774 struct relay_session
*session
= conn
->session
;
1775 struct lttcomm_relayd_metadata_payload metadata_payload_header
;
1776 struct relay_stream
*metadata_stream
;
1777 uint64_t metadata_payload_size
;
1780 ERR("Metadata sent before version check");
1785 if (recv_hdr
->data_size
< sizeof(struct lttcomm_relayd_metadata_payload
)) {
1786 ERR("Incorrect data size");
1790 metadata_payload_size
= recv_hdr
->data_size
-
1791 sizeof(struct lttcomm_relayd_metadata_payload
);
1793 memcpy(&metadata_payload_header
, payload
->data
,
1794 sizeof(metadata_payload_header
));
1795 metadata_payload_header
.stream_id
= be64toh(
1796 metadata_payload_header
.stream_id
);
1797 metadata_payload_header
.padding_size
= be32toh(
1798 metadata_payload_header
.padding_size
);
1800 metadata_stream
= stream_get_by_id(metadata_payload_header
.stream_id
);
1801 if (!metadata_stream
) {
1806 pthread_mutex_lock(&metadata_stream
->lock
);
1808 size_ret
= lttng_write(metadata_stream
->stream_fd
->fd
,
1809 payload
->data
+ sizeof(metadata_payload_header
),
1810 metadata_payload_size
);
1811 if (size_ret
< metadata_payload_size
) {
1812 ERR("Relay error writing metadata on file");
1817 size_ret
= write_padding_to_file(metadata_stream
->stream_fd
->fd
,
1818 metadata_payload_header
.padding_size
);
1819 if (size_ret
< (int64_t) metadata_payload_header
.padding_size
) {
1824 metadata_stream
->metadata_received
+=
1825 metadata_payload_size
+ metadata_payload_header
.padding_size
;
1826 DBG2("Relay metadata written. Updated metadata_received %" PRIu64
,
1827 metadata_stream
->metadata_received
);
1829 ret
= try_rotate_stream(metadata_stream
);
1835 pthread_mutex_unlock(&metadata_stream
->lock
);
1836 stream_put(metadata_stream
);
1842 * relay_send_version: send relayd version number
1844 static int relay_send_version(const struct lttcomm_relayd_hdr
*recv_hdr
,
1845 struct relay_connection
*conn
,
1846 const struct lttng_buffer_view
*payload
)
1850 struct lttcomm_relayd_version reply
, msg
;
1851 bool compatible
= true;
1853 conn
->version_check_done
= true;
1855 /* Get version from the other side. */
1856 if (payload
->size
< sizeof(msg
)) {
1857 ERR("Unexpected payload size in \"relay_send_version\": expected >= %zu bytes, got %zu bytes",
1858 sizeof(msg
), payload
->size
);
1863 memcpy(&msg
, payload
->data
, sizeof(msg
));
1864 msg
.major
= be32toh(msg
.major
);
1865 msg
.minor
= be32toh(msg
.minor
);
1867 memset(&reply
, 0, sizeof(reply
));
1868 reply
.major
= RELAYD_VERSION_COMM_MAJOR
;
1869 reply
.minor
= RELAYD_VERSION_COMM_MINOR
;
1871 /* Major versions must be the same */
1872 if (reply
.major
!= msg
.major
) {
1873 DBG("Incompatible major versions (%u vs %u), deleting session",
1874 reply
.major
, msg
.major
);
1878 conn
->major
= reply
.major
;
1879 /* We adapt to the lowest compatible version */
1880 if (reply
.minor
<= msg
.minor
) {
1881 conn
->minor
= reply
.minor
;
1883 conn
->minor
= msg
.minor
;
1886 reply
.major
= htobe32(reply
.major
);
1887 reply
.minor
= htobe32(reply
.minor
);
1888 send_ret
= conn
->sock
->ops
->sendmsg(conn
->sock
, &reply
,
1890 if (send_ret
< (ssize_t
) sizeof(reply
)) {
1891 ERR("Failed to send \"send version\" command reply (ret = %zd)",
1904 DBG("Version check done using protocol %u.%u", conn
->major
,
1912 * Check for data pending for a given stream id from the session daemon.
1914 static int relay_data_pending(const struct lttcomm_relayd_hdr
*recv_hdr
,
1915 struct relay_connection
*conn
,
1916 const struct lttng_buffer_view
*payload
)
1918 struct relay_session
*session
= conn
->session
;
1919 struct lttcomm_relayd_data_pending msg
;
1920 struct lttcomm_relayd_generic_reply reply
;
1921 struct relay_stream
*stream
;
1925 DBG("Data pending command received");
1927 if (!session
|| !conn
->version_check_done
) {
1928 ERR("Trying to check for data before version check");
1930 goto end_no_session
;
1933 if (payload
->size
< sizeof(msg
)) {
1934 ERR("Unexpected payload size in \"relay_data_pending\": expected >= %zu bytes, got %zu bytes",
1935 sizeof(msg
), payload
->size
);
1937 goto end_no_session
;
1939 memcpy(&msg
, payload
->data
, sizeof(msg
));
1940 msg
.stream_id
= be64toh(msg
.stream_id
);
1941 msg
.last_net_seq_num
= be64toh(msg
.last_net_seq_num
);
1943 stream
= stream_get_by_id(msg
.stream_id
);
1944 if (stream
== NULL
) {
1949 pthread_mutex_lock(&stream
->lock
);
1951 DBG("Data pending for stream id %" PRIu64
" prev_seq %" PRIu64
1952 " and last_seq %" PRIu64
, msg
.stream_id
,
1953 stream
->prev_seq
, msg
.last_net_seq_num
);
1955 /* Avoid wrapping issue */
1956 if (((int64_t) (stream
->prev_seq
- msg
.last_net_seq_num
)) >= 0) {
1957 /* Data has in fact been written and is NOT pending */
1960 /* Data still being streamed thus pending */
1964 stream
->data_pending_check_done
= true;
1965 pthread_mutex_unlock(&stream
->lock
);
1970 memset(&reply
, 0, sizeof(reply
));
1971 reply
.ret_code
= htobe32(ret
);
1972 send_ret
= conn
->sock
->ops
->sendmsg(conn
->sock
, &reply
, sizeof(reply
), 0);
1973 if (send_ret
< (ssize_t
) sizeof(reply
)) {
1974 ERR("Failed to send \"data pending\" command reply (ret = %zd)",
1984 * Wait for the control socket to reach a quiescent state.
1986 * Note that for now, when receiving this command from the session
1987 * daemon, this means that every subsequent commands or data received on
1988 * the control socket has been handled. So, this is why we simply return
1991 static int relay_quiescent_control(const struct lttcomm_relayd_hdr
*recv_hdr
,
1992 struct relay_connection
*conn
,
1993 const struct lttng_buffer_view
*payload
)
1997 struct relay_stream
*stream
;
1998 struct lttcomm_relayd_quiescent_control msg
;
1999 struct lttcomm_relayd_generic_reply reply
;
2001 DBG("Checking quiescent state on control socket");
2003 if (!conn
->session
|| !conn
->version_check_done
) {
2004 ERR("Trying to check for data before version check");
2006 goto end_no_session
;
2009 if (payload
->size
< sizeof(msg
)) {
2010 ERR("Unexpected payload size in \"relay_quiescent_control\": expected >= %zu bytes, got %zu bytes",
2011 sizeof(msg
), payload
->size
);
2013 goto end_no_session
;
2015 memcpy(&msg
, payload
->data
, sizeof(msg
));
2016 msg
.stream_id
= be64toh(msg
.stream_id
);
2018 stream
= stream_get_by_id(msg
.stream_id
);
2022 pthread_mutex_lock(&stream
->lock
);
2023 stream
->data_pending_check_done
= true;
2024 pthread_mutex_unlock(&stream
->lock
);
2026 DBG("Relay quiescent control pending flag set to %" PRIu64
, msg
.stream_id
);
2029 memset(&reply
, 0, sizeof(reply
));
2030 reply
.ret_code
= htobe32(LTTNG_OK
);
2031 send_ret
= conn
->sock
->ops
->sendmsg(conn
->sock
, &reply
, sizeof(reply
), 0);
2032 if (send_ret
< (ssize_t
) sizeof(reply
)) {
2033 ERR("Failed to send \"quiescent control\" command reply (ret = %zd)",
2045 * Initialize a data pending command. This means that a consumer is about
2046 * to ask for data pending for each stream it holds. Simply iterate over
2047 * all streams of a session and set the data_pending_check_done flag.
2049 * This command returns to the client a LTTNG_OK code.
2051 static int relay_begin_data_pending(const struct lttcomm_relayd_hdr
*recv_hdr
,
2052 struct relay_connection
*conn
,
2053 const struct lttng_buffer_view
*payload
)
2057 struct lttng_ht_iter iter
;
2058 struct lttcomm_relayd_begin_data_pending msg
;
2059 struct lttcomm_relayd_generic_reply reply
;
2060 struct relay_stream
*stream
;
2065 DBG("Init streams for data pending");
2067 if (!conn
->session
|| !conn
->version_check_done
) {
2068 ERR("Trying to check for data before version check");
2070 goto end_no_session
;
2073 if (payload
->size
< sizeof(msg
)) {
2074 ERR("Unexpected payload size in \"relay_begin_data_pending\": expected >= %zu bytes, got %zu bytes",
2075 sizeof(msg
), payload
->size
);
2077 goto end_no_session
;
2079 memcpy(&msg
, payload
->data
, sizeof(msg
));
2080 msg
.session_id
= be64toh(msg
.session_id
);
2083 * Iterate over all streams to set the begin data pending flag.
2084 * For now, the streams are indexed by stream handle so we have
2085 * to iterate over all streams to find the one associated with
2086 * the right session_id.
2089 cds_lfht_for_each_entry(relay_streams_ht
->ht
, &iter
.iter
, stream
,
2091 if (!stream_get(stream
)) {
2094 if (stream
->trace
->session
->id
== msg
.session_id
) {
2095 pthread_mutex_lock(&stream
->lock
);
2096 stream
->data_pending_check_done
= false;
2097 pthread_mutex_unlock(&stream
->lock
);
2098 DBG("Set begin data pending flag to stream %" PRIu64
,
2099 stream
->stream_handle
);
2105 memset(&reply
, 0, sizeof(reply
));
2106 /* All good, send back reply. */
2107 reply
.ret_code
= htobe32(LTTNG_OK
);
2109 send_ret
= conn
->sock
->ops
->sendmsg(conn
->sock
, &reply
, sizeof(reply
), 0);
2110 if (send_ret
< (ssize_t
) sizeof(reply
)) {
2111 ERR("Failed to send \"begin data pending\" command reply (ret = %zd)",
2123 * End data pending command. This will check, for a given session id, if
2124 * each stream associated with it has its data_pending_check_done flag
2125 * set. If not, this means that the client lost track of the stream but
2126 * the data is still being streamed on our side. In this case, we inform
2127 * the client that data is in flight.
2129 * Return to the client if there is data in flight or not with a ret_code.
2131 static int relay_end_data_pending(const struct lttcomm_relayd_hdr
*recv_hdr
,
2132 struct relay_connection
*conn
,
2133 const struct lttng_buffer_view
*payload
)
2137 struct lttng_ht_iter iter
;
2138 struct lttcomm_relayd_end_data_pending msg
;
2139 struct lttcomm_relayd_generic_reply reply
;
2140 struct relay_stream
*stream
;
2141 uint32_t is_data_inflight
= 0;
2143 DBG("End data pending command");
2145 if (!conn
->session
|| !conn
->version_check_done
) {
2146 ERR("Trying to check for data before version check");
2148 goto end_no_session
;
2151 if (payload
->size
< sizeof(msg
)) {
2152 ERR("Unexpected payload size in \"relay_end_data_pending\": expected >= %zu bytes, got %zu bytes",
2153 sizeof(msg
), payload
->size
);
2155 goto end_no_session
;
2157 memcpy(&msg
, payload
->data
, sizeof(msg
));
2158 msg
.session_id
= be64toh(msg
.session_id
);
2161 * Iterate over all streams to see if the begin data pending
2165 cds_lfht_for_each_entry(relay_streams_ht
->ht
, &iter
.iter
, stream
,
2167 if (!stream_get(stream
)) {
2170 if (stream
->trace
->session
->id
!= msg
.session_id
) {
2174 pthread_mutex_lock(&stream
->lock
);
2175 if (!stream
->data_pending_check_done
) {
2176 if (!stream
->closed
|| !(((int64_t) (stream
->prev_seq
- stream
->last_net_seq_num
)) >= 0)) {
2177 is_data_inflight
= 1;
2178 DBG("Data is still in flight for stream %" PRIu64
,
2179 stream
->stream_handle
);
2180 pthread_mutex_unlock(&stream
->lock
);
2185 pthread_mutex_unlock(&stream
->lock
);
2190 memset(&reply
, 0, sizeof(reply
));
2191 /* All good, send back reply. */
2192 reply
.ret_code
= htobe32(is_data_inflight
);
2194 send_ret
= conn
->sock
->ops
->sendmsg(conn
->sock
, &reply
, sizeof(reply
), 0);
2195 if (send_ret
< (ssize_t
) sizeof(reply
)) {
2196 ERR("Failed to send \"end data pending\" command reply (ret = %zd)",
2208 * Receive an index for a specific stream.
2210 * Return 0 on success else a negative value.
2212 static int relay_recv_index(const struct lttcomm_relayd_hdr
*recv_hdr
,
2213 struct relay_connection
*conn
,
2214 const struct lttng_buffer_view
*payload
)
2218 struct relay_session
*session
= conn
->session
;
2219 struct lttcomm_relayd_index index_info
;
2220 struct relay_index
*index
;
2221 struct lttcomm_relayd_generic_reply reply
;
2222 struct relay_stream
*stream
;
2227 DBG("Relay receiving index");
2229 if (!session
|| !conn
->version_check_done
) {
2230 ERR("Trying to close a stream before version check");
2232 goto end_no_session
;
2235 msg_len
= lttcomm_relayd_index_len(
2236 lttng_to_index_major(conn
->major
, conn
->minor
),
2237 lttng_to_index_minor(conn
->major
, conn
->minor
));
2238 if (payload
->size
< msg_len
) {
2239 ERR("Unexpected payload size in \"relay_recv_index\": expected >= %zu bytes, got %zu bytes",
2240 msg_len
, payload
->size
);
2242 goto end_no_session
;
2244 memcpy(&index_info
, payload
->data
, msg_len
);
2245 index_info
.relay_stream_id
= be64toh(index_info
.relay_stream_id
);
2246 index_info
.net_seq_num
= be64toh(index_info
.net_seq_num
);
2247 index_info
.packet_size
= be64toh(index_info
.packet_size
);
2248 index_info
.content_size
= be64toh(index_info
.content_size
);
2249 index_info
.timestamp_begin
= be64toh(index_info
.timestamp_begin
);
2250 index_info
.timestamp_end
= be64toh(index_info
.timestamp_end
);
2251 index_info
.events_discarded
= be64toh(index_info
.events_discarded
);
2252 index_info
.stream_id
= be64toh(index_info
.stream_id
);
2254 if (conn
->minor
>= 8) {
2255 index_info
.stream_instance_id
=
2256 be64toh(index_info
.stream_instance_id
);
2257 index_info
.packet_seq_num
= be64toh(index_info
.packet_seq_num
);
2260 stream
= stream_get_by_id(index_info
.relay_stream_id
);
2262 ERR("stream_get_by_id not found");
2266 pthread_mutex_lock(&stream
->lock
);
2268 /* Live beacon handling */
2269 if (index_info
.packet_size
== 0) {
2270 DBG("Received live beacon for stream %" PRIu64
,
2271 stream
->stream_handle
);
2274 * Only flag a stream inactive when it has already
2275 * received data and no indexes are in flight.
2277 if (stream
->index_received_seqcount
> 0
2278 && stream
->indexes_in_flight
== 0) {
2279 stream
->beacon_ts_end
= index_info
.timestamp_end
;
2282 goto end_stream_put
;
2284 stream
->beacon_ts_end
= -1ULL;
2287 if (stream
->ctf_stream_id
== -1ULL) {
2288 stream
->ctf_stream_id
= index_info
.stream_id
;
2290 index
= relay_index_get_by_id_or_create(stream
, index_info
.net_seq_num
);
2293 ERR("relay_index_get_by_id_or_create index NULL");
2294 goto end_stream_put
;
2296 if (set_index_control_data(index
, &index_info
, conn
)) {
2297 ERR("set_index_control_data error");
2298 relay_index_put(index
);
2300 goto end_stream_put
;
2302 ret
= relay_index_try_flush(index
);
2304 tracefile_array_commit_seq(stream
->tfa
);
2305 stream
->index_received_seqcount
++;
2306 stream
->pos_after_last_complete_data_index
+= index
->total_size
;
2307 } else if (ret
> 0) {
2311 ERR("relay_index_try_flush error %d", ret
);
2312 relay_index_put(index
);
2317 pthread_mutex_unlock(&stream
->lock
);
2322 memset(&reply
, 0, sizeof(reply
));
2324 reply
.ret_code
= htobe32(LTTNG_ERR_UNK
);
2326 reply
.ret_code
= htobe32(LTTNG_OK
);
2328 send_ret
= conn
->sock
->ops
->sendmsg(conn
->sock
, &reply
, sizeof(reply
), 0);
2329 if (send_ret
< (ssize_t
) sizeof(reply
)) {
2330 ERR("Failed to send \"recv index\" command reply (ret = %zd)", send_ret
);
2339 * Receive the streams_sent message.
2341 * Return 0 on success else a negative value.
2343 static int relay_streams_sent(const struct lttcomm_relayd_hdr
*recv_hdr
,
2344 struct relay_connection
*conn
,
2345 const struct lttng_buffer_view
*payload
)
2349 struct lttcomm_relayd_generic_reply reply
;
2353 DBG("Relay receiving streams_sent");
2355 if (!conn
->session
|| !conn
->version_check_done
) {
2356 ERR("Trying to close a stream before version check");
2358 goto end_no_session
;
2362 * Publish every pending stream in the connection recv list which are
2363 * now ready to be used by the viewer.
2365 publish_connection_local_streams(conn
);
2367 memset(&reply
, 0, sizeof(reply
));
2368 reply
.ret_code
= htobe32(LTTNG_OK
);
2369 send_ret
= conn
->sock
->ops
->sendmsg(conn
->sock
, &reply
, sizeof(reply
), 0);
2370 if (send_ret
< (ssize_t
) sizeof(reply
)) {
2371 ERR("Failed to send \"streams sent\" command reply (ret = %zd)",
2384 * relay_rotate_session_stream: rotate a stream to a new tracefile for the session
2385 * rotation feature (not the tracefile rotation feature).
2387 static int relay_rotate_session_stream(const struct lttcomm_relayd_hdr
*recv_hdr
,
2388 struct relay_connection
*conn
,
2389 const struct lttng_buffer_view
*payload
)
2393 struct relay_session
*session
= conn
->session
;
2394 struct lttcomm_relayd_rotate_stream stream_info
;
2395 struct lttcomm_relayd_generic_reply reply
;
2396 struct relay_stream
*stream
;
2399 struct lttng_buffer_view new_path_view
;
2401 DBG("Rotate stream received");
2403 if (!session
|| !conn
->version_check_done
) {
2404 ERR("Trying to rotate a stream before version check");
2409 if (session
->major
== 2 && session
->minor
< 11) {
2410 ERR("Unsupported feature before 2.11");
2415 header_len
= sizeof(struct lttcomm_relayd_rotate_stream
);
2417 if (payload
->size
< header_len
) {
2418 ERR("Unexpected payload size in \"relay_rotate_session_stream\": expected >= %zu bytes, got %zu bytes",
2419 header_len
, payload
->size
);
2424 memcpy(&stream_info
, payload
->data
, header_len
);
2426 /* Convert to host */
2427 stream_info
.pathname_length
= be32toh(stream_info
.pathname_length
);
2428 stream_info
.stream_id
= be64toh(stream_info
.stream_id
);
2429 stream_info
.new_chunk_id
= be64toh(stream_info
.new_chunk_id
);
2430 stream_info
.rotate_at_seq_num
= be64toh(stream_info
.rotate_at_seq_num
);
2432 path_len
= stream_info
.pathname_length
;
2433 if (payload
->size
< header_len
+ path_len
) {
2434 ERR("Unexpected payload size in \"relay_rotate_session_stream\" including path: expected >= %zu bytes, got %zu bytes",
2435 header_len
+ path_len
, payload
->size
);
2440 /* Ensure it fits in local filename length. */
2441 if (path_len
>= LTTNG_PATH_MAX
) {
2442 ret
= -ENAMETOOLONG
;
2443 ERR("Length of relay_rotate_session_stream command's path name (%zu bytes) exceeds the maximal allowed length of %i bytes",
2444 path_len
, LTTNG_PATH_MAX
);
2448 new_path_view
= lttng_buffer_view_from_view(payload
, header_len
,
2449 stream_info
.pathname_length
);
2451 stream
= stream_get_by_id(stream_info
.stream_id
);
2457 pthread_mutex_lock(&stream
->lock
);
2460 * Update the trace path (just the folder, the stream name does not
2463 free(stream
->path_name
);
2464 stream
->path_name
= create_output_path(new_path_view
.data
);
2465 if (!stream
->path_name
) {
2466 ERR("Failed to create a new output path");
2468 goto end_stream_unlock
;
2470 ret
= utils_mkdir_recursive(stream
->path_name
, S_IRWXU
| S_IRWXG
,
2473 ERR("relay creating output directory");
2475 goto end_stream_unlock
;
2478 stream
->chunk_id
= stream_info
.new_chunk_id
;
2480 if (stream
->is_metadata
) {
2482 * The metadata stream is sent only over the control connection
2483 * so we know we have all the data to perform the stream
2486 ret
= do_rotate_stream(stream
);
2488 stream
->rotate_at_seq_num
= stream_info
.rotate_at_seq_num
;
2489 ret
= try_rotate_stream(stream
);
2492 goto end_stream_unlock
;
2496 pthread_mutex_unlock(&stream
->lock
);
2499 memset(&reply
, 0, sizeof(reply
));
2501 reply
.ret_code
= htobe32(LTTNG_ERR_UNK
);
2503 reply
.ret_code
= htobe32(LTTNG_OK
);
2505 send_ret
= conn
->sock
->ops
->sendmsg(conn
->sock
, &reply
,
2506 sizeof(struct lttcomm_relayd_generic_reply
), 0);
2507 if (send_ret
< (ssize_t
) sizeof(reply
)) {
2508 ERR("Failed to send \"rotate session stream\" command reply (ret = %zd)",
2518 * relay_mkdir: Create a folder on the disk.
2520 static int relay_mkdir(const struct lttcomm_relayd_hdr
*recv_hdr
,
2521 struct relay_connection
*conn
,
2522 const struct lttng_buffer_view
*payload
)
2525 struct relay_session
*session
= conn
->session
;
2526 struct lttcomm_relayd_mkdir path_info_header
;
2527 struct lttcomm_relayd_generic_reply reply
;
2531 struct lttng_buffer_view path_view
;
2533 if (!session
|| !conn
->version_check_done
) {
2534 ERR("Trying to create a directory before version check");
2536 goto end_no_session
;
2539 if (session
->major
== 2 && session
->minor
< 11) {
2541 * This client is not supposed to use this command since
2542 * it predates its introduction.
2544 ERR("relay_mkdir command is unsupported before LTTng 2.11");
2546 goto end_no_session
;
2549 header_len
= sizeof(path_info_header
);
2550 if (payload
->size
< header_len
) {
2551 ERR("Unexpected payload size in \"relay_mkdir\": expected >= %zu bytes, got %zu bytes",
2552 header_len
, payload
->size
);
2554 goto end_no_session
;
2557 memcpy(&path_info_header
, payload
->data
, header_len
);
2559 path_info_header
.length
= be32toh(path_info_header
.length
);
2561 if (payload
->size
< header_len
+ path_info_header
.length
) {
2562 ERR("Unexpected payload size in \"relay_mkdir\" including path: expected >= %zu bytes, got %zu bytes",
2563 header_len
+ path_info_header
.length
, payload
->size
);
2565 goto end_no_session
;
2568 /* Ensure that it fits in local path length. */
2569 if (path_info_header
.length
>= LTTNG_PATH_MAX
) {
2570 ret
= -ENAMETOOLONG
;
2571 ERR("Path name argument of mkdir command (%" PRIu32
" bytes) exceeds the maximal length allowed (%d bytes)",
2572 path_info_header
.length
, LTTNG_PATH_MAX
);
2576 path_view
= lttng_buffer_view_from_view(payload
, header_len
,
2577 path_info_header
.length
);
2579 path
= create_output_path(path_view
.data
);
2581 ERR("Failed to create output path");
2586 ret
= utils_mkdir_recursive(path
, S_IRWXU
| S_IRWXG
, -1, -1);
2588 ERR("relay creating output directory");
2595 memset(&reply
, 0, sizeof(reply
));
2597 reply
.ret_code
= htobe32(LTTNG_ERR_UNK
);
2599 reply
.ret_code
= htobe32(LTTNG_OK
);
2601 send_ret
= conn
->sock
->ops
->sendmsg(conn
->sock
, &reply
, sizeof(reply
), 0);
2602 if (send_ret
< (ssize_t
) sizeof(reply
)) {
2603 ERR("Failed to send \"mkdir\" command reply (ret = %zd)", send_ret
);
2612 static int validate_rotate_rename_path_length(const char *path_type
,
2613 uint32_t path_length
)
2617 if (path_length
> LTTNG_PATH_MAX
) {
2618 ret
= -ENAMETOOLONG
;
2619 ERR("rotate rename \"%s\" path name length (%" PRIu32
" bytes) exceeds the allowed size of %i bytes",
2620 path_type
, path_length
, LTTNG_PATH_MAX
);
2621 } else if (path_length
== 0) {
2623 ERR("rotate rename \"%s\" path name has an illegal length of 0", path_type
);
2629 * relay_rotate_rename: rename the trace folder after a rotation is
2630 * completed. We are not closing any fd here, just moving the folder, so it
2631 * works even if data is still in-flight.
2633 static int relay_rotate_rename(const struct lttcomm_relayd_hdr
*recv_hdr
,
2634 struct relay_connection
*conn
,
2635 const struct lttng_buffer_view
*payload
)
2639 struct relay_session
*session
= conn
->session
;
2640 struct lttcomm_relayd_generic_reply reply
;
2641 struct lttcomm_relayd_rotate_rename header
;
2643 size_t received_paths_size
;
2644 char *complete_old_path
= NULL
, *complete_new_path
= NULL
;
2645 struct lttng_buffer_view old_path_view
;
2646 struct lttng_buffer_view new_path_view
;
2648 if (!session
|| !conn
->version_check_done
) {
2649 ERR("Trying to rename a trace folder before version check");
2654 if (session
->major
== 2 && session
->minor
< 11) {
2655 ERR("relay_rotate_rename command is unsupported before LTTng 2.11");
2660 header_len
= sizeof(header
);
2661 if (payload
->size
< header_len
) {
2662 ERR("Unexpected payload size in \"relay_rotate_rename\": expected >= %zu bytes, got %zu bytes",
2663 header_len
, payload
->size
);
2668 memcpy(&header
, payload
->data
, header_len
);
2670 header
.old_path_length
= be32toh(header
.old_path_length
);
2671 header
.new_path_length
= be32toh(header
.new_path_length
);
2672 received_paths_size
= header
.old_path_length
+ header
.new_path_length
;
2674 if (payload
->size
< header_len
+ received_paths_size
) {
2675 ERR("Unexpected payload size in \"relay_rotate_rename\" including paths: expected >= %zu bytes, got %zu bytes",
2676 header_len
, payload
->size
);
2681 /* Ensure the paths don't exceed their allowed size. */
2682 ret
= validate_rotate_rename_path_length("old", header
.old_path_length
);
2686 ret
= validate_rotate_rename_path_length("new", header
.new_path_length
);
2691 old_path_view
= lttng_buffer_view_from_view(payload
, header_len
,
2692 header
.old_path_length
);
2693 new_path_view
= lttng_buffer_view_from_view(payload
,
2694 header_len
+ header
.old_path_length
,
2695 header
.new_path_length
);
2697 /* Validate that both paths received are NULL terminated. */
2698 if (old_path_view
.data
[old_path_view
.size
- 1] != '\0') {
2699 ERR("relay_rotate_rename command's \"old\" path is invalid (not NULL terminated)");
2703 if (new_path_view
.data
[new_path_view
.size
- 1] != '\0') {
2704 ERR("relay_rotate_rename command's \"new\" path is invalid (not NULL terminated)");
2709 complete_old_path
= create_output_path(old_path_view
.data
);
2710 if (!complete_old_path
) {
2711 ERR("Failed to build old output path in rotate_rename command");
2716 complete_new_path
= create_output_path(new_path_view
.data
);
2717 if (!complete_new_path
) {
2718 ERR("Failed to build new output path in rotate_rename command");
2723 ret
= utils_mkdir_recursive(complete_new_path
, S_IRWXU
| S_IRWXG
,
2726 ERR("Failed to mkdir() rotate_rename's \"new\" output directory at \"%s\"",
2732 * If a domain has not yet created its channel, the domain-specific
2733 * folder might not exist, but this is not an error.
2735 ret
= rename(complete_old_path
, complete_new_path
);
2736 if (ret
< 0 && errno
!= ENOENT
) {
2737 PERROR("Renaming chunk in rotate_rename command from \"%s\" to \"%s\"",
2738 complete_old_path
, complete_new_path
);
2744 memset(&reply
, 0, sizeof(reply
));
2746 reply
.ret_code
= htobe32(LTTNG_ERR_UNK
);
2748 reply
.ret_code
= htobe32(LTTNG_OK
);
2750 send_ret
= conn
->sock
->ops
->sendmsg(conn
->sock
, &reply
,
2752 if (send_ret
< sizeof(reply
)) {
2753 ERR("Failed to send \"rotate rename\" command reply (ret = %zd)",
2759 free(complete_old_path
);
2760 free(complete_new_path
);
2765 * Check if all the streams in the session have completed the last rotation.
2766 * The chunk_id value is used to distinguish the cases where a stream was
2767 * closed on the consumerd before the rotation started but it still active on
2768 * the relayd, and the case where a stream appeared on the consumerd/relayd
2769 * after the last rotation started (in that case, it is already writing in the
2770 * new chunk folder).
2773 int relay_rotate_pending(const struct lttcomm_relayd_hdr
*recv_hdr
,
2774 struct relay_connection
*conn
,
2775 const struct lttng_buffer_view
*payload
)
2777 struct relay_session
*session
= conn
->session
;
2778 struct lttcomm_relayd_rotate_pending msg
;
2779 struct lttcomm_relayd_rotate_pending_reply reply
;
2780 struct lttng_ht_iter iter
;
2781 struct relay_stream
*stream
;
2785 bool rotate_pending
= false;
2787 DBG("Rotate pending command received");
2789 if (!session
|| !conn
->version_check_done
) {
2790 ERR("Trying to check for data before version check");
2795 if (session
->major
== 2 && session
->minor
< 11) {
2796 ERR("Unsupported feature before 2.11");
2801 if (payload
->size
< sizeof(msg
)) {
2802 ERR("Unexpected payload size in \"relay_rotate_pending\": expected >= %zu bytes, got %zu bytes",
2803 sizeof(msg
), payload
->size
);
2808 memcpy(&msg
, payload
->data
, sizeof(msg
));
2810 chunk_id
= be64toh(msg
.chunk_id
);
2812 DBG("Evaluating rotate pending for chunk id %" PRIu64
, chunk_id
);
2815 * Iterate over all the streams in the session and check if they are
2816 * still waiting for data to perform their rotation.
2819 cds_lfht_for_each_entry(relay_streams_ht
->ht
, &iter
.iter
, stream
,
2821 if (!stream_get(stream
)) {
2824 if (stream
->trace
->session
!= session
) {
2828 pthread_mutex_lock(&stream
->lock
);
2829 if (stream
->rotate_at_seq_num
!= -1ULL) {
2830 /* We have not yet performed the rotation. */
2831 rotate_pending
= true;
2832 DBG("Stream %" PRIu64
" is still rotating",
2833 stream
->stream_handle
);
2834 } else if (stream
->chunk_id
< chunk_id
) {
2836 * Stream closed on the consumer but still active on the
2839 rotate_pending
= true;
2840 DBG("Stream %" PRIu64
" did not exist on the consumer "
2841 "when the last rotation started, but is"
2842 "still waiting for data before getting"
2844 stream
->stream_handle
);
2846 pthread_mutex_unlock(&stream
->lock
);
2848 if (rotate_pending
) {
2855 memset(&reply
, 0, sizeof(reply
));
2856 reply
.generic
.ret_code
= htobe32((uint32_t) LTTNG_OK
);
2857 reply
.is_pending
= (uint8_t) !!rotate_pending
;
2858 send_ret
= conn
->sock
->ops
->sendmsg(conn
->sock
, &reply
,
2860 if (send_ret
< (ssize_t
) sizeof(reply
)) {
2861 ERR("Failed to send \"rotate pending\" command reply (ret = %zd)",
2870 #define DBG_CMD(cmd_name, conn) \
2871 DBG3("Processing \"%s\" command for socket %i", cmd_name, conn->sock->fd);
2873 static int relay_process_control_command(struct relay_connection
*conn
,
2874 const struct lttcomm_relayd_hdr
*header
,
2875 const struct lttng_buffer_view
*payload
)
2879 switch (header
->cmd
) {
2880 case RELAYD_CREATE_SESSION
:
2881 DBG_CMD("RELAYD_CREATE_SESSION", conn
);
2882 ret
= relay_create_session(header
, conn
, payload
);
2884 case RELAYD_ADD_STREAM
:
2885 DBG_CMD("RELAYD_ADD_STREAM", conn
);
2886 ret
= relay_add_stream(header
, conn
, payload
);
2888 case RELAYD_START_DATA
:
2889 DBG_CMD("RELAYD_START_DATA", conn
);
2890 ret
= relay_start(header
, conn
, payload
);
2892 case RELAYD_SEND_METADATA
:
2893 DBG_CMD("RELAYD_SEND_METADATA", conn
);
2894 ret
= relay_recv_metadata(header
, conn
, payload
);
2896 case RELAYD_VERSION
:
2897 DBG_CMD("RELAYD_VERSION", conn
);
2898 ret
= relay_send_version(header
, conn
, payload
);
2900 case RELAYD_CLOSE_STREAM
:
2901 DBG_CMD("RELAYD_CLOSE_STREAM", conn
);
2902 ret
= relay_close_stream(header
, conn
, payload
);
2904 case RELAYD_DATA_PENDING
:
2905 DBG_CMD("RELAYD_DATA_PENDING", conn
);
2906 ret
= relay_data_pending(header
, conn
, payload
);
2908 case RELAYD_QUIESCENT_CONTROL
:
2909 DBG_CMD("RELAYD_QUIESCENT_CONTROL", conn
);
2910 ret
= relay_quiescent_control(header
, conn
, payload
);
2912 case RELAYD_BEGIN_DATA_PENDING
:
2913 DBG_CMD("RELAYD_BEGIN_DATA_PENDING", conn
);
2914 ret
= relay_begin_data_pending(header
, conn
, payload
);
2916 case RELAYD_END_DATA_PENDING
:
2917 DBG_CMD("RELAYD_END_DATA_PENDING", conn
);
2918 ret
= relay_end_data_pending(header
, conn
, payload
);
2920 case RELAYD_SEND_INDEX
:
2921 DBG_CMD("RELAYD_SEND_INDEX", conn
);
2922 ret
= relay_recv_index(header
, conn
, payload
);
2924 case RELAYD_STREAMS_SENT
:
2925 DBG_CMD("RELAYD_STREAMS_SENT", conn
);
2926 ret
= relay_streams_sent(header
, conn
, payload
);
2928 case RELAYD_RESET_METADATA
:
2929 DBG_CMD("RELAYD_RESET_METADATA", conn
);
2930 ret
= relay_reset_metadata(header
, conn
, payload
);
2932 case RELAYD_ROTATE_STREAM
:
2933 DBG_CMD("RELAYD_ROTATE_STREAM", conn
);
2934 ret
= relay_rotate_session_stream(header
, conn
, payload
);
2936 case RELAYD_ROTATE_RENAME
:
2937 DBG_CMD("RELAYD_ROTATE_RENAME", conn
);
2938 ret
= relay_rotate_rename(header
, conn
, payload
);
2940 case RELAYD_ROTATE_PENDING
:
2941 DBG_CMD("RELAYD_ROTATE_PENDING", conn
);
2942 ret
= relay_rotate_pending(header
, conn
, payload
);
2945 DBG_CMD("RELAYD_MKDIR", conn
);
2946 ret
= relay_mkdir(header
, conn
, payload
);
2948 case RELAYD_UPDATE_SYNC_INFO
:
2950 ERR("Received unknown command (%u)", header
->cmd
);
2951 relay_unknown_command(conn
);
2960 static enum relay_connection_status
relay_process_control_receive_payload(
2961 struct relay_connection
*conn
)
2964 enum relay_connection_status status
= RELAY_CONNECTION_STATUS_OK
;
2965 struct lttng_dynamic_buffer
*reception_buffer
=
2966 &conn
->protocol
.ctrl
.reception_buffer
;
2967 struct ctrl_connection_state_receive_payload
*state
=
2968 &conn
->protocol
.ctrl
.state
.receive_payload
;
2969 struct lttng_buffer_view payload_view
;
2971 if (state
->left_to_receive
== 0) {
2972 /* Short-circuit for payload-less commands. */
2973 goto reception_complete
;
2976 ret
= conn
->sock
->ops
->recvmsg(conn
->sock
,
2977 reception_buffer
->data
+ state
->received
,
2978 state
->left_to_receive
, MSG_DONTWAIT
);
2980 if (errno
!= EAGAIN
&& errno
!= EWOULDBLOCK
) {
2981 PERROR("Unable to receive command payload on sock %d",
2983 status
= RELAY_CONNECTION_STATUS_ERROR
;
2986 } else if (ret
== 0) {
2987 DBG("Socket %d performed an orderly shutdown (received EOF)", conn
->sock
->fd
);
2988 status
= RELAY_CONNECTION_STATUS_CLOSED
;
2993 assert(ret
<= state
->left_to_receive
);
2995 state
->left_to_receive
-= ret
;
2996 state
->received
+= ret
;
2998 if (state
->left_to_receive
> 0) {
3000 * Can't transition to the protocol's next state, wait to
3001 * receive the rest of the header.
3003 DBG3("Partial reception of control connection protocol payload (received %" PRIu64
" bytes, %" PRIu64
" bytes left to receive, fd = %i)",
3004 state
->received
, state
->left_to_receive
,
3010 DBG("Done receiving control command payload: fd = %i, payload size = %" PRIu64
" bytes",
3011 conn
->sock
->fd
, state
->received
);
3013 * The payload required to process the command has been received.
3014 * A view to the reception buffer is forwarded to the various
3015 * commands and the state of the control is reset on success.
3017 * Commands are responsible for sending their reply to the peer.
3019 payload_view
= lttng_buffer_view_from_dynamic_buffer(reception_buffer
,
3021 ret
= relay_process_control_command(conn
,
3022 &state
->header
, &payload_view
);
3024 status
= RELAY_CONNECTION_STATUS_ERROR
;
3028 ret
= connection_reset_protocol_state(conn
);
3030 status
= RELAY_CONNECTION_STATUS_ERROR
;
3036 static enum relay_connection_status
relay_process_control_receive_header(
3037 struct relay_connection
*conn
)
3040 enum relay_connection_status status
= RELAY_CONNECTION_STATUS_OK
;
3041 struct lttcomm_relayd_hdr header
;
3042 struct lttng_dynamic_buffer
*reception_buffer
=
3043 &conn
->protocol
.ctrl
.reception_buffer
;
3044 struct ctrl_connection_state_receive_header
*state
=
3045 &conn
->protocol
.ctrl
.state
.receive_header
;
3047 assert(state
->left_to_receive
!= 0);
3049 ret
= conn
->sock
->ops
->recvmsg(conn
->sock
,
3050 reception_buffer
->data
+ state
->received
,
3051 state
->left_to_receive
, MSG_DONTWAIT
);
3053 if (errno
!= EAGAIN
&& errno
!= EWOULDBLOCK
) {
3054 PERROR("Unable to receive control command header on sock %d",
3056 status
= RELAY_CONNECTION_STATUS_ERROR
;
3059 } else if (ret
== 0) {
3060 DBG("Socket %d performed an orderly shutdown (received EOF)", conn
->sock
->fd
);
3061 status
= RELAY_CONNECTION_STATUS_CLOSED
;
3066 assert(ret
<= state
->left_to_receive
);
3068 state
->left_to_receive
-= ret
;
3069 state
->received
+= ret
;
3071 if (state
->left_to_receive
> 0) {
3073 * Can't transition to the protocol's next state, wait to
3074 * receive the rest of the header.
3076 DBG3("Partial reception of control connection protocol header (received %" PRIu64
" bytes, %" PRIu64
" bytes left to receive, fd = %i)",
3077 state
->received
, state
->left_to_receive
,
3082 /* Transition to next state: receiving the command's payload. */
3083 conn
->protocol
.ctrl
.state_id
=
3084 CTRL_CONNECTION_STATE_RECEIVE_PAYLOAD
;
3085 memcpy(&header
, reception_buffer
->data
, sizeof(header
));
3086 header
.circuit_id
= be64toh(header
.circuit_id
);
3087 header
.data_size
= be64toh(header
.data_size
);
3088 header
.cmd
= be32toh(header
.cmd
);
3089 header
.cmd_version
= be32toh(header
.cmd_version
);
3090 memcpy(&conn
->protocol
.ctrl
.state
.receive_payload
.header
,
3091 &header
, sizeof(header
));
3093 DBG("Done receiving control command header: fd = %i, cmd = %" PRIu32
", cmd_version = %" PRIu32
", payload size = %" PRIu64
" bytes",
3094 conn
->sock
->fd
, header
.cmd
, header
.cmd_version
,
3097 if (header
.data_size
> DEFAULT_NETWORK_RELAYD_CTRL_MAX_PAYLOAD_SIZE
) {
3098 ERR("Command header indicates a payload (%" PRIu64
" bytes) that exceeds the maximal payload size allowed on a control connection.",
3100 status
= RELAY_CONNECTION_STATUS_ERROR
;
3104 conn
->protocol
.ctrl
.state
.receive_payload
.left_to_receive
=
3106 conn
->protocol
.ctrl
.state
.receive_payload
.received
= 0;
3107 ret
= lttng_dynamic_buffer_set_size(reception_buffer
,
3110 status
= RELAY_CONNECTION_STATUS_ERROR
;
3114 if (header
.data_size
== 0) {
3116 * Manually invoke the next state as the poll loop
3117 * will not wake-up to allow us to proceed further.
3119 status
= relay_process_control_receive_payload(conn
);
3126 * Process the commands received on the control socket
3128 static enum relay_connection_status
relay_process_control(
3129 struct relay_connection
*conn
)
3131 enum relay_connection_status status
;
3133 switch (conn
->protocol
.ctrl
.state_id
) {
3134 case CTRL_CONNECTION_STATE_RECEIVE_HEADER
:
3135 status
= relay_process_control_receive_header(conn
);
3137 case CTRL_CONNECTION_STATE_RECEIVE_PAYLOAD
:
3138 status
= relay_process_control_receive_payload(conn
);
3141 ERR("Unknown control connection protocol state encountered.");
3149 * Handle index for a data stream.
3151 * Called with the stream lock held.
3153 * Return 0 on success else a negative value.
3155 static int handle_index_data(struct relay_stream
*stream
, uint64_t net_seq_num
,
3156 bool rotate_index
, bool *flushed
, uint64_t total_size
)
3159 uint64_t data_offset
;
3160 struct relay_index
*index
;
3162 /* Get data offset because we are about to update the index. */
3163 data_offset
= htobe64(stream
->tracefile_size_current
);
3165 DBG("handle_index_data: stream %" PRIu64
" net_seq_num %" PRIu64
" data offset %" PRIu64
,
3166 stream
->stream_handle
, net_seq_num
, stream
->tracefile_size_current
);
3169 * Lookup for an existing index for that stream id/sequence
3170 * number. If it exists, the control thread has already received the
3171 * data for it, thus we need to write it to disk.
3173 index
= relay_index_get_by_id_or_create(stream
, net_seq_num
);
3179 if (rotate_index
|| !stream
->index_file
) {
3180 ret
= create_rotate_index_file(stream
);
3182 ERR("Failed to rotate index");
3183 /* Put self-ref for this index due to error. */
3184 relay_index_put(index
);
3190 if (relay_index_set_file(index
, stream
->index_file
, data_offset
)) {
3192 /* Put self-ref for this index due to error. */
3193 relay_index_put(index
);
3198 ret
= relay_index_try_flush(index
);
3200 tracefile_array_commit_seq(stream
->tfa
);
3201 stream
->index_received_seqcount
++;
3203 } else if (ret
> 0) {
3204 index
->total_size
= total_size
;
3208 /* Put self-ref for this index due to error. */
3209 relay_index_put(index
);
3217 static enum relay_connection_status
relay_process_data_receive_header(
3218 struct relay_connection
*conn
)
3221 enum relay_connection_status status
= RELAY_CONNECTION_STATUS_OK
;
3222 struct data_connection_state_receive_header
*state
=
3223 &conn
->protocol
.data
.state
.receive_header
;
3224 struct lttcomm_relayd_data_hdr header
;
3225 struct relay_stream
*stream
;
3227 assert(state
->left_to_receive
!= 0);
3229 ret
= conn
->sock
->ops
->recvmsg(conn
->sock
,
3230 state
->header_reception_buffer
+ state
->received
,
3231 state
->left_to_receive
, MSG_DONTWAIT
);
3233 if (errno
!= EAGAIN
&& errno
!= EWOULDBLOCK
) {
3234 PERROR("Unable to receive data header on sock %d", conn
->sock
->fd
);
3235 status
= RELAY_CONNECTION_STATUS_ERROR
;
3238 } else if (ret
== 0) {
3239 /* Orderly shutdown. Not necessary to print an error. */
3240 DBG("Socket %d performed an orderly shutdown (received EOF)", conn
->sock
->fd
);
3241 status
= RELAY_CONNECTION_STATUS_CLOSED
;
3246 assert(ret
<= state
->left_to_receive
);
3248 state
->left_to_receive
-= ret
;
3249 state
->received
+= ret
;
3251 if (state
->left_to_receive
> 0) {
3253 * Can't transition to the protocol's next state, wait to
3254 * receive the rest of the header.
3256 DBG3("Partial reception of data connection header (received %" PRIu64
" bytes, %" PRIu64
" bytes left to receive, fd = %i)",
3257 state
->received
, state
->left_to_receive
,
3263 /* Transition to next state: receiving the payload. */
3264 conn
->protocol
.data
.state_id
= DATA_CONNECTION_STATE_RECEIVE_PAYLOAD
;
3266 memcpy(&header
, state
->header_reception_buffer
, sizeof(header
));
3267 header
.circuit_id
= be64toh(header
.circuit_id
);
3268 header
.stream_id
= be64toh(header
.stream_id
);
3269 header
.data_size
= be32toh(header
.data_size
);
3270 header
.net_seq_num
= be64toh(header
.net_seq_num
);
3271 header
.padding_size
= be32toh(header
.padding_size
);
3272 memcpy(&conn
->protocol
.data
.state
.receive_payload
.header
, &header
, sizeof(header
));
3274 conn
->protocol
.data
.state
.receive_payload
.left_to_receive
=
3276 conn
->protocol
.data
.state
.receive_payload
.received
= 0;
3277 conn
->protocol
.data
.state
.receive_payload
.rotate_index
= false;
3279 DBG("Received data connection header on fd %i: circuit_id = %" PRIu64
", stream_id = %" PRIu64
", data_size = %" PRIu32
", net_seq_num = %" PRIu64
", padding_size = %" PRIu32
,
3280 conn
->sock
->fd
, header
.circuit_id
,
3281 header
.stream_id
, header
.data_size
,
3282 header
.net_seq_num
, header
.padding_size
);
3284 stream
= stream_get_by_id(header
.stream_id
);
3286 DBG("relay_process_data_receive_payload: Cannot find stream %" PRIu64
,
3288 /* Protocol error. */
3289 status
= RELAY_CONNECTION_STATUS_ERROR
;
3293 pthread_mutex_lock(&stream
->lock
);
3295 /* Check if a rotation is needed. */
3296 if (stream
->tracefile_size
> 0 &&
3297 (stream
->tracefile_size_current
+ header
.data_size
) >
3298 stream
->tracefile_size
) {
3299 uint64_t old_id
, new_id
;
3301 old_id
= tracefile_array_get_file_index_head(stream
->tfa
);
3302 tracefile_array_file_rotate(stream
->tfa
);
3304 /* new_id is updated by utils_rotate_stream_file. */
3307 ret
= utils_rotate_stream_file(stream
->path_name
,
3308 stream
->channel_name
, stream
->tracefile_size
,
3309 stream
->tracefile_count
, -1,
3310 -1, stream
->stream_fd
->fd
,
3311 &new_id
, &stream
->stream_fd
->fd
);
3313 ERR("Failed to rotate stream output file");
3314 status
= RELAY_CONNECTION_STATUS_ERROR
;
3315 goto end_stream_unlock
;
3319 * Reset current size because we just performed a stream
3322 stream
->tracefile_size_current
= 0;
3323 conn
->protocol
.data
.state
.receive_payload
.rotate_index
= true;
3328 pthread_mutex_unlock(&stream
->lock
);
3334 static enum relay_connection_status
relay_process_data_receive_payload(
3335 struct relay_connection
*conn
)
3338 enum relay_connection_status status
= RELAY_CONNECTION_STATUS_OK
;
3339 struct relay_stream
*stream
;
3340 struct data_connection_state_receive_payload
*state
=
3341 &conn
->protocol
.data
.state
.receive_payload
;
3342 const size_t chunk_size
= RECV_DATA_BUFFER_SIZE
;
3343 char data_buffer
[chunk_size
];
3344 bool partial_recv
= false;
3345 bool new_stream
= false, close_requested
= false, index_flushed
= false;
3346 uint64_t left_to_receive
= state
->left_to_receive
;
3347 struct relay_session
*session
;
3349 stream
= stream_get_by_id(state
->header
.stream_id
);
3351 /* Protocol error. */
3352 DBG("relay_process_data_receive_payload: Cannot find stream %" PRIu64
,
3353 state
->header
.stream_id
);
3354 status
= RELAY_CONNECTION_STATUS_ERROR
;
3358 pthread_mutex_lock(&stream
->lock
);
3359 session
= stream
->trace
->session
;
3361 DBG3("Receiving data for stream id %" PRIu64
" seqnum %" PRIu64
", %" PRIu64
" bytes received, %" PRIu64
" bytes left to receive",
3362 state
->header
.stream_id
, state
->header
.net_seq_num
,
3363 state
->received
, left_to_receive
);
3366 * The size of the "chunk" received on any iteration is bounded by:
3367 * - the data left to receive,
3368 * - the data immediately available on the socket,
3369 * - the on-stack data buffer
3371 while (left_to_receive
> 0 && !partial_recv
) {
3373 size_t recv_size
= min(left_to_receive
, chunk_size
);
3375 ret
= conn
->sock
->ops
->recvmsg(conn
->sock
, data_buffer
,
3376 recv_size
, MSG_DONTWAIT
);
3378 if (errno
!= EAGAIN
&& errno
!= EWOULDBLOCK
) {
3379 PERROR("Socket %d error", conn
->sock
->fd
);
3380 status
= RELAY_CONNECTION_STATUS_ERROR
;
3382 goto end_stream_unlock
;
3383 } else if (ret
== 0) {
3384 /* No more data ready to be consumed on socket. */
3385 DBG3("No more data ready for consumption on data socket of stream id %" PRIu64
,
3386 state
->header
.stream_id
);
3387 status
= RELAY_CONNECTION_STATUS_CLOSED
;
3389 } else if (ret
< (int) recv_size
) {
3391 * All the data available on the socket has been
3394 partial_recv
= true;
3399 /* Write data to stream output fd. */
3400 write_ret
= lttng_write(stream
->stream_fd
->fd
, data_buffer
,
3402 if (write_ret
< (ssize_t
) recv_size
) {
3403 ERR("Relay error writing data to file");
3404 status
= RELAY_CONNECTION_STATUS_ERROR
;
3405 goto end_stream_unlock
;
3408 left_to_receive
-= recv_size
;
3409 state
->received
+= recv_size
;
3410 state
->left_to_receive
= left_to_receive
;
3412 DBG2("Relay wrote %zd bytes to tracefile for stream id %" PRIu64
,
3413 write_ret
, stream
->stream_handle
);
3416 if (state
->left_to_receive
> 0) {
3418 * Did not receive all the data expected, wait for more data to
3419 * become available on the socket.
3421 DBG3("Partial receive on data connection of stream id %" PRIu64
", %" PRIu64
" bytes received, %" PRIu64
" bytes left to receive",
3422 state
->header
.stream_id
, state
->received
,
3423 state
->left_to_receive
);
3424 goto end_stream_unlock
;
3427 ret
= write_padding_to_file(stream
->stream_fd
->fd
,
3428 state
->header
.padding_size
);
3430 ERR("write_padding_to_file: fail stream %" PRIu64
" net_seq_num %" PRIu64
" ret %d",
3431 stream
->stream_handle
,
3432 state
->header
.net_seq_num
, ret
);
3433 status
= RELAY_CONNECTION_STATUS_ERROR
;
3434 goto end_stream_unlock
;
3438 if (session
->minor
>= 4 && !session
->snapshot
) {
3439 ret
= handle_index_data(stream
, state
->header
.net_seq_num
,
3440 state
->rotate_index
, &index_flushed
, state
->header
.data_size
+ state
->header
.padding_size
);
3442 ERR("handle_index_data: fail stream %" PRIu64
" net_seq_num %" PRIu64
" ret %d",
3443 stream
->stream_handle
,
3444 state
->header
.net_seq_num
, ret
);
3445 status
= RELAY_CONNECTION_STATUS_ERROR
;
3446 goto end_stream_unlock
;
3450 stream
->tracefile_size_current
+= state
->header
.data_size
+
3451 state
->header
.padding_size
;
3453 if (stream
->prev_seq
== -1ULL) {
3456 if (index_flushed
) {
3457 stream
->pos_after_last_complete_data_index
=
3458 stream
->tracefile_size_current
;
3461 stream
->prev_seq
= state
->header
.net_seq_num
;
3464 * Resetting the protocol state (to RECEIVE_HEADER) will trash the
3465 * contents of *state which are aliased (union) to the same location as
3466 * the new state. Don't use it beyond this point.
3468 connection_reset_protocol_state(conn
);
3471 ret
= try_rotate_stream(stream
);
3473 status
= RELAY_CONNECTION_STATUS_ERROR
;
3474 goto end_stream_unlock
;
3478 close_requested
= stream
->close_requested
;
3479 pthread_mutex_unlock(&stream
->lock
);
3480 if (close_requested
&& left_to_receive
== 0) {
3481 try_stream_close(stream
);
3485 pthread_mutex_lock(&session
->lock
);
3486 uatomic_set(&session
->new_streams
, 1);
3487 pthread_mutex_unlock(&session
->lock
);
3496 * relay_process_data: Process the data received on the data socket
3498 static enum relay_connection_status
relay_process_data(
3499 struct relay_connection
*conn
)
3501 enum relay_connection_status status
;
3503 switch (conn
->protocol
.data
.state_id
) {
3504 case DATA_CONNECTION_STATE_RECEIVE_HEADER
:
3505 status
= relay_process_data_receive_header(conn
);
3507 case DATA_CONNECTION_STATE_RECEIVE_PAYLOAD
:
3508 status
= relay_process_data_receive_payload(conn
);
3511 ERR("Unexpected data connection communication state.");
3518 static void cleanup_connection_pollfd(struct lttng_poll_event
*events
, int pollfd
)
3522 (void) lttng_poll_del(events
, pollfd
);
3524 ret
= close(pollfd
);
3526 ERR("Closing pollfd %d", pollfd
);
3530 static void relay_thread_close_connection(struct lttng_poll_event
*events
,
3531 int pollfd
, struct relay_connection
*conn
)
3533 const char *type_str
;
3535 switch (conn
->type
) {
3540 type_str
= "Control";
3542 case RELAY_VIEWER_COMMAND
:
3543 type_str
= "Viewer Command";
3545 case RELAY_VIEWER_NOTIFICATION
:
3546 type_str
= "Viewer Notification";
3549 type_str
= "Unknown";
3551 cleanup_connection_pollfd(events
, pollfd
);
3552 connection_put(conn
);
3553 DBG("%s connection closed with %d", type_str
, pollfd
);
3557 * This thread does the actual work
3559 static void *relay_thread_worker(void *data
)
3561 int ret
, err
= -1, last_seen_data_fd
= -1;
3563 struct lttng_poll_event events
;
3564 struct lttng_ht
*relay_connections_ht
;
3565 struct lttng_ht_iter iter
;
3566 struct relay_connection
*destroy_conn
= NULL
;
3568 DBG("[thread] Relay worker started");
3570 rcu_register_thread();
3572 health_register(health_relayd
, HEALTH_RELAYD_TYPE_WORKER
);
3574 if (testpoint(relayd_thread_worker
)) {
3575 goto error_testpoint
;
3578 health_code_update();
3580 /* table of connections indexed on socket */
3581 relay_connections_ht
= lttng_ht_new(0, LTTNG_HT_TYPE_ULONG
);
3582 if (!relay_connections_ht
) {
3583 goto relay_connections_ht_error
;
3586 ret
= create_thread_poll_set(&events
, 2);
3588 goto error_poll_create
;
3591 ret
= lttng_poll_add(&events
, relay_conn_pipe
[0], LPOLLIN
| LPOLLRDHUP
);
3598 int idx
= -1, i
, seen_control
= 0, last_notdel_data_fd
= -1;
3600 health_code_update();
3602 /* Infinite blocking call, waiting for transmission */
3603 DBG3("Relayd worker thread polling...");
3604 health_poll_entry();
3605 ret
= lttng_poll_wait(&events
, -1);
3609 * Restart interrupted system call.
3611 if (errno
== EINTR
) {
3620 * Process control. The control connection is
3621 * prioritized so we don't starve it with high
3622 * throughput tracing data on the data connection.
3624 for (i
= 0; i
< nb_fd
; i
++) {
3625 /* Fetch once the poll data */
3626 uint32_t revents
= LTTNG_POLL_GETEV(&events
, i
);
3627 int pollfd
= LTTNG_POLL_GETFD(&events
, i
);
3629 health_code_update();
3633 * No activity for this FD (poll
3639 /* Thread quit pipe has been closed. Killing thread. */
3640 ret
= check_thread_quit_pipe(pollfd
, revents
);
3646 /* Inspect the relay conn pipe for new connection */
3647 if (pollfd
== relay_conn_pipe
[0]) {
3648 if (revents
& LPOLLIN
) {
3649 struct relay_connection
*conn
;
3651 ret
= lttng_read(relay_conn_pipe
[0], &conn
, sizeof(conn
));
3655 lttng_poll_add(&events
, conn
->sock
->fd
,
3656 LPOLLIN
| LPOLLRDHUP
);
3657 connection_ht_add(relay_connections_ht
, conn
);
3658 DBG("Connection socket %d added", conn
->sock
->fd
);
3659 } else if (revents
& (LPOLLERR
| LPOLLHUP
| LPOLLRDHUP
)) {
3660 ERR("Relay connection pipe error");
3663 ERR("Unexpected poll events %u for sock %d", revents
, pollfd
);
3667 struct relay_connection
*ctrl_conn
;
3669 ctrl_conn
= connection_get_by_sock(relay_connections_ht
, pollfd
);
3670 /* If not found, there is a synchronization issue. */
3673 if (ctrl_conn
->type
== RELAY_DATA
) {
3674 if (revents
& LPOLLIN
) {
3676 * Flag the last seen data fd not deleted. It will be
3677 * used as the last seen fd if any fd gets deleted in