2 * Copyright (C) 2013 - 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.
30 #include <sys/mount.h>
31 #include <sys/resource.h>
32 #include <sys/socket.h>
34 #include <sys/types.h>
37 #include <urcu/futex.h>
38 #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/defaults.h>
49 #include <common/futex.h>
50 #include <common/index/index.h>
51 #include <common/sessiond-comm/sessiond-comm.h>
52 #include <common/sessiond-comm/inet.h>
53 #include <common/sessiond-comm/relayd.h>
54 #include <common/uri.h>
55 #include <common/utils.h>
59 #include "lttng-relayd.h"
61 #include "health-relayd.h"
62 #include "testpoint.h"
63 #include "viewer-stream.h"
66 #include "ctf-trace.h"
67 #include "connection.h"
69 static struct lttng_uri
*live_uri
;
72 * This pipe is used to inform the worker thread that a command is queued and
73 * ready to be processed.
75 static int live_conn_pipe
[2] = { -1, -1 };
77 /* Shared between threads */
78 static int live_dispatch_thread_exit
;
80 static pthread_t live_listener_thread
;
81 static pthread_t live_dispatcher_thread
;
82 static pthread_t live_worker_thread
;
85 * Relay command queue.
87 * The live_thread_listener and live_thread_dispatcher communicate with this
90 static struct relay_conn_queue viewer_conn_queue
;
92 static uint64_t last_relay_viewer_session_id
;
98 void cleanup_relayd_live(void)
106 * Receive a request buffer using a given socket, destination allocated buffer
109 * Return the size of the received message or else a negative value on error
110 * with errno being set by recvmsg() syscall.
113 ssize_t
recv_request(struct lttcomm_sock
*sock
, void *buf
, size_t size
)
120 ret
= sock
->ops
->recvmsg(sock
, buf
, size
, 0);
121 if (ret
< 0 || ret
!= size
) {
123 /* Orderly shutdown. Not necessary to print an error. */
124 DBG("Socket %d did an orderly shutdown", sock
->fd
);
126 ERR("Relay failed to receive request.");
135 * Send a response buffer using a given socket, source allocated buffer of
138 * Return the size of the sent message or else a negative value on error with
139 * errno being set by sendmsg() syscall.
142 ssize_t
send_response(struct lttcomm_sock
*sock
, void *buf
, size_t size
)
149 ret
= sock
->ops
->sendmsg(sock
, buf
, size
, 0);
151 ERR("Relayd failed to send response.");
158 * Atomically check if new streams got added in one of the sessions attached
159 * and reset the flag to 0.
161 * Returns 1 if new streams got added, 0 if nothing changed, a negative value
165 int check_new_streams(struct relay_connection
*conn
)
167 struct relay_session
*session
;
168 unsigned long current_val
;
171 if (!conn
->viewer_session
) {
174 cds_list_for_each_entry(session
,
175 &conn
->viewer_session
->sessions_head
,
176 viewer_session_list
) {
177 current_val
= uatomic_cmpxchg(&session
->new_streams
, 1, 0);
189 * Send viewer streams to the given socket. The ignore_sent_flag indicates if
190 * this function should ignore the sent flag or not.
192 * Return 0 on success or else a negative value.
195 ssize_t
send_viewer_streams(struct lttcomm_sock
*sock
,
196 struct relay_session
*session
, unsigned int ignore_sent_flag
)
199 struct lttng_viewer_stream send_stream
;
200 struct lttng_ht_iter iter
;
201 struct relay_viewer_stream
*vstream
;
207 cds_lfht_for_each_entry(viewer_streams_ht
->ht
, &iter
.iter
, vstream
,
209 struct ctf_trace
*ctf_trace
;
211 health_code_update();
213 /* Ignore if not the same session. */
214 if (vstream
->session_id
!= session
->id
||
215 (!ignore_sent_flag
&& vstream
->sent_flag
)) {
219 ctf_trace
= ctf_trace_find_by_path(session
->ctf_traces_ht
,
223 send_stream
.id
= htobe64(vstream
->stream_handle
);
224 send_stream
.ctf_trace_id
= htobe64(ctf_trace
->id
);
225 send_stream
.metadata_flag
= htobe32(vstream
->metadata_flag
);
226 strncpy(send_stream
.path_name
, vstream
->path_name
,
227 sizeof(send_stream
.path_name
));
228 strncpy(send_stream
.channel_name
, vstream
->channel_name
,
229 sizeof(send_stream
.channel_name
));
231 DBG("Sending stream %" PRIu64
" to viewer", vstream
->stream_handle
);
232 ret
= send_response(sock
, &send_stream
, sizeof(send_stream
));
236 vstream
->sent_flag
= 1;
247 * Create every viewer stream possible for the given session with the seek
248 * type. Three counters *can* be return which are in order the total amount of
249 * viewer stream of the session, the number of unsent stream and the number of
250 * stream created. Those counters can be NULL and thus will be ignored.
252 * Return 0 on success or else a negative value.
255 int make_viewer_streams(struct relay_session
*session
,
256 enum lttng_viewer_seek seek_t
, uint32_t *nb_total
, uint32_t *nb_unsent
,
257 uint32_t *nb_created
)
260 struct lttng_ht_iter iter
;
261 struct ctf_trace
*ctf_trace
;
266 * This is to make sure we create viewer streams for a full received
267 * channel. For instance, if we have 8 streams for a channel that are
268 * concurrently being flagged ready, we can end up creating just a subset
269 * of the 8 streams (the ones that are flagged). This lock avoids this
272 pthread_mutex_lock(&session
->viewer_ready_lock
);
275 * Create viewer streams for relay streams that are ready to be used for a
276 * the given session id only.
279 cds_lfht_for_each_entry(session
->ctf_traces_ht
->ht
, &iter
.iter
, ctf_trace
,
281 struct relay_stream
*stream
;
283 health_code_update();
285 if (ctf_trace
->invalid_flag
) {
289 cds_list_for_each_entry(stream
, &ctf_trace
->stream_list
, trace_list
) {
290 struct relay_viewer_stream
*vstream
;
292 if (!stream
->viewer_ready
) {
296 vstream
= viewer_stream_find_by_id(stream
->stream_handle
);
298 vstream
= viewer_stream_create(stream
, seek_t
, ctf_trace
);
303 /* Acquire reference to ctf_trace. */
304 ctf_trace_get_ref(ctf_trace
);
307 /* Update number of created stream counter. */
310 } else if (!vstream
->sent_flag
&& nb_unsent
) {
311 /* Update number of unsent stream counter. */
314 /* Update number of total stream counter. */
325 pthread_mutex_unlock(&session
->viewer_ready_lock
);
329 int relayd_live_stop(void)
331 /* Stop dispatch thread */
332 CMM_STORE_SHARED(live_dispatch_thread_exit
, 1);
333 futex_nto1_wake(&viewer_conn_queue
.futex
);
338 * Create a poll set with O_CLOEXEC and add the thread quit pipe to the set.
341 int create_thread_poll_set(struct lttng_poll_event
*events
, int size
)
345 if (events
== NULL
|| size
== 0) {
350 ret
= lttng_poll_create(events
, size
, LTTNG_CLOEXEC
);
356 ret
= lttng_poll_add(events
, thread_quit_pipe
[0], LPOLLIN
| LPOLLERR
);
368 * Check if the thread quit pipe was triggered.
370 * Return 1 if it was triggered else 0;
373 int check_thread_quit_pipe(int fd
, uint32_t events
)
375 if (fd
== thread_quit_pipe
[0] && (events
& LPOLLIN
)) {
383 * Create and init socket from uri.
386 struct lttcomm_sock
*init_socket(struct lttng_uri
*uri
)
389 struct lttcomm_sock
*sock
= NULL
;
391 sock
= lttcomm_alloc_sock_from_uri(uri
);
393 ERR("Allocating socket");
397 ret
= lttcomm_create_sock(sock
);
401 DBG("Listening on sock %d for live", sock
->fd
);
403 ret
= sock
->ops
->bind(sock
);
408 ret
= sock
->ops
->listen(sock
, -1);
418 lttcomm_destroy_sock(sock
);
424 * This thread manages the listening for new connections on the network
427 void *thread_listener(void *data
)
429 int i
, ret
, pollfd
, err
= -1;
430 uint32_t revents
, nb_fd
;
431 struct lttng_poll_event events
;
432 struct lttcomm_sock
*live_control_sock
;
434 DBG("[thread] Relay live listener started");
436 health_register(health_relayd
, HEALTH_RELAYD_TYPE_LIVE_LISTENER
);
438 health_code_update();
440 live_control_sock
= init_socket(live_uri
);
441 if (!live_control_sock
) {
442 goto error_sock_control
;
445 /* Pass 2 as size here for the thread quit pipe and control sockets. */
446 ret
= create_thread_poll_set(&events
, 2);
448 goto error_create_poll
;
451 /* Add the control socket */
452 ret
= lttng_poll_add(&events
, live_control_sock
->fd
, LPOLLIN
| LPOLLRDHUP
);
457 lttng_relay_notify_ready();
459 if (testpoint(relayd_thread_live_listener
)) {
460 goto error_testpoint
;
464 health_code_update();
466 DBG("Listener accepting live viewers connections");
470 ret
= lttng_poll_wait(&events
, -1);
474 * Restart interrupted system call.
476 if (errno
== EINTR
) {
483 DBG("Relay new viewer connection received");
484 for (i
= 0; i
< nb_fd
; i
++) {
485 health_code_update();
487 /* Fetch once the poll data */
488 revents
= LTTNG_POLL_GETEV(&events
, i
);
489 pollfd
= LTTNG_POLL_GETFD(&events
, i
);
492 /* No activity for this FD (poll implementation). */
496 /* Thread quit pipe has been closed. Killing thread. */
497 ret
= check_thread_quit_pipe(pollfd
, revents
);
503 if (revents
& (LPOLLERR
| LPOLLHUP
| LPOLLRDHUP
)) {
504 ERR("socket poll error");
506 } else if (revents
& LPOLLIN
) {
508 * Get allocated in this thread, enqueued to a global queue,
509 * dequeued and freed in the worker thread.
512 struct relay_connection
*new_conn
;
513 struct lttcomm_sock
*newsock
;
515 new_conn
= connection_create();
520 newsock
= live_control_sock
->ops
->accept(live_control_sock
);
522 PERROR("accepting control sock");
523 connection_free(new_conn
);
526 DBG("Relay viewer connection accepted socket %d", newsock
->fd
);
528 ret
= setsockopt(newsock
->fd
, SOL_SOCKET
, SO_REUSEADDR
, &val
,
531 PERROR("setsockopt inet");
532 lttcomm_destroy_sock(newsock
);
533 connection_free(new_conn
);
536 new_conn
->sock
= newsock
;
538 /* Enqueue request for the dispatcher thread. */
539 cds_wfcq_enqueue(&viewer_conn_queue
.head
, &viewer_conn_queue
.tail
,
543 * Wake the dispatch queue futex. Implicit memory barrier with
544 * the exchange in cds_wfcq_enqueue.
546 futex_nto1_wake(&viewer_conn_queue
.futex
);
555 lttng_poll_clean(&events
);
557 if (live_control_sock
->fd
>= 0) {
558 ret
= live_control_sock
->ops
->close(live_control_sock
);
563 lttcomm_destroy_sock(live_control_sock
);
567 DBG("Live viewer listener thread exited with error");
569 health_unregister(health_relayd
);
570 DBG("Live viewer listener thread cleanup complete");
571 if (lttng_relay_stop_threads()) {
572 ERR("Error stopping threads");
578 * This thread manages the dispatching of the requests to worker threads
581 void *thread_dispatcher(void *data
)
585 struct cds_wfcq_node
*node
;
586 struct relay_connection
*conn
= NULL
;
588 DBG("[thread] Live viewer relay dispatcher started");
590 health_register(health_relayd
, HEALTH_RELAYD_TYPE_LIVE_DISPATCHER
);
592 if (testpoint(relayd_thread_live_dispatcher
)) {
593 goto error_testpoint
;
596 health_code_update();
598 while (!CMM_LOAD_SHARED(live_dispatch_thread_exit
)) {
599 health_code_update();
601 /* Atomically prepare the queue futex */
602 futex_nto1_prepare(&viewer_conn_queue
.futex
);
605 health_code_update();
607 /* Dequeue commands */
608 node
= cds_wfcq_dequeue_blocking(&viewer_conn_queue
.head
,
609 &viewer_conn_queue
.tail
);
611 DBG("Woken up but nothing in the live-viewer "
612 "relay command queue");
613 /* Continue thread execution */
616 conn
= caa_container_of(node
, struct relay_connection
, qnode
);
617 DBG("Dispatching viewer request waiting on sock %d",
621 * Inform worker thread of the new request. This call is blocking
622 * so we can be assured that the data will be read at some point in
623 * time or wait to the end of the world :)
625 ret
= lttng_write(live_conn_pipe
[1], &conn
, sizeof(conn
));
627 PERROR("write conn pipe");
628 connection_destroy(conn
);
631 } while (node
!= NULL
);
633 /* Futex wait on queue. Blocking call on futex() */
635 futex_nto1_wait(&viewer_conn_queue
.futex
);
639 /* Normal exit, no error */
646 ERR("Health error occurred in %s", __func__
);
648 health_unregister(health_relayd
);
649 DBG("Live viewer dispatch thread dying");
650 if (lttng_relay_stop_threads()) {
651 ERR("Error stopping threads");
657 * Establish connection with the viewer and check the versions.
659 * Return 0 on success or else negative value.
662 int viewer_connect(struct relay_connection
*conn
)
665 struct lttng_viewer_connect reply
, msg
;
669 conn
->version_check_done
= 1;
671 health_code_update();
673 DBG("Viewer is establishing a connection to the relayd.");
675 ret
= recv_request(conn
->sock
, &msg
, sizeof(msg
));
680 health_code_update();
682 memset(&reply
, 0, sizeof(reply
));
683 reply
.major
= RELAYD_VERSION_COMM_MAJOR
;
684 reply
.minor
= RELAYD_VERSION_COMM_MINOR
;
686 /* Major versions must be the same */
687 if (reply
.major
!= be32toh(msg
.major
)) {
688 DBG("Incompatible major versions ([relayd] %u vs [client] %u)",
689 reply
.major
, be32toh(msg
.major
));
694 conn
->major
= reply
.major
;
695 /* We adapt to the lowest compatible version */
696 if (reply
.minor
<= be32toh(msg
.minor
)) {
697 conn
->minor
= reply
.minor
;
699 conn
->minor
= be32toh(msg
.minor
);
702 if (be32toh(msg
.type
) == LTTNG_VIEWER_CLIENT_COMMAND
) {
703 conn
->type
= RELAY_VIEWER_COMMAND
;
704 } else if (be32toh(msg
.type
) == LTTNG_VIEWER_CLIENT_NOTIFICATION
) {
705 conn
->type
= RELAY_VIEWER_NOTIFICATION
;
707 ERR("Unknown connection type : %u", be32toh(msg
.type
));
712 reply
.major
= htobe32(reply
.major
);
713 reply
.minor
= htobe32(reply
.minor
);
714 if (conn
->type
== RELAY_VIEWER_COMMAND
) {
715 reply
.viewer_session_id
= htobe64(++last_relay_viewer_session_id
);
718 health_code_update();
720 ret
= send_response(conn
->sock
, &reply
, sizeof(reply
));
725 health_code_update();
727 DBG("Version check done using protocol %u.%u", conn
->major
, conn
->minor
);
735 * Send the viewer the list of current sessions.
737 * Return 0 on success or else a negative value.
740 int viewer_list_sessions(struct relay_connection
*conn
)
743 struct lttng_viewer_list_sessions session_list
;
745 long approx_before
, approx_after
;
746 struct lttng_ht_iter iter
;
747 struct lttng_viewer_session send_session
;
748 struct relay_session
*session
;
750 DBG("List sessions received");
753 cds_lfht_count_nodes(conn
->sessions_ht
->ht
, &approx_before
, &count
,
755 session_list
.sessions_count
= htobe32(count
);
757 health_code_update();
759 ret
= send_response(conn
->sock
, &session_list
, sizeof(session_list
));
764 health_code_update();
766 cds_lfht_for_each_entry(conn
->sessions_ht
->ht
, &iter
.iter
, session
,
768 health_code_update();
770 strncpy(send_session
.session_name
, session
->session_name
,
771 sizeof(send_session
.session_name
));
772 strncpy(send_session
.hostname
, session
->hostname
,
773 sizeof(send_session
.hostname
));
774 send_session
.id
= htobe64(session
->id
);
775 send_session
.live_timer
= htobe32(session
->live_timer
);
776 send_session
.clients
= htobe32(session
->viewer_refcount
);
777 send_session
.streams
= htobe32(session
->stream_count
);
779 health_code_update();
781 ret
= send_response(conn
->sock
, &send_session
, sizeof(send_session
));
786 health_code_update();
795 * Check if a connection is attached to a session.
796 * Return 1 if attached, 0 if not attached, a negative value on error.
799 int session_attached(struct relay_connection
*conn
, uint64_t session_id
)
801 struct relay_session
*session
;
804 if (!conn
->viewer_session
) {
807 cds_list_for_each_entry(session
,
808 &conn
->viewer_session
->sessions_head
,
809 viewer_session_list
) {
810 if (session
->id
== session_id
) {
821 * Delete all streams for a specific session ID.
823 static void destroy_viewer_streams_by_session(struct relay_session
*session
)
825 struct relay_viewer_stream
*stream
;
826 struct lttng_ht_iter iter
;
831 cds_lfht_for_each_entry(viewer_streams_ht
->ht
, &iter
.iter
, stream
,
833 struct ctf_trace
*ctf_trace
;
835 health_code_update();
836 if (stream
->session_id
!= session
->id
) {
840 ctf_trace
= ctf_trace_find_by_path(session
->ctf_traces_ht
,
844 viewer_stream_delete(stream
);
846 if (stream
->metadata_flag
) {
847 ctf_trace
->metadata_sent
= 0;
848 ctf_trace
->viewer_metadata_stream
= NULL
;
851 viewer_stream_destroy(ctf_trace
, stream
);
856 static void try_destroy_streams(struct relay_session
*session
)
858 struct ctf_trace
*ctf_trace
;
859 struct lttng_ht_iter iter
;
863 cds_lfht_for_each_entry(session
->ctf_traces_ht
->ht
, &iter
.iter
, ctf_trace
,
865 /* Attempt to destroy the ctf trace of that session. */
866 ctf_trace_try_destroy(session
, ctf_trace
);
873 static void cleanup_session(struct relay_connection
*conn
,
874 struct relay_session
*session
)
877 * Very important that this is done before destroying the session so we
878 * can put back every viewer stream reference from the ctf_trace.
880 destroy_viewer_streams_by_session(session
);
881 try_destroy_streams(session
);
882 cds_list_del(&session
->viewer_session_list
);
883 session_viewer_try_destroy(conn
->sessions_ht
, session
);
887 * Send the viewer the list of current sessions.
890 int viewer_get_new_streams(struct relay_connection
*conn
)
892 int ret
, send_streams
= 0;
893 uint32_t nb_created
= 0, nb_unsent
= 0, nb_streams
= 0;
894 struct lttng_viewer_new_streams_request request
;
895 struct lttng_viewer_new_streams_response response
;
896 struct relay_session
*session
;
901 DBG("Get new streams received");
903 health_code_update();
905 /* Receive the request from the connected client. */
906 ret
= recv_request(conn
->sock
, &request
, sizeof(request
));
910 session_id
= be64toh(request
.session_id
);
912 health_code_update();
914 memset(&response
, 0, sizeof(response
));
917 session
= session_find_by_id(conn
->sessions_ht
, session_id
);
919 DBG("Relay session %" PRIu64
" not found", session_id
);
920 response
.status
= htobe32(LTTNG_VIEWER_NEW_STREAMS_ERR
);
924 if (!session_attached(conn
, session_id
)) {
926 response
.status
= htobe32(LTTNG_VIEWER_NEW_STREAMS_ERR
);
931 response
.status
= htobe32(LTTNG_VIEWER_NEW_STREAMS_OK
);
933 ret
= make_viewer_streams(session
, LTTNG_VIEWER_SEEK_LAST
, NULL
, &nb_unsent
,
938 /* Only send back the newly created streams with the unsent ones. */
939 nb_streams
= nb_created
+ nb_unsent
;
940 response
.streams_count
= htobe32(nb_streams
);
943 * If the session is closed and we have no new streams to send,
944 * it means that the viewer has already received the whole trace
945 * for this session and should now close it.
947 if (nb_streams
== 0 && session
->close_flag
) {
949 response
.status
= htobe32(LTTNG_VIEWER_NEW_STREAMS_HUP
);
951 * Remove the session from the attached list of the connection
952 * and try to destroy it.
954 cds_list_del(&session
->viewer_session_list
);
955 cleanup_session(conn
, session
);
960 health_code_update();
961 ret
= send_response(conn
->sock
, &response
, sizeof(response
));
965 health_code_update();
968 * Unknown or empty session, just return gracefully, the viewer knows what
971 if (!send_streams
|| !nb_streams
) {
977 * Send stream and *DON'T* ignore the sent flag so every viewer streams
978 * that were not sent from that point will be sent to the viewer.
980 ret
= send_viewer_streams(conn
->sock
, session
, 0);
992 * Send the viewer the list of current sessions.
995 int viewer_attach_session(struct relay_connection
*conn
)
997 int send_streams
= 0;
999 uint32_t nb_streams
= 0;
1000 enum lttng_viewer_seek seek_type
;
1001 struct lttng_viewer_attach_session_request request
;
1002 struct lttng_viewer_attach_session_response response
;
1003 struct relay_session
*session
;
1007 health_code_update();
1009 /* Receive the request from the connected client. */
1010 ret
= recv_request(conn
->sock
, &request
, sizeof(request
));
1015 health_code_update();
1017 memset(&response
, 0, sizeof(response
));
1019 if (!conn
->viewer_session
) {
1020 DBG("Client trying to attach before creating a live viewer session");
1021 response
.status
= htobe32(LTTNG_VIEWER_ATTACH_NO_SESSION
);
1026 session
= session_find_by_id(conn
->sessions_ht
,
1027 be64toh(request
.session_id
));
1029 DBG("Relay session %" PRIu64
" not found",
1030 be64toh(request
.session_id
));
1031 response
.status
= htobe32(LTTNG_VIEWER_ATTACH_UNK
);
1034 session_viewer_attach(session
);
1035 DBG("Attach session ID %" PRIu64
" received", be64toh(request
.session_id
));
1037 if (uatomic_read(&session
->viewer_refcount
) > 1) {
1038 DBG("Already a viewer attached");
1039 response
.status
= htobe32(LTTNG_VIEWER_ATTACH_ALREADY
);
1040 session_viewer_detach(session
);
1042 } else if (session
->live_timer
== 0) {
1043 DBG("Not live session");
1044 response
.status
= htobe32(LTTNG_VIEWER_ATTACH_NOT_LIVE
);
1048 response
.status
= htobe32(LTTNG_VIEWER_ATTACH_OK
);
1049 cds_list_add(&session
->viewer_session_list
,
1050 &conn
->viewer_session
->sessions_head
);
1053 switch (be32toh(request
.seek
)) {
1054 case LTTNG_VIEWER_SEEK_BEGINNING
:
1055 case LTTNG_VIEWER_SEEK_LAST
:
1056 seek_type
= be32toh(request
.seek
);
1059 ERR("Wrong seek parameter");
1060 response
.status
= htobe32(LTTNG_VIEWER_ATTACH_SEEK_ERR
);
1065 ret
= make_viewer_streams(session
, seek_type
, &nb_streams
, NULL
, NULL
);
1069 response
.streams_count
= htobe32(nb_streams
);
1072 health_code_update();
1073 ret
= send_response(conn
->sock
, &response
, sizeof(response
));
1077 health_code_update();
1080 * Unknown or empty session, just return gracefully, the viewer knows what
1083 if (!send_streams
|| !nb_streams
) {
1088 /* Send stream and ignore the sent flag. */
1089 ret
= send_viewer_streams(conn
->sock
, session
, 1);
1101 * Open the index file if needed for the given vstream.
1103 * If an index file is successfully opened, the index_read_fd of the stream is
1106 * Return 0 on success, a negative value on error (-ENOENT if not ready yet).
1108 static int try_open_index(struct relay_viewer_stream
*vstream
,
1109 struct relay_stream
*rstream
)
1116 if (vstream
->index_read_fd
>= 0) {
1121 * First time, we open the index file and at least one index is ready. The
1122 * race between the read and write of the total_index_received is
1123 * acceptable here since the client will be notified to simply come back
1124 * and get the next index.
1126 if (rstream
->total_index_received
<= 0) {
1130 ret
= index_open(vstream
->path_name
, vstream
->channel_name
,
1131 vstream
->tracefile_count
, vstream
->tracefile_count_current
);
1133 vstream
->index_read_fd
= ret
;
1143 * Check the status of the index for the given stream. This function updates
1144 * the index structure if needed and can destroy the vstream also for the HUP
1147 * Return 0 means that we can proceed with the index. A value of 1 means that
1148 * the index has been updated and is ready to be send to the client. A negative
1149 * value indicates an error that can't be handled.
1151 static int check_index_status(struct relay_viewer_stream
*vstream
,
1152 struct relay_stream
*rstream
, struct ctf_trace
*trace
,
1153 struct lttng_viewer_index
*index
)
1162 if (!rstream
->close_flag
) {
1163 /* Rotate on abort (overwrite). */
1164 if (vstream
->abort_flag
) {
1165 DBG("Viewer stream %" PRIu64
" rotate because of overwrite",
1166 vstream
->stream_handle
);
1167 ret
= viewer_stream_rotate(vstream
, rstream
);
1170 } else if (ret
== 1) {
1172 index
->status
= htobe32(LTTNG_VIEWER_INDEX_HUP
);
1175 /* ret == 0 means successful so we continue. */
1178 /* Check if we are in the same trace file at this point. */
1179 if (rstream
->tracefile_count_current
== vstream
->tracefile_count_current
) {
1180 if (rstream
->beacon_ts_end
!= -1ULL &&
1181 vstream
->last_sent_index
== rstream
->total_index_received
) {
1183 * We've received a synchronization beacon and the last index
1184 * available has been sent, the index for now is inactive.
1186 index
->status
= htobe32(LTTNG_VIEWER_INDEX_INACTIVE
);
1187 index
->timestamp_end
= htobe64(rstream
->beacon_ts_end
);
1188 index
->stream_id
= htobe64(rstream
->ctf_stream_id
);
1190 } else if (rstream
->total_index_received
<= vstream
->last_sent_index
1191 && !vstream
->close_write_flag
) {
1193 * Reader and writer are working in the same tracefile, so we care
1194 * about the number of index received and sent. Otherwise, we read
1197 index
->status
= htobe32(LTTNG_VIEWER_INDEX_RETRY
);
1201 /* Nothing to do with the index, continue with it. */
1203 } else if (rstream
->close_flag
&& vstream
->close_write_flag
&&
1204 vstream
->total_index_received
== vstream
->last_sent_index
) {
1205 /* Last index sent and current tracefile closed in write */
1206 index
->status
= htobe32(LTTNG_VIEWER_INDEX_HUP
);
1209 vstream
->close_write_flag
= 1;
1217 viewer_stream_delete(vstream
);
1218 viewer_stream_destroy(trace
, vstream
);
1224 * Send the next index for a stream.
1226 * Return 0 on success or else a negative value.
1229 int viewer_get_next_index(struct relay_connection
*conn
)
1233 struct lttng_viewer_get_next_index request_index
;
1234 struct lttng_viewer_index viewer_index
;
1235 struct ctf_packet_index packet_index
;
1236 struct relay_viewer_stream
*vstream
;
1237 struct relay_stream
*rstream
;
1238 struct ctf_trace
*ctf_trace
;
1239 struct relay_session
*session
;
1243 DBG("Viewer get next index");
1245 health_code_update();
1247 ret
= recv_request(conn
->sock
, &request_index
, sizeof(request_index
));
1251 health_code_update();
1254 vstream
= viewer_stream_find_by_id(be64toh(request_index
.stream_id
));
1260 session
= session_find_by_id(conn
->sessions_ht
, vstream
->session_id
);
1266 ctf_trace
= ctf_trace_find_by_path(session
->ctf_traces_ht
, vstream
->path_name
);
1269 memset(&viewer_index
, 0, sizeof(viewer_index
));
1272 * The viewer should not ask for index on metadata stream.
1274 if (vstream
->metadata_flag
) {
1275 viewer_index
.status
= htobe32(LTTNG_VIEWER_INDEX_HUP
);
1279 rstream
= stream_find_by_id(relay_streams_ht
, vstream
->stream_handle
);
1282 /* Try to open an index if one is needed for that stream. */
1283 ret
= try_open_index(vstream
, rstream
);
1285 if (ret
== -ENOENT
) {
1287 * The index is created only when the first data packet arrives, it
1288 * might not be ready at the beginning of the session
1290 viewer_index
.status
= htobe32(LTTNG_VIEWER_INDEX_RETRY
);
1292 /* Unhandled error. */
1293 viewer_index
.status
= htobe32(LTTNG_VIEWER_INDEX_ERR
);
1298 pthread_mutex_lock(&rstream
->viewer_stream_rotation_lock
);
1299 ret
= check_index_status(vstream
, rstream
, ctf_trace
, &viewer_index
);
1300 pthread_mutex_unlock(&rstream
->viewer_stream_rotation_lock
);
1303 } else if (ret
== 1) {
1305 * This means the viewer index data structure has been populated by the
1306 * check call thus we now send back the reply to the client.
1310 /* At this point, ret MUST be 0 thus we continue with the get. */
1313 if (!ctf_trace
->metadata_received
||
1314 ctf_trace
->metadata_received
> ctf_trace
->metadata_sent
) {
1315 viewer_index
.flags
|= LTTNG_VIEWER_FLAG_NEW_METADATA
;
1318 ret
= check_new_streams(conn
);
1321 } else if (ret
== 1) {
1322 viewer_index
.flags
|= LTTNG_VIEWER_FLAG_NEW_STREAM
;
1325 pthread_mutex_lock(&rstream
->viewer_stream_rotation_lock
);
1326 pthread_mutex_lock(&vstream
->overwrite_lock
);
1327 if (vstream
->abort_flag
) {
1328 /* The file is being overwritten by the writer, we cannot use it. */
1329 pthread_mutex_unlock(&vstream
->overwrite_lock
);
1330 ret
= viewer_stream_rotate(vstream
, rstream
);
1331 pthread_mutex_unlock(&rstream
->viewer_stream_rotation_lock
);
1334 } else if (ret
== 1) {
1335 viewer_index
.status
= htobe32(LTTNG_VIEWER_INDEX_HUP
);
1336 viewer_stream_delete(vstream
);
1337 viewer_stream_destroy(ctf_trace
, vstream
);
1339 viewer_index
.status
= htobe32(LTTNG_VIEWER_INDEX_RETRY
);
1344 read_ret
= lttng_read(vstream
->index_read_fd
, &packet_index
,
1345 sizeof(packet_index
));
1346 pthread_mutex_unlock(&vstream
->overwrite_lock
);
1347 pthread_mutex_unlock(&rstream
->viewer_stream_rotation_lock
);
1349 viewer_index
.status
= htobe32(LTTNG_VIEWER_INDEX_HUP
);
1350 viewer_stream_delete(vstream
);
1351 viewer_stream_destroy(ctf_trace
, vstream
);
1353 } else if (read_ret
< sizeof(packet_index
)) {
1354 pthread_mutex_lock(&rstream
->viewer_stream_rotation_lock
);
1355 if (vstream
->close_write_flag
) {
1356 ret
= viewer_stream_rotate(vstream
, rstream
);
1358 pthread_mutex_unlock(&rstream
->viewer_stream_rotation_lock
);
1360 } else if (ret
== 1) {
1361 viewer_index
.status
= htobe32(LTTNG_VIEWER_INDEX_HUP
);
1362 viewer_stream_delete(vstream
);
1363 viewer_stream_destroy(ctf_trace
, vstream
);
1365 viewer_index
.status
= htobe32(LTTNG_VIEWER_INDEX_RETRY
);
1368 ERR("Relay reading index file %d", vstream
->index_read_fd
);
1369 viewer_index
.status
= htobe32(LTTNG_VIEWER_INDEX_ERR
);
1371 pthread_mutex_unlock(&rstream
->viewer_stream_rotation_lock
);
1374 viewer_index
.status
= htobe32(LTTNG_VIEWER_INDEX_OK
);
1375 vstream
->last_sent_index
++;
1379 * Indexes are stored in big endian, no need to switch before sending.
1381 viewer_index
.offset
= packet_index
.offset
;
1382 viewer_index
.packet_size
= packet_index
.packet_size
;
1383 viewer_index
.content_size
= packet_index
.content_size
;
1384 viewer_index
.timestamp_begin
= packet_index
.timestamp_begin
;
1385 viewer_index
.timestamp_end
= packet_index
.timestamp_end
;
1386 viewer_index
.events_discarded
= packet_index
.events_discarded
;
1387 viewer_index
.stream_id
= packet_index
.stream_id
;
1390 viewer_index
.flags
= htobe32(viewer_index
.flags
);
1391 health_code_update();
1393 ret
= send_response(conn
->sock
, &viewer_index
, sizeof(viewer_index
));
1397 health_code_update();
1399 DBG("Index %" PRIu64
" for stream %" PRIu64
" sent",
1400 vstream
->last_sent_index
, vstream
->stream_handle
);
1410 * Send the next index for a stream
1412 * Return 0 on success or else a negative value.
1415 int viewer_get_packet(struct relay_connection
*conn
)
1417 int ret
, send_data
= 0;
1421 struct lttng_viewer_get_packet get_packet_info
;
1422 struct lttng_viewer_trace_packet reply
;
1423 struct relay_viewer_stream
*stream
;
1424 struct relay_session
*session
;
1425 struct ctf_trace
*ctf_trace
;
1429 DBG2("Relay get data packet");
1431 health_code_update();
1433 ret
= recv_request(conn
->sock
, &get_packet_info
, sizeof(get_packet_info
));
1437 health_code_update();
1439 /* From this point on, the error label can be reached. */
1440 memset(&reply
, 0, sizeof(reply
));
1443 stream
= viewer_stream_find_by_id(be64toh(get_packet_info
.stream_id
));
1448 session
= session_find_by_id(conn
->sessions_ht
, stream
->session_id
);
1454 ctf_trace
= ctf_trace_find_by_path(session
->ctf_traces_ht
,
1459 * First time we read this stream, we need open the tracefile, we should
1460 * only arrive here if an index has already been sent to the viewer, so the
1461 * tracefile must exist, if it does not it is a fatal error.
1463 if (stream
->read_fd
< 0) {
1464 char fullpath
[PATH_MAX
];
1466 if (stream
->tracefile_count
> 0) {
1467 ret
= snprintf(fullpath
, PATH_MAX
, "%s/%s_%" PRIu64
, stream
->path_name
,
1468 stream
->channel_name
,
1469 stream
->tracefile_count_current
);
1471 ret
= snprintf(fullpath
, PATH_MAX
, "%s/%s", stream
->path_name
,
1472 stream
->channel_name
);
1477 ret
= open(fullpath
, O_RDONLY
);
1479 PERROR("Relay opening trace file");
1482 stream
->read_fd
= ret
;
1485 if (!ctf_trace
->metadata_received
||
1486 ctf_trace
->metadata_received
> ctf_trace
->metadata_sent
) {
1487 reply
.status
= htobe32(LTTNG_VIEWER_GET_PACKET_ERR
);
1488 reply
.flags
|= LTTNG_VIEWER_FLAG_NEW_METADATA
;
1492 ret
= check_new_streams(conn
);
1495 } else if (ret
== 1) {
1496 reply
.status
= htobe32(LTTNG_VIEWER_GET_PACKET_ERR
);
1497 reply
.flags
|= LTTNG_VIEWER_FLAG_NEW_STREAM
;
1501 len
= be32toh(get_packet_info
.len
);
1502 data
= zmalloc(len
);
1504 PERROR("relay data zmalloc");
1508 ret
= lseek(stream
->read_fd
, be64toh(get_packet_info
.offset
), SEEK_SET
);
1511 * If the read fd was closed by the streaming side, the
1512 * abort_flag will be set to 1, otherwise it is an error.
1514 if (stream
->abort_flag
== 0) {
1518 reply
.status
= htobe32(LTTNG_VIEWER_GET_PACKET_EOF
);
1521 read_len
= lttng_read(stream
->read_fd
, data
, len
);
1522 if (read_len
< len
) {
1524 * If the read fd was closed by the streaming side, the
1525 * abort_flag will be set to 1, otherwise it is an error.
1527 if (stream
->abort_flag
== 0) {
1528 PERROR("Relay reading trace file, fd: %d, offset: %" PRIu64
,
1530 be64toh(get_packet_info
.offset
));
1533 reply
.status
= htobe32(LTTNG_VIEWER_GET_PACKET_EOF
);
1537 reply
.status
= htobe32(LTTNG_VIEWER_GET_PACKET_OK
);
1538 reply
.len
= htobe32(len
);
1543 reply
.status
= htobe32(LTTNG_VIEWER_GET_PACKET_ERR
);
1546 reply
.flags
= htobe32(reply
.flags
);
1548 health_code_update();
1550 ret
= send_response(conn
->sock
, &reply
, sizeof(reply
));
1554 health_code_update();
1557 health_code_update();
1558 ret
= send_response(conn
->sock
, data
, len
);
1562 health_code_update();
1565 DBG("Sent %u bytes for stream %" PRIu64
, len
,
1566 be64toh(get_packet_info
.stream_id
));
1577 * Send the session's metadata
1579 * Return 0 on success else a negative value.
1582 int viewer_get_metadata(struct relay_connection
*conn
)
1588 struct lttng_viewer_get_metadata request
;
1589 struct lttng_viewer_metadata_packet reply
;
1590 struct relay_viewer_stream
*stream
;
1591 struct ctf_trace
*ctf_trace
;
1592 struct relay_session
*session
;
1596 DBG("Relay get metadata");
1598 health_code_update();
1600 ret
= recv_request(conn
->sock
, &request
, sizeof(request
));
1604 health_code_update();
1606 memset(&reply
, 0, sizeof(reply
));
1609 stream
= viewer_stream_find_by_id(be64toh(request
.stream_id
));
1610 if (!stream
|| !stream
->metadata_flag
) {
1611 ERR("Invalid metadata stream");
1615 session
= session_find_by_id(conn
->sessions_ht
, stream
->session_id
);
1621 ctf_trace
= ctf_trace_find_by_path(session
->ctf_traces_ht
,
1624 assert(ctf_trace
->metadata_sent
<= ctf_trace
->metadata_received
);
1626 len
= ctf_trace
->metadata_received
- ctf_trace
->metadata_sent
;
1628 reply
.status
= htobe32(LTTNG_VIEWER_NO_NEW_METADATA
);
1632 /* first time, we open the metadata file */
1633 if (stream
->read_fd
< 0) {
1634 char fullpath
[PATH_MAX
];
1636 ret
= snprintf(fullpath
, PATH_MAX
, "%s/%s", stream
->path_name
,
1637 stream
->channel_name
);
1641 ret
= open(fullpath
, O_RDONLY
);
1643 PERROR("Relay opening metadata file");
1646 stream
->read_fd
= ret
;
1649 reply
.len
= htobe64(len
);
1650 data
= zmalloc(len
);
1652 PERROR("viewer metadata zmalloc");
1656 read_len
= lttng_read(stream
->read_fd
, data
, len
);
1657 if (read_len
< len
) {
1658 PERROR("Relay reading metadata file");
1661 ctf_trace
->metadata_sent
+= read_len
;
1662 reply
.status
= htobe32(LTTNG_VIEWER_METADATA_OK
);
1666 reply
.status
= htobe32(LTTNG_VIEWER_METADATA_ERR
);
1669 health_code_update();
1670 ret
= send_response(conn
->sock
, &reply
, sizeof(reply
));
1674 health_code_update();
1677 ret
= send_response(conn
->sock
, data
, len
);
1683 DBG("Sent %" PRIu64
" bytes of metadata for stream %" PRIu64
, len
,
1684 be64toh(request
.stream_id
));
1686 DBG("Metadata sent");
1696 * Create a viewer session.
1698 * Return 0 on success or else a negative value.
1701 int viewer_create_session(struct relay_connection
*conn
)
1704 struct lttng_viewer_create_session_response resp
;
1706 DBG("Viewer create session received");
1708 memset(&resp
, 0, sizeof(resp
));
1709 resp
.status
= htobe32(LTTNG_VIEWER_CREATE_SESSION_OK
);
1710 conn
->viewer_session
= zmalloc(sizeof(*conn
->viewer_session
));
1711 if (!conn
->viewer_session
) {
1712 ERR("Allocation viewer session");
1713 resp
.status
= htobe32(LTTNG_VIEWER_CREATE_SESSION_ERR
);
1716 CDS_INIT_LIST_HEAD(&conn
->viewer_session
->sessions_head
);
1719 health_code_update();
1720 ret
= send_response(conn
->sock
, &resp
, sizeof(resp
));
1724 health_code_update();
1733 * live_relay_unknown_command: send -1 if received unknown command
1736 void live_relay_unknown_command(struct relay_connection
*conn
)
1738 struct lttcomm_relayd_generic_reply reply
;
1740 memset(&reply
, 0, sizeof(reply
));
1741 reply
.ret_code
= htobe32(LTTNG_ERR_UNK
);
1742 (void) send_response(conn
->sock
, &reply
, sizeof(reply
));
1746 * Process the commands received on the control socket
1749 int process_control(struct lttng_viewer_cmd
*recv_hdr
,
1750 struct relay_connection
*conn
)
1758 msg_value
= be32toh(recv_hdr
->cmd
);
1761 * Make sure we've done the version check before any command other then a
1762 * new client connection.
1764 if (msg_value
!= LTTNG_VIEWER_CONNECT
&& !conn
->version_check_done
) {
1765 ERR("Viewer conn value %" PRIu32
" before version check", msg_value
);
1770 switch (msg_value
) {
1771 case LTTNG_VIEWER_CONNECT
:
1772 ret
= viewer_connect(conn
);
1774 case LTTNG_VIEWER_LIST_SESSIONS
:
1775 ret
= viewer_list_sessions(conn
);
1777 case LTTNG_VIEWER_ATTACH_SESSION
:
1778 ret
= viewer_attach_session(conn
);
1780 case LTTNG_VIEWER_GET_NEXT_INDEX
:
1781 ret
= viewer_get_next_index(conn
);
1783 case LTTNG_VIEWER_GET_PACKET
:
1784 ret
= viewer_get_packet(conn
);
1786 case LTTNG_VIEWER_GET_METADATA
:
1787 ret
= viewer_get_metadata(conn
);
1789 case LTTNG_VIEWER_GET_NEW_STREAMS
:
1790 ret
= viewer_get_new_streams(conn
);
1792 case LTTNG_VIEWER_CREATE_SESSION
:
1793 ret
= viewer_create_session(conn
);
1796 ERR("Received unknown viewer command (%u)", be32toh(recv_hdr
->cmd
));
1797 live_relay_unknown_command(conn
);
1807 void cleanup_connection_pollfd(struct lttng_poll_event
*events
, int pollfd
)
1813 (void) lttng_poll_del(events
, pollfd
);
1815 ret
= close(pollfd
);
1817 ERR("Closing pollfd %d", pollfd
);
1822 * Delete and destroy a connection.
1824 * RCU read side lock MUST be acquired.
1826 static void destroy_connection(struct lttng_ht
*relay_connections_ht
,
1827 struct relay_connection
*conn
)
1829 struct relay_session
*session
, *tmp_session
;
1831 assert(relay_connections_ht
);
1834 connection_delete(relay_connections_ht
, conn
);
1836 if (!conn
->viewer_session
) {
1841 cds_list_for_each_entry_safe(session
, tmp_session
,
1842 &conn
->viewer_session
->sessions_head
,
1843 viewer_session_list
) {
1844 DBG("Cleaning connection of session ID %" PRIu64
, session
->id
);
1845 cleanup_session(conn
, session
);
1850 connection_destroy(conn
);
1854 * This thread does the actual work
1857 void *thread_worker(void *data
)
1861 struct relay_connection
*conn
;
1862 struct lttng_poll_event events
;
1863 struct lttng_ht
*relay_connections_ht
;
1864 struct lttng_ht_iter iter
;
1865 struct lttng_viewer_cmd recv_hdr
;
1866 struct relay_local_data
*relay_ctx
= (struct relay_local_data
*) data
;
1867 struct lttng_ht
*sessions_ht
= relay_ctx
->sessions_ht
;
1869 DBG("[thread] Live viewer relay worker started");
1871 rcu_register_thread();
1873 health_register(health_relayd
, HEALTH_RELAYD_TYPE_LIVE_WORKER
);
1875 if (testpoint(relayd_thread_live_worker
)) {
1876 goto error_testpoint
;
1879 /* table of connections indexed on socket */
1880 relay_connections_ht
= lttng_ht_new(0, LTTNG_HT_TYPE_ULONG
);
1881 if (!relay_connections_ht
) {
1882 goto relay_connections_ht_error
;
1885 ret
= create_thread_poll_set(&events
, 2);
1887 goto error_poll_create
;
1890 ret
= lttng_poll_add(&events
, live_conn_pipe
[0], LPOLLIN
| LPOLLRDHUP
);
1899 health_code_update();
1901 /* Infinite blocking call, waiting for transmission */
1902 DBG3("Relayd live viewer worker thread polling...");
1903 health_poll_entry();
1904 ret
= lttng_poll_wait(&events
, -1);
1908 * Restart interrupted system call.
1910 if (errno
== EINTR
) {
1919 * Process control. The control connection is prioritised so we don't
1920 * starve it with high throughput tracing data on the data
1923 for (i
= 0; i
< nb_fd
; i
++) {
1924 /* Fetch once the poll data */
1925 uint32_t revents
= LTTNG_POLL_GETEV(&events
, i
);
1926 int pollfd
= LTTNG_POLL_GETFD(&events
, i
);
1928 health_code_update();
1931 /* No activity for this FD (poll implementation). */
1935 /* Thread quit pipe has been closed. Killing thread. */
1936 ret
= check_thread_quit_pipe(pollfd
, revents
);
1942 /* Inspect the relay conn pipe for new connection */
1943 if (pollfd
== live_conn_pipe
[0]) {
1944 if (revents
& (LPOLLERR
| LPOLLHUP
| LPOLLRDHUP
)) {
1945 ERR("Relay live pipe error");
1947 } else if (revents
& LPOLLIN
) {
1948 ret
= lttng_read(live_conn_pipe
[0], &conn
, sizeof(conn
));
1952 conn
->sessions_ht
= sessions_ht
;
1953 connection_init(conn
);
1954 lttng_poll_add(&events
, conn
->sock
->fd
,
1955 LPOLLIN
| LPOLLRDHUP
);
1957 lttng_ht_add_unique_ulong(relay_connections_ht
,
1960 DBG("Connection socket %d added", conn
->sock
->fd
);
1964 conn
= connection_find_by_sock(relay_connections_ht
, pollfd
);
1965 /* If not found, there is a synchronization issue. */
1968 if (revents
& (LPOLLERR
| LPOLLHUP
| LPOLLRDHUP
)) {
1969 cleanup_connection_pollfd(&events
, pollfd
);
1970 destroy_connection(relay_connections_ht
, conn
);
1971 } else if (revents
& LPOLLIN
) {
1972 ret
= conn
->sock
->ops
->recvmsg(conn
->sock
, &recv_hdr
,
1973 sizeof(recv_hdr
), 0);
1975 /* Connection closed */
1976 cleanup_connection_pollfd(&events
, pollfd
);
1977 destroy_connection(relay_connections_ht
, conn
);
1978 DBG("Viewer control conn closed with %d", pollfd
);
1980 ret
= process_control(&recv_hdr
, conn
);
1982 /* Clear the session on error. */
1983 cleanup_connection_pollfd(&events
, pollfd
);
1984 destroy_connection(relay_connections_ht
, conn
);
1985 DBG("Viewer connection closed with %d", pollfd
);
1996 lttng_poll_clean(&events
);
1998 /* Cleanup reamaining connection object. */
2000 cds_lfht_for_each_entry(relay_connections_ht
->ht
, &iter
.iter
, conn
,
2002 health_code_update();
2003 destroy_connection(relay_connections_ht
, conn
);
2007 lttng_ht_destroy(relay_connections_ht
);
2008 relay_connections_ht_error
:
2009 /* Close relay conn pipes */
2010 utils_close_pipe(live_conn_pipe
);
2012 DBG("Viewer worker thread exited with error");
2014 DBG("Viewer worker thread cleanup complete");
2018 ERR("Health error occurred in %s", __func__
);
2020 health_unregister(health_relayd
);
2021 if (lttng_relay_stop_threads()) {
2022 ERR("Error stopping threads");
2024 rcu_unregister_thread();
2029 * Create the relay command pipe to wake thread_manage_apps.
2030 * Closed in cleanup().
2032 static int create_conn_pipe(void)
2034 return utils_create_pipe_cloexec(live_conn_pipe
);
2037 int relayd_live_join(void)
2039 int ret
, retval
= 0;
2042 ret
= pthread_join(live_listener_thread
, &status
);
2045 PERROR("pthread_join live listener");
2049 ret
= pthread_join(live_worker_thread
, &status
);
2052 PERROR("pthread_join live worker");
2056 ret
= pthread_join(live_dispatcher_thread
, &status
);
2059 PERROR("pthread_join live dispatcher");
2063 cleanup_relayd_live();
2071 int relayd_live_create(struct lttng_uri
*uri
,
2072 struct relay_local_data
*relay_ctx
)
2074 int ret
= 0, retval
= 0;
2080 goto exit_init_data
;
2084 /* Check if daemon is UID = 0 */
2085 is_root
= !getuid();
2088 if (live_uri
->port
< 1024) {
2089 ERR("Need to be root to use ports < 1024");
2091 goto exit_init_data
;
2095 /* Setup the thread apps communication pipe. */
2096 if (create_conn_pipe()) {
2098 goto exit_init_data
;
2101 /* Init relay command queue. */
2102 cds_wfcq_init(&viewer_conn_queue
.head
, &viewer_conn_queue
.tail
);
2104 /* Set up max poll set size */
2105 if (lttng_poll_set_max_size()) {
2107 goto exit_init_data
;
2110 /* Setup the dispatcher thread */
2111 ret
= pthread_create(&live_dispatcher_thread
, NULL
,
2112 thread_dispatcher
, (void *) NULL
);
2115 PERROR("pthread_create viewer dispatcher");
2117 goto exit_dispatcher_thread
;
2120 /* Setup the worker thread */
2121 ret
= pthread_create(&live_worker_thread
, NULL
,
2122 thread_worker
, relay_ctx
);
2125 PERROR("pthread_create viewer worker");
2127 goto exit_worker_thread
;
2130 /* Setup the listener thread */
2131 ret
= pthread_create(&live_listener_thread
, NULL
,
2132 thread_listener
, (void *) NULL
);
2135 PERROR("pthread_create viewer listener");
2137 goto exit_listener_thread
;
2141 * All OK, started all threads.
2146 ret
= pthread_join(live_listener_thread
, &status
);
2149 PERROR("pthread_join live listener");
2152 exit_listener_thread
:
2154 ret
= pthread_join(live_worker_thread
, &status
);
2157 PERROR("pthread_join live worker");
2162 ret
= pthread_join(live_dispatcher_thread
, &status
);
2165 PERROR("pthread_join live dispatcher");
2168 exit_dispatcher_thread
:
2171 cleanup_relayd_live();