2 * Copyright (C) 2012 - Julien Desfossez <jdesfossez@efficios.com>
3 * David Goulet <dgoulet@efficios.com>
5 * This program is free software; you can redistribute it and/or modify
6 * it under the terms of the GNU General Public License, version 2 only,
7 * as published by the Free Software Foundation.
9 * This program is distributed in the hope that it will be useful, but WITHOUT
10 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
11 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
14 * You should have received a copy of the GNU General Public License along
15 * with this program; if not, write to the Free Software Foundation, Inc.,
16 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
29 #include <sys/mount.h>
30 #include <sys/resource.h>
31 #include <sys/socket.h>
33 #include <sys/types.h>
36 #include <urcu/futex.h>
37 #include <urcu/uatomic.h>
42 #include <lttng/lttng.h>
43 #include <common/common.h>
44 #include <common/compat/poll.h>
45 #include <common/compat/socket.h>
46 #include <common/defaults.h>
47 #include <common/futex.h>
48 #include <common/sessiond-comm/sessiond-comm.h>
49 #include <common/sessiond-comm/inet.h>
50 #include <common/hashtable/hashtable.h>
51 #include <common/sessiond-comm/relayd.h>
52 #include <common/uri.h>
53 #include <common/utils.h>
55 #include "lttng-relayd.h"
57 /* command line options */
58 static int opt_daemon
;
59 static char *opt_output_path
;
60 static struct lttng_uri
*control_uri
;
61 static struct lttng_uri
*data_uri
;
64 static int is_root
; /* Set to 1 if the daemon is running as root */
67 * Quit pipe for all threads. This permits a single cancellation point
68 * for all threads when receiving an event on the pipe.
70 static int thread_quit_pipe
[2] = { -1, -1 };
73 * This pipe is used to inform the worker thread that a command is queued and
74 * ready to be processed.
76 static int relay_cmd_pipe
[2] = { -1, -1 };
78 /* Shared between threads */
79 static int dispatch_thread_exit
;
81 static pthread_t listener_thread
;
82 static pthread_t dispatcher_thread
;
83 static pthread_t worker_thread
;
85 static uint64_t last_relay_stream_id
;
86 static uint64_t last_relay_session_id
;
89 * Relay command queue.
91 * The relay_thread_listener and relay_thread_dispatcher communicate with this
94 static struct relay_cmd_queue relay_cmd_queue
;
96 /* buffer allocated at startup, used to store the trace data */
97 static char *data_buffer
;
98 static unsigned int data_buffer_size
;
101 * usage function on stderr
106 fprintf(stderr
, "Usage: %s OPTIONS\n\nOptions:\n", progname
);
107 fprintf(stderr
, " -h, --help Display this usage.\n");
108 fprintf(stderr
, " -d, --daemonize Start as a daemon.\n");
109 fprintf(stderr
, " -C, --control-port Control port listening (URI)\n");
110 fprintf(stderr
, " -D, --data-port Data port listening (URI)\n");
111 fprintf(stderr
, " -o, --output Output path for traces (PATH)\n");
112 fprintf(stderr
, " -v, --verbose Verbose mode. Activate DBG() macro.\n");
116 int parse_args(int argc
, char **argv
)
120 char *default_address
;
122 static struct option long_options
[] = {
123 { "control-port", 1, 0, 'C', },
124 { "data-port", 1, 0, 'D', },
125 { "daemonize", 0, 0, 'd', },
126 { "help", 0, 0, 'h', },
127 { "output", 1, 0, 'o', },
128 { "verbose", 0, 0, 'v', },
133 int option_index
= 0;
134 c
= getopt_long(argc
, argv
, "dhv" "C:D:o:",
135 long_options
, &option_index
);
142 fprintf(stderr
, "option %s", long_options
[option_index
].name
);
144 fprintf(stderr
, " with arg %s\n", optarg
);
148 ret
= uri_parse(optarg
, &control_uri
);
150 ERR("Invalid control URI specified");
153 if (control_uri
->port
== 0) {
154 control_uri
->port
= DEFAULT_NETWORK_CONTROL_PORT
;
158 ret
= uri_parse(optarg
, &data_uri
);
160 ERR("Invalid data URI specified");
163 if (data_uri
->port
== 0) {
164 data_uri
->port
= DEFAULT_NETWORK_DATA_PORT
;
174 ret
= asprintf(&opt_output_path
, "%s", optarg
);
176 PERROR("asprintf opt_output_path");
181 /* Verbose level can increase using multiple -v */
182 lttng_opt_verbose
+= 1;
185 /* Unknown option or other error.
186 * Error is printed by getopt, just return */
192 /* assign default values */
193 if (control_uri
== NULL
) {
194 ret
= asprintf(&default_address
, "tcp://0.0.0.0:%d",
195 DEFAULT_NETWORK_CONTROL_PORT
);
197 PERROR("asprintf default data address");
201 ret
= uri_parse(default_address
, &control_uri
);
202 free(default_address
);
204 ERR("Invalid control URI specified");
208 if (data_uri
== NULL
) {
209 ret
= asprintf(&default_address
, "tcp://0.0.0.0:%d",
210 DEFAULT_NETWORK_DATA_PORT
);
212 PERROR("asprintf default data address");
216 ret
= uri_parse(default_address
, &data_uri
);
217 free(default_address
);
219 ERR("Invalid data URI specified");
236 /* free the dynamically allocated opt_output_path */
237 free(opt_output_path
);
239 /* Close thread quit pipes */
240 utils_close_pipe(thread_quit_pipe
);
242 uri_free(control_uri
);
247 * Write to writable pipe used to notify a thread.
250 int notify_thread_pipe(int wpipe
)
255 ret
= write(wpipe
, "!", 1);
256 } while (ret
< 0 && errno
== EINTR
);
257 if (ret
< 0 || ret
!= 1) {
258 PERROR("write poll pipe");
265 * Stop all threads by closing the thread quit pipe.
268 void stop_threads(void)
272 /* Stopping all threads */
273 DBG("Terminating all threads");
274 ret
= notify_thread_pipe(thread_quit_pipe
[1]);
276 ERR("write error on thread quit pipe");
279 /* Dispatch thread */
280 CMM_STORE_SHARED(dispatch_thread_exit
, 1);
281 futex_nto1_wake(&relay_cmd_queue
.futex
);
285 * Signal handler for the daemon
287 * Simply stop all worker threads, leaving main() return gracefully after
288 * joining all threads and calling cleanup().
291 void sighandler(int sig
)
295 DBG("SIGPIPE caught");
298 DBG("SIGINT caught");
302 DBG("SIGTERM caught");
311 * Setup signal handler for :
312 * SIGINT, SIGTERM, SIGPIPE
315 int set_signal_handler(void)
321 if ((ret
= sigemptyset(&sigset
)) < 0) {
322 PERROR("sigemptyset");
326 sa
.sa_handler
= sighandler
;
329 if ((ret
= sigaction(SIGTERM
, &sa
, NULL
)) < 0) {
334 if ((ret
= sigaction(SIGINT
, &sa
, NULL
)) < 0) {
339 if ((ret
= sigaction(SIGPIPE
, &sa
, NULL
)) < 0) {
344 DBG("Signal handler set for SIGTERM, SIGPIPE and SIGINT");
350 * Init thread quit pipe.
352 * Return -1 on error or 0 if all pipes are created.
355 int init_thread_quit_pipe(void)
359 ret
= utils_create_pipe_cloexec(thread_quit_pipe
);
365 * Create a poll set with O_CLOEXEC and add the thread quit pipe to the set.
368 int create_thread_poll_set(struct lttng_poll_event
*events
, int size
)
372 if (events
== NULL
|| size
== 0) {
377 ret
= lttng_poll_create(events
, size
, LTTNG_CLOEXEC
);
383 ret
= lttng_poll_add(events
, thread_quit_pipe
[0], LPOLLIN
);
395 * Check if the thread quit pipe was triggered.
397 * Return 1 if it was triggered else 0;
400 int check_thread_quit_pipe(int fd
, uint32_t events
)
402 if (fd
== thread_quit_pipe
[0] && (events
& LPOLLIN
)) {
410 * Create and init socket from uri.
413 struct lttcomm_sock
*relay_init_sock(struct lttng_uri
*uri
)
416 struct lttcomm_sock
*sock
= NULL
;
418 sock
= lttcomm_alloc_sock_from_uri(uri
);
420 ERR("Allocating socket");
424 ret
= lttcomm_create_sock(sock
);
428 DBG("Listening on sock %d", sock
->fd
);
430 ret
= sock
->ops
->bind(sock
);
435 ret
= sock
->ops
->listen(sock
, -1);
445 lttcomm_destroy_sock(sock
);
451 * Return nonzero if stream needs to be closed.
454 int close_stream_check(struct relay_stream
*stream
)
457 if (stream
->close_flag
&& stream
->prev_seq
== stream
->last_net_seq_num
) {
459 * We are about to close the stream so set the data pending flag to 1
460 * which will make the end data pending command skip the stream which
461 * is now closed and ready. Note that after proceeding to a file close,
462 * the written file is ready for reading.
464 stream
->data_pending_check_done
= 1;
471 * This thread manages the listening for new connections on the network
474 void *relay_thread_listener(void *data
)
476 int i
, ret
, pollfd
, err
= -1;
478 uint32_t revents
, nb_fd
;
479 struct lttng_poll_event events
;
480 struct lttcomm_sock
*control_sock
, *data_sock
;
482 DBG("[thread] Relay listener started");
484 control_sock
= relay_init_sock(control_uri
);
486 goto error_sock_control
;
489 data_sock
= relay_init_sock(data_uri
);
491 goto error_sock_relay
;
495 * Pass 3 as size here for the thread quit pipe, control and data socket.
497 ret
= create_thread_poll_set(&events
, 3);
499 goto error_create_poll
;
502 /* Add the control socket */
503 ret
= lttng_poll_add(&events
, control_sock
->fd
, LPOLLIN
| LPOLLRDHUP
);
508 /* Add the data socket */
509 ret
= lttng_poll_add(&events
, data_sock
->fd
, LPOLLIN
| LPOLLRDHUP
);
515 DBG("Listener accepting connections");
518 ret
= lttng_poll_wait(&events
, -1);
521 * Restart interrupted system call.
523 if (errno
== EINTR
) {
531 DBG("Relay new connection received");
532 for (i
= 0; i
< nb_fd
; i
++) {
533 /* Fetch once the poll data */
534 revents
= LTTNG_POLL_GETEV(&events
, i
);
535 pollfd
= LTTNG_POLL_GETFD(&events
, i
);
537 /* Thread quit pipe has been closed. Killing thread. */
538 ret
= check_thread_quit_pipe(pollfd
, revents
);
544 if (revents
& (LPOLLERR
| LPOLLHUP
| LPOLLRDHUP
)) {
545 ERR("socket poll error");
547 } else if (revents
& LPOLLIN
) {
549 * Get allocated in this thread,
550 * enqueued to a global queue, dequeued
551 * and freed in the worker thread.
553 struct relay_command
*relay_cmd
;
554 struct lttcomm_sock
*newsock
;
556 relay_cmd
= zmalloc(sizeof(struct relay_command
));
557 if (relay_cmd
== NULL
) {
558 PERROR("relay command zmalloc");
562 if (pollfd
== data_sock
->fd
) {
563 newsock
= data_sock
->ops
->accept(data_sock
);
565 PERROR("accepting data sock");
569 relay_cmd
->type
= RELAY_DATA
;
570 DBG("Relay data connection accepted, socket %d", newsock
->fd
);
572 assert(pollfd
== control_sock
->fd
);
573 newsock
= control_sock
->ops
->accept(control_sock
);
575 PERROR("accepting control sock");
579 relay_cmd
->type
= RELAY_CONTROL
;
580 DBG("Relay control connection accepted, socket %d", newsock
->fd
);
582 ret
= setsockopt(newsock
->fd
, SOL_SOCKET
, SO_REUSEADDR
,
585 PERROR("setsockopt inet");
586 lttcomm_destroy_sock(newsock
);
590 relay_cmd
->sock
= newsock
;
592 * Lock free enqueue the request.
594 cds_wfq_enqueue(&relay_cmd_queue
.queue
, &relay_cmd
->node
);
597 * Wake the dispatch queue futex. Implicit memory
598 * barrier with the exchange in cds_wfq_enqueue.
600 futex_nto1_wake(&relay_cmd_queue
.futex
);
608 lttng_poll_clean(&events
);
610 if (data_sock
->fd
>= 0) {
611 ret
= data_sock
->ops
->close(data_sock
);
616 lttcomm_destroy_sock(data_sock
);
618 if (control_sock
->fd
>= 0) {
619 ret
= control_sock
->ops
->close(control_sock
);
624 lttcomm_destroy_sock(control_sock
);
627 DBG("Thread exited with error");
629 DBG("Relay listener thread cleanup complete");
635 * This thread manages the dispatching of the requests to worker threads
638 void *relay_thread_dispatcher(void *data
)
641 struct cds_wfq_node
*node
;
642 struct relay_command
*relay_cmd
= NULL
;
644 DBG("[thread] Relay dispatcher started");
646 while (!CMM_LOAD_SHARED(dispatch_thread_exit
)) {
647 /* Atomically prepare the queue futex */
648 futex_nto1_prepare(&relay_cmd_queue
.futex
);
651 /* Dequeue commands */
652 node
= cds_wfq_dequeue_blocking(&relay_cmd_queue
.queue
);
654 DBG("Woken up but nothing in the relay command queue");
655 /* Continue thread execution */
659 relay_cmd
= caa_container_of(node
, struct relay_command
, node
);
660 DBG("Dispatching request waiting on sock %d", relay_cmd
->sock
->fd
);
663 * Inform worker thread of the new request. This
664 * call is blocking so we can be assured that the data will be read
665 * at some point in time or wait to the end of the world :)
668 ret
= write(relay_cmd_pipe
[1], relay_cmd
,
669 sizeof(struct relay_command
));
670 } while (ret
< 0 && errno
== EINTR
);
672 if (ret
< 0 || ret
!= sizeof(struct relay_command
)) {
673 PERROR("write cmd pipe");
676 } while (node
!= NULL
);
678 /* Futex wait on queue. Blocking call on futex() */
679 futex_nto1_wait(&relay_cmd_queue
.futex
);
683 DBG("Dispatch thread dying");
689 * Return the realpath(3) of the path even if the last directory token does not
690 * exist. For example, with /tmp/test1/test2, if test2/ does not exist but the
691 * /tmp/test1 does, the real path is returned. In normal time, realpath(3)
692 * fails if the end point directory does not exist.
695 char *expand_full_path(const char *path
)
697 const char *end_path
= path
;
698 char *next
, *cut_path
, *expanded_path
, *respath
;
700 /* Find last token delimited by '/' */
701 while ((next
= strpbrk(end_path
+ 1, "/"))) {
705 /* Cut last token from original path */
706 cut_path
= strndup(path
, end_path
- path
);
708 expanded_path
= malloc(PATH_MAX
);
709 if (expanded_path
== NULL
) {
714 respath
= realpath(cut_path
, expanded_path
);
715 if (respath
== NULL
) {
718 ERR("%s: No such file or directory", cut_path
);
726 /* Add end part to expanded path */
727 strcat(respath
, end_path
);
736 * config_get_default_path
738 * Returns the HOME directory path. Caller MUST NOT free(3) the return pointer.
741 char *config_get_default_path(void)
743 return getenv("HOME");
747 * Create recursively directory using the FULL path.
750 int mkdir_recursive(char *path
, mode_t mode
)
752 char *p
, tmp
[PATH_MAX
];
757 ret
= snprintf(tmp
, sizeof(tmp
), "%s", path
);
759 PERROR("snprintf mkdir");
764 if (tmp
[len
- 1] == '/') {
768 for (p
= tmp
+ 1; *p
; p
++) {
771 if (tmp
[strlen(tmp
) - 1] == '.' &&
772 tmp
[strlen(tmp
) - 2] == '.' &&
773 tmp
[strlen(tmp
) - 3] == '/') {
774 ERR("Using '/../' is not permitted in the trace path (%s)",
779 ret
= stat(tmp
, &statbuf
);
781 ret
= mkdir(tmp
, mode
);
783 if (errno
!= EEXIST
) {
784 PERROR("mkdir recursive");
794 ret
= mkdir(tmp
, mode
);
796 if (errno
!= EEXIST
) {
797 PERROR("mkdir recursive last piece");
809 char *create_output_path_auto(char *path_name
)
812 char *traces_path
= NULL
;
813 char *alloc_path
= NULL
;
816 default_path
= config_get_default_path();
817 if (default_path
== NULL
) {
818 ERR("Home path not found.\n \
819 Please specify an output path using -o, --output PATH");
822 alloc_path
= strdup(default_path
);
823 if (alloc_path
== NULL
) {
824 PERROR("Path allocation");
827 ret
= asprintf(&traces_path
, "%s/" DEFAULT_TRACE_DIR_NAME
828 "/%s", alloc_path
, path_name
);
830 PERROR("asprintf trace dir name");
839 char *create_output_path_noauto(char *path_name
)
842 char *traces_path
= NULL
;
845 full_path
= expand_full_path(opt_output_path
);
846 ret
= asprintf(&traces_path
, "%s/%s", full_path
, path_name
);
848 PERROR("asprintf trace dir name");
857 * create_output_path: create the output trace directory
860 char *create_output_path(char *path_name
)
862 if (opt_output_path
== NULL
) {
863 return create_output_path_auto(path_name
);
865 return create_output_path_noauto(path_name
);
870 * Get stream from stream id.
871 * Need to be called with RCU read-side lock held.
874 struct relay_stream
*relay_stream_from_stream_id(uint64_t stream_id
,
875 struct lttng_ht
*streams_ht
)
877 struct lttng_ht_node_ulong
*node
;
878 struct lttng_ht_iter iter
;
879 struct relay_stream
*ret
;
881 lttng_ht_lookup(streams_ht
,
882 (void *)((unsigned long) stream_id
),
884 node
= lttng_ht_iter_get_node_ulong(&iter
);
886 DBG("Relay stream %" PRIu64
" not found", stream_id
);
891 ret
= caa_container_of(node
, struct relay_stream
, stream_n
);
898 void deferred_free_stream(struct rcu_head
*head
)
900 struct relay_stream
*stream
=
901 caa_container_of(head
, struct relay_stream
, rcu_node
);
906 * relay_delete_session: Free all memory associated with a session and
910 void relay_delete_session(struct relay_command
*cmd
, struct lttng_ht
*streams_ht
)
912 struct lttng_ht_iter iter
;
913 struct lttng_ht_node_ulong
*node
;
914 struct relay_stream
*stream
;
921 DBG("Relay deleting session %" PRIu64
, cmd
->session
->id
);
924 cds_lfht_for_each_entry(streams_ht
->ht
, &iter
.iter
, node
, node
) {
925 node
= lttng_ht_iter_get_node_ulong(&iter
);
927 stream
= caa_container_of(node
,
928 struct relay_stream
, stream_n
);
929 if (stream
->session
== cmd
->session
) {
930 ret
= close(stream
->fd
);
932 PERROR("close stream fd on delete session");
934 ret
= lttng_ht_del(streams_ht
, &iter
);
936 call_rcu(&stream
->rcu_node
,
937 deferred_free_stream
);
947 * Handle the RELAYD_CREATE_SESSION command.
949 * On success, send back the session id or else return a negative value.
952 int relay_create_session(struct lttcomm_relayd_hdr
*recv_hdr
,
953 struct relay_command
*cmd
)
955 int ret
= 0, send_ret
;
956 struct relay_session
*session
;
957 struct lttcomm_relayd_status_session reply
;
962 memset(&reply
, 0, sizeof(reply
));
964 session
= zmalloc(sizeof(struct relay_session
));
965 if (session
== NULL
) {
966 PERROR("relay session zmalloc");
971 session
->id
= ++last_relay_session_id
;
972 session
->sock
= cmd
->sock
;
973 cmd
->session
= session
;
975 reply
.session_id
= htobe64(session
->id
);
977 DBG("Created session %" PRIu64
, session
->id
);
981 reply
.ret_code
= htobe32(LTTNG_ERR_FATAL
);
983 reply
.ret_code
= htobe32(LTTNG_OK
);
986 send_ret
= cmd
->sock
->ops
->sendmsg(cmd
->sock
, &reply
, sizeof(reply
), 0);
988 ERR("Relayd sending session id");
996 * relay_add_stream: allocate a new stream for a session
999 int relay_add_stream(struct lttcomm_relayd_hdr
*recv_hdr
,
1000 struct relay_command
*cmd
, struct lttng_ht
*streams_ht
)
1002 struct relay_session
*session
= cmd
->session
;
1003 struct lttcomm_relayd_add_stream stream_info
;
1004 struct relay_stream
*stream
= NULL
;
1005 struct lttcomm_relayd_status_stream reply
;
1006 char *path
= NULL
, *root_path
= NULL
;
1009 if (!session
|| cmd
->version_check_done
== 0) {
1010 ERR("Trying to add a stream before version check");
1012 goto end_no_session
;
1015 ret
= cmd
->sock
->ops
->recvmsg(cmd
->sock
, &stream_info
,
1016 sizeof(struct lttcomm_relayd_add_stream
), 0);
1017 if (ret
< sizeof(struct lttcomm_relayd_add_stream
)) {
1019 /* Orderly shutdown. Not necessary to print an error. */
1020 DBG("Socket %d did an orderly shutdown", cmd
->sock
->fd
);
1022 ERR("Relay didn't receive valid add_stream struct size : %d", ret
);
1025 goto end_no_session
;
1027 stream
= zmalloc(sizeof(struct relay_stream
));
1028 if (stream
== NULL
) {
1029 PERROR("relay stream zmalloc");
1031 goto end_no_session
;
1035 stream
->stream_handle
= ++last_relay_stream_id
;
1036 stream
->prev_seq
= -1ULL;
1037 stream
->session
= session
;
1039 root_path
= create_output_path(stream_info
.pathname
);
1044 ret
= mkdir_recursive(root_path
, S_IRWXU
| S_IRWXG
);
1046 ERR("relay creating output directory");
1050 ret
= asprintf(&path
, "%s/%s", root_path
, stream_info
.channel_name
);
1052 PERROR("asprintf stream path");
1056 ret
= open(path
, O_WRONLY
|O_CREAT
|O_TRUNC
, S_IRWXU
|S_IRWXG
|S_IRWXO
);
1058 PERROR("Relay creating trace file");
1063 DBG("Tracefile %s created", path
);
1065 lttng_ht_node_init_ulong(&stream
->stream_n
,
1066 (unsigned long) stream
->stream_handle
);
1067 lttng_ht_add_unique_ulong(streams_ht
,
1070 DBG("Relay new stream added %s", stream_info
.channel_name
);
1075 /* send the session id to the client or a negative return code on error */
1077 reply
.ret_code
= htobe32(LTTNG_ERR_UNK
);
1079 reply
.ret_code
= htobe32(LTTNG_OK
);
1081 reply
.handle
= htobe64(stream
->stream_handle
);
1082 send_ret
= cmd
->sock
->ops
->sendmsg(cmd
->sock
, &reply
,
1083 sizeof(struct lttcomm_relayd_status_stream
), 0);
1085 ERR("Relay sending stream id");
1095 * relay_close_stream: close a specific stream
1098 int relay_close_stream(struct lttcomm_relayd_hdr
*recv_hdr
,
1099 struct relay_command
*cmd
, struct lttng_ht
*streams_ht
)
1101 struct relay_session
*session
= cmd
->session
;
1102 struct lttcomm_relayd_close_stream stream_info
;
1103 struct lttcomm_relayd_generic_reply reply
;
1104 struct relay_stream
*stream
;
1106 struct lttng_ht_iter iter
;
1108 DBG("Close stream received");
1110 if (!session
|| cmd
->version_check_done
== 0) {
1111 ERR("Trying to close a stream before version check");
1113 goto end_no_session
;
1116 ret
= cmd
->sock
->ops
->recvmsg(cmd
->sock
, &stream_info
,
1117 sizeof(struct lttcomm_relayd_close_stream
), 0);
1118 if (ret
< sizeof(struct lttcomm_relayd_close_stream
)) {
1120 /* Orderly shutdown. Not necessary to print an error. */
1121 DBG("Socket %d did an orderly shutdown", cmd
->sock
->fd
);
1123 ERR("Relay didn't receive valid add_stream struct size : %d", ret
);
1126 goto end_no_session
;
1130 stream
= relay_stream_from_stream_id(be64toh(stream_info
.stream_id
),
1137 stream
->last_net_seq_num
= be64toh(stream_info
.last_net_seq_num
);
1138 stream
->close_flag
= 1;
1140 if (close_stream_check(stream
)) {
1143 delret
= close(stream
->fd
);
1145 PERROR("close stream");
1147 iter
.iter
.node
= &stream
->stream_n
.node
;
1148 delret
= lttng_ht_del(streams_ht
, &iter
);
1150 call_rcu(&stream
->rcu_node
,
1151 deferred_free_stream
);
1152 DBG("Closed tracefile %d from close stream", stream
->fd
);
1159 reply
.ret_code
= htobe32(LTTNG_ERR_UNK
);
1161 reply
.ret_code
= htobe32(LTTNG_OK
);
1163 send_ret
= cmd
->sock
->ops
->sendmsg(cmd
->sock
, &reply
,
1164 sizeof(struct lttcomm_relayd_generic_reply
), 0);
1166 ERR("Relay sending stream id");
1175 * relay_unknown_command: send -1 if received unknown command
1178 void relay_unknown_command(struct relay_command
*cmd
)
1180 struct lttcomm_relayd_generic_reply reply
;
1183 reply
.ret_code
= htobe32(LTTNG_ERR_UNK
);
1184 ret
= cmd
->sock
->ops
->sendmsg(cmd
->sock
, &reply
,
1185 sizeof(struct lttcomm_relayd_generic_reply
), 0);
1187 ERR("Relay sending unknown command");
1192 * relay_start: send an acknowledgment to the client to tell if we are
1193 * ready to receive data. We are ready if a session is established.
1196 int relay_start(struct lttcomm_relayd_hdr
*recv_hdr
,
1197 struct relay_command
*cmd
)
1199 int ret
= htobe32(LTTNG_OK
);
1200 struct lttcomm_relayd_generic_reply reply
;
1201 struct relay_session
*session
= cmd
->session
;
1204 DBG("Trying to start the streaming without a session established");
1205 ret
= htobe32(LTTNG_ERR_UNK
);
1208 reply
.ret_code
= ret
;
1209 ret
= cmd
->sock
->ops
->sendmsg(cmd
->sock
, &reply
,
1210 sizeof(struct lttcomm_relayd_generic_reply
), 0);
1212 ERR("Relay sending start ack");
1219 * Append padding to the file pointed by the file descriptor fd.
1221 static int write_padding_to_file(int fd
, uint32_t size
)
1230 zeros
= zmalloc(size
);
1231 if (zeros
== NULL
) {
1232 PERROR("zmalloc zeros for padding");
1238 ret
= write(fd
, zeros
, size
);
1239 } while (ret
< 0 && errno
== EINTR
);
1240 if (ret
< 0 || ret
!= size
) {
1241 PERROR("write padding to file");
1251 * relay_recv_metadata: receive the metada for the session.
1254 int relay_recv_metadata(struct lttcomm_relayd_hdr
*recv_hdr
,
1255 struct relay_command
*cmd
, struct lttng_ht
*streams_ht
)
1257 int ret
= htobe32(LTTNG_OK
);
1258 struct relay_session
*session
= cmd
->session
;
1259 struct lttcomm_relayd_metadata_payload
*metadata_struct
;
1260 struct relay_stream
*metadata_stream
;
1261 uint64_t data_size
, payload_size
;
1264 ERR("Metadata sent before version check");
1269 data_size
= payload_size
= be64toh(recv_hdr
->data_size
);
1270 if (data_size
< sizeof(struct lttcomm_relayd_metadata_payload
)) {
1271 ERR("Incorrect data size");
1275 payload_size
-= sizeof(struct lttcomm_relayd_metadata_payload
);
1277 if (data_buffer_size
< data_size
) {
1278 /* In case the realloc fails, we can free the memory */
1281 tmp_data_ptr
= realloc(data_buffer
, data_size
);
1282 if (!tmp_data_ptr
) {
1283 ERR("Allocating data buffer");
1288 data_buffer
= tmp_data_ptr
;
1289 data_buffer_size
= data_size
;
1291 memset(data_buffer
, 0, data_size
);
1292 DBG2("Relay receiving metadata, waiting for %" PRIu64
" bytes", data_size
);
1293 ret
= cmd
->sock
->ops
->recvmsg(cmd
->sock
, data_buffer
, data_size
, 0);
1294 if (ret
< 0 || ret
!= data_size
) {
1296 /* Orderly shutdown. Not necessary to print an error. */
1297 DBG("Socket %d did an orderly shutdown", cmd
->sock
->fd
);
1299 ERR("Relay didn't receive the whole metadata");
1304 metadata_struct
= (struct lttcomm_relayd_metadata_payload
*) data_buffer
;
1307 metadata_stream
= relay_stream_from_stream_id(
1308 be64toh(metadata_struct
->stream_id
), streams_ht
);
1309 if (!metadata_stream
) {
1315 ret
= write(metadata_stream
->fd
, metadata_struct
->payload
,
1317 } while (ret
< 0 && errno
== EINTR
);
1318 if (ret
< 0 || ret
!= payload_size
) {
1319 ERR("Relay error writing metadata on file");
1324 ret
= write_padding_to_file(metadata_stream
->fd
,
1325 be32toh(metadata_struct
->padding_size
));
1330 DBG2("Relay metadata written");
1339 * relay_send_version: send relayd version number
1342 int relay_send_version(struct lttcomm_relayd_hdr
*recv_hdr
,
1343 struct relay_command
*cmd
)
1346 struct lttcomm_relayd_version reply
, msg
;
1350 cmd
->version_check_done
= 1;
1352 /* Get version from the other side. */
1353 ret
= cmd
->sock
->ops
->recvmsg(cmd
->sock
, &msg
, sizeof(msg
), 0);
1354 if (ret
< 0 || ret
!= sizeof(msg
)) {
1356 /* Orderly shutdown. Not necessary to print an error. */
1357 DBG("Socket %d did an orderly shutdown", cmd
->sock
->fd
);
1359 ERR("Relay failed to receive the version values.");
1366 * For now, we just ignore the received version but after 2.1 stable
1367 * release, a check must be done to see if we either adapt to the other
1368 * side version (which MUST be lower than us) or keep the latest data
1369 * structure considering that the other side will adapt.
1372 ret
= sscanf(VERSION
, "%10u.%10u", &reply
.major
, &reply
.minor
);
1374 ERR("Error in scanning version");
1378 reply
.major
= htobe32(reply
.major
);
1379 reply
.minor
= htobe32(reply
.minor
);
1380 ret
= cmd
->sock
->ops
->sendmsg(cmd
->sock
, &reply
,
1381 sizeof(struct lttcomm_relayd_version
), 0);
1383 ERR("Relay sending version");
1385 DBG("Version check done (%u.%u)", be32toh(reply
.major
),
1386 be32toh(reply
.minor
));
1393 * Check for data pending for a given stream id from the session daemon.
1396 int relay_data_pending(struct lttcomm_relayd_hdr
*recv_hdr
,
1397 struct relay_command
*cmd
, struct lttng_ht
*streams_ht
)
1399 struct relay_session
*session
= cmd
->session
;
1400 struct lttcomm_relayd_data_pending msg
;
1401 struct lttcomm_relayd_generic_reply reply
;
1402 struct relay_stream
*stream
;
1404 uint64_t last_net_seq_num
, stream_id
;
1406 DBG("Data pending command received");
1408 if (!session
|| cmd
->version_check_done
== 0) {
1409 ERR("Trying to check for data before version check");
1411 goto end_no_session
;
1414 ret
= cmd
->sock
->ops
->recvmsg(cmd
->sock
, &msg
, sizeof(msg
), 0);
1415 if (ret
< sizeof(msg
)) {
1417 /* Orderly shutdown. Not necessary to print an error. */
1418 DBG("Socket %d did an orderly shutdown", cmd
->sock
->fd
);
1420 ERR("Relay didn't receive valid data_pending struct size : %d",
1424 goto end_no_session
;
1427 stream_id
= be64toh(msg
.stream_id
);
1428 last_net_seq_num
= be64toh(msg
.last_net_seq_num
);
1431 stream
= relay_stream_from_stream_id(stream_id
, streams_ht
);
1432 if (stream
== NULL
) {
1437 DBG("Data pending for stream id %" PRIu64
" prev_seq %" PRIu64
1438 " and last_seq %" PRIu64
, stream_id
, stream
->prev_seq
,
1441 /* Avoid wrapping issue */
1442 if (((int64_t) (stream
->prev_seq
- last_net_seq_num
)) >= 0) {
1443 /* Data has in fact been written and is NOT pending */
1446 /* Data still being streamed thus pending */
1450 /* Pending check is now done. */
1451 stream
->data_pending_check_done
= 1;
1456 reply
.ret_code
= htobe32(ret
);
1457 ret
= cmd
->sock
->ops
->sendmsg(cmd
->sock
, &reply
, sizeof(reply
), 0);
1459 ERR("Relay data pending ret code failed");
1467 * Wait for the control socket to reach a quiescent state.
1469 * Note that for now, when receiving this command from the session daemon, this
1470 * means that every subsequent commands or data received on the control socket
1471 * has been handled. So, this is why we simply return OK here.
1474 int relay_quiescent_control(struct lttcomm_relayd_hdr
*recv_hdr
,
1475 struct relay_command
*cmd
, struct lttng_ht
*streams_ht
)
1479 struct relay_stream
*stream
;
1480 struct lttng_ht_iter iter
;
1481 struct lttcomm_relayd_quiescent_control msg
;
1482 struct lttcomm_relayd_generic_reply reply
;
1484 DBG("Checking quiescent state on control socket");
1486 if (!cmd
->session
|| cmd
->version_check_done
== 0) {
1487 ERR("Trying to check for data before version check");
1489 goto end_no_session
;
1492 ret
= cmd
->sock
->ops
->recvmsg(cmd
->sock
, &msg
, sizeof(msg
), 0);
1493 if (ret
< sizeof(msg
)) {
1495 /* Orderly shutdown. Not necessary to print an error. */
1496 DBG("Socket %d did an orderly shutdown", cmd
->sock
->fd
);
1498 ERR("Relay didn't receive valid begin data_pending struct size: %d",
1502 goto end_no_session
;
1505 stream_id
= be64toh(msg
.stream_id
);
1508 cds_lfht_for_each_entry(streams_ht
->ht
, &iter
.iter
, stream
, stream_n
.node
) {
1509 if (stream
->stream_handle
== stream_id
) {
1510 stream
->data_pending_check_done
= 1;
1511 DBG("Relay quiescent control pending flag set to %" PRIu64
,
1518 reply
.ret_code
= htobe32(LTTNG_OK
);
1519 ret
= cmd
->sock
->ops
->sendmsg(cmd
->sock
, &reply
, sizeof(reply
), 0);
1521 ERR("Relay data quiescent control ret code failed");
1529 * Initialize a data pending command. This means that a client is about to ask
1530 * for data pending for each stream he/she holds. Simply iterate over all
1531 * streams of a session and set the data_pending_check_done flag.
1533 * This command returns to the client a LTTNG_OK code.
1536 int relay_begin_data_pending(struct lttcomm_relayd_hdr
*recv_hdr
,
1537 struct relay_command
*cmd
, struct lttng_ht
*streams_ht
)
1540 struct lttng_ht_iter iter
;
1541 struct lttcomm_relayd_begin_data_pending msg
;
1542 struct lttcomm_relayd_generic_reply reply
;
1543 struct relay_stream
*stream
;
1544 uint64_t session_id
;
1550 DBG("Init streams for data pending");
1552 if (!cmd
->session
|| cmd
->version_check_done
== 0) {
1553 ERR("Trying to check for data before version check");
1555 goto end_no_session
;
1558 ret
= cmd
->sock
->ops
->recvmsg(cmd
->sock
, &msg
, sizeof(msg
), 0);
1559 if (ret
< sizeof(msg
)) {
1561 /* Orderly shutdown. Not necessary to print an error. */
1562 DBG("Socket %d did an orderly shutdown", cmd
->sock
->fd
);
1564 ERR("Relay didn't receive valid begin data_pending struct size: %d",
1568 goto end_no_session
;
1571 session_id
= be64toh(msg
.session_id
);
1574 * Iterate over all streams to set the begin data pending flag. For now, the
1575 * streams are indexed by stream handle so we have to iterate over all
1576 * streams to find the one associated with the right session_id.
1579 cds_lfht_for_each_entry(streams_ht
->ht
, &iter
.iter
, stream
, stream_n
.node
) {
1580 if (stream
->session
->id
== session_id
) {
1581 stream
->data_pending_check_done
= 0;
1582 DBG("Set begin data pending flag to stream %" PRIu64
,
1583 stream
->stream_handle
);
1588 /* All good, send back reply. */
1589 reply
.ret_code
= htobe32(LTTNG_OK
);
1591 ret
= cmd
->sock
->ops
->sendmsg(cmd
->sock
, &reply
, sizeof(reply
), 0);
1593 ERR("Relay begin data pending send reply failed");
1601 * End data pending command. This will check, for a given session id, if each
1602 * stream associated with it has its data_pending_check_done flag set. If not,
1603 * this means that the client lost track of the stream but the data is still
1604 * being streamed on our side. In this case, we inform the client that data is
1607 * Return to the client if there is data in flight or not with a ret_code.
1610 int relay_end_data_pending(struct lttcomm_relayd_hdr
*recv_hdr
,
1611 struct relay_command
*cmd
, struct lttng_ht
*streams_ht
)
1614 struct lttng_ht_iter iter
;
1615 struct lttcomm_relayd_end_data_pending msg
;
1616 struct lttcomm_relayd_generic_reply reply
;
1617 struct relay_stream
*stream
;
1618 uint64_t session_id
;
1619 uint32_t is_data_inflight
= 0;
1625 DBG("End data pending command");
1627 if (!cmd
->session
|| cmd
->version_check_done
== 0) {
1628 ERR("Trying to check for data before version check");
1630 goto end_no_session
;
1633 ret
= cmd
->sock
->ops
->recvmsg(cmd
->sock
, &msg
, sizeof(msg
), 0);
1634 if (ret
< sizeof(msg
)) {
1636 /* Orderly shutdown. Not necessary to print an error. */
1637 DBG("Socket %d did an orderly shutdown", cmd
->sock
->fd
);
1639 ERR("Relay didn't receive valid end data_pending struct size: %d",
1643 goto end_no_session
;
1646 session_id
= be64toh(msg
.session_id
);
1648 /* Iterate over all streams to see if the begin data pending flag is set. */
1650 cds_lfht_for_each_entry(streams_ht
->ht
, &iter
.iter
, stream
, stream_n
.node
) {
1651 if (stream
->session
->id
== session_id
&&
1652 !stream
->data_pending_check_done
) {
1653 is_data_inflight
= 1;
1654 DBG("Data is still in flight for stream %" PRIu64
,
1655 stream
->stream_handle
);
1661 /* All good, send back reply. */
1662 reply
.ret_code
= htobe32(is_data_inflight
);
1664 ret
= cmd
->sock
->ops
->sendmsg(cmd
->sock
, &reply
, sizeof(reply
), 0);
1666 ERR("Relay end data pending send reply failed");
1674 * relay_process_control: Process the commands received on the control socket
1677 int relay_process_control(struct lttcomm_relayd_hdr
*recv_hdr
,
1678 struct relay_command
*cmd
, struct lttng_ht
*streams_ht
)
1682 switch (be32toh(recv_hdr
->cmd
)) {
1683 case RELAYD_CREATE_SESSION
:
1684 ret
= relay_create_session(recv_hdr
, cmd
);
1686 case RELAYD_ADD_STREAM
:
1687 ret
= relay_add_stream(recv_hdr
, cmd
, streams_ht
);
1689 case RELAYD_START_DATA
:
1690 ret
= relay_start(recv_hdr
, cmd
);
1692 case RELAYD_SEND_METADATA
:
1693 ret
= relay_recv_metadata(recv_hdr
, cmd
, streams_ht
);
1695 case RELAYD_VERSION
:
1696 ret
= relay_send_version(recv_hdr
, cmd
);
1698 case RELAYD_CLOSE_STREAM
:
1699 ret
= relay_close_stream(recv_hdr
, cmd
, streams_ht
);
1701 case RELAYD_DATA_PENDING
:
1702 ret
= relay_data_pending(recv_hdr
, cmd
, streams_ht
);
1704 case RELAYD_QUIESCENT_CONTROL
:
1705 ret
= relay_quiescent_control(recv_hdr
, cmd
, streams_ht
);
1707 case RELAYD_BEGIN_DATA_PENDING
:
1708 ret
= relay_begin_data_pending(recv_hdr
, cmd
, streams_ht
);
1710 case RELAYD_END_DATA_PENDING
:
1711 ret
= relay_end_data_pending(recv_hdr
, cmd
, streams_ht
);
1713 case RELAYD_UPDATE_SYNC_INFO
:
1715 ERR("Received unknown command (%u)", be32toh(recv_hdr
->cmd
));
1716 relay_unknown_command(cmd
);
1726 * relay_process_data: Process the data received on the data socket
1729 int relay_process_data(struct relay_command
*cmd
, struct lttng_ht
*streams_ht
)
1732 struct relay_stream
*stream
;
1733 struct lttcomm_relayd_data_hdr data_hdr
;
1735 uint64_t net_seq_num
;
1738 ret
= cmd
->sock
->ops
->recvmsg(cmd
->sock
, &data_hdr
,
1739 sizeof(struct lttcomm_relayd_data_hdr
), 0);
1742 /* Orderly shutdown. Not necessary to print an error. */
1743 DBG("Socket %d did an orderly shutdown", cmd
->sock
->fd
);
1745 ERR("Unable to receive data header on sock %d", cmd
->sock
->fd
);
1751 stream_id
= be64toh(data_hdr
.stream_id
);
1754 stream
= relay_stream_from_stream_id(stream_id
, streams_ht
);
1760 data_size
= be32toh(data_hdr
.data_size
);
1761 if (data_buffer_size
< data_size
) {
1764 tmp_data_ptr
= realloc(data_buffer
, data_size
);
1765 if (!tmp_data_ptr
) {
1766 ERR("Allocating data buffer");
1771 data_buffer
= tmp_data_ptr
;
1772 data_buffer_size
= data_size
;
1774 memset(data_buffer
, 0, data_size
);
1776 net_seq_num
= be64toh(data_hdr
.net_seq_num
);
1778 DBG3("Receiving data of size %u for stream id %" PRIu64
" seqnum %" PRIu64
,
1779 data_size
, stream_id
, net_seq_num
);
1780 ret
= cmd
->sock
->ops
->recvmsg(cmd
->sock
, data_buffer
, data_size
, 0);
1783 /* Orderly shutdown. Not necessary to print an error. */
1784 DBG("Socket %d did an orderly shutdown", cmd
->sock
->fd
);
1791 ret
= write(stream
->fd
, data_buffer
, data_size
);
1792 } while (ret
< 0 && errno
== EINTR
);
1793 if (ret
< 0 || ret
!= data_size
) {
1794 ERR("Relay error writing data to file");
1799 DBG2("Relay wrote %d bytes to tracefile for stream id %" PRIu64
,
1800 ret
, stream
->stream_handle
);
1802 ret
= write_padding_to_file(stream
->fd
, be32toh(data_hdr
.padding_size
));
1807 stream
->prev_seq
= net_seq_num
;
1809 /* Check if we need to close the FD */
1810 if (close_stream_check(stream
)) {
1812 struct lttng_ht_iter iter
;
1814 cret
= close(stream
->fd
);
1816 PERROR("close stream process data");
1818 iter
.iter
.node
= &stream
->stream_n
.node
;
1819 ret
= lttng_ht_del(streams_ht
, &iter
);
1821 call_rcu(&stream
->rcu_node
,
1822 deferred_free_stream
);
1823 DBG("Closed tracefile %d after recv data", stream
->fd
);
1833 void relay_cleanup_poll_connection(struct lttng_poll_event
*events
, int pollfd
)
1837 lttng_poll_del(events
, pollfd
);
1839 ret
= close(pollfd
);
1841 ERR("Closing pollfd %d", pollfd
);
1846 int relay_add_connection(int fd
, struct lttng_poll_event
*events
,
1847 struct lttng_ht
*relay_connections_ht
)
1849 struct relay_command
*relay_connection
;
1852 relay_connection
= zmalloc(sizeof(struct relay_command
));
1853 if (relay_connection
== NULL
) {
1854 PERROR("Relay command zmalloc");
1858 ret
= read(fd
, relay_connection
, sizeof(struct relay_command
));
1859 } while (ret
< 0 && errno
== EINTR
);
1860 if (ret
< 0 || ret
< sizeof(struct relay_command
)) {
1861 PERROR("read relay cmd pipe");
1865 lttng_ht_node_init_ulong(&relay_connection
->sock_n
,
1866 (unsigned long) relay_connection
->sock
->fd
);
1868 lttng_ht_add_unique_ulong(relay_connections_ht
,
1869 &relay_connection
->sock_n
);
1871 return lttng_poll_add(events
,
1872 relay_connection
->sock
->fd
,
1873 LPOLLIN
| LPOLLRDHUP
);
1876 free(relay_connection
);
1882 void deferred_free_connection(struct rcu_head
*head
)
1884 struct relay_command
*relay_connection
=
1885 caa_container_of(head
, struct relay_command
, rcu_node
);
1887 lttcomm_destroy_sock(relay_connection
->sock
);
1888 free(relay_connection
);
1892 void relay_del_connection(struct lttng_ht
*relay_connections_ht
,
1893 struct lttng_ht
*streams_ht
, struct lttng_ht_iter
*iter
,
1894 struct relay_command
*relay_connection
)
1898 ret
= lttng_ht_del(relay_connections_ht
, iter
);
1900 if (relay_connection
->type
== RELAY_CONTROL
) {
1901 relay_delete_session(relay_connection
, streams_ht
);
1904 call_rcu(&relay_connection
->rcu_node
,
1905 deferred_free_connection
);
1909 * This thread does the actual work
1912 void *relay_thread_worker(void *data
)
1914 int ret
, err
= -1, last_seen_data_fd
= -1;
1916 struct relay_command
*relay_connection
;
1917 struct lttng_poll_event events
;
1918 struct lttng_ht
*relay_connections_ht
;
1919 struct lttng_ht_node_ulong
*node
;
1920 struct lttng_ht_iter iter
;
1921 struct lttng_ht
*streams_ht
;
1922 struct lttcomm_relayd_hdr recv_hdr
;
1924 DBG("[thread] Relay worker started");
1926 rcu_register_thread();
1928 /* table of connections indexed on socket */
1929 relay_connections_ht
= lttng_ht_new(0, LTTNG_HT_TYPE_ULONG
);
1930 if (!relay_connections_ht
) {
1931 goto relay_connections_ht_error
;
1934 /* tables of streams indexed by stream ID */
1935 streams_ht
= lttng_ht_new(0, LTTNG_HT_TYPE_ULONG
);
1937 goto streams_ht_error
;
1940 ret
= create_thread_poll_set(&events
, 2);
1942 goto error_poll_create
;
1945 ret
= lttng_poll_add(&events
, relay_cmd_pipe
[0], LPOLLIN
| LPOLLRDHUP
);
1952 int idx
= -1, i
, seen_control
= 0, last_notdel_data_fd
= -1;
1954 /* Infinite blocking call, waiting for transmission */
1955 DBG3("Relayd worker thread polling...");
1956 ret
= lttng_poll_wait(&events
, -1);
1959 * Restart interrupted system call.
1961 if (errno
== EINTR
) {
1970 * Process control. The control connection is prioritised so we don't
1971 * starve it with high throughout put tracing data on the data
1974 for (i
= 0; i
< nb_fd
; i
++) {
1975 /* Fetch once the poll data */
1976 uint32_t revents
= LTTNG_POLL_GETEV(&events
, i
);
1977 int pollfd
= LTTNG_POLL_GETFD(&events
, i
);
1979 /* Thread quit pipe has been closed. Killing thread. */
1980 ret
= check_thread_quit_pipe(pollfd
, revents
);
1986 /* Inspect the relay cmd pipe for new connection */
1987 if (pollfd
== relay_cmd_pipe
[0]) {
1988 if (revents
& (LPOLLERR
| LPOLLHUP
| LPOLLRDHUP
)) {
1989 ERR("Relay pipe error");
1991 } else if (revents
& LPOLLIN
) {
1992 DBG("Relay command received");
1993 ret
= relay_add_connection(relay_cmd_pipe
[0],
1994 &events
, relay_connections_ht
);
1999 } else if (revents
) {
2001 lttng_ht_lookup(relay_connections_ht
,
2002 (void *)((unsigned long) pollfd
),
2004 node
= lttng_ht_iter_get_node_ulong(&iter
);
2006 DBG2("Relay sock %d not found", pollfd
);
2010 relay_connection
= caa_container_of(node
,
2011 struct relay_command
, sock_n
);
2013 if (revents
& (LPOLLERR
)) {
2015 relay_cleanup_poll_connection(&events
, pollfd
);
2016 relay_del_connection(relay_connections_ht
,
2019 if (last_seen_data_fd
== pollfd
) {
2020 last_seen_data_fd
= last_notdel_data_fd
;
2022 } else if (revents
& (LPOLLHUP
| LPOLLRDHUP
)) {
2023 DBG("Socket %d hung up", pollfd
);
2024 relay_cleanup_poll_connection(&events
, pollfd
);
2025 relay_del_connection(relay_connections_ht
,
2028 if (last_seen_data_fd
== pollfd
) {
2029 last_seen_data_fd
= last_notdel_data_fd
;
2031 } else if (revents
& LPOLLIN
) {
2032 /* control socket */
2033 if (relay_connection
->type
== RELAY_CONTROL
) {
2034 ret
= relay_connection
->sock
->ops
->recvmsg(
2035 relay_connection
->sock
, &recv_hdr
,
2036 sizeof(struct lttcomm_relayd_hdr
), 0);
2037 /* connection closed */
2039 relay_cleanup_poll_connection(&events
, pollfd
);
2040 relay_del_connection(relay_connections_ht
,
2043 DBG("Control connection closed with %d", pollfd
);
2045 if (relay_connection
->session
) {
2046 DBG2("Relay worker receiving data for session : %" PRIu64
,
2047 relay_connection
->session
->id
);
2049 ret
= relay_process_control(&recv_hdr
,
2053 /* Clear the session on error. */
2054 relay_cleanup_poll_connection(&events
, pollfd
);
2055 relay_del_connection(relay_connections_ht
,
2058 DBG("Connection closed with %d", pollfd
);
2064 * Flag the last seen data fd not deleted. It will be
2065 * used as the last seen fd if any fd gets deleted in
2068 last_notdel_data_fd
= pollfd
;
2076 * The last loop handled a control request, go back to poll to make
2077 * sure we prioritise the control socket.
2083 if (last_seen_data_fd
>= 0) {
2084 for (i
= 0; i
< nb_fd
; i
++) {
2085 int pollfd
= LTTNG_POLL_GETFD(&events
, i
);
2086 if (last_seen_data_fd
== pollfd
) {
2093 /* Process data connection. */
2094 for (i
= idx
+ 1; i
< nb_fd
; i
++) {
2095 /* Fetch the poll data. */
2096 uint32_t revents
= LTTNG_POLL_GETEV(&events
, i
);
2097 int pollfd
= LTTNG_POLL_GETFD(&events
, i
);
2099 /* Skip the command pipe. It's handled in the first loop. */
2100 if (pollfd
== relay_cmd_pipe
[0]) {
2106 lttng_ht_lookup(relay_connections_ht
,
2107 (void *)((unsigned long) pollfd
),
2109 node
= lttng_ht_iter_get_node_ulong(&iter
);
2111 /* Skip it. Might be removed before. */
2115 relay_connection
= caa_container_of(node
,
2116 struct relay_command
, sock_n
);
2118 if (revents
& LPOLLIN
) {
2119 if (relay_connection
->type
!= RELAY_DATA
) {
2123 ret
= relay_process_data(relay_connection
, streams_ht
);
2124 /* connection closed */
2126 relay_cleanup_poll_connection(&events
, pollfd
);
2127 relay_del_connection(relay_connections_ht
,
2130 DBG("Data connection closed with %d", pollfd
);
2132 * Every goto restart call sets the last seen fd where
2133 * here we don't really care since we gracefully
2134 * continue the loop after the connection is deleted.
2137 /* Keep last seen port. */
2138 last_seen_data_fd
= pollfd
;
2146 last_seen_data_fd
= -1;
2151 lttng_poll_clean(&events
);
2153 /* empty the hash table and free the memory */
2155 cds_lfht_for_each_entry(relay_connections_ht
->ht
, &iter
.iter
, node
, node
) {
2156 node
= lttng_ht_iter_get_node_ulong(&iter
);
2158 relay_connection
= caa_container_of(node
,
2159 struct relay_command
, sock_n
);
2160 relay_del_connection(relay_connections_ht
,
2167 lttng_ht_destroy(streams_ht
);
2169 lttng_ht_destroy(relay_connections_ht
);
2170 relay_connections_ht_error
:
2171 /* Close relay cmd pipes */
2172 utils_close_pipe(relay_cmd_pipe
);
2174 DBG("Thread exited with error");
2176 DBG("Worker thread cleanup complete");
2179 rcu_unregister_thread();
2184 * Create the relay command pipe to wake thread_manage_apps.
2185 * Closed in cleanup().
2187 static int create_relay_cmd_pipe(void)
2191 ret
= utils_create_pipe_cloexec(relay_cmd_pipe
);
2199 int main(int argc
, char **argv
)
2204 /* Create thread quit pipe */
2205 if ((ret
= init_thread_quit_pipe()) < 0) {
2209 /* Parse arguments */
2211 if ((ret
= parse_args(argc
, argv
)) < 0) {
2215 if ((ret
= set_signal_handler()) < 0) {
2228 /* Check if daemon is UID = 0 */
2229 is_root
= !getuid();
2232 if (control_uri
->port
< 1024 || data_uri
->port
< 1024) {
2233 ERR("Need to be root to use ports < 1024");
2239 /* Setup the thread apps communication pipe. */
2240 if ((ret
= create_relay_cmd_pipe()) < 0) {
2244 /* Init relay command queue. */
2245 cds_wfq_init(&relay_cmd_queue
.queue
);
2247 /* Set up max poll set size */
2248 lttng_poll_set_max_size();
2250 /* Setup the dispatcher thread */
2251 ret
= pthread_create(&dispatcher_thread
, NULL
,
2252 relay_thread_dispatcher
, (void *) NULL
);
2254 PERROR("pthread_create dispatcher");
2255 goto exit_dispatcher
;
2258 /* Setup the worker thread */
2259 ret
= pthread_create(&worker_thread
, NULL
,
2260 relay_thread_worker
, (void *) NULL
);
2262 PERROR("pthread_create worker");
2266 /* Setup the listener thread */
2267 ret
= pthread_create(&listener_thread
, NULL
,
2268 relay_thread_listener
, (void *) NULL
);
2270 PERROR("pthread_create listener");
2275 ret
= pthread_join(listener_thread
, &status
);
2277 PERROR("pthread_join");
2278 goto error
; /* join error, exit without cleanup */
2282 ret
= pthread_join(worker_thread
, &status
);
2284 PERROR("pthread_join");
2285 goto error
; /* join error, exit without cleanup */
2289 ret
= pthread_join(dispatcher_thread
, &status
);
2291 PERROR("pthread_join");
2292 goto error
; /* join error, exit without cleanup */