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/config/session-config.h>
58 #include <urcu/rculist.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"
72 #include "tracefile-array.h"
74 static const char *help_msg
=
75 #ifdef LTTNG_EMBED_HELP
76 #include <lttng-relayd.8.h>
82 /* command line options */
83 char *opt_output_path
;
84 static int opt_daemon
, opt_background
;
87 * We need to wait for listener and live listener threads, as well as
88 * health check thread, before being ready to signal readiness.
90 #define NR_LTTNG_RELAY_READY 3
91 static int lttng_relay_ready
= NR_LTTNG_RELAY_READY
;
93 /* Size of receive buffer. */
94 #define RECV_DATA_BUFFER_SIZE 65536
96 static int recv_child_signal
; /* Set to 1 when a SIGUSR1 signal is received. */
97 static pid_t child_ppid
; /* Internal parent PID use with daemonize. */
99 static struct lttng_uri
*control_uri
;
100 static struct lttng_uri
*data_uri
;
101 static struct lttng_uri
*live_uri
;
103 const char *progname
;
105 const char *tracing_group_name
= DEFAULT_TRACING_GROUP
;
106 static int tracing_group_name_override
;
108 const char * const config_section_name
= "relayd";
111 * Quit pipe for all threads. This permits a single cancellation point
112 * for all threads when receiving an event on the pipe.
114 int thread_quit_pipe
[2] = { -1, -1 };
117 * This pipe is used to inform the worker thread that a command is queued and
118 * ready to be processed.
120 static int relay_conn_pipe
[2] = { -1, -1 };
122 /* Shared between threads */
123 static int dispatch_thread_exit
;
125 static pthread_t listener_thread
;
126 static pthread_t dispatcher_thread
;
127 static pthread_t worker_thread
;
128 static pthread_t health_thread
;
131 * last_relay_stream_id_lock protects last_relay_stream_id increment
132 * atomicity on 32-bit architectures.
134 static pthread_mutex_t last_relay_stream_id_lock
= PTHREAD_MUTEX_INITIALIZER
;
135 static uint64_t last_relay_stream_id
;
138 * Relay command queue.
140 * The relay_thread_listener and relay_thread_dispatcher communicate with this
143 static struct relay_conn_queue relay_conn_queue
;
145 /* buffer allocated at startup, used to store the trace data */
146 static char *data_buffer
;
147 static unsigned int data_buffer_size
;
149 /* Global relay stream hash table. */
150 struct lttng_ht
*relay_streams_ht
;
152 /* Global relay viewer stream hash table. */
153 struct lttng_ht
*viewer_streams_ht
;
155 /* Global relay sessions hash table. */
156 struct lttng_ht
*sessions_ht
;
158 /* Relayd health monitoring */
159 struct health_app
*health_relayd
;
161 static struct option long_options
[] = {
162 { "control-port", 1, 0, 'C', },
163 { "data-port", 1, 0, 'D', },
164 { "live-port", 1, 0, 'L', },
165 { "daemonize", 0, 0, 'd', },
166 { "background", 0, 0, 'b', },
167 { "group", 1, 0, 'g', },
168 { "help", 0, 0, 'h', },
169 { "output", 1, 0, 'o', },
170 { "verbose", 0, 0, 'v', },
171 { "config", 1, 0, 'f' },
172 { "version", 0, 0, 'V' },
176 static const char *config_ignore_options
[] = { "help", "config", "version" };
179 * Take an option from the getopt output and set it in the right variable to be
182 * Return 0 on success else a negative value.
184 static int set_option(int opt
, const char *arg
, const char *optname
)
190 fprintf(stderr
, "option %s", optname
);
192 fprintf(stderr
, " with arg %s\n", arg
);
196 if (lttng_is_setuid_setgid()) {
197 WARN("Getting '%s' argument from setuid/setgid binary refused for security reasons.",
198 "-C, --control-port");
200 ret
= uri_parse(arg
, &control_uri
);
202 ERR("Invalid control URI specified");
205 if (control_uri
->port
== 0) {
206 control_uri
->port
= DEFAULT_NETWORK_CONTROL_PORT
;
211 if (lttng_is_setuid_setgid()) {
212 WARN("Getting '%s' argument from setuid/setgid binary refused for security reasons.",
215 ret
= uri_parse(arg
, &data_uri
);
217 ERR("Invalid data URI specified");
220 if (data_uri
->port
== 0) {
221 data_uri
->port
= DEFAULT_NETWORK_DATA_PORT
;
226 if (lttng_is_setuid_setgid()) {
227 WARN("Getting '%s' argument from setuid/setgid binary refused for security reasons.",
230 ret
= uri_parse(arg
, &live_uri
);
232 ERR("Invalid live URI specified");
235 if (live_uri
->port
== 0) {
236 live_uri
->port
= DEFAULT_NETWORK_VIEWER_PORT
;
247 if (lttng_is_setuid_setgid()) {
248 WARN("Getting '%s' argument from setuid/setgid binary refused for security reasons.",
251 tracing_group_name
= strdup(arg
);
252 if (tracing_group_name
== NULL
) {
257 tracing_group_name_override
= 1;
261 ret
= utils_show_help(8, "lttng-relayd", help_msg
);
263 ERR("Cannot show --help for `lttng-relayd`");
268 fprintf(stdout
, "%s\n", VERSION
);
271 if (lttng_is_setuid_setgid()) {
272 WARN("Getting '%s' argument from setuid/setgid binary refused for security reasons.",
275 ret
= asprintf(&opt_output_path
, "%s", arg
);
278 PERROR("asprintf opt_output_path");
284 /* Verbose level can increase using multiple -v */
286 lttng_opt_verbose
= config_parse_value(arg
);
288 /* Only 3 level of verbosity (-vvv). */
289 if (lttng_opt_verbose
< 3) {
290 lttng_opt_verbose
+= 1;
295 /* Unknown option or other error.
296 * Error is printed by getopt, just return */
309 * config_entry_handler_cb used to handle options read from a config file.
310 * See config_entry_handler_cb comment in common/config/session-config.h for the
311 * return value conventions.
313 static int config_entry_handler(const struct config_entry
*entry
, void *unused
)
317 if (!entry
|| !entry
->name
|| !entry
->value
) {
322 /* Check if the option is to be ignored */
323 for (i
= 0; i
< sizeof(config_ignore_options
) / sizeof(char *); i
++) {
324 if (!strcmp(entry
->name
, config_ignore_options
[i
])) {
329 for (i
= 0; i
< (sizeof(long_options
) / sizeof(struct option
)) - 1; i
++) {
330 /* Ignore if entry name is not fully matched. */
331 if (strcmp(entry
->name
, long_options
[i
].name
)) {
336 * If the option takes no argument on the command line,
337 * we have to check if the value is "true". We support
338 * non-zero numeric values, true, on and yes.
340 if (!long_options
[i
].has_arg
) {
341 ret
= config_parse_value(entry
->value
);
344 WARN("Invalid configuration value \"%s\" for option %s",
345 entry
->value
, entry
->name
);
347 /* False, skip boolean config option. */
352 ret
= set_option(long_options
[i
].val
, entry
->value
, entry
->name
);
356 WARN("Unrecognized option \"%s\" in daemon configuration file.",
363 static 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");
486 static void print_global_objects(void)
488 rcu_register_thread();
490 print_viewer_streams();
491 print_relay_streams();
494 rcu_unregister_thread();
500 static void relayd_cleanup(void)
502 print_global_objects();
506 if (viewer_streams_ht
)
507 lttng_ht_destroy(viewer_streams_ht
);
508 if (relay_streams_ht
)
509 lttng_ht_destroy(relay_streams_ht
);
511 lttng_ht_destroy(sessions_ht
);
513 /* free the dynamically allocated opt_output_path */
514 free(opt_output_path
);
516 /* Close thread quit pipes */
517 utils_close_pipe(thread_quit_pipe
);
519 uri_free(control_uri
);
521 /* Live URI is freed in the live thread. */
523 if (tracing_group_name_override
) {
524 free((void *) tracing_group_name
);
529 * Write to writable pipe used to notify a thread.
531 static int notify_thread_pipe(int wpipe
)
535 ret
= lttng_write(wpipe
, "!", 1);
537 PERROR("write poll pipe");
545 static int notify_health_quit_pipe(int *pipe
)
549 ret
= lttng_write(pipe
[1], "4", 1);
551 PERROR("write relay health quit");
560 * Stop all relayd and relayd-live threads.
562 int lttng_relay_stop_threads(void)
566 /* Stopping all threads */
567 DBG("Terminating all threads");
568 if (notify_thread_pipe(thread_quit_pipe
[1])) {
569 ERR("write error on thread quit pipe");
573 if (notify_health_quit_pipe(health_quit_pipe
)) {
574 ERR("write error on health quit pipe");
577 /* Dispatch thread */
578 CMM_STORE_SHARED(dispatch_thread_exit
, 1);
579 futex_nto1_wake(&relay_conn_queue
.futex
);
581 if (relayd_live_stop()) {
582 ERR("Error stopping live threads");
589 * Signal handler for the daemon
591 * Simply stop all worker threads, leaving main() return gracefully after
592 * joining all threads and calling cleanup().
594 static void sighandler(int sig
)
598 DBG("SIGINT caught");
599 if (lttng_relay_stop_threads()) {
600 ERR("Error stopping threads");
604 DBG("SIGTERM caught");
605 if (lttng_relay_stop_threads()) {
606 ERR("Error stopping threads");
610 CMM_STORE_SHARED(recv_child_signal
, 1);
618 * Setup signal handler for :
619 * SIGINT, SIGTERM, SIGPIPE
621 static int set_signal_handler(void)
627 if ((ret
= sigemptyset(&sigset
)) < 0) {
628 PERROR("sigemptyset");
635 sa
.sa_handler
= sighandler
;
636 if ((ret
= sigaction(SIGTERM
, &sa
, NULL
)) < 0) {
641 if ((ret
= sigaction(SIGINT
, &sa
, NULL
)) < 0) {
646 if ((ret
= sigaction(SIGUSR1
, &sa
, NULL
)) < 0) {
651 sa
.sa_handler
= SIG_IGN
;
652 if ((ret
= sigaction(SIGPIPE
, &sa
, NULL
)) < 0) {
657 DBG("Signal handler set for SIGTERM, SIGUSR1, SIGPIPE and SIGINT");
662 void lttng_relay_notify_ready(void)
664 /* Notify the parent of the fork() process that we are ready. */
665 if (opt_daemon
|| opt_background
) {
666 if (uatomic_sub_return(<tng_relay_ready
, 1) == 0) {
667 kill(child_ppid
, SIGUSR1
);
673 * Init thread quit pipe.
675 * Return -1 on error or 0 if all pipes are created.
677 static int init_thread_quit_pipe(void)
681 ret
= utils_create_pipe_cloexec(thread_quit_pipe
);
687 * Create a poll set with O_CLOEXEC and add the thread quit pipe to the set.
689 static int create_thread_poll_set(struct lttng_poll_event
*events
, int size
)
693 if (events
== NULL
|| size
== 0) {
698 ret
= lttng_poll_create(events
, size
, LTTNG_CLOEXEC
);
704 ret
= lttng_poll_add(events
, thread_quit_pipe
[0], LPOLLIN
| LPOLLERR
);
716 * Check if the thread quit pipe was triggered.
718 * Return 1 if it was triggered else 0;
720 static int check_thread_quit_pipe(int fd
, uint32_t events
)
722 if (fd
== thread_quit_pipe
[0] && (events
& LPOLLIN
)) {
730 * Create and init socket from uri.
732 static struct lttcomm_sock
*relay_socket_create(struct lttng_uri
*uri
)
735 struct lttcomm_sock
*sock
= NULL
;
737 sock
= lttcomm_alloc_sock_from_uri(uri
);
739 ERR("Allocating socket");
743 ret
= lttcomm_create_sock(sock
);
747 DBG("Listening on sock %d", sock
->fd
);
749 ret
= sock
->ops
->bind(sock
);
754 ret
= sock
->ops
->listen(sock
, -1);
764 lttcomm_destroy_sock(sock
);
770 * This thread manages the listening for new connections on the network
772 static void *relay_thread_listener(void *data
)
774 int i
, ret
, pollfd
, err
= -1;
775 uint32_t revents
, nb_fd
;
776 struct lttng_poll_event events
;
777 struct lttcomm_sock
*control_sock
, *data_sock
;
779 DBG("[thread] Relay listener started");
781 health_register(health_relayd
, HEALTH_RELAYD_TYPE_LISTENER
);
783 health_code_update();
785 control_sock
= relay_socket_create(control_uri
);
787 goto error_sock_control
;
790 data_sock
= relay_socket_create(data_uri
);
792 goto error_sock_relay
;
796 * Pass 3 as size here for the thread quit pipe, control and
799 ret
= create_thread_poll_set(&events
, 3);
801 goto error_create_poll
;
804 /* Add the control socket */
805 ret
= lttng_poll_add(&events
, control_sock
->fd
, LPOLLIN
| LPOLLRDHUP
);
810 /* Add the data socket */
811 ret
= lttng_poll_add(&events
, data_sock
->fd
, LPOLLIN
| LPOLLRDHUP
);
816 lttng_relay_notify_ready();
818 if (testpoint(relayd_thread_listener
)) {
819 goto error_testpoint
;
823 health_code_update();
825 DBG("Listener accepting connections");
829 ret
= lttng_poll_wait(&events
, -1);
833 * Restart interrupted system call.
835 if (errno
== EINTR
) {
843 DBG("Relay new connection received");
844 for (i
= 0; i
< nb_fd
; i
++) {
845 health_code_update();
847 /* Fetch once the poll data */
848 revents
= LTTNG_POLL_GETEV(&events
, i
);
849 pollfd
= LTTNG_POLL_GETFD(&events
, i
);
853 * No activity for this FD (poll
859 /* Thread quit pipe has been closed. Killing thread. */
860 ret
= check_thread_quit_pipe(pollfd
, revents
);
866 if (revents
& LPOLLIN
) {
868 * A new connection is requested, therefore a
869 * sessiond/consumerd connection is allocated in
870 * this thread, enqueued to a global queue and
871 * dequeued (and freed) in the worker thread.
874 struct relay_connection
*new_conn
;
875 struct lttcomm_sock
*newsock
;
876 enum connection_type type
;
878 if (pollfd
== data_sock
->fd
) {
880 newsock
= data_sock
->ops
->accept(data_sock
);
881 DBG("Relay data connection accepted, socket %d",
884 assert(pollfd
== control_sock
->fd
);
885 type
= RELAY_CONTROL
;
886 newsock
= control_sock
->ops
->accept(control_sock
);
887 DBG("Relay control connection accepted, socket %d",
891 PERROR("accepting sock");
895 ret
= setsockopt(newsock
->fd
, SOL_SOCKET
, SO_REUSEADDR
, &val
,
898 PERROR("setsockopt inet");
899 lttcomm_destroy_sock(newsock
);
902 new_conn
= connection_create(newsock
, type
);
904 lttcomm_destroy_sock(newsock
);
908 /* Enqueue request for the dispatcher thread. */
909 cds_wfcq_enqueue(&relay_conn_queue
.head
, &relay_conn_queue
.tail
,
913 * Wake the dispatch queue futex.
914 * Implicit memory barrier with the
915 * exchange in cds_wfcq_enqueue.
917 futex_nto1_wake(&relay_conn_queue
.futex
);
918 } else if (revents
& (LPOLLERR
| LPOLLHUP
| LPOLLRDHUP
)) {
919 ERR("socket poll error");
922 ERR("Unexpected poll events %u for sock %d", revents
, pollfd
);
932 lttng_poll_clean(&events
);
934 if (data_sock
->fd
>= 0) {
935 ret
= data_sock
->ops
->close(data_sock
);
940 lttcomm_destroy_sock(data_sock
);
942 if (control_sock
->fd
>= 0) {
943 ret
= control_sock
->ops
->close(control_sock
);
948 lttcomm_destroy_sock(control_sock
);
952 ERR("Health error occurred in %s", __func__
);
954 health_unregister(health_relayd
);
955 DBG("Relay listener thread cleanup complete");
956 lttng_relay_stop_threads();
961 * This thread manages the dispatching of the requests to worker threads
963 static void *relay_thread_dispatcher(void *data
)
967 struct cds_wfcq_node
*node
;
968 struct relay_connection
*new_conn
= NULL
;
970 DBG("[thread] Relay dispatcher started");
972 health_register(health_relayd
, HEALTH_RELAYD_TYPE_DISPATCHER
);
974 if (testpoint(relayd_thread_dispatcher
)) {
975 goto error_testpoint
;
978 health_code_update();
981 health_code_update();
983 /* Atomically prepare the queue futex */
984 futex_nto1_prepare(&relay_conn_queue
.futex
);
986 if (CMM_LOAD_SHARED(dispatch_thread_exit
)) {
991 health_code_update();
993 /* Dequeue commands */
994 node
= cds_wfcq_dequeue_blocking(&relay_conn_queue
.head
,
995 &relay_conn_queue
.tail
);
997 DBG("Woken up but nothing in the relay command queue");
998 /* Continue thread execution */
1001 new_conn
= caa_container_of(node
, struct relay_connection
, qnode
);
1003 DBG("Dispatching request waiting on sock %d", new_conn
->sock
->fd
);
1006 * Inform worker thread of the new request. This
1007 * call is blocking so we can be assured that
1008 * the data will be read at some point in time
1009 * or wait to the end of the world :)
1011 ret
= lttng_write(relay_conn_pipe
[1], &new_conn
, sizeof(new_conn
));
1013 PERROR("write connection pipe");
1014 connection_put(new_conn
);
1017 } while (node
!= NULL
);
1019 /* Futex wait on queue. Blocking call on futex() */
1020 health_poll_entry();
1021 futex_nto1_wait(&relay_conn_queue
.futex
);
1025 /* Normal exit, no error */
1032 ERR("Health error occurred in %s", __func__
);
1034 health_unregister(health_relayd
);
1035 DBG("Dispatch thread dying");
1036 lttng_relay_stop_threads();
1041 * Set index data from the control port to a given index object.
1043 static int set_index_control_data(struct relay_index
*index
,
1044 struct lttcomm_relayd_index
*data
,
1045 struct relay_connection
*conn
)
1047 struct ctf_packet_index index_data
;
1050 * The index on disk is encoded in big endian, so we don't need
1051 * to convert the data received on the network. The data_offset
1052 * value is NEVER modified here and is updated by the data
1055 index_data
.packet_size
= data
->packet_size
;
1056 index_data
.content_size
= data
->content_size
;
1057 index_data
.timestamp_begin
= data
->timestamp_begin
;
1058 index_data
.timestamp_end
= data
->timestamp_end
;
1059 index_data
.events_discarded
= data
->events_discarded
;
1060 index_data
.stream_id
= data
->stream_id
;
1062 if (conn
->minor
>= 8) {
1063 index
->index_data
.stream_instance_id
= data
->stream_instance_id
;
1064 index
->index_data
.packet_seq_num
= data
->packet_seq_num
;
1067 return relay_index_set_data(index
, &index_data
);
1071 * Handle the RELAYD_CREATE_SESSION command.
1073 * On success, send back the session id or else return a negative value.
1075 static int relay_create_session(struct lttcomm_relayd_hdr
*recv_hdr
,
1076 struct relay_connection
*conn
)
1078 int ret
= 0, send_ret
;
1079 struct relay_session
*session
;
1080 struct lttcomm_relayd_status_session reply
;
1081 char session_name
[LTTNG_NAME_MAX
];
1082 char hostname
[LTTNG_HOST_NAME_MAX
];
1083 uint32_t live_timer
= 0;
1084 bool snapshot
= false;
1086 memset(session_name
, 0, LTTNG_NAME_MAX
);
1087 memset(hostname
, 0, LTTNG_HOST_NAME_MAX
);
1089 memset(&reply
, 0, sizeof(reply
));
1091 switch (conn
->minor
) {
1096 case 4: /* LTTng sessiond 2.4 */
1098 ret
= cmd_create_session_2_4(conn
, session_name
,
1099 hostname
, &live_timer
, &snapshot
);
1105 session
= session_create(session_name
, hostname
, live_timer
,
1106 snapshot
, conn
->major
, conn
->minor
);
1111 assert(!conn
->session
);
1112 conn
->session
= session
;
1113 DBG("Created session %" PRIu64
, session
->id
);
1115 reply
.session_id
= htobe64(session
->id
);
1119 reply
.ret_code
= htobe32(LTTNG_ERR_FATAL
);
1121 reply
.ret_code
= htobe32(LTTNG_OK
);
1124 send_ret
= conn
->sock
->ops
->sendmsg(conn
->sock
, &reply
, sizeof(reply
), 0);
1126 ERR("Relayd sending session id");
1134 * When we have received all the streams and the metadata for a channel,
1135 * we make them visible to the viewer threads.
1137 static void publish_connection_local_streams(struct relay_connection
*conn
)
1139 struct relay_stream
*stream
;
1140 struct relay_session
*session
= conn
->session
;
1143 * We publish all streams belonging to a session atomically wrt
1146 pthread_mutex_lock(&session
->lock
);
1148 cds_list_for_each_entry_rcu(stream
, &session
->recv_list
,
1150 stream_publish(stream
);
1155 * Inform the viewer that there are new streams in the session.
1157 if (session
->viewer_attached
) {
1158 uatomic_set(&session
->new_streams
, 1);
1160 pthread_mutex_unlock(&session
->lock
);
1164 * relay_add_stream: allocate a new stream for a session
1166 static int relay_add_stream(struct lttcomm_relayd_hdr
*recv_hdr
,
1167 struct relay_connection
*conn
)
1171 struct relay_session
*session
= conn
->session
;
1172 struct relay_stream
*stream
= NULL
;
1173 struct lttcomm_relayd_status_stream reply
;
1174 struct ctf_trace
*trace
= NULL
;
1175 uint64_t stream_handle
= -1ULL;
1176 char *path_name
= NULL
, *channel_name
= NULL
;
1177 uint64_t tracefile_size
= 0, tracefile_count
= 0;
1179 if (!session
|| conn
->version_check_done
== 0) {
1180 ERR("Trying to add a stream before version check");
1182 goto end_no_session
;
1185 switch (session
->minor
) {
1186 case 1: /* LTTng sessiond 2.1. Allocates path_name and channel_name. */
1187 ret
= cmd_recv_stream_2_1(conn
, &path_name
,
1190 case 2: /* LTTng sessiond 2.2. Allocates path_name and channel_name. */
1192 ret
= cmd_recv_stream_2_2(conn
, &path_name
,
1193 &channel_name
, &tracefile_size
, &tracefile_count
);
1200 trace
= ctf_trace_get_by_path_or_create(session
, path_name
);
1204 /* This stream here has one reference on the trace. */
1206 pthread_mutex_lock(&last_relay_stream_id_lock
);
1207 stream_handle
= ++last_relay_stream_id
;
1208 pthread_mutex_unlock(&last_relay_stream_id_lock
);
1210 /* We pass ownership of path_name and channel_name. */
1211 stream
= stream_create(trace
, stream_handle
, path_name
,
1212 channel_name
, tracefile_size
, tracefile_count
);
1214 channel_name
= NULL
;
1217 * Streams are the owners of their trace. Reference to trace is
1218 * kept within stream_create().
1220 ctf_trace_put(trace
);
1223 memset(&reply
, 0, sizeof(reply
));
1224 reply
.handle
= htobe64(stream_handle
);
1226 reply
.ret_code
= htobe32(LTTNG_ERR_UNK
);
1228 reply
.ret_code
= htobe32(LTTNG_OK
);
1231 send_ret
= conn
->sock
->ops
->sendmsg(conn
->sock
, &reply
,
1232 sizeof(struct lttcomm_relayd_status_stream
), 0);
1234 ERR("Relay sending stream id");
1235 ret
= (int) send_ret
;
1245 * relay_close_stream: close a specific stream
1247 static int relay_close_stream(struct lttcomm_relayd_hdr
*recv_hdr
,
1248 struct relay_connection
*conn
)
1251 struct relay_session
*session
= conn
->session
;
1252 struct lttcomm_relayd_close_stream stream_info
;
1253 struct lttcomm_relayd_generic_reply reply
;
1254 struct relay_stream
*stream
;
1256 DBG("Close stream received");
1258 if (!session
|| conn
->version_check_done
== 0) {
1259 ERR("Trying to close a stream before version check");
1261 goto end_no_session
;
1264 ret
= conn
->sock
->ops
->recvmsg(conn
->sock
, &stream_info
,
1265 sizeof(struct lttcomm_relayd_close_stream
), 0);
1266 if (ret
< sizeof(struct lttcomm_relayd_close_stream
)) {
1268 /* Orderly shutdown. Not necessary to print an error. */
1269 DBG("Socket %d did an orderly shutdown", conn
->sock
->fd
);
1271 ERR("Relay didn't receive valid add_stream struct size : %d", ret
);
1274 goto end_no_session
;
1277 stream
= stream_get_by_id(be64toh(stream_info
.stream_id
));
1284 * Set last_net_seq_num before the close flag. Required by data
1287 pthread_mutex_lock(&stream
->lock
);
1288 stream
->last_net_seq_num
= be64toh(stream_info
.last_net_seq_num
);
1289 pthread_mutex_unlock(&stream
->lock
);
1292 * This is one of the conditions which may trigger a stream close
1293 * with the others being:
1294 * 1) A close command is received for a stream
1295 * 2) The control connection owning the stream is closed
1296 * 3) We have received all of the stream's data _after_ a close
1299 try_stream_close(stream
);
1300 if (stream
->is_metadata
) {
1301 struct relay_viewer_stream
*vstream
;
1303 vstream
= viewer_stream_get_by_id(stream
->stream_handle
);
1305 if (vstream
->metadata_sent
== stream
->metadata_received
) {
1307 * Since all the metadata has been sent to the
1308 * viewer and that we have a request to close
1309 * its stream, we can safely teardown the
1310 * corresponding metadata viewer stream.
1312 viewer_stream_put(vstream
);
1314 /* Put local reference. */
1315 viewer_stream_put(vstream
);
1321 memset(&reply
, 0, sizeof(reply
));
1323 reply
.ret_code
= htobe32(LTTNG_ERR_UNK
);
1325 reply
.ret_code
= htobe32(LTTNG_OK
);
1327 send_ret
= conn
->sock
->ops
->sendmsg(conn
->sock
, &reply
,
1328 sizeof(struct lttcomm_relayd_generic_reply
), 0);
1330 ERR("Relay sending stream id");
1339 * relay_reset_metadata: reset a metadata stream
1342 int relay_reset_metadata(struct lttcomm_relayd_hdr
*recv_hdr
,
1343 struct relay_connection
*conn
)
1346 struct relay_session
*session
= conn
->session
;
1347 struct lttcomm_relayd_reset_metadata stream_info
;
1348 struct lttcomm_relayd_generic_reply reply
;
1349 struct relay_stream
*stream
;
1351 DBG("Reset metadata received");
1353 if (!session
|| conn
->version_check_done
== 0) {
1354 ERR("Trying to reset a metadata stream before version check");
1356 goto end_no_session
;
1359 ret
= conn
->sock
->ops
->recvmsg(conn
->sock
, &stream_info
,
1360 sizeof(struct lttcomm_relayd_reset_metadata
), 0);
1361 if (ret
< sizeof(struct lttcomm_relayd_reset_metadata
)) {
1363 /* Orderly shutdown. Not necessary to print an error. */
1364 DBG("Socket %d did an orderly shutdown", conn
->sock
->fd
);
1366 ERR("Relay didn't receive valid reset_metadata struct "
1370 goto end_no_session
;
1372 DBG("Update metadata to version %" PRIu64
, be64toh(stream_info
.version
));
1374 /* Unsupported for live sessions for now. */
1375 if (session
->live_timer
!= 0) {
1380 stream
= stream_get_by_id(be64toh(stream_info
.stream_id
));
1385 pthread_mutex_lock(&stream
->lock
);
1386 if (!stream
->is_metadata
) {
1391 ret
= utils_rotate_stream_file(stream
->path_name
, stream
->channel_name
,
1392 0, 0, -1, -1, stream
->stream_fd
->fd
, NULL
,
1393 &stream
->stream_fd
->fd
);
1395 ERR("Failed to rotate metadata file %s of channel %s",
1396 stream
->path_name
, stream
->channel_name
);
1401 pthread_mutex_unlock(&stream
->lock
);
1405 memset(&reply
, 0, sizeof(reply
));
1407 reply
.ret_code
= htobe32(LTTNG_ERR_UNK
);
1409 reply
.ret_code
= htobe32(LTTNG_OK
);
1411 send_ret
= conn
->sock
->ops
->sendmsg(conn
->sock
, &reply
,
1412 sizeof(struct lttcomm_relayd_generic_reply
), 0);
1414 ERR("Relay sending reset metadata reply");
1423 * relay_unknown_command: send -1 if received unknown command
1425 static void relay_unknown_command(struct relay_connection
*conn
)
1427 struct lttcomm_relayd_generic_reply reply
;
1430 memset(&reply
, 0, sizeof(reply
));
1431 reply
.ret_code
= htobe32(LTTNG_ERR_UNK
);
1432 ret
= conn
->sock
->ops
->sendmsg(conn
->sock
, &reply
,
1433 sizeof(struct lttcomm_relayd_generic_reply
), 0);
1435 ERR("Relay sending unknown command");
1440 * relay_start: send an acknowledgment to the client to tell if we are
1441 * ready to receive data. We are ready if a session is established.
1443 static int relay_start(struct lttcomm_relayd_hdr
*recv_hdr
,
1444 struct relay_connection
*conn
)
1446 int ret
= htobe32(LTTNG_OK
);
1447 struct lttcomm_relayd_generic_reply reply
;
1448 struct relay_session
*session
= conn
->session
;
1451 DBG("Trying to start the streaming without a session established");
1452 ret
= htobe32(LTTNG_ERR_UNK
);
1455 memset(&reply
, 0, sizeof(reply
));
1456 reply
.ret_code
= ret
;
1457 ret
= conn
->sock
->ops
->sendmsg(conn
->sock
, &reply
,
1458 sizeof(struct lttcomm_relayd_generic_reply
), 0);
1460 ERR("Relay sending start ack");
1467 * Append padding to the file pointed by the file descriptor fd.
1469 static int write_padding_to_file(int fd
, uint32_t size
)
1478 zeros
= zmalloc(size
);
1479 if (zeros
== NULL
) {
1480 PERROR("zmalloc zeros for padding");
1485 ret
= lttng_write(fd
, zeros
, size
);
1487 PERROR("write padding to file");
1497 * relay_recv_metadata: receive the metadata for the session.
1499 static int relay_recv_metadata(struct lttcomm_relayd_hdr
*recv_hdr
,
1500 struct relay_connection
*conn
)
1504 struct relay_session
*session
= conn
->session
;
1505 struct lttcomm_relayd_metadata_payload
*metadata_struct
;
1506 struct relay_stream
*metadata_stream
;
1507 uint64_t data_size
, payload_size
;
1510 ERR("Metadata sent before version check");
1515 data_size
= payload_size
= be64toh(recv_hdr
->data_size
);
1516 if (data_size
< sizeof(struct lttcomm_relayd_metadata_payload
)) {
1517 ERR("Incorrect data size");
1521 payload_size
-= sizeof(struct lttcomm_relayd_metadata_payload
);
1523 if (data_buffer_size
< data_size
) {
1524 /* In case the realloc fails, we can free the memory */
1527 tmp_data_ptr
= realloc(data_buffer
, data_size
);
1528 if (!tmp_data_ptr
) {
1529 ERR("Allocating data buffer");
1534 data_buffer
= tmp_data_ptr
;
1535 data_buffer_size
= data_size
;
1537 memset(data_buffer
, 0, data_size
);
1538 DBG2("Relay receiving metadata, waiting for %" PRIu64
" bytes", data_size
);
1539 size_ret
= conn
->sock
->ops
->recvmsg(conn
->sock
, data_buffer
, data_size
, 0);
1540 if (size_ret
< 0 || size_ret
!= data_size
) {
1541 if (size_ret
== 0) {
1542 /* Orderly shutdown. Not necessary to print an error. */
1543 DBG("Socket %d did an orderly shutdown", conn
->sock
->fd
);
1545 ERR("Relay didn't receive the whole metadata");
1550 metadata_struct
= (struct lttcomm_relayd_metadata_payload
*) data_buffer
;
1552 metadata_stream
= stream_get_by_id(be64toh(metadata_struct
->stream_id
));
1553 if (!metadata_stream
) {
1558 pthread_mutex_lock(&metadata_stream
->lock
);
1560 size_ret
= lttng_write(metadata_stream
->stream_fd
->fd
, metadata_struct
->payload
,
1562 if (size_ret
< payload_size
) {
1563 ERR("Relay error writing metadata on file");
1568 size_ret
= write_padding_to_file(metadata_stream
->stream_fd
->fd
,
1569 be32toh(metadata_struct
->padding_size
));
1574 metadata_stream
->metadata_received
+=
1575 payload_size
+ be32toh(metadata_struct
->padding_size
);
1576 DBG2("Relay metadata written. Updated metadata_received %" PRIu64
,
1577 metadata_stream
->metadata_received
);
1580 pthread_mutex_unlock(&metadata_stream
->lock
);
1581 stream_put(metadata_stream
);
1587 * relay_send_version: send relayd version number
1589 static int relay_send_version(struct lttcomm_relayd_hdr
*recv_hdr
,
1590 struct relay_connection
*conn
)
1593 struct lttcomm_relayd_version reply
, msg
;
1595 conn
->version_check_done
= 1;
1597 /* Get version from the other side. */
1598 ret
= conn
->sock
->ops
->recvmsg(conn
->sock
, &msg
, sizeof(msg
), 0);
1599 if (ret
< 0 || ret
!= sizeof(msg
)) {
1601 /* Orderly shutdown. Not necessary to print an error. */
1602 DBG("Socket %d did an orderly shutdown", conn
->sock
->fd
);
1604 ERR("Relay failed to receive the version values.");
1610 memset(&reply
, 0, sizeof(reply
));
1611 reply
.major
= RELAYD_VERSION_COMM_MAJOR
;
1612 reply
.minor
= RELAYD_VERSION_COMM_MINOR
;
1614 /* Major versions must be the same */
1615 if (reply
.major
!= be32toh(msg
.major
)) {
1616 DBG("Incompatible major versions (%u vs %u), deleting session",
1617 reply
.major
, be32toh(msg
.major
));
1618 connection_put(conn
);
1623 conn
->major
= reply
.major
;
1624 /* We adapt to the lowest compatible version */
1625 if (reply
.minor
<= be32toh(msg
.minor
)) {
1626 conn
->minor
= reply
.minor
;
1628 conn
->minor
= be32toh(msg
.minor
);
1631 reply
.major
= htobe32(reply
.major
);
1632 reply
.minor
= htobe32(reply
.minor
);
1633 ret
= conn
->sock
->ops
->sendmsg(conn
->sock
, &reply
,
1634 sizeof(struct lttcomm_relayd_version
), 0);
1636 ERR("Relay sending version");
1639 DBG("Version check done using protocol %u.%u", conn
->major
,
1647 * Check for data pending for a given stream id from the session daemon.
1649 static int relay_data_pending(struct lttcomm_relayd_hdr
*recv_hdr
,
1650 struct relay_connection
*conn
)
1652 struct relay_session
*session
= conn
->session
;
1653 struct lttcomm_relayd_data_pending msg
;
1654 struct lttcomm_relayd_generic_reply reply
;
1655 struct relay_stream
*stream
;
1657 uint64_t last_net_seq_num
, stream_id
;
1659 DBG("Data pending command received");
1661 if (!session
|| conn
->version_check_done
== 0) {
1662 ERR("Trying to check for data before version check");
1664 goto end_no_session
;
1667 ret
= conn
->sock
->ops
->recvmsg(conn
->sock
, &msg
, sizeof(msg
), 0);
1668 if (ret
< sizeof(msg
)) {
1670 /* Orderly shutdown. Not necessary to print an error. */
1671 DBG("Socket %d did an orderly shutdown", conn
->sock
->fd
);
1673 ERR("Relay didn't receive valid data_pending struct size : %d",
1677 goto end_no_session
;
1680 stream_id
= be64toh(msg
.stream_id
);
1681 last_net_seq_num
= be64toh(msg
.last_net_seq_num
);
1683 stream
= stream_get_by_id(stream_id
);
1684 if (stream
== NULL
) {
1689 pthread_mutex_lock(&stream
->lock
);
1691 DBG("Data pending for stream id %" PRIu64
" prev_seq %" PRIu64
1692 " and last_seq %" PRIu64
, stream_id
, stream
->prev_seq
,
1695 /* Avoid wrapping issue */
1696 if (((int64_t) (stream
->prev_seq
- last_net_seq_num
)) >= 0) {
1697 /* Data has in fact been written and is NOT pending */
1700 /* Data still being streamed thus pending */
1704 stream
->data_pending_check_done
= true;
1705 pthread_mutex_unlock(&stream
->lock
);
1710 memset(&reply
, 0, sizeof(reply
));
1711 reply
.ret_code
= htobe32(ret
);
1712 ret
= conn
->sock
->ops
->sendmsg(conn
->sock
, &reply
, sizeof(reply
), 0);
1714 ERR("Relay data pending ret code failed");
1722 * Wait for the control socket to reach a quiescent state.
1724 * Note that for now, when receiving this command from the session
1725 * daemon, this means that every subsequent commands or data received on
1726 * the control socket has been handled. So, this is why we simply return
1729 static int relay_quiescent_control(struct lttcomm_relayd_hdr
*recv_hdr
,
1730 struct relay_connection
*conn
)
1734 struct relay_stream
*stream
;
1735 struct lttcomm_relayd_quiescent_control msg
;
1736 struct lttcomm_relayd_generic_reply reply
;
1738 DBG("Checking quiescent state on control socket");
1740 if (!conn
->session
|| conn
->version_check_done
== 0) {
1741 ERR("Trying to check for data before version check");
1743 goto end_no_session
;
1746 ret
= conn
->sock
->ops
->recvmsg(conn
->sock
, &msg
, sizeof(msg
), 0);
1747 if (ret
< sizeof(msg
)) {
1749 /* Orderly shutdown. Not necessary to print an error. */
1750 DBG("Socket %d did an orderly shutdown", conn
->sock
->fd
);
1752 ERR("Relay didn't receive valid begin data_pending struct size: %d",
1756 goto end_no_session
;
1759 stream_id
= be64toh(msg
.stream_id
);
1760 stream
= stream_get_by_id(stream_id
);
1764 pthread_mutex_lock(&stream
->lock
);
1765 stream
->data_pending_check_done
= true;
1766 pthread_mutex_unlock(&stream
->lock
);
1767 DBG("Relay quiescent control pending flag set to %" PRIu64
, stream_id
);
1770 memset(&reply
, 0, sizeof(reply
));
1771 reply
.ret_code
= htobe32(LTTNG_OK
);
1772 ret
= conn
->sock
->ops
->sendmsg(conn
->sock
, &reply
, sizeof(reply
), 0);
1774 ERR("Relay data quiescent control ret code failed");
1782 * Initialize a data pending command. This means that a consumer is about
1783 * to ask for data pending for each stream it holds. Simply iterate over
1784 * all streams of a session and set the data_pending_check_done flag.
1786 * This command returns to the client a LTTNG_OK code.
1788 static int relay_begin_data_pending(struct lttcomm_relayd_hdr
*recv_hdr
,
1789 struct relay_connection
*conn
)
1792 struct lttng_ht_iter iter
;
1793 struct lttcomm_relayd_begin_data_pending msg
;
1794 struct lttcomm_relayd_generic_reply reply
;
1795 struct relay_stream
*stream
;
1796 uint64_t session_id
;
1801 DBG("Init streams for data pending");
1803 if (!conn
->session
|| conn
->version_check_done
== 0) {
1804 ERR("Trying to check for data before version check");
1806 goto end_no_session
;
1809 ret
= conn
->sock
->ops
->recvmsg(conn
->sock
, &msg
, sizeof(msg
), 0);
1810 if (ret
< sizeof(msg
)) {
1812 /* Orderly shutdown. Not necessary to print an error. */
1813 DBG("Socket %d did an orderly shutdown", conn
->sock
->fd
);
1815 ERR("Relay didn't receive valid begin data_pending struct size: %d",
1819 goto end_no_session
;
1822 session_id
= be64toh(msg
.session_id
);
1825 * Iterate over all streams to set the begin data pending flag.
1826 * For now, the streams are indexed by stream handle so we have
1827 * to iterate over all streams to find the one associated with
1828 * the right session_id.
1831 cds_lfht_for_each_entry(relay_streams_ht
->ht
, &iter
.iter
, stream
,
1833 if (!stream_get(stream
)) {
1836 if (stream
->trace
->session
->id
== session_id
) {
1837 pthread_mutex_lock(&stream
->lock
);
1838 stream
->data_pending_check_done
= false;
1839 pthread_mutex_unlock(&stream
->lock
);
1840 DBG("Set begin data pending flag to stream %" PRIu64
,
1841 stream
->stream_handle
);
1847 memset(&reply
, 0, sizeof(reply
));
1848 /* All good, send back reply. */
1849 reply
.ret_code
= htobe32(LTTNG_OK
);
1851 ret
= conn
->sock
->ops
->sendmsg(conn
->sock
, &reply
, sizeof(reply
), 0);
1853 ERR("Relay begin data pending send reply failed");
1861 * End data pending command. This will check, for a given session id, if
1862 * each stream associated with it has its data_pending_check_done flag
1863 * set. If not, this means that the client lost track of the stream but
1864 * the data is still being streamed on our side. In this case, we inform
1865 * the client that data is in flight.
1867 * Return to the client if there is data in flight or not with a ret_code.
1869 static int relay_end_data_pending(struct lttcomm_relayd_hdr
*recv_hdr
,
1870 struct relay_connection
*conn
)
1873 struct lttng_ht_iter iter
;
1874 struct lttcomm_relayd_end_data_pending msg
;
1875 struct lttcomm_relayd_generic_reply reply
;
1876 struct relay_stream
*stream
;
1877 uint64_t session_id
;
1878 uint32_t is_data_inflight
= 0;
1880 DBG("End data pending command");
1882 if (!conn
->session
|| conn
->version_check_done
== 0) {
1883 ERR("Trying to check for data before version check");
1885 goto end_no_session
;
1888 ret
= conn
->sock
->ops
->recvmsg(conn
->sock
, &msg
, sizeof(msg
), 0);
1889 if (ret
< sizeof(msg
)) {
1891 /* Orderly shutdown. Not necessary to print an error. */
1892 DBG("Socket %d did an orderly shutdown", conn
->sock
->fd
);
1894 ERR("Relay didn't receive valid end data_pending struct size: %d",
1898 goto end_no_session
;
1901 session_id
= be64toh(msg
.session_id
);
1904 * Iterate over all streams to see if the begin data pending
1908 cds_lfht_for_each_entry(relay_streams_ht
->ht
, &iter
.iter
, stream
,
1910 if (!stream_get(stream
)) {
1913 if (stream
->trace
->session
->id
!= session_id
) {
1917 pthread_mutex_lock(&stream
->lock
);
1918 if (!stream
->data_pending_check_done
) {
1919 if (!stream
->closed
|| !(((int64_t) (stream
->prev_seq
- stream
->last_net_seq_num
)) >= 0)) {
1920 is_data_inflight
= 1;
1921 DBG("Data is still in flight for stream %" PRIu64
,
1922 stream
->stream_handle
);
1923 pthread_mutex_unlock(&stream
->lock
);
1928 pthread_mutex_unlock(&stream
->lock
);
1933 memset(&reply
, 0, sizeof(reply
));
1934 /* All good, send back reply. */
1935 reply
.ret_code
= htobe32(is_data_inflight
);
1937 ret
= conn
->sock
->ops
->sendmsg(conn
->sock
, &reply
, sizeof(reply
), 0);
1939 ERR("Relay end data pending send reply failed");
1947 * Receive an index for a specific stream.
1949 * Return 0 on success else a negative value.
1951 static int relay_recv_index(struct lttcomm_relayd_hdr
*recv_hdr
,
1952 struct relay_connection
*conn
)
1955 struct relay_session
*session
= conn
->session
;
1956 struct lttcomm_relayd_index index_info
;
1957 struct relay_index
*index
;
1958 struct lttcomm_relayd_generic_reply reply
;
1959 struct relay_stream
*stream
;
1960 uint64_t net_seq_num
;
1965 DBG("Relay receiving index");
1967 if (!session
|| conn
->version_check_done
== 0) {
1968 ERR("Trying to close a stream before version check");
1970 goto end_no_session
;
1973 msg_len
= lttcomm_relayd_index_len(
1974 lttng_to_index_major(conn
->major
, conn
->minor
),
1975 lttng_to_index_minor(conn
->major
, conn
->minor
));
1976 ret
= conn
->sock
->ops
->recvmsg(conn
->sock
, &index_info
,
1978 if (ret
< msg_len
) {
1980 /* Orderly shutdown. Not necessary to print an error. */
1981 DBG("Socket %d did an orderly shutdown", conn
->sock
->fd
);
1983 ERR("Relay didn't receive valid index struct size : %d", ret
);
1986 goto end_no_session
;
1989 net_seq_num
= be64toh(index_info
.net_seq_num
);
1991 stream
= stream_get_by_id(be64toh(index_info
.relay_stream_id
));
1993 ERR("stream_get_by_id not found");
1997 pthread_mutex_lock(&stream
->lock
);
1999 /* Live beacon handling */
2000 if (index_info
.packet_size
== 0) {
2001 DBG("Received live beacon for stream %" PRIu64
,
2002 stream
->stream_handle
);
2005 * Only flag a stream inactive when it has already
2006 * received data and no indexes are in flight.
2008 if (stream
->index_received_seqcount
> 0
2009 && stream
->indexes_in_flight
== 0) {
2010 stream
->beacon_ts_end
=
2011 be64toh(index_info
.timestamp_end
);
2014 goto end_stream_put
;
2016 stream
->beacon_ts_end
= -1ULL;
2019 if (stream
->ctf_stream_id
== -1ULL) {
2020 stream
->ctf_stream_id
= be64toh(index_info
.stream_id
);
2022 index
= relay_index_get_by_id_or_create(stream
, net_seq_num
);
2025 ERR("relay_index_get_by_id_or_create index NULL");
2026 goto end_stream_put
;
2028 if (set_index_control_data(index
, &index_info
, conn
)) {
2029 ERR("set_index_control_data error");
2030 relay_index_put(index
);
2032 goto end_stream_put
;
2034 ret
= relay_index_try_flush(index
);
2036 tracefile_array_commit_seq(stream
->tfa
);
2037 stream
->index_received_seqcount
++;
2038 } else if (ret
> 0) {
2042 ERR("relay_index_try_flush error %d", ret
);
2043 relay_index_put(index
);
2048 pthread_mutex_unlock(&stream
->lock
);
2053 memset(&reply
, 0, sizeof(reply
));
2055 reply
.ret_code
= htobe32(LTTNG_ERR_UNK
);
2057 reply
.ret_code
= htobe32(LTTNG_OK
);
2059 send_ret
= conn
->sock
->ops
->sendmsg(conn
->sock
, &reply
, sizeof(reply
), 0);
2061 ERR("Relay sending close index id reply");
2070 * Receive the streams_sent message.
2072 * Return 0 on success else a negative value.
2074 static int relay_streams_sent(struct lttcomm_relayd_hdr
*recv_hdr
,
2075 struct relay_connection
*conn
)
2078 struct lttcomm_relayd_generic_reply reply
;
2082 DBG("Relay receiving streams_sent");
2084 if (!conn
->session
|| conn
->version_check_done
== 0) {
2085 ERR("Trying to close a stream before version check");
2087 goto end_no_session
;
2091 * Publish every pending stream in the connection recv list which are
2092 * now ready to be used by the viewer.
2094 publish_connection_local_streams(conn
);
2096 memset(&reply
, 0, sizeof(reply
));
2097 reply
.ret_code
= htobe32(LTTNG_OK
);
2098 send_ret
= conn
->sock
->ops
->sendmsg(conn
->sock
, &reply
, sizeof(reply
), 0);
2100 ERR("Relay sending sent_stream reply");
2112 * Process the commands received on the control socket
2114 static int relay_process_control(struct lttcomm_relayd_hdr
*recv_hdr
,
2115 struct relay_connection
*conn
)
2119 switch (be32toh(recv_hdr
->cmd
)) {
2120 case RELAYD_CREATE_SESSION
:
2121 ret
= relay_create_session(recv_hdr
, conn
);
2123 case RELAYD_ADD_STREAM
:
2124 ret
= relay_add_stream(recv_hdr
, conn
);
2126 case RELAYD_START_DATA
:
2127 ret
= relay_start(recv_hdr
, conn
);
2129 case RELAYD_SEND_METADATA
:
2130 ret
= relay_recv_metadata(recv_hdr
, conn
);
2132 case RELAYD_VERSION
:
2133 ret
= relay_send_version(recv_hdr
, conn
);
2135 case RELAYD_CLOSE_STREAM
:
2136 ret
= relay_close_stream(recv_hdr
, conn
);
2138 case RELAYD_DATA_PENDING
:
2139 ret
= relay_data_pending(recv_hdr
, conn
);
2141 case RELAYD_QUIESCENT_CONTROL
:
2142 ret
= relay_quiescent_control(recv_hdr
, conn
);
2144 case RELAYD_BEGIN_DATA_PENDING
:
2145 ret
= relay_begin_data_pending(recv_hdr
, conn
);
2147 case RELAYD_END_DATA_PENDING
:
2148 ret
= relay_end_data_pending(recv_hdr
, conn
);
2150 case RELAYD_SEND_INDEX
:
2151 ret
= relay_recv_index(recv_hdr
, conn
);
2153 case RELAYD_STREAMS_SENT
:
2154 ret
= relay_streams_sent(recv_hdr
, conn
);
2156 case RELAYD_RESET_METADATA
:
2157 ret
= relay_reset_metadata(recv_hdr
, conn
);
2159 case RELAYD_UPDATE_SYNC_INFO
:
2161 ERR("Received unknown command (%u)", be32toh(recv_hdr
->cmd
));
2162 relay_unknown_command(conn
);
2172 * Handle index for a data stream.
2174 * Called with the stream lock held.
2176 * Return 0 on success else a negative value.
2178 static int handle_index_data(struct relay_stream
*stream
, uint64_t net_seq_num
,
2182 uint64_t data_offset
;
2183 struct relay_index
*index
;
2185 /* Get data offset because we are about to update the index. */
2186 data_offset
= htobe64(stream
->tracefile_size_current
);
2188 DBG("handle_index_data: stream %" PRIu64
" net_seq_num %" PRIu64
" data offset %" PRIu64
,
2189 stream
->stream_handle
, net_seq_num
, stream
->tracefile_size_current
);
2192 * Lookup for an existing index for that stream id/sequence
2193 * number. If it exists, the control thread has already received the
2194 * data for it, thus we need to write it to disk.
2196 index
= relay_index_get_by_id_or_create(stream
, net_seq_num
);
2202 if (rotate_index
|| !stream
->index_file
) {
2203 uint32_t major
, minor
;
2205 /* Put ref on previous index_file. */
2206 if (stream
->index_file
) {
2207 lttng_index_file_put(stream
->index_file
);
2208 stream
->index_file
= NULL
;
2210 major
= stream
->trace
->session
->major
;
2211 minor
= stream
->trace
->session
->minor
;
2212 stream
->index_file
= lttng_index_file_create(stream
->path_name
,
2213 stream
->channel_name
,
2214 -1, -1, stream
->tracefile_size
,
2215 tracefile_array_get_file_index_head(stream
->tfa
),
2216 lttng_to_index_major(major
, minor
),
2217 lttng_to_index_minor(major
, minor
));
2218 if (!stream
->index_file
) {
2220 /* Put self-ref for this index due to error. */
2221 relay_index_put(index
);
2227 if (relay_index_set_file(index
, stream
->index_file
, data_offset
)) {
2229 /* Put self-ref for this index due to error. */
2230 relay_index_put(index
);
2235 ret
= relay_index_try_flush(index
);
2237 tracefile_array_commit_seq(stream
->tfa
);
2238 stream
->index_received_seqcount
++;
2239 } else if (ret
> 0) {
2243 /* Put self-ref for this index due to error. */
2244 relay_index_put(index
);
2253 * relay_process_data: Process the data received on the data socket
2255 static int relay_process_data(struct relay_connection
*conn
)
2257 int ret
= 0, rotate_index
= 0;
2259 struct relay_stream
*stream
;
2260 struct lttcomm_relayd_data_hdr data_hdr
;
2262 uint64_t net_seq_num
;
2264 struct relay_session
*session
;
2265 bool new_stream
= false, close_requested
= false;
2266 size_t chunk_size
= RECV_DATA_BUFFER_SIZE
;
2267 size_t recv_off
= 0;
2268 char data_buffer
[chunk_size
];
2270 ret
= conn
->sock
->ops
->recvmsg(conn
->sock
, &data_hdr
,
2271 sizeof(struct lttcomm_relayd_data_hdr
), 0);
2274 /* Orderly shutdown. Not necessary to print an error. */
2275 DBG("Socket %d did an orderly shutdown", conn
->sock
->fd
);
2277 ERR("Unable to receive data header on sock %d", conn
->sock
->fd
);
2283 stream_id
= be64toh(data_hdr
.stream_id
);
2284 stream
= stream_get_by_id(stream_id
);
2286 ERR("relay_process_data: Cannot find stream %" PRIu64
, stream_id
);
2290 session
= stream
->trace
->session
;
2291 data_size
= be32toh(data_hdr
.data_size
);
2293 net_seq_num
= be64toh(data_hdr
.net_seq_num
);
2295 DBG3("Receiving data of size %u for stream id %" PRIu64
" seqnum %" PRIu64
,
2296 data_size
, stream_id
, net_seq_num
);
2298 pthread_mutex_lock(&stream
->lock
);
2300 /* Check if a rotation is needed. */
2301 if (stream
->tracefile_size
> 0 &&
2302 (stream
->tracefile_size_current
+ data_size
) >
2303 stream
->tracefile_size
) {
2304 uint64_t old_id
, new_id
;
2306 old_id
= tracefile_array_get_file_index_head(stream
->tfa
);
2307 tracefile_array_file_rotate(stream
->tfa
);
2309 /* new_id is updated by utils_rotate_stream_file. */
2312 ret
= utils_rotate_stream_file(stream
->path_name
,
2313 stream
->channel_name
, stream
->tracefile_size
,
2314 stream
->tracefile_count
, -1,
2315 -1, stream
->stream_fd
->fd
,
2316 &new_id
, &stream
->stream_fd
->fd
);
2318 ERR("Rotating stream output file");
2319 goto end_stream_unlock
;
2322 * Reset current size because we just performed a stream
2325 stream
->tracefile_size_current
= 0;
2330 * Index are handled in protocol version 2.4 and above. Also,
2331 * snapshot and index are NOT supported.
2333 if (session
->minor
>= 4 && !session
->snapshot
) {
2334 ret
= handle_index_data(stream
, net_seq_num
, rotate_index
);
2336 ERR("handle_index_data: fail stream %" PRIu64
" net_seq_num %" PRIu64
" ret %d",
2337 stream
->stream_handle
, net_seq_num
, ret
);
2338 goto end_stream_unlock
;
2342 for (recv_off
= 0; recv_off
< data_size
; recv_off
+= chunk_size
) {
2343 size_t recv_size
= min(data_size
- recv_off
, chunk_size
);
2345 ret
= conn
->sock
->ops
->recvmsg(conn
->sock
, data_buffer
, recv_size
, 0);
2348 /* Orderly shutdown. Not necessary to print an error. */
2349 DBG("Socket %d did an orderly shutdown", conn
->sock
->fd
);
2351 ERR("Socket %d error %d", conn
->sock
->fd
, ret
);
2354 goto end_stream_unlock
;
2357 /* Write data to stream output fd. */
2358 size_ret
= lttng_write(stream
->stream_fd
->fd
, data_buffer
,
2360 if (size_ret
< recv_size
) {
2361 ERR("Relay error writing data to file");
2363 goto end_stream_unlock
;
2366 DBG2("Relay wrote %zd bytes to tracefile for stream id %" PRIu64
,
2367 size_ret
, stream
->stream_handle
);
2370 ret
= write_padding_to_file(stream
->stream_fd
->fd
,
2371 be32toh(data_hdr
.padding_size
));
2373 ERR("write_padding_to_file: fail stream %" PRIu64
" net_seq_num %" PRIu64
" ret %d",
2374 stream
->stream_handle
, net_seq_num
, ret
);
2375 goto end_stream_unlock
;
2377 stream
->tracefile_size_current
+=
2378 data_size
+ be32toh(data_hdr
.padding_size
);
2379 if (stream
->prev_seq
== -1ULL) {
2383 stream
->prev_seq
= net_seq_num
;
2386 close_requested
= stream
->close_requested
;
2387 pthread_mutex_unlock(&stream
->lock
);
2388 if (close_requested
) {
2389 try_stream_close(stream
);
2393 pthread_mutex_lock(&session
->lock
);
2394 uatomic_set(&session
->new_streams
, 1);
2395 pthread_mutex_unlock(&session
->lock
);
2402 static void cleanup_connection_pollfd(struct lttng_poll_event
*events
, int pollfd
)
2406 (void) lttng_poll_del(events
, pollfd
);
2408 ret
= close(pollfd
);
2410 ERR("Closing pollfd %d", pollfd
);
2414 static void relay_thread_close_connection(struct lttng_poll_event
*events
,
2415 int pollfd
, struct relay_connection
*conn
)
2417 const char *type_str
;
2419 switch (conn
->type
) {
2424 type_str
= "Control";
2426 case RELAY_VIEWER_COMMAND
:
2427 type_str
= "Viewer Command";
2429 case RELAY_VIEWER_NOTIFICATION
:
2430 type_str
= "Viewer Notification";
2433 type_str
= "Unknown";
2435 cleanup_connection_pollfd(events
, pollfd
);
2436 connection_put(conn
);
2437 DBG("%s connection closed with %d", type_str
, pollfd
);
2441 * This thread does the actual work
2443 static void *relay_thread_worker(void *data
)
2445 int ret
, err
= -1, last_seen_data_fd
= -1;
2447 struct lttng_poll_event events
;
2448 struct lttng_ht
*relay_connections_ht
;
2449 struct lttng_ht_iter iter
;
2450 struct lttcomm_relayd_hdr recv_hdr
;
2451 struct relay_connection
*destroy_conn
= NULL
;
2453 DBG("[thread] Relay worker started");
2455 rcu_register_thread();
2457 health_register(health_relayd
, HEALTH_RELAYD_TYPE_WORKER
);
2459 if (testpoint(relayd_thread_worker
)) {
2460 goto error_testpoint
;
2463 health_code_update();
2465 /* table of connections indexed on socket */
2466 relay_connections_ht
= lttng_ht_new(0, LTTNG_HT_TYPE_ULONG
);
2467 if (!relay_connections_ht
) {
2468 goto relay_connections_ht_error
;
2471 ret
= create_thread_poll_set(&events
, 2);
2473 goto error_poll_create
;
2476 ret
= lttng_poll_add(&events
, relay_conn_pipe
[0], LPOLLIN
| LPOLLRDHUP
);
2483 int idx
= -1, i
, seen_control
= 0, last_notdel_data_fd
= -1;
2485 health_code_update();
2487 /* Infinite blocking call, waiting for transmission */
2488 DBG3("Relayd worker thread polling...");
2489 health_poll_entry();
2490 ret
= lttng_poll_wait(&events
, -1);
2494 * Restart interrupted system call.
2496 if (errno
== EINTR
) {
2505 * Process control. The control connection is
2506 * prioritized so we don't starve it with high
2507 * throughput tracing data on the data connection.
2509 for (i
= 0; i
< nb_fd
; i
++) {
2510 /* Fetch once the poll data */
2511 uint32_t revents
= LTTNG_POLL_GETEV(&events
, i
);
2512 int pollfd
= LTTNG_POLL_GETFD(&events
, i
);
2514 health_code_update();
2518 * No activity for this FD (poll
2524 /* Thread quit pipe has been closed. Killing thread. */
2525 ret
= check_thread_quit_pipe(pollfd
, revents
);
2531 /* Inspect the relay conn pipe for new connection */
2532 if (pollfd
== relay_conn_pipe
[0]) {
2533 if (revents
& LPOLLIN
) {
2534 struct relay_connection
*conn
;
2536 ret
= lttng_read(relay_conn_pipe
[0], &conn
, sizeof(conn
));
2540 lttng_poll_add(&events
, conn
->sock
->fd
,
2541 LPOLLIN
| LPOLLRDHUP
);
2542 connection_ht_add(relay_connections_ht
, conn
);
2543 DBG("Connection socket %d added", conn
->sock
->fd
);
2544 } else if (revents
& (LPOLLERR
| LPOLLHUP
| LPOLLRDHUP
)) {
2545 ERR("Relay connection pipe error");
2548 ERR("Unexpected poll events %u for sock %d", revents
, pollfd
);
2552 struct relay_connection
*ctrl_conn
;
2554 ctrl_conn
= connection_get_by_sock(relay_connections_ht
, pollfd
);
2555 /* If not found, there is a synchronization issue. */
2558 if (ctrl_conn
->type
== RELAY_DATA
) {
2559 if (revents
& LPOLLIN
) {
2561 * Flag the last seen data fd not deleted. It will be
2562 * used as the last seen fd if any fd gets deleted in
2565 last_notdel_data_fd
= pollfd
;
2567 goto put_ctrl_connection
;
2569 assert(ctrl_conn
->type
== RELAY_CONTROL
);
2571 if (revents
& LPOLLIN
) {
2572 ret
= ctrl_conn
->sock
->ops
->recvmsg(ctrl_conn
->sock
,
2573 &recv_hdr
, sizeof(recv_hdr
), 0);
2575 /* Connection closed */
2576 relay_thread_close_connection(&events
, pollfd
,
2579 ret
= relay_process_control(&recv_hdr
, ctrl_conn
);
2581 /* Clear the session on error. */
2582 relay_thread_close_connection(&events
,
2587 } else if (revents
& (LPOLLERR
| LPOLLHUP
| LPOLLRDHUP
)) {
2588 relay_thread_close_connection(&events
,
2590 if (last_seen_data_fd
== pollfd
) {
2591 last_seen_data_fd
= last_notdel_data_fd
;
2594 ERR("Unexpected poll events %u for control sock %d",
2596 connection_put(ctrl_conn
);
2599 put_ctrl_connection
:
2600 connection_put(ctrl_conn
);
2605 * The last loop handled a control request, go back to poll to make
2606 * sure we prioritise the control socket.
2612 if (last_seen_data_fd
>= 0) {
2613 for (i
= 0; i
< nb_fd
; i
++) {
2614 int pollfd
= LTTNG_POLL_GETFD(&events
, i
);
2616 health_code_update();
2618 if (last_seen_data_fd
== pollfd
) {
2625 /* Process data connection. */
2626 for (i
= idx
+ 1; i
< nb_fd
; i
++) {
2627 /* Fetch the poll data. */
2628 uint32_t revents
= LTTNG_POLL_GETEV(&events
, i
);
2629 int pollfd
= LTTNG_POLL_GETFD(&events
, i
);
2630 struct relay_connection
*data_conn
;
2632 health_code_update();
2635 /* No activity for this FD (poll implementation). */
2639 /* Skip the command pipe. It's handled in the first loop. */
2640 if (pollfd
== relay_conn_pipe
[0]) {
2644 data_conn
= connection_get_by_sock(relay_connections_ht
, pollfd
);
2646 /* Skip it. Might be removed before. */
2649 if (data_conn
->type
== RELAY_CONTROL
) {
2650 goto put_data_connection
;
2652 assert(data_conn
->type
== RELAY_DATA
);
2654 if (revents
& LPOLLIN
) {
2655 ret
= relay_process_data(data_conn
);
2656 /* Connection closed */
2658 relay_thread_close_connection(&events
, pollfd
,
2661 * Every goto restart call sets the last seen fd where
2662 * here we don't really care since we gracefully
2663 * continue the loop after the connection is deleted.
2666 /* Keep last seen port. */
2667 last_seen_data_fd
= pollfd
;
2668 connection_put(data_conn
);
2671 } else if (revents
& (LPOLLERR
| LPOLLHUP
| LPOLLRDHUP
)) {
2672 relay_thread_close_connection(&events
, pollfd
,
2675 ERR("Unknown poll events %u for data sock %d",
2678 put_data_connection
:
2679 connection_put(data_conn
);
2681 last_seen_data_fd
= -1;
2684 /* Normal exit, no error */
2689 /* Cleanup reamaining connection object. */
2691 cds_lfht_for_each_entry(relay_connections_ht
->ht
, &iter
.iter
,
2694 health_code_update();
2696 if (session_abort(destroy_conn
->session
)) {
2701 * No need to grab another ref, because we own
2704 relay_thread_close_connection(&events
, destroy_conn
->sock
->fd
,
2709 lttng_poll_clean(&events
);
2711 lttng_ht_destroy(relay_connections_ht
);
2712 relay_connections_ht_error
:
2713 /* Close relay conn pipes */
2714 utils_close_pipe(relay_conn_pipe
);
2716 DBG("Thread exited with error");
2718 DBG("Worker thread cleanup complete");
2722 ERR("Health error occurred in %s", __func__
);
2724 health_unregister(health_relayd
);
2725 rcu_unregister_thread();
2726 lttng_relay_stop_threads();
2731 * Create the relay command pipe to wake thread_manage_apps.
2732 * Closed in cleanup().
2734 static int create_relay_conn_pipe(void)
2738 ret
= utils_create_pipe_cloexec(relay_conn_pipe
);
2746 int main(int argc
, char **argv
)
2748 int ret
= 0, retval
= 0;
2751 /* Parse arguments */
2753 if (set_options(argc
, argv
)) {
2758 if (set_signal_handler()) {
2763 /* Try to create directory if -o, --output is specified. */
2764 if (opt_output_path
) {
2765 if (*opt_output_path
!= '/') {
2766 ERR("Please specify an absolute path for -o, --output PATH");
2771 ret
= utils_mkdir_recursive(opt_output_path
, S_IRWXU
| S_IRWXG
,
2774 ERR("Unable to create %s", opt_output_path
);
2781 if (opt_daemon
|| opt_background
) {
2784 ret
= lttng_daemonize(&child_ppid
, &recv_child_signal
,
2792 * We are in the child. Make sure all other file
2793 * descriptors are closed, in case we are called with
2794 * more opened file descriptors than the standard ones.
2796 for (i
= 3; i
< sysconf(_SC_OPEN_MAX
); i
++) {
2801 /* Initialize thread health monitoring */
2802 health_relayd
= health_app_create(NR_HEALTH_RELAYD_TYPES
);
2803 if (!health_relayd
) {
2804 PERROR("health_app_create error");
2806 goto exit_health_app_create
;
2809 /* Create thread quit pipe */
2810 if (init_thread_quit_pipe()) {
2812 goto exit_init_data
;
2815 /* Setup the thread apps communication pipe. */
2816 if (create_relay_conn_pipe()) {
2818 goto exit_init_data
;
2821 /* Init relay command queue. */
2822 cds_wfcq_init(&relay_conn_queue
.head
, &relay_conn_queue
.tail
);
2824 /* Initialize communication library */
2826 lttcomm_inet_init();
2828 /* tables of sessions indexed by session ID */
2829 sessions_ht
= lttng_ht_new(0, LTTNG_HT_TYPE_U64
);
2832 goto exit_init_data
;
2835 /* tables of streams indexed by stream ID */
2836 relay_streams_ht
= lttng_ht_new(0, LTTNG_HT_TYPE_U64
);
2837 if (!relay_streams_ht
) {
2839 goto exit_init_data
;
2842 /* tables of streams indexed by stream ID */
2843 viewer_streams_ht
= lttng_ht_new(0, LTTNG_HT_TYPE_U64
);
2844 if (!viewer_streams_ht
) {
2846 goto exit_init_data
;
2849 ret
= utils_create_pipe(health_quit_pipe
);
2852 goto exit_health_quit_pipe
;
2855 /* Create thread to manage the client socket */
2856 ret
= pthread_create(&health_thread
, default_pthread_attr(),
2857 thread_manage_health
, (void *) NULL
);
2860 PERROR("pthread_create health");
2862 goto exit_health_thread
;
2865 /* Setup the dispatcher thread */
2866 ret
= pthread_create(&dispatcher_thread
, default_pthread_attr(),
2867 relay_thread_dispatcher
, (void *) NULL
);
2870 PERROR("pthread_create dispatcher");
2872 goto exit_dispatcher_thread
;
2875 /* Setup the worker thread */
2876 ret
= pthread_create(&worker_thread
, default_pthread_attr(),
2877 relay_thread_worker
, NULL
);
2880 PERROR("pthread_create worker");
2882 goto exit_worker_thread
;
2885 /* Setup the listener thread */
2886 ret
= pthread_create(&listener_thread
, default_pthread_attr(),
2887 relay_thread_listener
, (void *) NULL
);
2890 PERROR("pthread_create listener");
2892 goto exit_listener_thread
;
2895 ret
= relayd_live_create(live_uri
);
2897 ERR("Starting live viewer threads");
2903 * This is where we start awaiting program completion (e.g. through
2904 * signal that asks threads to teardown).
2907 ret
= relayd_live_join();
2913 ret
= pthread_join(listener_thread
, &status
);
2916 PERROR("pthread_join listener_thread");
2920 exit_listener_thread
:
2921 ret
= pthread_join(worker_thread
, &status
);
2924 PERROR("pthread_join worker_thread");
2929 ret
= pthread_join(dispatcher_thread
, &status
);
2932 PERROR("pthread_join dispatcher_thread");
2935 exit_dispatcher_thread
:
2937 ret
= pthread_join(health_thread
, &status
);
2940 PERROR("pthread_join health_thread");
2945 utils_close_pipe(health_quit_pipe
);
2946 exit_health_quit_pipe
:
2949 health_app_destroy(health_relayd
);
2950 exit_health_app_create
:
2953 * Wait for all pending call_rcu work to complete before tearing
2954 * down data structures. call_rcu worker may be trying to
2955 * perform lookups in those structures.
2960 /* Ensure all prior call_rcu are done. */