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>
6 * This program is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License, version 2 only,
8 * as published by the Free Software Foundation.
10 * This program is distributed in the hope that it will be useful, but WITHOUT
11 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
12 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
15 * You should have received a copy of the GNU General Public License along
16 * with this program; if not, write to the Free Software Foundation, Inc.,
17 * 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>
44 #include <lttng/lttng.h>
45 #include <common/common.h>
46 #include <common/compat/poll.h>
47 #include <common/compat/socket.h>
48 #include <common/compat/endian.h>
49 #include <common/compat/getenv.h>
50 #include <common/defaults.h>
51 #include <common/daemonize.h>
52 #include <common/futex.h>
53 #include <common/sessiond-comm/sessiond-comm.h>
54 #include <common/sessiond-comm/inet.h>
55 #include <common/sessiond-comm/relayd.h>
56 #include <common/uri.h>
57 #include <common/utils.h>
58 #include <common/config/config.h>
61 #include "ctf-trace.h"
64 #include "lttng-relayd.h"
66 #include "health-relayd.h"
67 #include "testpoint.h"
68 #include "viewer-stream.h"
71 #include "connection.h"
73 /* command line options */
74 char *opt_output_path
;
75 static int opt_daemon
, opt_background
;
78 * We need to wait for listener and live listener threads, as well as
79 * health check thread, before being ready to signal readiness.
81 #define NR_LTTNG_RELAY_READY 3
82 static int lttng_relay_ready
= NR_LTTNG_RELAY_READY
;
83 static int recv_child_signal
; /* Set to 1 when a SIGUSR1 signal is received. */
84 static pid_t child_ppid
; /* Internal parent PID use with daemonize. */
86 static struct lttng_uri
*control_uri
;
87 static struct lttng_uri
*data_uri
;
88 static struct lttng_uri
*live_uri
;
92 const char *tracing_group_name
= DEFAULT_TRACING_GROUP
;
93 static int tracing_group_name_override
;
95 const char * const config_section_name
= "relayd";
98 * Quit pipe for all threads. This permits a single cancellation point
99 * for all threads when receiving an event on the pipe.
101 int thread_quit_pipe
[2] = { -1, -1 };
104 * This pipe is used to inform the worker thread that a command is queued and
105 * ready to be processed.
107 static int relay_conn_pipe
[2] = { -1, -1 };
109 /* Shared between threads */
110 static int dispatch_thread_exit
;
112 static pthread_t listener_thread
;
113 static pthread_t dispatcher_thread
;
114 static pthread_t worker_thread
;
115 static pthread_t health_thread
;
117 static uint64_t last_relay_stream_id
;
120 * Relay command queue.
122 * The relay_thread_listener and relay_thread_dispatcher communicate with this
125 static struct relay_conn_queue relay_conn_queue
;
127 /* buffer allocated at startup, used to store the trace data */
128 static char *data_buffer
;
129 static unsigned int data_buffer_size
;
131 /* We need those values for the file/dir creation. */
132 static uid_t relayd_uid
;
133 static gid_t relayd_gid
;
135 /* Global relay stream hash table. */
136 struct lttng_ht
*relay_streams_ht
;
138 /* Global relay viewer stream hash table. */
139 struct lttng_ht
*viewer_streams_ht
;
141 /* Global hash table that stores relay index object. */
142 struct lttng_ht
*indexes_ht
;
144 /* Relayd health monitoring */
145 struct health_app
*health_relayd
;
147 static struct option long_options
[] = {
148 { "control-port", 1, 0, 'C', },
149 { "data-port", 1, 0, 'D', },
150 { "live-port", 1, 0, 'L', },
151 { "daemonize", 0, 0, 'd', },
152 { "background", 0, 0, 'b', },
153 { "group", 1, 0, 'g', },
154 { "help", 0, 0, 'h', },
155 { "output", 1, 0, 'o', },
156 { "verbose", 0, 0, 'v', },
157 { "config", 1, 0, 'f' },
161 static const char *config_ignore_options
[] = { "help", "config" };
164 * usage function on stderr
169 fprintf(stderr
, "Usage: %s OPTIONS\n\nOptions:\n", progname
);
170 fprintf(stderr
, " -h, --help Display this usage.\n");
171 fprintf(stderr
, " -d, --daemonize Start as a daemon.\n");
172 fprintf(stderr
, " -b, --background Start as a daemon, keeping console open.\n");
173 fprintf(stderr
, " -C, --control-port URL Control port listening.\n");
174 fprintf(stderr
, " -D, --data-port URL Data port listening.\n");
175 fprintf(stderr
, " -L, --live-port URL Live view port listening.\n");
176 fprintf(stderr
, " -o, --output PATH Output path for traces. Must use an absolute path.\n");
177 fprintf(stderr
, " -v, --verbose Verbose mode. Activate DBG() macro.\n");
178 fprintf(stderr
, " -g, --group NAME Specify the tracing group name. (default: tracing)\n");
179 fprintf(stderr
, " -f --config Load daemon configuration file\n");
183 * Take an option from the getopt output and set it in the right variable to be
186 * Return 0 on success else a negative value.
189 int set_option(int opt
, const char *arg
, const char *optname
)
195 fprintf(stderr
, "option %s", optname
);
197 fprintf(stderr
, " with arg %s\n", arg
);
201 if (lttng_is_setuid_setgid()) {
202 WARN("Getting '%s' argument from setuid/setgid binary refused for security reasons.",
203 "-C, --control-port");
205 ret
= uri_parse(arg
, &control_uri
);
207 ERR("Invalid control URI specified");
210 if (control_uri
->port
== 0) {
211 control_uri
->port
= DEFAULT_NETWORK_CONTROL_PORT
;
216 if (lttng_is_setuid_setgid()) {
217 WARN("Getting '%s' argument from setuid/setgid binary refused for security reasons.",
220 ret
= uri_parse(arg
, &data_uri
);
222 ERR("Invalid data URI specified");
225 if (data_uri
->port
== 0) {
226 data_uri
->port
= DEFAULT_NETWORK_DATA_PORT
;
231 if (lttng_is_setuid_setgid()) {
232 WARN("Getting '%s' argument from setuid/setgid binary refused for security reasons.",
235 ret
= uri_parse(arg
, &live_uri
);
237 ERR("Invalid live URI specified");
240 if (live_uri
->port
== 0) {
241 live_uri
->port
= DEFAULT_NETWORK_VIEWER_PORT
;
252 if (lttng_is_setuid_setgid()) {
253 WARN("Getting '%s' argument from setuid/setgid binary refused for security reasons.",
256 tracing_group_name
= strdup(arg
);
257 if (tracing_group_name
== NULL
) {
262 tracing_group_name_override
= 1;
269 if (lttng_is_setuid_setgid()) {
270 WARN("Getting '%s' argument from setuid/setgid binary refused for security reasons.",
273 ret
= asprintf(&opt_output_path
, "%s", arg
);
276 PERROR("asprintf opt_output_path");
282 /* Verbose level can increase using multiple -v */
284 lttng_opt_verbose
= config_parse_value(arg
);
286 /* Only 3 level of verbosity (-vvv). */
287 if (lttng_opt_verbose
< 3) {
288 lttng_opt_verbose
+= 1;
293 /* Unknown option or other error.
294 * Error is printed by getopt, just return */
307 * config_entry_handler_cb used to handle options read from a config file.
308 * See config_entry_handler_cb comment in common/config/config.h for the
309 * return value conventions.
312 int config_entry_handler(const struct config_entry
*entry
, void *unused
)
316 if (!entry
|| !entry
->name
|| !entry
->value
) {
321 /* Check if the option is to be ignored */
322 for (i
= 0; i
< sizeof(config_ignore_options
) / sizeof(char *); i
++) {
323 if (!strcmp(entry
->name
, config_ignore_options
[i
])) {
328 for (i
= 0; i
< (sizeof(long_options
) / sizeof(struct option
)) - 1; i
++) {
329 /* Ignore if entry name is not fully matched. */
330 if (strcmp(entry
->name
, long_options
[i
].name
)) {
335 * If the option takes no argument on the command line, we have to
336 * check if the value is "true". We support non-zero numeric values,
339 if (!long_options
[i
].has_arg
) {
340 ret
= config_parse_value(entry
->value
);
343 WARN("Invalid configuration value \"%s\" for option %s",
344 entry
->value
, entry
->name
);
346 /* False, skip boolean config option. */
351 ret
= set_option(long_options
[i
].val
, entry
->value
, entry
->name
);
355 WARN("Unrecognized option \"%s\" in daemon configuration file.",
363 int set_options(int argc
, char **argv
)
365 int c
, ret
= 0, option_index
= 0, retval
= 0;
366 int orig_optopt
= optopt
, orig_optind
= optind
;
367 char *default_address
, *optstring
;
368 const char *config_path
= NULL
;
370 optstring
= utils_generate_optstring(long_options
,
371 sizeof(long_options
) / sizeof(struct option
));
377 /* Check for the --config option */
379 while ((c
= getopt_long(argc
, argv
, optstring
, long_options
,
380 &option_index
)) != -1) {
384 } else if (c
!= 'f') {
388 if (lttng_is_setuid_setgid()) {
389 WARN("Getting '%s' argument from setuid/setgid binary refused for security reasons.",
392 config_path
= utils_expand_path(optarg
);
394 ERR("Failed to resolve path: %s", optarg
);
399 ret
= config_get_section_entries(config_path
, config_section_name
,
400 config_entry_handler
, NULL
);
403 ERR("Invalid configuration option at line %i", ret
);
409 /* Reset getopt's global state */
410 optopt
= orig_optopt
;
411 optind
= orig_optind
;
413 c
= getopt_long(argc
, argv
, optstring
, long_options
, &option_index
);
418 ret
= set_option(c
, optarg
, long_options
[option_index
].name
);
425 /* assign default values */
426 if (control_uri
== NULL
) {
427 ret
= asprintf(&default_address
,
428 "tcp://" DEFAULT_NETWORK_CONTROL_BIND_ADDRESS
":%d",
429 DEFAULT_NETWORK_CONTROL_PORT
);
431 PERROR("asprintf default data address");
436 ret
= uri_parse(default_address
, &control_uri
);
437 free(default_address
);
439 ERR("Invalid control URI specified");
444 if (data_uri
== NULL
) {
445 ret
= asprintf(&default_address
,
446 "tcp://" DEFAULT_NETWORK_DATA_BIND_ADDRESS
":%d",
447 DEFAULT_NETWORK_DATA_PORT
);
449 PERROR("asprintf default data address");
454 ret
= uri_parse(default_address
, &data_uri
);
455 free(default_address
);
457 ERR("Invalid data URI specified");
462 if (live_uri
== NULL
) {
463 ret
= asprintf(&default_address
,
464 "tcp://" DEFAULT_NETWORK_VIEWER_BIND_ADDRESS
":%d",
465 DEFAULT_NETWORK_VIEWER_PORT
);
467 PERROR("asprintf default viewer control address");
472 ret
= uri_parse(default_address
, &live_uri
);
473 free(default_address
);
475 ERR("Invalid viewer control URI specified");
490 void relayd_cleanup(struct relay_local_data
*relay_ctx
)
494 if (viewer_streams_ht
)
495 lttng_ht_destroy(viewer_streams_ht
);
496 if (relay_streams_ht
)
497 lttng_ht_destroy(relay_streams_ht
);
498 if (relay_ctx
&& relay_ctx
->sessions_ht
)
499 lttng_ht_destroy(relay_ctx
->sessions_ht
);
502 /* free the dynamically allocated opt_output_path */
503 free(opt_output_path
);
505 /* Close thread quit pipes */
506 utils_close_pipe(thread_quit_pipe
);
508 uri_free(control_uri
);
510 /* Live URI is freed in the live thread. */
512 if (tracing_group_name_override
) {
513 free((void *) tracing_group_name
);
518 * Write to writable pipe used to notify a thread.
521 int notify_thread_pipe(int wpipe
)
525 ret
= lttng_write(wpipe
, "!", 1);
527 PERROR("write poll pipe");
536 int notify_health_quit_pipe(int *pipe
)
540 ret
= lttng_write(pipe
[1], "4", 1);
542 PERROR("write relay health quit");
551 * Stop all relayd and relayd-live threads.
553 int lttng_relay_stop_threads(void)
557 /* Stopping all threads */
558 DBG("Terminating all threads");
559 if (notify_thread_pipe(thread_quit_pipe
[1])) {
560 ERR("write error on thread quit pipe");
564 if (notify_health_quit_pipe(health_quit_pipe
)) {
565 ERR("write error on health quit pipe");
568 /* Dispatch thread */
569 CMM_STORE_SHARED(dispatch_thread_exit
, 1);
570 futex_nto1_wake(&relay_conn_queue
.futex
);
572 if (relayd_live_stop()) {
573 ERR("Error stopping live threads");
580 * Signal handler for the daemon
582 * Simply stop all worker threads, leaving main() return gracefully after
583 * joining all threads and calling cleanup().
586 void sighandler(int sig
)
590 DBG("SIGPIPE caught");
593 DBG("SIGINT caught");
594 if (lttng_relay_stop_threads()) {
595 ERR("Error stopping threads");
599 DBG("SIGTERM caught");
600 if (lttng_relay_stop_threads()) {
601 ERR("Error stopping threads");
605 CMM_STORE_SHARED(recv_child_signal
, 1);
613 * Setup signal handler for :
614 * SIGINT, SIGTERM, SIGPIPE
617 int set_signal_handler(void)
623 if ((ret
= sigemptyset(&sigset
)) < 0) {
624 PERROR("sigemptyset");
628 sa
.sa_handler
= sighandler
;
631 if ((ret
= sigaction(SIGTERM
, &sa
, NULL
)) < 0) {
636 if ((ret
= sigaction(SIGINT
, &sa
, NULL
)) < 0) {
641 if ((ret
= sigaction(SIGPIPE
, &sa
, NULL
)) < 0) {
646 if ((ret
= sigaction(SIGUSR1
, &sa
, NULL
)) < 0) {
651 DBG("Signal handler set for SIGTERM, SIGUSR1, SIGPIPE and SIGINT");
656 void lttng_relay_notify_ready(void)
658 /* Notify the parent of the fork() process that we are ready. */
659 if (opt_daemon
|| opt_background
) {
660 if (uatomic_sub_return(<tng_relay_ready
, 1) == 0) {
661 kill(child_ppid
, SIGUSR1
);
667 * Init thread quit pipe.
669 * Return -1 on error or 0 if all pipes are created.
672 int init_thread_quit_pipe(void)
676 ret
= utils_create_pipe_cloexec(thread_quit_pipe
);
682 * Create a poll set with O_CLOEXEC and add the thread quit pipe to the set.
685 int create_thread_poll_set(struct lttng_poll_event
*events
, int size
)
689 if (events
== NULL
|| size
== 0) {
694 ret
= lttng_poll_create(events
, size
, LTTNG_CLOEXEC
);
700 ret
= lttng_poll_add(events
, thread_quit_pipe
[0], LPOLLIN
| LPOLLERR
);
712 * Check if the thread quit pipe was triggered.
714 * Return 1 if it was triggered else 0;
717 int check_thread_quit_pipe(int fd
, uint32_t events
)
719 if (fd
== thread_quit_pipe
[0] && (events
& LPOLLIN
)) {
727 * Create and init socket from uri.
730 struct lttcomm_sock
*relay_init_sock(struct lttng_uri
*uri
)
733 struct lttcomm_sock
*sock
= NULL
;
735 sock
= lttcomm_alloc_sock_from_uri(uri
);
737 ERR("Allocating socket");
741 ret
= lttcomm_create_sock(sock
);
745 DBG("Listening on sock %d", sock
->fd
);
747 ret
= sock
->ops
->bind(sock
);
752 ret
= sock
->ops
->listen(sock
, -1);
762 lttcomm_destroy_sock(sock
);
768 * Return nonzero if stream needs to be closed.
771 int close_stream_check(struct relay_stream
*stream
)
773 if (stream
->close_flag
&& stream
->prev_seq
== stream
->last_net_seq_num
) {
775 * We are about to close the stream so set the data pending flag to 1
776 * which will make the end data pending command skip the stream which
777 * is now closed and ready. Note that after proceeding to a file close,
778 * the written file is ready for reading.
780 stream
->data_pending_check_done
= 1;
786 static void try_close_stream(struct relay_session
*session
,
787 struct relay_stream
*stream
)
790 struct ctf_trace
*ctf_trace
;
795 if (!close_stream_check(stream
)) {
796 /* Can't close it, not ready for that. */
800 ctf_trace
= ctf_trace_find_by_path(session
->ctf_traces_ht
,
804 pthread_mutex_lock(&session
->viewer_ready_lock
);
805 ctf_trace
->invalid_flag
= 1;
806 pthread_mutex_unlock(&session
->viewer_ready_lock
);
808 ret
= stream_close(session
, stream
);
809 if (ret
|| session
->snapshot
) {
810 /* Already close thus the ctf trace is being or has been destroyed. */
814 ctf_trace_try_destroy(session
, ctf_trace
);
821 * This thread manages the listening for new connections on the network
824 void *relay_thread_listener(void *data
)
826 int i
, ret
, pollfd
, err
= -1;
827 uint32_t revents
, nb_fd
;
828 struct lttng_poll_event events
;
829 struct lttcomm_sock
*control_sock
, *data_sock
;
831 DBG("[thread] Relay listener started");
833 health_register(health_relayd
, HEALTH_RELAYD_TYPE_LISTENER
);
835 health_code_update();
837 control_sock
= relay_init_sock(control_uri
);
839 goto error_sock_control
;
842 data_sock
= relay_init_sock(data_uri
);
844 goto error_sock_relay
;
848 * Pass 3 as size here for the thread quit pipe, control and data socket.
850 ret
= create_thread_poll_set(&events
, 3);
852 goto error_create_poll
;
855 /* Add the control socket */
856 ret
= lttng_poll_add(&events
, control_sock
->fd
, LPOLLIN
| LPOLLRDHUP
);
861 /* Add the data socket */
862 ret
= lttng_poll_add(&events
, data_sock
->fd
, LPOLLIN
| LPOLLRDHUP
);
867 lttng_relay_notify_ready();
869 if (testpoint(relayd_thread_listener
)) {
870 goto error_testpoint
;
874 health_code_update();
876 DBG("Listener accepting connections");
880 ret
= lttng_poll_wait(&events
, -1);
884 * Restart interrupted system call.
886 if (errno
== EINTR
) {
894 DBG("Relay new connection received");
895 for (i
= 0; i
< nb_fd
; i
++) {
896 health_code_update();
898 /* Fetch once the poll data */
899 revents
= LTTNG_POLL_GETEV(&events
, i
);
900 pollfd
= LTTNG_POLL_GETFD(&events
, i
);
903 /* No activity for this FD (poll implementation). */
907 /* Thread quit pipe has been closed. Killing thread. */
908 ret
= check_thread_quit_pipe(pollfd
, revents
);
914 if (revents
& (LPOLLERR
| LPOLLHUP
| LPOLLRDHUP
)) {
915 ERR("socket poll error");
917 } else if (revents
& LPOLLIN
) {
919 * Get allocated in this thread, enqueued to a global queue,
920 * dequeued and freed in the worker thread.
923 struct relay_connection
*new_conn
;
924 struct lttcomm_sock
*newsock
;
926 new_conn
= connection_create();
931 if (pollfd
== data_sock
->fd
) {
932 new_conn
->type
= RELAY_DATA
;
933 newsock
= data_sock
->ops
->accept(data_sock
);
934 DBG("Relay data connection accepted, socket %d",
937 assert(pollfd
== control_sock
->fd
);
938 new_conn
->type
= RELAY_CONTROL
;
939 newsock
= control_sock
->ops
->accept(control_sock
);
940 DBG("Relay control connection accepted, socket %d",
944 PERROR("accepting sock");
945 connection_free(new_conn
);
949 ret
= setsockopt(newsock
->fd
, SOL_SOCKET
, SO_REUSEADDR
, &val
,
952 PERROR("setsockopt inet");
953 lttcomm_destroy_sock(newsock
);
954 connection_free(new_conn
);
957 new_conn
->sock
= newsock
;
959 /* Enqueue request for the dispatcher thread. */
960 cds_wfcq_enqueue(&relay_conn_queue
.head
, &relay_conn_queue
.tail
,
964 * Wake the dispatch queue futex. Implicit memory barrier with
965 * the exchange in cds_wfcq_enqueue.
967 futex_nto1_wake(&relay_conn_queue
.futex
);
976 lttng_poll_clean(&events
);
978 if (data_sock
->fd
>= 0) {
979 ret
= data_sock
->ops
->close(data_sock
);
984 lttcomm_destroy_sock(data_sock
);
986 if (control_sock
->fd
>= 0) {
987 ret
= control_sock
->ops
->close(control_sock
);
992 lttcomm_destroy_sock(control_sock
);
996 ERR("Health error occurred in %s", __func__
);
998 health_unregister(health_relayd
);
999 DBG("Relay listener thread cleanup complete");
1000 lttng_relay_stop_threads();
1005 * This thread manages the dispatching of the requests to worker threads
1008 void *relay_thread_dispatcher(void *data
)
1012 struct cds_wfcq_node
*node
;
1013 struct relay_connection
*new_conn
= NULL
;
1015 DBG("[thread] Relay dispatcher started");
1017 health_register(health_relayd
, HEALTH_RELAYD_TYPE_DISPATCHER
);
1019 if (testpoint(relayd_thread_dispatcher
)) {
1020 goto error_testpoint
;
1023 health_code_update();
1025 while (!CMM_LOAD_SHARED(dispatch_thread_exit
)) {
1026 health_code_update();
1028 /* Atomically prepare the queue futex */
1029 futex_nto1_prepare(&relay_conn_queue
.futex
);
1032 health_code_update();
1034 /* Dequeue commands */
1035 node
= cds_wfcq_dequeue_blocking(&relay_conn_queue
.head
,
1036 &relay_conn_queue
.tail
);
1038 DBG("Woken up but nothing in the relay command queue");
1039 /* Continue thread execution */
1042 new_conn
= caa_container_of(node
, struct relay_connection
, qnode
);
1044 DBG("Dispatching request waiting on sock %d", new_conn
->sock
->fd
);
1047 * Inform worker thread of the new request. This call is blocking
1048 * so we can be assured that the data will be read at some point in
1049 * time or wait to the end of the world :)
1051 ret
= lttng_write(relay_conn_pipe
[1], &new_conn
, sizeof(new_conn
));
1053 PERROR("write connection pipe");
1054 connection_destroy(new_conn
);
1057 } while (node
!= NULL
);
1059 /* Futex wait on queue. Blocking call on futex() */
1060 health_poll_entry();
1061 futex_nto1_wait(&relay_conn_queue
.futex
);
1065 /* Normal exit, no error */
1072 ERR("Health error occurred in %s", __func__
);
1074 health_unregister(health_relayd
);
1075 DBG("Dispatch thread dying");
1076 lttng_relay_stop_threads();
1080 static void try_close_streams(struct relay_session
*session
)
1082 struct ctf_trace
*ctf_trace
;
1083 struct lttng_ht_iter iter
;
1087 pthread_mutex_lock(&session
->viewer_ready_lock
);
1089 cds_lfht_for_each_entry(session
->ctf_traces_ht
->ht
, &iter
.iter
, ctf_trace
,
1091 struct relay_stream
*stream
;
1093 /* Close streams. */
1094 cds_list_for_each_entry(stream
, &ctf_trace
->stream_list
, trace_list
) {
1095 stream_close(session
, stream
);
1098 ctf_trace
->invalid_flag
= 1;
1099 ctf_trace_try_destroy(session
, ctf_trace
);
1102 pthread_mutex_unlock(&session
->viewer_ready_lock
);
1106 * Try to destroy a session within a connection.
1108 static void destroy_session(struct relay_session
*session
,
1109 struct lttng_ht
*sessions_ht
)
1112 assert(sessions_ht
);
1114 /* Indicate that this session can be destroyed from now on. */
1115 session
->close_flag
= 1;
1117 try_close_streams(session
);
1120 * This will try to delete and destroy the session if no viewer is attached
1121 * to it meaning the refcount is down to zero.
1123 session_try_destroy(sessions_ht
, session
);
1127 * Copy index data from the control port to a given index object.
1129 static void copy_index_control_data(struct relay_index
*index
,
1130 struct lttcomm_relayd_index
*data
)
1136 * The index on disk is encoded in big endian, so we don't need to convert
1137 * the data received on the network. The data_offset value is NEVER
1138 * modified here and is updated by the data thread.
1140 index
->index_data
.packet_size
= data
->packet_size
;
1141 index
->index_data
.content_size
= data
->content_size
;
1142 index
->index_data
.timestamp_begin
= data
->timestamp_begin
;
1143 index
->index_data
.timestamp_end
= data
->timestamp_end
;
1144 index
->index_data
.events_discarded
= data
->events_discarded
;
1145 index
->index_data
.stream_id
= data
->stream_id
;
1149 * Handle the RELAYD_CREATE_SESSION command.
1151 * On success, send back the session id or else return a negative value.
1154 int relay_create_session(struct lttcomm_relayd_hdr
*recv_hdr
,
1155 struct relay_connection
*conn
)
1157 int ret
= 0, send_ret
;
1158 struct relay_session
*session
;
1159 struct lttcomm_relayd_status_session reply
;
1164 memset(&reply
, 0, sizeof(reply
));
1166 session
= session_create();
1171 session
->minor
= conn
->minor
;
1172 session
->major
= conn
->major
;
1173 conn
->session_id
= session
->id
;
1174 conn
->session
= session
;
1176 reply
.session_id
= htobe64(session
->id
);
1178 switch (conn
->minor
) {
1183 case 4: /* LTTng sessiond 2.4 */
1185 ret
= cmd_create_session_2_4(conn
, session
);
1188 lttng_ht_add_unique_u64(conn
->sessions_ht
, &session
->session_n
);
1189 DBG("Created session %" PRIu64
, session
->id
);
1193 reply
.ret_code
= htobe32(LTTNG_ERR_FATAL
);
1195 reply
.ret_code
= htobe32(LTTNG_OK
);
1198 send_ret
= conn
->sock
->ops
->sendmsg(conn
->sock
, &reply
, sizeof(reply
), 0);
1200 ERR("Relayd sending session id");
1208 * When we have received all the streams and the metadata for a channel,
1209 * we make them visible to the viewer threads.
1212 void set_viewer_ready_flag(struct relay_connection
*conn
)
1214 struct relay_stream
*stream
, *tmp_stream
;
1216 pthread_mutex_lock(&conn
->session
->viewer_ready_lock
);
1217 cds_list_for_each_entry_safe(stream
, tmp_stream
, &conn
->recv_head
,
1219 stream
->viewer_ready
= 1;
1220 cds_list_del(&stream
->recv_list
);
1222 pthread_mutex_unlock(&conn
->session
->viewer_ready_lock
);
1227 * Add a recv handle node to the connection recv list with the given stream
1228 * handle. A new node is allocated thus must be freed when the node is deleted
1231 static void queue_stream(struct relay_stream
*stream
,
1232 struct relay_connection
*conn
)
1237 cds_list_add(&stream
->recv_list
, &conn
->recv_head
);
1241 * relay_add_stream: allocate a new stream for a session
1244 int relay_add_stream(struct lttcomm_relayd_hdr
*recv_hdr
,
1245 struct relay_connection
*conn
)
1248 struct relay_session
*session
= conn
->session
;
1249 struct relay_stream
*stream
= NULL
;
1250 struct lttcomm_relayd_status_stream reply
;
1251 struct ctf_trace
*trace
= NULL
;
1253 if (!session
|| conn
->version_check_done
== 0) {
1254 ERR("Trying to add a stream before version check");
1256 goto end_no_session
;
1259 stream
= zmalloc(sizeof(struct relay_stream
));
1260 if (stream
== NULL
) {
1261 PERROR("relay stream zmalloc");
1263 goto end_no_session
;
1266 switch (conn
->minor
) {
1267 case 1: /* LTTng sessiond 2.1 */
1268 ret
= cmd_recv_stream_2_1(conn
, stream
);
1270 case 2: /* LTTng sessiond 2.2 */
1272 ret
= cmd_recv_stream_2_2(conn
, stream
);
1276 goto err_free_stream
;
1279 stream
->stream_handle
= ++last_relay_stream_id
;
1280 stream
->prev_seq
= -1ULL;
1281 stream
->session_id
= session
->id
;
1282 stream
->index_fd
= -1;
1283 stream
->read_index_fd
= -1;
1284 stream
->ctf_stream_id
= -1ULL;
1285 lttng_ht_node_init_u64(&stream
->node
, stream
->stream_handle
);
1286 pthread_mutex_init(&stream
->lock
, NULL
);
1288 ret
= utils_mkdir_recursive(stream
->path_name
, S_IRWXU
| S_IRWXG
,
1291 ERR("relay creating output directory");
1292 goto err_free_stream
;
1296 * No need to use run_as API here because whatever we receives, the relayd
1297 * uses its own credentials for the stream files.
1299 ret
= utils_create_stream_file(stream
->path_name
, stream
->channel_name
,
1300 stream
->tracefile_size
, 0, relayd_uid
, relayd_gid
, NULL
);
1302 ERR("Create output file");
1303 goto err_free_stream
;
1306 if (stream
->tracefile_size
) {
1307 DBG("Tracefile %s/%s_0 created", stream
->path_name
, stream
->channel_name
);
1309 DBG("Tracefile %s/%s created", stream
->path_name
, stream
->channel_name
);
1312 /* Protect access to "trace" */
1314 trace
= ctf_trace_find_by_path(session
->ctf_traces_ht
, stream
->path_name
);
1316 trace
= ctf_trace_create(stream
->path_name
);
1321 ctf_trace_add(session
->ctf_traces_ht
, trace
);
1323 ctf_trace_get_ref(trace
);
1325 if (!strncmp(stream
->channel_name
, DEFAULT_METADATA_NAME
, NAME_MAX
)) {
1326 stream
->metadata_flag
= 1;
1327 /* Assign quick reference to the metadata stream in the trace. */
1328 trace
->metadata_stream
= stream
;
1332 * Add the stream in the recv list of the connection. Once the end stream
1333 * message is received, this list is emptied and streams are set with the
1334 * viewer ready flag.
1336 queue_stream(stream
, conn
);
1339 * Both in the ctf_trace object and the global stream ht since the data
1340 * side of the relayd does not have the concept of session.
1342 * rcu_read_lock() is kept to protect the stream which is now part of
1343 * the relay_streams_ht.
1345 lttng_ht_add_unique_u64(relay_streams_ht
, &stream
->node
);
1346 cds_list_add_tail(&stream
->trace_list
, &trace
->stream_list
);
1348 session
->stream_count
++;
1350 DBG("Relay new stream added %s with ID %" PRIu64
, stream
->channel_name
,
1351 stream
->stream_handle
);
1354 memset(&reply
, 0, sizeof(reply
));
1355 reply
.handle
= htobe64(stream
->stream_handle
);
1356 /* send the session id to the client or a negative return code on error */
1358 reply
.ret_code
= htobe32(LTTNG_ERR_UNK
);
1359 /* stream was not properly added to the ht, so free it */
1360 stream_destroy(stream
);
1362 reply
.ret_code
= htobe32(LTTNG_OK
);
1365 send_ret
= conn
->sock
->ops
->sendmsg(conn
->sock
, &reply
,
1366 sizeof(struct lttcomm_relayd_status_stream
), 0);
1368 ERR("Relay sending stream id");
1372 * rcu_read_lock() was held to protect either "trace" OR the "stream" at
1383 stream_destroy(stream
);
1388 * relay_close_stream: close a specific stream
1391 int relay_close_stream(struct lttcomm_relayd_hdr
*recv_hdr
,
1392 struct relay_connection
*conn
)
1395 struct relay_session
*session
= conn
->session
;
1396 struct lttcomm_relayd_close_stream stream_info
;
1397 struct lttcomm_relayd_generic_reply reply
;
1398 struct relay_stream
*stream
;
1400 DBG("Close stream received");
1402 if (!session
|| conn
->version_check_done
== 0) {
1403 ERR("Trying to close a stream before version check");
1405 goto end_no_session
;
1408 ret
= conn
->sock
->ops
->recvmsg(conn
->sock
, &stream_info
,
1409 sizeof(struct lttcomm_relayd_close_stream
), 0);
1410 if (ret
< sizeof(struct lttcomm_relayd_close_stream
)) {
1412 /* Orderly shutdown. Not necessary to print an error. */
1413 DBG("Socket %d did an orderly shutdown", conn
->sock
->fd
);
1415 ERR("Relay didn't receive valid add_stream struct size : %d", ret
);
1418 goto end_no_session
;
1422 stream
= stream_find_by_id(relay_streams_ht
,
1423 be64toh(stream_info
.stream_id
));
1429 stream
->last_net_seq_num
= be64toh(stream_info
.last_net_seq_num
);
1430 stream
->close_flag
= 1;
1431 session
->stream_count
--;
1433 /* Check if we can close it or else the data will do it. */
1434 try_close_stream(session
, stream
);
1439 memset(&reply
, 0, sizeof(reply
));
1441 reply
.ret_code
= htobe32(LTTNG_ERR_UNK
);
1443 reply
.ret_code
= htobe32(LTTNG_OK
);
1445 send_ret
= conn
->sock
->ops
->sendmsg(conn
->sock
, &reply
,
1446 sizeof(struct lttcomm_relayd_generic_reply
), 0);
1448 ERR("Relay sending stream id");
1457 * relay_unknown_command: send -1 if received unknown command
1460 void relay_unknown_command(struct relay_connection
*conn
)
1462 struct lttcomm_relayd_generic_reply reply
;
1465 memset(&reply
, 0, sizeof(reply
));
1466 reply
.ret_code
= htobe32(LTTNG_ERR_UNK
);
1467 ret
= conn
->sock
->ops
->sendmsg(conn
->sock
, &reply
,
1468 sizeof(struct lttcomm_relayd_generic_reply
), 0);
1470 ERR("Relay sending unknown command");
1475 * relay_start: send an acknowledgment to the client to tell if we are
1476 * ready to receive data. We are ready if a session is established.
1479 int relay_start(struct lttcomm_relayd_hdr
*recv_hdr
,
1480 struct relay_connection
*conn
)
1482 int ret
= htobe32(LTTNG_OK
);
1483 struct lttcomm_relayd_generic_reply reply
;
1484 struct relay_session
*session
= conn
->session
;
1487 DBG("Trying to start the streaming without a session established");
1488 ret
= htobe32(LTTNG_ERR_UNK
);
1491 memset(&reply
, 0, sizeof(reply
));
1492 reply
.ret_code
= ret
;
1493 ret
= conn
->sock
->ops
->sendmsg(conn
->sock
, &reply
,
1494 sizeof(struct lttcomm_relayd_generic_reply
), 0);
1496 ERR("Relay sending start ack");
1503 * Append padding to the file pointed by the file descriptor fd.
1505 static int write_padding_to_file(int fd
, uint32_t size
)
1514 zeros
= zmalloc(size
);
1515 if (zeros
== NULL
) {
1516 PERROR("zmalloc zeros for padding");
1521 ret
= lttng_write(fd
, zeros
, size
);
1523 PERROR("write padding to file");
1533 * relay_recv_metadata: receive the metada for the session.
1536 int relay_recv_metadata(struct lttcomm_relayd_hdr
*recv_hdr
,
1537 struct relay_connection
*conn
)
1539 int ret
= htobe32(LTTNG_OK
);
1541 struct relay_session
*session
= conn
->session
;
1542 struct lttcomm_relayd_metadata_payload
*metadata_struct
;
1543 struct relay_stream
*metadata_stream
;
1544 uint64_t data_size
, payload_size
;
1545 struct ctf_trace
*ctf_trace
;
1548 ERR("Metadata sent before version check");
1553 data_size
= payload_size
= be64toh(recv_hdr
->data_size
);
1554 if (data_size
< sizeof(struct lttcomm_relayd_metadata_payload
)) {
1555 ERR("Incorrect data size");
1559 payload_size
-= sizeof(struct lttcomm_relayd_metadata_payload
);
1561 if (data_buffer_size
< data_size
) {
1562 /* In case the realloc fails, we can free the memory */
1565 tmp_data_ptr
= realloc(data_buffer
, data_size
);
1566 if (!tmp_data_ptr
) {
1567 ERR("Allocating data buffer");
1572 data_buffer
= tmp_data_ptr
;
1573 data_buffer_size
= data_size
;
1575 memset(data_buffer
, 0, data_size
);
1576 DBG2("Relay receiving metadata, waiting for %" PRIu64
" bytes", data_size
);
1577 ret
= conn
->sock
->ops
->recvmsg(conn
->sock
, data_buffer
, data_size
, 0);
1578 if (ret
< 0 || ret
!= data_size
) {
1580 /* Orderly shutdown. Not necessary to print an error. */
1581 DBG("Socket %d did an orderly shutdown", conn
->sock
->fd
);
1583 ERR("Relay didn't receive the whole metadata");
1588 metadata_struct
= (struct lttcomm_relayd_metadata_payload
*) data_buffer
;
1591 metadata_stream
= stream_find_by_id(relay_streams_ht
,
1592 be64toh(metadata_struct
->stream_id
));
1593 if (!metadata_stream
) {
1598 size_ret
= lttng_write(metadata_stream
->fd
, metadata_struct
->payload
,
1600 if (size_ret
< payload_size
) {
1601 ERR("Relay error writing metadata on file");
1606 ret
= write_padding_to_file(metadata_stream
->fd
,
1607 be32toh(metadata_struct
->padding_size
));
1612 ctf_trace
= ctf_trace_find_by_path(session
->ctf_traces_ht
,
1613 metadata_stream
->path_name
);
1615 ctf_trace
->metadata_received
+=
1616 payload_size
+ be32toh(metadata_struct
->padding_size
);
1618 DBG2("Relay metadata written");
1627 * relay_send_version: send relayd version number
1630 int relay_send_version(struct lttcomm_relayd_hdr
*recv_hdr
,
1631 struct relay_connection
*conn
)
1634 struct lttcomm_relayd_version reply
, msg
;
1638 conn
->version_check_done
= 1;
1640 /* Get version from the other side. */
1641 ret
= conn
->sock
->ops
->recvmsg(conn
->sock
, &msg
, sizeof(msg
), 0);
1642 if (ret
< 0 || ret
!= sizeof(msg
)) {
1644 /* Orderly shutdown. Not necessary to print an error. */
1645 DBG("Socket %d did an orderly shutdown", conn
->sock
->fd
);
1647 ERR("Relay failed to receive the version values.");
1653 memset(&reply
, 0, sizeof(reply
));
1654 reply
.major
= RELAYD_VERSION_COMM_MAJOR
;
1655 reply
.minor
= RELAYD_VERSION_COMM_MINOR
;
1657 /* Major versions must be the same */
1658 if (reply
.major
!= be32toh(msg
.major
)) {
1659 DBG("Incompatible major versions (%u vs %u), deleting session",
1660 reply
.major
, be32toh(msg
.major
));
1661 destroy_session(conn
->session
, conn
->sessions_ht
);
1666 conn
->major
= reply
.major
;
1667 /* We adapt to the lowest compatible version */
1668 if (reply
.minor
<= be32toh(msg
.minor
)) {
1669 conn
->minor
= reply
.minor
;
1671 conn
->minor
= be32toh(msg
.minor
);
1674 reply
.major
= htobe32(reply
.major
);
1675 reply
.minor
= htobe32(reply
.minor
);
1676 ret
= conn
->sock
->ops
->sendmsg(conn
->sock
, &reply
,
1677 sizeof(struct lttcomm_relayd_version
), 0);
1679 ERR("Relay sending version");
1682 DBG("Version check done using protocol %u.%u", conn
->major
,
1690 * Check for data pending for a given stream id from the session daemon.
1693 int relay_data_pending(struct lttcomm_relayd_hdr
*recv_hdr
,
1694 struct relay_connection
*conn
)
1696 struct relay_session
*session
= conn
->session
;
1697 struct lttcomm_relayd_data_pending msg
;
1698 struct lttcomm_relayd_generic_reply reply
;
1699 struct relay_stream
*stream
;
1701 uint64_t last_net_seq_num
, stream_id
;
1703 DBG("Data pending command received");
1705 if (!session
|| conn
->version_check_done
== 0) {
1706 ERR("Trying to check for data before version check");
1708 goto end_no_session
;
1711 ret
= conn
->sock
->ops
->recvmsg(conn
->sock
, &msg
, sizeof(msg
), 0);
1712 if (ret
< sizeof(msg
)) {
1714 /* Orderly shutdown. Not necessary to print an error. */
1715 DBG("Socket %d did an orderly shutdown", conn
->sock
->fd
);
1717 ERR("Relay didn't receive valid data_pending struct size : %d",
1721 goto end_no_session
;
1724 stream_id
= be64toh(msg
.stream_id
);
1725 last_net_seq_num
= be64toh(msg
.last_net_seq_num
);
1728 stream
= stream_find_by_id(relay_streams_ht
, stream_id
);
1729 if (stream
== NULL
) {
1734 DBG("Data pending for stream id %" PRIu64
" prev_seq %" PRIu64
1735 " and last_seq %" PRIu64
, stream_id
, stream
->prev_seq
,
1738 /* Avoid wrapping issue */
1739 if (((int64_t) (stream
->prev_seq
- last_net_seq_num
)) >= 0) {
1740 /* Data has in fact been written and is NOT pending */
1743 /* Data still being streamed thus pending */
1747 /* Pending check is now done. */
1748 stream
->data_pending_check_done
= 1;
1753 memset(&reply
, 0, sizeof(reply
));
1754 reply
.ret_code
= htobe32(ret
);
1755 ret
= conn
->sock
->ops
->sendmsg(conn
->sock
, &reply
, sizeof(reply
), 0);
1757 ERR("Relay data pending ret code failed");
1765 * Wait for the control socket to reach a quiescent state.
1767 * Note that for now, when receiving this command from the session daemon, this
1768 * means that every subsequent commands or data received on the control socket
1769 * has been handled. So, this is why we simply return OK here.
1772 int relay_quiescent_control(struct lttcomm_relayd_hdr
*recv_hdr
,
1773 struct relay_connection
*conn
)
1777 struct relay_stream
*stream
;
1778 struct lttng_ht_iter iter
;
1779 struct lttcomm_relayd_quiescent_control msg
;
1780 struct lttcomm_relayd_generic_reply reply
;
1782 DBG("Checking quiescent state on control socket");
1784 if (!conn
->session
|| conn
->version_check_done
== 0) {
1785 ERR("Trying to check for data before version check");
1787 goto end_no_session
;
1790 ret
= conn
->sock
->ops
->recvmsg(conn
->sock
, &msg
, sizeof(msg
), 0);
1791 if (ret
< sizeof(msg
)) {
1793 /* Orderly shutdown. Not necessary to print an error. */
1794 DBG("Socket %d did an orderly shutdown", conn
->sock
->fd
);
1796 ERR("Relay didn't receive valid begin data_pending struct size: %d",
1800 goto end_no_session
;
1803 stream_id
= be64toh(msg
.stream_id
);
1806 cds_lfht_for_each_entry(relay_streams_ht
->ht
, &iter
.iter
, stream
,
1808 if (stream
->stream_handle
== stream_id
) {
1809 stream
->data_pending_check_done
= 1;
1810 DBG("Relay quiescent control pending flag set to %" PRIu64
,
1817 memset(&reply
, 0, sizeof(reply
));
1818 reply
.ret_code
= htobe32(LTTNG_OK
);
1819 ret
= conn
->sock
->ops
->sendmsg(conn
->sock
, &reply
, sizeof(reply
), 0);
1821 ERR("Relay data quiescent control ret code failed");
1829 * Initialize a data pending command. This means that a client is about to ask
1830 * for data pending for each stream he/she holds. Simply iterate over all
1831 * streams of a session and set the data_pending_check_done flag.
1833 * This command returns to the client a LTTNG_OK code.
1836 int relay_begin_data_pending(struct lttcomm_relayd_hdr
*recv_hdr
,
1837 struct relay_connection
*conn
)
1840 struct lttng_ht_iter iter
;
1841 struct lttcomm_relayd_begin_data_pending msg
;
1842 struct lttcomm_relayd_generic_reply reply
;
1843 struct relay_stream
*stream
;
1844 uint64_t session_id
;
1849 DBG("Init streams for data pending");
1851 if (!conn
->session
|| conn
->version_check_done
== 0) {
1852 ERR("Trying to check for data before version check");
1854 goto end_no_session
;
1857 ret
= conn
->sock
->ops
->recvmsg(conn
->sock
, &msg
, sizeof(msg
), 0);
1858 if (ret
< sizeof(msg
)) {
1860 /* Orderly shutdown. Not necessary to print an error. */
1861 DBG("Socket %d did an orderly shutdown", conn
->sock
->fd
);
1863 ERR("Relay didn't receive valid begin data_pending struct size: %d",
1867 goto end_no_session
;
1870 session_id
= be64toh(msg
.session_id
);
1873 * Iterate over all streams to set the begin data pending flag. For now, the
1874 * streams are indexed by stream handle so we have to iterate over all
1875 * streams to find the one associated with the right session_id.
1878 cds_lfht_for_each_entry(relay_streams_ht
->ht
, &iter
.iter
, stream
,
1880 if (stream
->session_id
== session_id
) {
1881 stream
->data_pending_check_done
= 0;
1882 DBG("Set begin data pending flag to stream %" PRIu64
,
1883 stream
->stream_handle
);
1888 memset(&reply
, 0, sizeof(reply
));
1889 /* All good, send back reply. */
1890 reply
.ret_code
= htobe32(LTTNG_OK
);
1892 ret
= conn
->sock
->ops
->sendmsg(conn
->sock
, &reply
, sizeof(reply
), 0);
1894 ERR("Relay begin data pending send reply failed");
1902 * End data pending command. This will check, for a given session id, if each
1903 * stream associated with it has its data_pending_check_done flag set. If not,
1904 * this means that the client lost track of the stream but the data is still
1905 * being streamed on our side. In this case, we inform the client that data is
1908 * Return to the client if there is data in flight or not with a ret_code.
1911 int relay_end_data_pending(struct lttcomm_relayd_hdr
*recv_hdr
,
1912 struct relay_connection
*conn
)
1915 struct lttng_ht_iter iter
;
1916 struct lttcomm_relayd_end_data_pending msg
;
1917 struct lttcomm_relayd_generic_reply reply
;
1918 struct relay_stream
*stream
;
1919 uint64_t session_id
;
1920 uint32_t is_data_inflight
= 0;
1925 DBG("End data pending command");
1927 if (!conn
->session
|| conn
->version_check_done
== 0) {
1928 ERR("Trying to check for data before version check");
1930 goto end_no_session
;
1933 ret
= conn
->sock
->ops
->recvmsg(conn
->sock
, &msg
, sizeof(msg
), 0);
1934 if (ret
< sizeof(msg
)) {
1936 /* Orderly shutdown. Not necessary to print an error. */
1937 DBG("Socket %d did an orderly shutdown", conn
->sock
->fd
);
1939 ERR("Relay didn't receive valid end data_pending struct size: %d",
1943 goto end_no_session
;
1946 session_id
= be64toh(msg
.session_id
);
1948 /* Iterate over all streams to see if the begin data pending flag is set. */
1950 cds_lfht_for_each_entry(relay_streams_ht
->ht
, &iter
.iter
, stream
,
1952 if (stream
->session_id
== session_id
&&
1953 !stream
->data_pending_check_done
&& !stream
->terminated_flag
) {
1954 is_data_inflight
= 1;
1955 DBG("Data is still in flight for stream %" PRIu64
,
1956 stream
->stream_handle
);
1962 memset(&reply
, 0, sizeof(reply
));
1963 /* All good, send back reply. */
1964 reply
.ret_code
= htobe32(is_data_inflight
);
1966 ret
= conn
->sock
->ops
->sendmsg(conn
->sock
, &reply
, sizeof(reply
), 0);
1968 ERR("Relay end data pending send reply failed");
1976 * Receive an index for a specific stream.
1978 * Return 0 on success else a negative value.
1981 int relay_recv_index(struct lttcomm_relayd_hdr
*recv_hdr
,
1982 struct relay_connection
*conn
)
1984 int ret
, send_ret
, index_created
= 0;
1985 struct relay_session
*session
= conn
->session
;
1986 struct lttcomm_relayd_index index_info
;
1987 struct relay_index
*index
, *wr_index
= NULL
;
1988 struct lttcomm_relayd_generic_reply reply
;
1989 struct relay_stream
*stream
;
1990 uint64_t net_seq_num
;
1994 DBG("Relay receiving index");
1996 if (!session
|| conn
->version_check_done
== 0) {
1997 ERR("Trying to close a stream before version check");
1999 goto end_no_session
;
2002 ret
= conn
->sock
->ops
->recvmsg(conn
->sock
, &index_info
,
2003 sizeof(index_info
), 0);
2004 if (ret
< sizeof(index_info
)) {
2006 /* Orderly shutdown. Not necessary to print an error. */
2007 DBG("Socket %d did an orderly shutdown", conn
->sock
->fd
);
2009 ERR("Relay didn't receive valid index struct size : %d", ret
);
2012 goto end_no_session
;
2015 net_seq_num
= be64toh(index_info
.net_seq_num
);
2018 stream
= stream_find_by_id(relay_streams_ht
,
2019 be64toh(index_info
.relay_stream_id
));
2022 goto end_rcu_unlock
;
2025 /* Live beacon handling */
2026 if (index_info
.packet_size
== 0) {
2027 DBG("Received live beacon for stream %" PRIu64
, stream
->stream_handle
);
2030 * Only flag a stream inactive when it has already received data
2031 * and no indexes are in flight.
2033 if (stream
->total_index_received
> 0 && stream
->indexes_in_flight
== 0) {
2034 stream
->beacon_ts_end
= be64toh(index_info
.timestamp_end
);
2037 goto end_rcu_unlock
;
2039 stream
->beacon_ts_end
= -1ULL;
2042 index
= relay_index_find(stream
->stream_handle
, net_seq_num
);
2044 /* A successful creation will add the object to the HT. */
2045 index
= relay_index_create(stream
->stream_handle
, net_seq_num
);
2047 goto end_rcu_unlock
;
2050 stream
->indexes_in_flight
++;
2053 copy_index_control_data(index
, &index_info
);
2054 if (stream
->ctf_stream_id
== -1ULL) {
2055 stream
->ctf_stream_id
= be64toh(index_info
.stream_id
);
2058 if (index_created
) {
2060 * Try to add the relay index object to the hash table. If an object
2061 * already exist, destroy back the index created, set the data in this
2062 * object and write it on disk.
2064 relay_index_add(index
, &wr_index
);
2066 copy_index_control_data(wr_index
, &index_info
);
2070 /* The index already exists so write it on disk. */
2074 /* Do we have a writable ready index to write on disk. */
2076 ret
= relay_index_write(wr_index
->fd
, wr_index
);
2078 goto end_rcu_unlock
;
2080 stream
->total_index_received
++;
2081 stream
->indexes_in_flight
--;
2082 assert(stream
->indexes_in_flight
>= 0);
2088 memset(&reply
, 0, sizeof(reply
));
2090 reply
.ret_code
= htobe32(LTTNG_ERR_UNK
);
2092 reply
.ret_code
= htobe32(LTTNG_OK
);
2094 send_ret
= conn
->sock
->ops
->sendmsg(conn
->sock
, &reply
, sizeof(reply
), 0);
2096 ERR("Relay sending close index id reply");
2105 * Receive the streams_sent message.
2107 * Return 0 on success else a negative value.
2110 int relay_streams_sent(struct lttcomm_relayd_hdr
*recv_hdr
,
2111 struct relay_connection
*conn
)
2114 struct lttcomm_relayd_generic_reply reply
;
2118 DBG("Relay receiving streams_sent");
2120 if (!conn
->session
|| conn
->version_check_done
== 0) {
2121 ERR("Trying to close a stream before version check");
2123 goto end_no_session
;
2127 * Flag every pending stream in the connection recv list that they are
2128 * ready to be used by the viewer.
2130 set_viewer_ready_flag(conn
);
2133 * Inform the viewer that there are new streams in the session.
2135 if (conn
->session
->viewer_refcount
) {
2136 uatomic_set(&conn
->session
->new_streams
, 1);
2139 memset(&reply
, 0, sizeof(reply
));
2140 reply
.ret_code
= htobe32(LTTNG_OK
);
2141 send_ret
= conn
->sock
->ops
->sendmsg(conn
->sock
, &reply
, sizeof(reply
), 0);
2143 ERR("Relay sending sent_stream reply");
2155 * Process the commands received on the control socket
2158 int relay_process_control(struct lttcomm_relayd_hdr
*recv_hdr
,
2159 struct relay_connection
*conn
)
2163 switch (be32toh(recv_hdr
->cmd
)) {
2164 case RELAYD_CREATE_SESSION
:
2165 ret
= relay_create_session(recv_hdr
, conn
);
2167 case RELAYD_ADD_STREAM
:
2168 ret
= relay_add_stream(recv_hdr
, conn
);
2170 case RELAYD_START_DATA
:
2171 ret
= relay_start(recv_hdr
, conn
);
2173 case RELAYD_SEND_METADATA
:
2174 ret
= relay_recv_metadata(recv_hdr
, conn
);
2176 case RELAYD_VERSION
:
2177 ret
= relay_send_version(recv_hdr
, conn
);
2179 case RELAYD_CLOSE_STREAM
:
2180 ret
= relay_close_stream(recv_hdr
, conn
);
2182 case RELAYD_DATA_PENDING
:
2183 ret
= relay_data_pending(recv_hdr
, conn
);
2185 case RELAYD_QUIESCENT_CONTROL
:
2186 ret
= relay_quiescent_control(recv_hdr
, conn
);
2188 case RELAYD_BEGIN_DATA_PENDING
:
2189 ret
= relay_begin_data_pending(recv_hdr
, conn
);
2191 case RELAYD_END_DATA_PENDING
:
2192 ret
= relay_end_data_pending(recv_hdr
, conn
);
2194 case RELAYD_SEND_INDEX
:
2195 ret
= relay_recv_index(recv_hdr
, conn
);
2197 case RELAYD_STREAMS_SENT
:
2198 ret
= relay_streams_sent(recv_hdr
, conn
);
2200 case RELAYD_UPDATE_SYNC_INFO
:
2202 ERR("Received unknown command (%u)", be32toh(recv_hdr
->cmd
));
2203 relay_unknown_command(conn
);
2213 * Handle index for a data stream.
2215 * RCU read side lock MUST be acquired.
2217 * Return 0 on success else a negative value.
2219 static int handle_index_data(struct relay_stream
*stream
, uint64_t net_seq_num
,
2222 int ret
= 0, index_created
= 0;
2223 uint64_t stream_id
, data_offset
;
2224 struct relay_index
*index
, *wr_index
= NULL
;
2228 stream_id
= stream
->stream_handle
;
2229 /* Get data offset because we are about to update the index. */
2230 data_offset
= htobe64(stream
->tracefile_size_current
);
2233 * Lookup for an existing index for that stream id/sequence number. If on
2234 * exists, the control thread already received the data for it thus we need
2235 * to write it on disk.
2237 index
= relay_index_find(stream_id
, net_seq_num
);
2239 /* A successful creation will add the object to the HT. */
2240 index
= relay_index_create(stream_id
, net_seq_num
);
2246 stream
->indexes_in_flight
++;
2249 if (rotate_index
|| stream
->index_fd
< 0) {
2250 index
->to_close_fd
= stream
->index_fd
;
2251 ret
= index_create_file(stream
->path_name
, stream
->channel_name
,
2252 relayd_uid
, relayd_gid
, stream
->tracefile_size
,
2253 stream
->tracefile_count_current
);
2255 /* This will close the stream's index fd if one. */
2256 relay_index_free_safe(index
);
2259 stream
->index_fd
= ret
;
2261 index
->fd
= stream
->index_fd
;
2262 index
->index_data
.offset
= data_offset
;
2264 if (index_created
) {
2266 * Try to add the relay index object to the hash table. If an object
2267 * already exist, destroy back the index created and set the data.
2269 relay_index_add(index
, &wr_index
);
2271 /* Copy back data from the created index. */
2272 wr_index
->fd
= index
->fd
;
2273 wr_index
->to_close_fd
= index
->to_close_fd
;
2274 wr_index
->index_data
.offset
= data_offset
;
2278 /* The index already exists so write it on disk. */
2282 /* Do we have a writable ready index to write on disk. */
2284 ret
= relay_index_write(wr_index
->fd
, wr_index
);
2288 stream
->total_index_received
++;
2289 stream
->indexes_in_flight
--;
2290 assert(stream
->indexes_in_flight
>= 0);
2298 * relay_process_data: Process the data received on the data socket
2301 int relay_process_data(struct relay_connection
*conn
)
2303 int ret
= 0, rotate_index
= 0;
2305 struct relay_stream
*stream
;
2306 struct lttcomm_relayd_data_hdr data_hdr
;
2308 uint64_t net_seq_num
;
2310 struct relay_session
*session
;
2314 ret
= conn
->sock
->ops
->recvmsg(conn
->sock
, &data_hdr
,
2315 sizeof(struct lttcomm_relayd_data_hdr
), 0);
2318 /* Orderly shutdown. Not necessary to print an error. */
2319 DBG("Socket %d did an orderly shutdown", conn
->sock
->fd
);
2321 ERR("Unable to receive data header on sock %d", conn
->sock
->fd
);
2327 stream_id
= be64toh(data_hdr
.stream_id
);
2330 stream
= stream_find_by_id(relay_streams_ht
, stream_id
);
2333 goto end_rcu_unlock
;
2336 session
= session_find_by_id(conn
->sessions_ht
, stream
->session_id
);
2339 data_size
= be32toh(data_hdr
.data_size
);
2340 if (data_buffer_size
< data_size
) {
2343 tmp_data_ptr
= realloc(data_buffer
, data_size
);
2344 if (!tmp_data_ptr
) {
2345 ERR("Allocating data buffer");
2348 goto end_rcu_unlock
;
2350 data_buffer
= tmp_data_ptr
;
2351 data_buffer_size
= data_size
;
2353 memset(data_buffer
, 0, data_size
);
2355 net_seq_num
= be64toh(data_hdr
.net_seq_num
);
2357 DBG3("Receiving data of size %u for stream id %" PRIu64
" seqnum %" PRIu64
,
2358 data_size
, stream_id
, net_seq_num
);
2359 ret
= conn
->sock
->ops
->recvmsg(conn
->sock
, data_buffer
, data_size
, 0);
2362 /* Orderly shutdown. Not necessary to print an error. */
2363 DBG("Socket %d did an orderly shutdown", conn
->sock
->fd
);
2366 goto end_rcu_unlock
;
2369 /* Check if a rotation is needed. */
2370 if (stream
->tracefile_size
> 0 &&
2371 (stream
->tracefile_size_current
+ data_size
) >
2372 stream
->tracefile_size
) {
2373 struct relay_viewer_stream
*vstream
;
2376 new_id
= (stream
->tracefile_count_current
+ 1) %
2377 stream
->tracefile_count
;
2379 * When we wrap-around back to 0, we start overwriting old
2382 if (!stream
->tracefile_overwrite
&& new_id
== 0) {
2383 stream
->tracefile_overwrite
= 1;
2385 pthread_mutex_lock(&stream
->viewer_stream_rotation_lock
);
2386 if (stream
->tracefile_overwrite
) {
2387 stream
->oldest_tracefile_id
=
2388 (stream
->oldest_tracefile_id
+ 1) %
2389 stream
->tracefile_count
;
2391 vstream
= viewer_stream_find_by_id(stream
->stream_handle
);
2394 * The viewer is reading a file about to be
2395 * overwritten. Close the FDs it is
2396 * currently using and let it handle the fault.
2398 if (vstream
->tracefile_count_current
== new_id
) {
2399 pthread_mutex_lock(&vstream
->overwrite_lock
);
2400 vstream
->abort_flag
= 1;
2401 pthread_mutex_unlock(&vstream
->overwrite_lock
);
2402 DBG("Streaming side setting abort_flag on stream %s_%" PRIu64
"\n",
2403 stream
->channel_name
, new_id
);
2404 } else if (vstream
->tracefile_count_current
==
2405 stream
->tracefile_count_current
) {
2407 * The reader and writer were in the
2408 * same trace file, inform the viewer
2409 * that no new index will ever be added
2412 vstream
->close_write_flag
= 1;
2415 ret
= utils_rotate_stream_file(stream
->path_name
, stream
->channel_name
,
2416 stream
->tracefile_size
, stream
->tracefile_count
,
2417 relayd_uid
, relayd_gid
, stream
->fd
,
2418 &(stream
->tracefile_count_current
), &stream
->fd
);
2419 pthread_mutex_unlock(&stream
->viewer_stream_rotation_lock
);
2421 ERR("Rotating stream output file");
2422 goto end_rcu_unlock
;
2424 /* Reset current size because we just perform a stream rotation. */
2425 stream
->tracefile_size_current
= 0;
2430 * Index are handled in protocol version 2.4 and above. Also, snapshot and
2431 * index are NOT supported.
2433 if (session
->minor
>= 4 && !session
->snapshot
) {
2434 ret
= handle_index_data(stream
, net_seq_num
, rotate_index
);
2436 goto end_rcu_unlock
;
2440 /* Write data to stream output fd. */
2441 size_ret
= lttng_write(stream
->fd
, data_buffer
, data_size
);
2442 if (size_ret
< data_size
) {
2443 ERR("Relay error writing data to file");
2445 goto end_rcu_unlock
;
2448 DBG2("Relay wrote %d bytes to tracefile for stream id %" PRIu64
,
2449 ret
, stream
->stream_handle
);
2451 ret
= write_padding_to_file(stream
->fd
, be32toh(data_hdr
.padding_size
));
2453 goto end_rcu_unlock
;
2455 stream
->tracefile_size_current
+= data_size
+ be32toh(data_hdr
.padding_size
);
2457 stream
->prev_seq
= net_seq_num
;
2459 try_close_stream(session
, stream
);
2468 void cleanup_connection_pollfd(struct lttng_poll_event
*events
, int pollfd
)
2474 (void) lttng_poll_del(events
, pollfd
);
2476 ret
= close(pollfd
);
2478 ERR("Closing pollfd %d", pollfd
);
2482 static void destroy_connection(struct lttng_ht
*relay_connections_ht
,
2483 struct relay_connection
*conn
)
2485 assert(relay_connections_ht
);
2488 connection_delete(relay_connections_ht
, conn
);
2490 /* For the control socket, we try to destroy the session. */
2491 if (conn
->type
== RELAY_CONTROL
&& conn
->session
) {
2492 destroy_session(conn
->session
, conn
->sessions_ht
);
2495 connection_destroy(conn
);
2499 * This thread does the actual work
2502 void *relay_thread_worker(void *data
)
2504 int ret
, err
= -1, last_seen_data_fd
= -1;
2506 struct lttng_poll_event events
;
2507 struct lttng_ht
*relay_connections_ht
;
2508 struct lttng_ht_iter iter
;
2509 struct lttcomm_relayd_hdr recv_hdr
;
2510 struct relay_local_data
*relay_ctx
= (struct relay_local_data
*) data
;
2511 struct lttng_ht
*sessions_ht
= relay_ctx
->sessions_ht
;
2512 struct relay_index
*index
;
2513 struct relay_connection
*destroy_conn
= NULL
;
2515 DBG("[thread] Relay worker started");
2517 rcu_register_thread();
2519 health_register(health_relayd
, HEALTH_RELAYD_TYPE_WORKER
);
2521 if (testpoint(relayd_thread_worker
)) {
2522 goto error_testpoint
;
2525 health_code_update();
2527 /* table of connections indexed on socket */
2528 relay_connections_ht
= lttng_ht_new(0, LTTNG_HT_TYPE_ULONG
);
2529 if (!relay_connections_ht
) {
2530 goto relay_connections_ht_error
;
2533 /* Tables of received indexes indexed by index handle and net_seq_num. */
2534 indexes_ht
= lttng_ht_new(0, LTTNG_HT_TYPE_TWO_U64
);
2536 goto indexes_ht_error
;
2539 ret
= create_thread_poll_set(&events
, 2);
2541 goto error_poll_create
;
2544 ret
= lttng_poll_add(&events
, relay_conn_pipe
[0], LPOLLIN
| LPOLLRDHUP
);
2551 int idx
= -1, i
, seen_control
= 0, last_notdel_data_fd
= -1;
2553 health_code_update();
2555 /* Infinite blocking call, waiting for transmission */
2556 DBG3("Relayd worker thread polling...");
2557 health_poll_entry();
2558 ret
= lttng_poll_wait(&events
, -1);
2562 * Restart interrupted system call.
2564 if (errno
== EINTR
) {
2573 * Process control. The control connection is prioritised so we
2574 * don't starve it with high throughput tracing data on the data
2577 for (i
= 0; i
< nb_fd
; i
++) {
2578 /* Fetch once the poll data */
2579 uint32_t revents
= LTTNG_POLL_GETEV(&events
, i
);
2580 int pollfd
= LTTNG_POLL_GETFD(&events
, i
);
2582 health_code_update();
2585 /* No activity for this FD (poll implementation). */
2589 /* Thread quit pipe has been closed. Killing thread. */
2590 ret
= check_thread_quit_pipe(pollfd
, revents
);
2596 /* Inspect the relay conn pipe for new connection */
2597 if (pollfd
== relay_conn_pipe
[0]) {
2598 if (revents
& (LPOLLERR
| LPOLLHUP
| LPOLLRDHUP
)) {
2599 ERR("Relay connection pipe error");
2601 } else if (revents
& LPOLLIN
) {
2602 struct relay_connection
*conn
;
2604 ret
= lttng_read(relay_conn_pipe
[0], &conn
, sizeof(conn
));
2608 conn
->sessions_ht
= sessions_ht
;
2609 connection_init(conn
);
2610 lttng_poll_add(&events
, conn
->sock
->fd
,
2611 LPOLLIN
| LPOLLRDHUP
);
2613 lttng_ht_add_unique_ulong(relay_connections_ht
,
2616 DBG("Connection socket %d added", conn
->sock
->fd
);
2619 struct relay_connection
*ctrl_conn
;
2622 ctrl_conn
= connection_find_by_sock(relay_connections_ht
, pollfd
);
2623 /* If not found, there is a synchronization issue. */
2626 if (revents
& (LPOLLERR
| LPOLLHUP
| LPOLLRDHUP
)) {
2627 cleanup_connection_pollfd(&events
, pollfd
);
2628 destroy_connection(relay_connections_ht
, ctrl_conn
);
2629 if (last_seen_data_fd
== pollfd
) {
2630 last_seen_data_fd
= last_notdel_data_fd
;
2632 } else if (revents
& LPOLLIN
) {
2633 if (ctrl_conn
->type
== RELAY_CONTROL
) {
2634 ret
= ctrl_conn
->sock
->ops
->recvmsg(ctrl_conn
->sock
, &recv_hdr
,
2635 sizeof(recv_hdr
), 0);
2637 /* Connection closed */
2638 cleanup_connection_pollfd(&events
, pollfd
);
2639 destroy_connection(relay_connections_ht
, ctrl_conn
);
2640 DBG("Control connection closed with %d", pollfd
);
2642 ret
= relay_process_control(&recv_hdr
, ctrl_conn
);
2644 /* Clear the session on error. */
2645 cleanup_connection_pollfd(&events
, pollfd
);
2646 destroy_connection(relay_connections_ht
, ctrl_conn
);
2647 DBG("Connection closed with %d", pollfd
);
2653 * Flag the last seen data fd not deleted. It will be
2654 * used as the last seen fd if any fd gets deleted in
2657 last_notdel_data_fd
= pollfd
;
2660 ERR("Unknown poll events %u for sock %d", revents
, pollfd
);
2667 * The last loop handled a control request, go back to poll to make
2668 * sure we prioritise the control socket.
2674 if (last_seen_data_fd
>= 0) {
2675 for (i
= 0; i
< nb_fd
; i
++) {
2676 int pollfd
= LTTNG_POLL_GETFD(&events
, i
);
2678 health_code_update();
2680 if (last_seen_data_fd
== pollfd
) {
2687 /* Process data connection. */
2688 for (i
= idx
+ 1; i
< nb_fd
; i
++) {
2689 /* Fetch the poll data. */
2690 uint32_t revents
= LTTNG_POLL_GETEV(&events
, i
);
2691 int pollfd
= LTTNG_POLL_GETFD(&events
, i
);
2692 struct relay_connection
*data_conn
;
2694 health_code_update();
2697 /* No activity for this FD (poll implementation). */
2701 /* Skip the command pipe. It's handled in the first loop. */
2702 if (pollfd
== relay_conn_pipe
[0]) {
2707 data_conn
= connection_find_by_sock(relay_connections_ht
, pollfd
);
2709 /* Skip it. Might be removed before. */
2714 if (revents
& LPOLLIN
) {
2715 if (data_conn
->type
!= RELAY_DATA
) {
2720 ret
= relay_process_data(data_conn
);
2721 /* Connection closed */
2723 cleanup_connection_pollfd(&events
, pollfd
);
2724 destroy_connection(relay_connections_ht
, data_conn
);
2725 DBG("Data connection closed with %d", pollfd
);
2727 * Every goto restart call sets the last seen fd where
2728 * here we don't really care since we gracefully
2729 * continue the loop after the connection is deleted.
2732 /* Keep last seen port. */
2733 last_seen_data_fd
= pollfd
;
2740 last_seen_data_fd
= -1;
2743 /* Normal exit, no error */
2748 lttng_poll_clean(&events
);
2750 /* Cleanup reamaining connection object. */
2752 cds_lfht_for_each_entry(relay_connections_ht
->ht
, &iter
.iter
,
2755 health_code_update();
2756 destroy_connection(relay_connections_ht
, destroy_conn
);
2761 cds_lfht_for_each_entry(indexes_ht
->ht
, &iter
.iter
, index
,
2763 health_code_update();
2764 relay_index_delete(index
);
2765 relay_index_free_safe(index
);
2768 lttng_ht_destroy(indexes_ht
);
2770 lttng_ht_destroy(relay_connections_ht
);
2771 relay_connections_ht_error
:
2772 /* Close relay conn pipes */
2773 utils_close_pipe(relay_conn_pipe
);
2775 DBG("Thread exited with error");
2777 DBG("Worker thread cleanup complete");
2782 ERR("Health error occurred in %s", __func__
);
2784 health_unregister(health_relayd
);
2785 rcu_unregister_thread();
2786 lttng_relay_stop_threads();
2791 * Create the relay command pipe to wake thread_manage_apps.
2792 * Closed in cleanup().
2794 static int create_relay_conn_pipe(void)
2798 ret
= utils_create_pipe_cloexec(relay_conn_pipe
);
2806 int main(int argc
, char **argv
)
2808 int ret
= 0, retval
= 0;
2810 struct relay_local_data
*relay_ctx
= NULL
;
2812 /* Parse arguments */
2814 if (set_options(argc
, argv
)) {
2819 if (set_signal_handler()) {
2824 /* Try to create directory if -o, --output is specified. */
2825 if (opt_output_path
) {
2826 if (*opt_output_path
!= '/') {
2827 ERR("Please specify an absolute path for -o, --output PATH");
2832 ret
= utils_mkdir_recursive(opt_output_path
, S_IRWXU
| S_IRWXG
,
2835 ERR("Unable to create %s", opt_output_path
);
2842 if (opt_daemon
|| opt_background
) {
2845 ret
= lttng_daemonize(&child_ppid
, &recv_child_signal
,
2853 * We are in the child. Make sure all other file
2854 * descriptors are closed, in case we are called with
2855 * more opened file descriptors than the standard ones.
2857 for (i
= 3; i
< sysconf(_SC_OPEN_MAX
); i
++) {
2863 /* Initialize thread health monitoring */
2864 health_relayd
= health_app_create(NR_HEALTH_RELAYD_TYPES
);
2865 if (!health_relayd
) {
2866 PERROR("health_app_create error");
2868 goto exit_health_app_create
;
2871 /* Create thread quit pipe */
2872 if (init_thread_quit_pipe()) {
2874 goto exit_init_data
;
2877 /* We need those values for the file/dir creation. */
2878 relayd_uid
= getuid();
2879 relayd_gid
= getgid();
2881 /* Check if daemon is UID = 0 */
2882 if (relayd_uid
== 0) {
2883 if (control_uri
->port
< 1024 || data_uri
->port
< 1024 || live_uri
->port
< 1024) {
2884 ERR("Need to be root to use ports < 1024");
2886 goto exit_init_data
;
2890 /* Setup the thread apps communication pipe. */
2891 if (create_relay_conn_pipe()) {
2893 goto exit_init_data
;
2896 /* Init relay command queue. */
2897 cds_wfcq_init(&relay_conn_queue
.head
, &relay_conn_queue
.tail
);
2899 /* Set up max poll set size */
2900 if (lttng_poll_set_max_size()) {
2902 goto exit_init_data
;
2905 /* Initialize communication library */
2907 lttcomm_inet_init();
2909 relay_ctx
= zmalloc(sizeof(struct relay_local_data
));
2911 PERROR("relay_ctx");
2913 goto exit_init_data
;
2916 /* tables of sessions indexed by session ID */
2917 relay_ctx
->sessions_ht
= lttng_ht_new(0, LTTNG_HT_TYPE_U64
);
2918 if (!relay_ctx
->sessions_ht
) {
2920 goto exit_init_data
;
2923 /* tables of streams indexed by stream ID */
2924 relay_streams_ht
= lttng_ht_new(0, LTTNG_HT_TYPE_U64
);
2925 if (!relay_streams_ht
) {
2927 goto exit_init_data
;
2930 /* tables of streams indexed by stream ID */
2931 viewer_streams_ht
= lttng_ht_new(0, LTTNG_HT_TYPE_U64
);
2932 if (!viewer_streams_ht
) {
2934 goto exit_init_data
;
2937 ret
= utils_create_pipe(health_quit_pipe
);
2940 goto exit_health_quit_pipe
;
2943 /* Create thread to manage the client socket */
2944 ret
= pthread_create(&health_thread
, NULL
,
2945 thread_manage_health
, (void *) NULL
);
2948 PERROR("pthread_create health");
2950 goto exit_health_thread
;
2953 /* Setup the dispatcher thread */
2954 ret
= pthread_create(&dispatcher_thread
, NULL
,
2955 relay_thread_dispatcher
, (void *) NULL
);
2958 PERROR("pthread_create dispatcher");
2960 goto exit_dispatcher_thread
;
2963 /* Setup the worker thread */
2964 ret
= pthread_create(&worker_thread
, NULL
,
2965 relay_thread_worker
, (void *) relay_ctx
);
2968 PERROR("pthread_create worker");
2970 goto exit_worker_thread
;
2973 /* Setup the listener thread */
2974 ret
= pthread_create(&listener_thread
, NULL
,
2975 relay_thread_listener
, (void *) NULL
);
2978 PERROR("pthread_create listener");
2980 goto exit_listener_thread
;
2983 ret
= relayd_live_create(live_uri
, relay_ctx
);
2985 ERR("Starting live viewer threads");
2991 * This is where we start awaiting program completion (e.g. through
2992 * signal that asks threads to teardown).
2995 ret
= relayd_live_join();
3001 ret
= pthread_join(listener_thread
, &status
);
3004 PERROR("pthread_join listener_thread");
3008 exit_listener_thread
:
3009 ret
= pthread_join(worker_thread
, &status
);
3012 PERROR("pthread_join worker_thread");
3017 ret
= pthread_join(dispatcher_thread
, &status
);
3020 PERROR("pthread_join dispatcher_thread");
3023 exit_dispatcher_thread
:
3025 ret
= pthread_join(health_thread
, &status
);
3028 PERROR("pthread_join health_thread");
3033 utils_close_pipe(health_quit_pipe
);
3034 exit_health_quit_pipe
:
3037 health_app_destroy(health_relayd
);
3038 exit_health_app_create
:
3040 relayd_cleanup(relay_ctx
);