2 * Copyright (C) 2013 - Julien Desfossez <jdesfossez@efficios.com>
3 * David Goulet <dgoulet@efficios.com>
4 * 2015 - Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
6 * This program is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License, version 2 only,
8 * as published by the Free Software Foundation.
10 * This program is distributed in the hope that it will be useful, but WITHOUT
11 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
12 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
15 * You should have received a copy of the GNU General Public License along
16 * with this program; if not, write to the Free Software Foundation, Inc.,
17 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
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>
39 #include <urcu/rculist.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>
56 #include <common/fd-tracker/utils.h>
60 #include "lttng-relayd.h"
62 #include "health-relayd.h"
63 #include "testpoint.h"
64 #include "viewer-stream.h"
67 #include "ctf-trace.h"
68 #include "connection.h"
69 #include "viewer-session.h"
71 #define SESSION_BUF_DEFAULT_COUNT 16
73 static struct lttng_uri
*live_uri
;
76 * This pipe is used to inform the worker thread that a command is queued and
77 * ready to be processed.
79 static int live_conn_pipe
[2] = { -1, -1 };
81 /* Shared between threads */
82 static int live_dispatch_thread_exit
;
84 static pthread_t live_listener_thread
;
85 static pthread_t live_dispatcher_thread
;
86 static pthread_t live_worker_thread
;
89 * Relay command queue.
91 * The live_thread_listener and live_thread_dispatcher communicate with this
94 static struct relay_conn_queue viewer_conn_queue
;
96 static uint64_t last_relay_viewer_session_id
;
97 static pthread_mutex_t last_relay_viewer_session_id_lock
=
98 PTHREAD_MUTEX_INITIALIZER
;
104 void cleanup_relayd_live(void)
112 * Receive a request buffer using a given socket, destination allocated buffer
115 * Return the size of the received message or else a negative value on error
116 * with errno being set by recvmsg() syscall.
119 ssize_t
recv_request(struct lttcomm_sock
*sock
, void *buf
, size_t size
)
123 ret
= sock
->ops
->recvmsg(sock
, buf
, size
, 0);
124 if (ret
< 0 || ret
!= size
) {
126 /* Orderly shutdown. Not necessary to print an error. */
127 DBG("Socket %d did an orderly shutdown", sock
->fd
);
129 ERR("Relay failed to receive request.");
138 * Send a response buffer using a given socket, source allocated buffer of
141 * Return the size of the sent message or else a negative value on error with
142 * errno being set by sendmsg() syscall.
145 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
) {
175 cds_list_for_each_entry_rcu(session
,
176 &conn
->viewer_session
->session_list
,
177 viewer_session_node
) {
178 if (!session_get(session
)) {
181 current_val
= uatomic_cmpxchg(&session
->new_streams
, 1, 0);
183 session_put(session
);
194 * Send viewer streams to the given socket. The ignore_sent_flag indicates if
195 * this function should ignore the sent flag or not.
197 * Return 0 on success or else a negative value.
200 ssize_t
send_viewer_streams(struct lttcomm_sock
*sock
,
201 struct relay_session
*session
, unsigned int ignore_sent_flag
)
204 struct lttng_viewer_stream send_stream
;
205 struct lttng_ht_iter iter
;
206 struct relay_viewer_stream
*vstream
;
210 cds_lfht_for_each_entry(viewer_streams_ht
->ht
, &iter
.iter
, vstream
,
212 struct ctf_trace
*ctf_trace
;
214 health_code_update();
216 if (!viewer_stream_get(vstream
)) {
220 pthread_mutex_lock(&vstream
->stream
->lock
);
221 /* Ignore if not the same session. */
222 if (vstream
->stream
->trace
->session
->id
!= session
->id
||
223 (!ignore_sent_flag
&& vstream
->sent_flag
)) {
224 pthread_mutex_unlock(&vstream
->stream
->lock
);
225 viewer_stream_put(vstream
);
229 ctf_trace
= vstream
->stream
->trace
;
230 send_stream
.id
= htobe64(vstream
->stream
->stream_handle
);
231 send_stream
.ctf_trace_id
= htobe64(ctf_trace
->id
);
232 send_stream
.metadata_flag
= htobe32(
233 vstream
->stream
->is_metadata
);
234 if (lttng_strncpy(send_stream
.path_name
, vstream
->path_name
,
235 sizeof(send_stream
.path_name
))) {
236 pthread_mutex_unlock(&vstream
->stream
->lock
);
237 viewer_stream_put(vstream
);
238 ret
= -1; /* Error. */
241 if (lttng_strncpy(send_stream
.channel_name
,
242 vstream
->channel_name
,
243 sizeof(send_stream
.channel_name
))) {
244 pthread_mutex_unlock(&vstream
->stream
->lock
);
245 viewer_stream_put(vstream
);
246 ret
= -1; /* Error. */
250 DBG("Sending stream %" PRIu64
" to viewer",
251 vstream
->stream
->stream_handle
);
252 vstream
->sent_flag
= 1;
253 pthread_mutex_unlock(&vstream
->stream
->lock
);
255 ret
= send_response(sock
, &send_stream
, sizeof(send_stream
));
256 viewer_stream_put(vstream
);
270 * Create every viewer stream possible for the given session with the seek
271 * type. Three counters *can* be return which are in order the total amount of
272 * viewer stream of the session, the number of unsent stream and the number of
273 * stream created. Those counters can be NULL and thus will be ignored.
275 * Return 0 on success or else a negative value.
278 int make_viewer_streams(struct relay_session
*session
,
279 enum lttng_viewer_seek seek_t
, uint32_t *nb_total
, uint32_t *nb_unsent
,
280 uint32_t *nb_created
, bool *closed
)
283 struct lttng_ht_iter iter
;
284 struct ctf_trace
*ctf_trace
;
289 * Hold the session lock to ensure that we see either none or
290 * all initial streams for a session, but no intermediate state.
292 pthread_mutex_lock(&session
->lock
);
294 if (session
->connection_closed
) {
299 * Create viewer streams for relay streams that are ready to be
300 * used for a the given session id only.
303 cds_lfht_for_each_entry(session
->ctf_traces_ht
->ht
, &iter
.iter
, ctf_trace
,
305 struct relay_stream
*stream
;
307 health_code_update();
309 if (!ctf_trace_get(ctf_trace
)) {
313 cds_list_for_each_entry_rcu(stream
, &ctf_trace
->stream_list
, stream_node
) {
314 struct relay_viewer_stream
*vstream
;
316 if (!stream_get(stream
)) {
320 * stream published is protected by the session lock.
322 if (!stream
->published
) {
325 vstream
= viewer_stream_get_by_id(stream
->stream_handle
);
327 vstream
= viewer_stream_create(stream
, seek_t
);
330 ctf_trace_put(ctf_trace
);
336 /* Update number of created stream counter. */
340 * Ensure a self-reference is preserved even
341 * after we have put our local reference.
343 if (!viewer_stream_get(vstream
)) {
344 ERR("Unable to get self-reference on viewer stream, logic error.");
348 if (!vstream
->sent_flag
&& nb_unsent
) {
349 /* Update number of unsent stream counter. */
353 /* Update number of total stream counter. */
355 if (stream
->is_metadata
) {
356 if (!stream
->closed
||
357 stream
->metadata_received
> vstream
->metadata_sent
) {
361 if (!stream
->closed
||
362 !(((int64_t) (stream
->prev_seq
- stream
->last_net_seq_num
)) >= 0)) {
368 /* Put local reference. */
369 viewer_stream_put(vstream
);
373 ctf_trace_put(ctf_trace
);
380 pthread_mutex_unlock(&session
->lock
);
384 int relayd_live_stop(void)
386 /* Stop dispatch thread */
387 CMM_STORE_SHARED(live_dispatch_thread_exit
, 1);
388 futex_nto1_wake(&viewer_conn_queue
.futex
);
393 * Create a poll set with O_CLOEXEC and add the thread quit pipe to the set.
396 int create_named_thread_poll_set(struct lttng_poll_event
*events
,
397 int size
, const char *name
)
401 if (events
== NULL
|| size
== 0) {
406 ret
= fd_tracker_util_poll_create(the_fd_tracker
,
407 name
, events
, 1, LTTNG_CLOEXEC
);
410 ret
= lttng_poll_add(events
, thread_quit_pipe
[0], LPOLLIN
| LPOLLERR
);
422 * Check if the thread quit pipe was triggered.
424 * Return 1 if it was triggered else 0;
427 int check_thread_quit_pipe(int fd
, uint32_t events
)
429 if (fd
== thread_quit_pipe
[0] && (events
& LPOLLIN
)) {
437 int create_sock(void *data
, int *out_fd
)
440 struct lttcomm_sock
*sock
= data
;
442 ret
= lttcomm_create_sock(sock
);
453 int close_sock(void *data
, int *in_fd
)
455 struct lttcomm_sock
*sock
= data
;
457 return sock
->ops
->close(sock
);
460 static int accept_sock(void *data
, int *out_fd
)
463 /* Socks is an array of in_sock, out_sock. */
464 struct lttcomm_sock
**socks
= data
;
465 struct lttcomm_sock
*in_sock
= socks
[0];
467 socks
[1] = in_sock
->ops
->accept(in_sock
);
472 *out_fd
= socks
[1]->fd
;
478 struct lttcomm_sock
*accept_live_sock(struct lttcomm_sock
*listening_sock
,
482 struct lttcomm_sock
*socks
[2] = { listening_sock
, NULL
};
483 struct lttcomm_sock
*new_sock
= NULL
;
485 ret
= fd_tracker_open_unsuspendable_fd(
486 the_fd_tracker
, &out_fd
,
487 (const char **) &name
,
488 1, accept_sock
, &socks
);
493 DBG("%s accepted, socket %d", name
, new_sock
->fd
);
499 * Create and init socket from uri.
502 struct lttcomm_sock
*init_socket(struct lttng_uri
*uri
, const char *name
)
505 struct lttcomm_sock
*sock
= NULL
;
506 char uri_str
[PATH_MAX
];
507 char *formated_name
= NULL
;
509 sock
= lttcomm_alloc_sock_from_uri(uri
);
511 ERR("Allocating socket");
516 * Don't fail to create the socket if the name can't be built as it is
517 * only used for debugging purposes.
519 ret
= uri_to_str_url(uri
, uri_str
, sizeof(uri_str
));
520 uri_str
[sizeof(uri_str
) - 1] = '\0';
522 ret
= asprintf(&formated_name
, "%s socket @ %s", name
,
525 formated_name
= NULL
;
529 ret
= fd_tracker_open_unsuspendable_fd(the_fd_tracker
, &sock_fd
,
530 (const char **) (formated_name
? &formated_name
: NULL
),
531 1, create_sock
, sock
);
533 DBG("Listening on %s socket %d", name
, sock
->fd
);
535 ret
= sock
->ops
->bind(sock
);
540 ret
= sock
->ops
->listen(sock
, -1);
550 lttcomm_destroy_sock(sock
);
556 * This thread manages the listening for new connections on the network
559 void *thread_listener(void *data
)
561 int i
, ret
, pollfd
, err
= -1;
562 uint32_t revents
, nb_fd
;
563 struct lttng_poll_event events
;
564 struct lttcomm_sock
*live_control_sock
;
566 DBG("[thread] Relay live listener started");
568 health_register(health_relayd
, HEALTH_RELAYD_TYPE_LIVE_LISTENER
);
570 health_code_update();
572 live_control_sock
= init_socket(live_uri
, "Live listener");
573 if (!live_control_sock
) {
574 goto error_sock_control
;
577 /* Pass 2 as size here for the thread quit pipe and control sockets. */
578 ret
= create_named_thread_poll_set(&events
, 2,
579 "Live listener thread epoll");
581 goto error_create_poll
;
584 /* Add the control socket */
585 ret
= lttng_poll_add(&events
, live_control_sock
->fd
, LPOLLIN
| LPOLLRDHUP
);
590 lttng_relay_notify_ready();
592 if (testpoint(relayd_thread_live_listener
)) {
593 goto error_testpoint
;
597 health_code_update();
599 DBG("Listener accepting live viewers connections");
603 ret
= lttng_poll_wait(&events
, -1);
607 * Restart interrupted system call.
609 if (errno
== EINTR
) {
616 DBG("Relay new viewer connection received");
617 for (i
= 0; i
< nb_fd
; i
++) {
618 health_code_update();
620 /* Fetch once the poll data */
621 revents
= LTTNG_POLL_GETEV(&events
, i
);
622 pollfd
= LTTNG_POLL_GETFD(&events
, i
);
625 /* No activity for this FD (poll implementation). */
629 /* Thread quit pipe has been closed. Killing thread. */
630 ret
= check_thread_quit_pipe(pollfd
, revents
);
636 if (revents
& LPOLLIN
) {
638 * A new connection is requested, therefore a
639 * viewer connection is allocated in this
640 * thread, enqueued to a global queue and
641 * dequeued (and freed) in the worker thread.
644 struct relay_connection
*new_conn
;
645 struct lttcomm_sock
*newsock
;
647 newsock
= accept_live_sock(live_control_sock
,
648 "Live socket to client");
650 PERROR("accepting control sock");
653 DBG("Relay viewer connection accepted socket %d", newsock
->fd
);
655 ret
= setsockopt(newsock
->fd
, SOL_SOCKET
, SO_REUSEADDR
, &val
,
658 PERROR("setsockopt inet");
659 lttcomm_destroy_sock(newsock
);
662 new_conn
= connection_create(newsock
, RELAY_CONNECTION_UNKNOWN
);
664 lttcomm_destroy_sock(newsock
);
667 /* Ownership assumed by the connection. */
670 /* Enqueue request for the dispatcher thread. */
671 cds_wfcq_enqueue(&viewer_conn_queue
.head
, &viewer_conn_queue
.tail
,
675 * Wake the dispatch queue futex.
676 * Implicit memory barrier with the
677 * exchange in cds_wfcq_enqueue.
679 futex_nto1_wake(&viewer_conn_queue
.futex
);
680 } else if (revents
& (LPOLLERR
| LPOLLHUP
| LPOLLRDHUP
)) {
681 ERR("socket poll error");
684 ERR("Unexpected poll events %u for sock %d", revents
, pollfd
);
694 (void) fd_tracker_util_poll_clean(the_fd_tracker
, &events
);
696 if (live_control_sock
->fd
>= 0) {
697 ret
= fd_tracker_close_unsuspendable_fd(the_fd_tracker
,
698 &live_control_sock
->fd
, 1, close_sock
,
704 lttcomm_destroy_sock(live_control_sock
);
708 DBG("Live viewer listener thread exited with error");
710 health_unregister(health_relayd
);
711 DBG("Live viewer listener thread cleanup complete");
712 if (lttng_relay_stop_threads()) {
713 ERR("Error stopping threads");
719 * This thread manages the dispatching of the requests to worker threads
722 void *thread_dispatcher(void *data
)
726 struct cds_wfcq_node
*node
;
727 struct relay_connection
*conn
= NULL
;
729 DBG("[thread] Live viewer relay dispatcher started");
731 health_register(health_relayd
, HEALTH_RELAYD_TYPE_LIVE_DISPATCHER
);
733 if (testpoint(relayd_thread_live_dispatcher
)) {
734 goto error_testpoint
;
737 health_code_update();
740 health_code_update();
742 /* Atomically prepare the queue futex */
743 futex_nto1_prepare(&viewer_conn_queue
.futex
);
745 if (CMM_LOAD_SHARED(live_dispatch_thread_exit
)) {
750 health_code_update();
752 /* Dequeue commands */
753 node
= cds_wfcq_dequeue_blocking(&viewer_conn_queue
.head
,
754 &viewer_conn_queue
.tail
);
756 DBG("Woken up but nothing in the live-viewer "
757 "relay command queue");
758 /* Continue thread execution */
761 conn
= caa_container_of(node
, struct relay_connection
, qnode
);
762 DBG("Dispatching viewer request waiting on sock %d",
766 * Inform worker thread of the new request. This
767 * call is blocking so we can be assured that
768 * the data will be read at some point in time
769 * or wait to the end of the world :)
771 ret
= lttng_write(live_conn_pipe
[1], &conn
, sizeof(conn
));
773 PERROR("write conn pipe");
774 connection_put(conn
);
777 } while (node
!= NULL
);
779 /* Futex wait on queue. Blocking call on futex() */
781 futex_nto1_wait(&viewer_conn_queue
.futex
);
785 /* Normal exit, no error */
792 ERR("Health error occurred in %s", __func__
);
794 health_unregister(health_relayd
);
795 DBG("Live viewer dispatch thread dying");
796 if (lttng_relay_stop_threads()) {
797 ERR("Error stopping threads");
803 * Establish connection with the viewer and check the versions.
805 * Return 0 on success or else negative value.
808 int viewer_connect(struct relay_connection
*conn
)
811 struct lttng_viewer_connect reply
, msg
;
813 conn
->version_check_done
= 1;
815 health_code_update();
817 DBG("Viewer is establishing a connection to the relayd.");
819 ret
= recv_request(conn
->sock
, &msg
, sizeof(msg
));
824 health_code_update();
826 memset(&reply
, 0, sizeof(reply
));
827 reply
.major
= RELAYD_VERSION_COMM_MAJOR
;
828 reply
.minor
= RELAYD_VERSION_COMM_MINOR
;
830 /* Major versions must be the same */
831 if (reply
.major
!= be32toh(msg
.major
)) {
832 DBG("Incompatible major versions ([relayd] %u vs [client] %u)",
833 reply
.major
, be32toh(msg
.major
));
838 conn
->major
= reply
.major
;
839 /* We adapt to the lowest compatible version */
840 if (reply
.minor
<= be32toh(msg
.minor
)) {
841 conn
->minor
= reply
.minor
;
843 conn
->minor
= be32toh(msg
.minor
);
846 if (be32toh(msg
.type
) == LTTNG_VIEWER_CLIENT_COMMAND
) {
847 conn
->type
= RELAY_VIEWER_COMMAND
;
848 } else if (be32toh(msg
.type
) == LTTNG_VIEWER_CLIENT_NOTIFICATION
) {
849 conn
->type
= RELAY_VIEWER_NOTIFICATION
;
851 ERR("Unknown connection type : %u", be32toh(msg
.type
));
856 reply
.major
= htobe32(reply
.major
);
857 reply
.minor
= htobe32(reply
.minor
);
858 if (conn
->type
== RELAY_VIEWER_COMMAND
) {
860 * Increment outside of htobe64 macro, because the argument can
861 * be used more than once within the macro, and thus the
862 * operation may be undefined.
864 pthread_mutex_lock(&last_relay_viewer_session_id_lock
);
865 last_relay_viewer_session_id
++;
866 pthread_mutex_unlock(&last_relay_viewer_session_id_lock
);
867 reply
.viewer_session_id
= htobe64(last_relay_viewer_session_id
);
870 health_code_update();
872 ret
= send_response(conn
->sock
, &reply
, sizeof(reply
));
877 health_code_update();
879 DBG("Version check done using protocol %u.%u", conn
->major
, conn
->minor
);
887 * Send the viewer the list of current sessions.
888 * We need to create a copy of the hash table content because otherwise
889 * we cannot assume the number of entries stays the same between getting
890 * the number of HT elements and iteration over the HT.
892 * Return 0 on success or else a negative value.
895 int viewer_list_sessions(struct relay_connection
*conn
)
898 struct lttng_viewer_list_sessions session_list
;
899 struct lttng_ht_iter iter
;
900 struct relay_session
*session
;
901 struct lttng_viewer_session
*send_session_buf
= NULL
;
902 uint32_t buf_count
= SESSION_BUF_DEFAULT_COUNT
;
905 DBG("List sessions received");
907 send_session_buf
= zmalloc(SESSION_BUF_DEFAULT_COUNT
* sizeof(*send_session_buf
));
908 if (!send_session_buf
) {
913 cds_lfht_for_each_entry(sessions_ht
->ht
, &iter
.iter
, session
,
915 struct lttng_viewer_session
*send_session
;
917 health_code_update();
919 if (count
>= buf_count
) {
920 struct lttng_viewer_session
*newbuf
;
921 uint32_t new_buf_count
= buf_count
<< 1;
923 newbuf
= realloc(send_session_buf
,
924 new_buf_count
* sizeof(*send_session_buf
));
929 send_session_buf
= newbuf
;
930 buf_count
= new_buf_count
;
932 send_session
= &send_session_buf
[count
];
933 if (lttng_strncpy(send_session
->session_name
,
934 session
->session_name
,
935 sizeof(send_session
->session_name
))) {
939 if (lttng_strncpy(send_session
->hostname
, session
->hostname
,
940 sizeof(send_session
->hostname
))) {
944 send_session
->id
= htobe64(session
->id
);
945 send_session
->live_timer
= htobe32(session
->live_timer
);
946 if (session
->viewer_attached
) {
947 send_session
->clients
= htobe32(1);
949 send_session
->clients
= htobe32(0);
951 send_session
->streams
= htobe32(session
->stream_count
);
959 session_list
.sessions_count
= htobe32(count
);
961 health_code_update();
963 ret
= send_response(conn
->sock
, &session_list
, sizeof(session_list
));
968 health_code_update();
970 ret
= send_response(conn
->sock
, send_session_buf
,
971 count
* sizeof(*send_session_buf
));
975 health_code_update();
979 free(send_session_buf
);
984 * Send the viewer the list of current streams.
987 int viewer_get_new_streams(struct relay_connection
*conn
)
989 int ret
, send_streams
= 0;
990 uint32_t nb_created
= 0, nb_unsent
= 0, nb_streams
= 0, nb_total
= 0;
991 struct lttng_viewer_new_streams_request request
;
992 struct lttng_viewer_new_streams_response response
;
993 struct relay_session
*session
;
999 DBG("Get new streams received");
1001 health_code_update();
1003 /* Receive the request from the connected client. */
1004 ret
= recv_request(conn
->sock
, &request
, sizeof(request
));
1008 session_id
= be64toh(request
.session_id
);
1010 health_code_update();
1012 memset(&response
, 0, sizeof(response
));
1014 session
= session_get_by_id(session_id
);
1016 DBG("Relay session %" PRIu64
" not found", session_id
);
1017 response
.status
= htobe32(LTTNG_VIEWER_NEW_STREAMS_ERR
);
1021 if (!viewer_session_is_attached(conn
->viewer_session
, session
)) {
1023 response
.status
= htobe32(LTTNG_VIEWER_NEW_STREAMS_ERR
);
1028 response
.status
= htobe32(LTTNG_VIEWER_NEW_STREAMS_OK
);
1030 ret
= make_viewer_streams(session
, LTTNG_VIEWER_SEEK_LAST
, &nb_total
, &nb_unsent
,
1031 &nb_created
, &closed
);
1033 goto end_put_session
;
1035 /* Only send back the newly created streams with the unsent ones. */
1036 nb_streams
= nb_created
+ nb_unsent
;
1037 response
.streams_count
= htobe32(nb_streams
);
1040 * If the session is closed, HUP when there are no more streams
1043 if (closed
&& nb_total
== 0) {
1045 response
.streams_count
= 0;
1046 response
.status
= htobe32(LTTNG_VIEWER_NEW_STREAMS_HUP
);
1051 health_code_update();
1052 ret
= send_response(conn
->sock
, &response
, sizeof(response
));
1054 goto end_put_session
;
1056 health_code_update();
1059 * Unknown or empty session, just return gracefully, the viewer
1060 * knows what is happening.
1062 if (!send_streams
|| !nb_streams
) {
1064 goto end_put_session
;
1068 * Send stream and *DON'T* ignore the sent flag so every viewer
1069 * streams that were not sent from that point will be sent to
1072 ret
= send_viewer_streams(conn
->sock
, session
, 0);
1074 goto end_put_session
;
1079 session_put(session
);
1086 * Send the viewer the list of current sessions.
1089 int viewer_attach_session(struct relay_connection
*conn
)
1091 int send_streams
= 0;
1093 uint32_t nb_streams
= 0;
1094 enum lttng_viewer_seek seek_type
;
1095 struct lttng_viewer_attach_session_request request
;
1096 struct lttng_viewer_attach_session_response response
;
1097 struct relay_session
*session
= NULL
;
1098 bool closed
= false;
1102 health_code_update();
1104 /* Receive the request from the connected client. */
1105 ret
= recv_request(conn
->sock
, &request
, sizeof(request
));
1110 health_code_update();
1112 memset(&response
, 0, sizeof(response
));
1114 if (!conn
->viewer_session
) {
1115 DBG("Client trying to attach before creating a live viewer session");
1116 response
.status
= htobe32(LTTNG_VIEWER_ATTACH_NO_SESSION
);
1120 session
= session_get_by_id(be64toh(request
.session_id
));
1122 DBG("Relay session %" PRIu64
" not found",
1123 (uint64_t) be64toh(request
.session_id
));
1124 response
.status
= htobe32(LTTNG_VIEWER_ATTACH_UNK
);
1127 DBG("Attach session ID %" PRIu64
" received",
1128 (uint64_t) be64toh(request
.session_id
));
1130 if (session
->live_timer
== 0) {
1131 DBG("Not live session");
1132 response
.status
= htobe32(LTTNG_VIEWER_ATTACH_NOT_LIVE
);
1137 ret
= viewer_session_attach(conn
->viewer_session
, session
);
1139 DBG("Already a viewer attached");
1140 response
.status
= htobe32(LTTNG_VIEWER_ATTACH_ALREADY
);
1144 switch (be32toh(request
.seek
)) {
1145 case LTTNG_VIEWER_SEEK_BEGINNING
:
1146 case LTTNG_VIEWER_SEEK_LAST
:
1147 response
.status
= htobe32(LTTNG_VIEWER_ATTACH_OK
);
1148 seek_type
= be32toh(request
.seek
);
1151 ERR("Wrong seek parameter");
1152 response
.status
= htobe32(LTTNG_VIEWER_ATTACH_SEEK_ERR
);
1157 ret
= make_viewer_streams(session
, seek_type
, &nb_streams
, NULL
,
1160 goto end_put_session
;
1162 response
.streams_count
= htobe32(nb_streams
);
1165 * If the session is closed when the viewer is attaching, it
1166 * means some of the streams may have been concurrently removed,
1167 * so we don't allow the viewer to attach, even if there are
1168 * streams available.
1172 response
.streams_count
= 0;
1173 response
.status
= htobe32(LTTNG_VIEWER_NEW_STREAMS_HUP
);
1178 health_code_update();
1179 ret
= send_response(conn
->sock
, &response
, sizeof(response
));
1181 goto end_put_session
;
1183 health_code_update();
1186 * Unknown or empty session, just return gracefully, the viewer
1187 * knows what is happening.
1189 if (!send_streams
|| !nb_streams
) {
1191 goto end_put_session
;
1194 /* Send stream and ignore the sent flag. */
1195 ret
= send_viewer_streams(conn
->sock
, session
, 1);
1197 goto end_put_session
;
1202 session_put(session
);
1209 * Open the index file if needed for the given vstream.
1211 * If an index file is successfully opened, the vstream will set it as its
1212 * current index file.
1214 * Return 0 on success, a negative value on error (-ENOENT if not ready yet).
1216 * Called with rstream lock held.
1218 static int try_open_index(struct relay_viewer_stream
*vstream
,
1219 struct relay_stream
*rstream
)
1223 if (vstream
->index_file
) {
1228 * First time, we open the index file and at least one index is ready.
1230 if (rstream
->index_received_seqcount
== 0) {
1234 vstream
->index_file
= lttng_index_file_open(vstream
->path_name
,
1235 vstream
->channel_name
,
1236 vstream
->stream
->tracefile_count
,
1237 vstream
->current_tracefile_id
);
1238 if (!vstream
->index_file
) {
1247 * Check the status of the index for the given stream. This function
1248 * updates the index structure if needed and can put (close) the vstream
1249 * in the HUP situation.
1251 * Return 0 means that we can proceed with the index. A value of 1 means
1252 * that the index has been updated and is ready to be sent to the
1253 * client. A negative value indicates an error that can't be handled.
1255 * Called with rstream lock held.
1257 static int check_index_status(struct relay_viewer_stream
*vstream
,
1258 struct relay_stream
*rstream
, struct ctf_trace
*trace
,
1259 struct lttng_viewer_index
*index
)
1263 if (trace
->session
->connection_closed
1264 && rstream
->index_received_seqcount
1265 == vstream
->index_sent_seqcount
) {
1266 /* Last index sent and session connection is closed. */
1267 index
->status
= htobe32(LTTNG_VIEWER_INDEX_HUP
);
1269 } else if (rstream
->beacon_ts_end
!= -1ULL &&
1270 rstream
->index_received_seqcount
1271 == vstream
->index_sent_seqcount
) {
1273 * We've received a synchronization beacon and the last index
1274 * available has been sent, the index for now is inactive.
1276 * In this case, we have received a beacon which allows us to
1277 * inform the client of a time interval during which we can
1278 * guarantee that there are no events to read (and never will
1281 index
->status
= htobe32(LTTNG_VIEWER_INDEX_INACTIVE
);
1282 index
->timestamp_end
= htobe64(rstream
->beacon_ts_end
);
1283 index
->stream_id
= htobe64(rstream
->ctf_stream_id
);
1285 } else if (rstream
->index_received_seqcount
1286 == vstream
->index_sent_seqcount
) {
1288 * This checks whether received == sent seqcount. In
1289 * this case, we have not received a beacon. Therefore,
1290 * we can only ask the client to retry later.
1292 index
->status
= htobe32(LTTNG_VIEWER_INDEX_RETRY
);
1294 } else if (!tracefile_array_seq_in_file(rstream
->tfa
,
1295 vstream
->current_tracefile_id
,
1296 vstream
->index_sent_seqcount
)) {
1298 * The next index we want to send cannot be read either
1299 * because we need to perform a rotation, or due to
1300 * the producer having overwritten its trace file.
1302 DBG("Viewer stream %" PRIu64
" rotation",
1303 vstream
->stream
->stream_handle
);
1304 ret
= viewer_stream_rotate(vstream
);
1307 } else if (ret
== 1) {
1308 /* EOF across entire stream. */
1309 index
->status
= htobe32(LTTNG_VIEWER_INDEX_HUP
);
1313 * If we have been pushed due to overwrite, it
1314 * necessarily means there is data that can be read in
1315 * the stream. If we rotated because we reached the end
1316 * of a tracefile, it means the following tracefile
1317 * needs to contain at least one index, else we would
1318 * have already returned LTTNG_VIEWER_INDEX_RETRY to the
1319 * viewer. The updated index_sent_seqcount needs to
1320 * point to a readable index entry now.
1322 * In the case where we "rotate" on a single file, we
1323 * can end up in a case where the requested index is
1324 * still unavailable.
1326 if (rstream
->tracefile_count
== 1 &&
1327 !tracefile_array_seq_in_file(
1329 vstream
->current_tracefile_id
,
1330 vstream
->index_sent_seqcount
)) {
1331 index
->status
= htobe32(LTTNG_VIEWER_INDEX_RETRY
);
1334 assert(tracefile_array_seq_in_file(rstream
->tfa
,
1335 vstream
->current_tracefile_id
,
1336 vstream
->index_sent_seqcount
));
1338 /* ret == 0 means successful so we continue. */
1344 viewer_stream_put(vstream
);
1350 * Send the next index for a stream.
1352 * Return 0 on success or else a negative value.
1355 int viewer_get_next_index(struct relay_connection
*conn
)
1358 struct lttng_viewer_get_next_index request_index
;
1359 struct lttng_viewer_index viewer_index
;
1360 struct ctf_packet_index packet_index
;
1361 struct relay_viewer_stream
*vstream
= NULL
;
1362 struct relay_stream
*rstream
= NULL
;
1363 struct ctf_trace
*ctf_trace
= NULL
;
1364 struct relay_viewer_stream
*metadata_viewer_stream
= NULL
;
1368 DBG("Viewer get next index");
1370 memset(&viewer_index
, 0, sizeof(viewer_index
));
1371 health_code_update();
1373 ret
= recv_request(conn
->sock
, &request_index
, sizeof(request_index
));
1377 health_code_update();
1379 vstream
= viewer_stream_get_by_id(be64toh(request_index
.stream_id
));
1381 DBG("Client requested index of unknown stream id %" PRIu64
,
1382 (uint64_t) be64toh(request_index
.stream_id
));
1383 viewer_index
.status
= htobe32(LTTNG_VIEWER_INDEX_ERR
);
1387 /* Use back. ref. Protected by refcounts. */
1388 rstream
= vstream
->stream
;
1389 ctf_trace
= rstream
->trace
;
1391 /* metadata_viewer_stream may be NULL. */
1392 metadata_viewer_stream
=
1393 ctf_trace_get_viewer_metadata_stream(ctf_trace
);
1395 pthread_mutex_lock(&rstream
->lock
);
1398 * The viewer should not ask for index on metadata stream.
1400 if (rstream
->is_metadata
) {
1401 viewer_index
.status
= htobe32(LTTNG_VIEWER_INDEX_HUP
);
1405 /* Try to open an index if one is needed for that stream. */
1406 ret
= try_open_index(vstream
, rstream
);
1408 if (ret
== -ENOENT
) {
1410 * The index is created only when the first data
1411 * packet arrives, it might not be ready at the
1412 * beginning of the session
1414 viewer_index
.status
= htobe32(LTTNG_VIEWER_INDEX_RETRY
);
1416 /* Unhandled error. */
1417 viewer_index
.status
= htobe32(LTTNG_VIEWER_INDEX_ERR
);
1422 ret
= check_index_status(vstream
, rstream
, ctf_trace
, &viewer_index
);
1425 } else if (ret
== 1) {
1427 * We have no index to send and check_index_status has populated
1428 * viewer_index's status.
1432 /* At this point, ret is 0 thus we will be able to read the index. */
1436 * vstream->stream_fd may be NULL if it has been closed by
1437 * tracefile rotation, or if we are at the beginning of the
1438 * stream. We open the data stream file here to protect against
1439 * overwrite caused by tracefile rotation (in association with
1440 * unlink performed before overwrite).
1442 if (!vstream
->stream_fd
) {
1443 char fullpath
[PATH_MAX
];
1445 if (vstream
->stream
->tracefile_count
> 0) {
1446 ret
= snprintf(fullpath
, PATH_MAX
, "%s/%s_%" PRIu64
,
1448 vstream
->channel_name
,
1449 vstream
->current_tracefile_id
);
1451 ret
= snprintf(fullpath
, PATH_MAX
, "%s/%s",
1453 vstream
->channel_name
);
1458 ret
= open(fullpath
, O_RDONLY
);
1460 PERROR("Relay opening trace file");
1463 vstream
->stream_fd
= stream_fd_create(ret
);
1464 if (!vstream
->stream_fd
) {
1472 ret
= check_new_streams(conn
);
1474 viewer_index
.status
= htobe32(LTTNG_VIEWER_INDEX_ERR
);
1476 } else if (ret
== 1) {
1477 viewer_index
.flags
|= LTTNG_VIEWER_FLAG_NEW_STREAM
;
1480 ret
= lttng_index_file_read(vstream
->index_file
, &packet_index
);
1482 ERR("Relay error reading index file %d",
1483 vstream
->index_file
->fd
);
1484 viewer_index
.status
= htobe32(LTTNG_VIEWER_INDEX_ERR
);
1487 viewer_index
.status
= htobe32(LTTNG_VIEWER_INDEX_OK
);
1488 vstream
->index_sent_seqcount
++;
1492 * Indexes are stored in big endian, no need to switch before sending.
1494 DBG("Sending viewer index for stream %" PRIu64
" offset %" PRIu64
,
1495 rstream
->stream_handle
,
1496 (uint64_t) be64toh(packet_index
.offset
));
1497 viewer_index
.offset
= packet_index
.offset
;
1498 viewer_index
.packet_size
= packet_index
.packet_size
;
1499 viewer_index
.content_size
= packet_index
.content_size
;
1500 viewer_index
.timestamp_begin
= packet_index
.timestamp_begin
;
1501 viewer_index
.timestamp_end
= packet_index
.timestamp_end
;
1502 viewer_index
.events_discarded
= packet_index
.events_discarded
;
1503 viewer_index
.stream_id
= packet_index
.stream_id
;
1507 pthread_mutex_unlock(&rstream
->lock
);
1510 if (metadata_viewer_stream
) {
1511 pthread_mutex_lock(&metadata_viewer_stream
->stream
->lock
);
1512 DBG("get next index metadata check: recv %" PRIu64
1514 metadata_viewer_stream
->stream
->metadata_received
,
1515 metadata_viewer_stream
->metadata_sent
);
1516 if (!metadata_viewer_stream
->stream
->metadata_received
||
1517 metadata_viewer_stream
->stream
->metadata_received
>
1518 metadata_viewer_stream
->metadata_sent
) {
1519 viewer_index
.flags
|= LTTNG_VIEWER_FLAG_NEW_METADATA
;
1521 pthread_mutex_unlock(&metadata_viewer_stream
->stream
->lock
);
1524 viewer_index
.flags
= htobe32(viewer_index
.flags
);
1525 health_code_update();
1527 ret
= send_response(conn
->sock
, &viewer_index
, sizeof(viewer_index
));
1531 health_code_update();
1534 DBG("Index %" PRIu64
" for stream %" PRIu64
" sent",
1535 vstream
->index_sent_seqcount
,
1536 vstream
->stream
->stream_handle
);
1539 if (metadata_viewer_stream
) {
1540 viewer_stream_put(metadata_viewer_stream
);
1543 viewer_stream_put(vstream
);
1548 pthread_mutex_unlock(&rstream
->lock
);
1549 if (metadata_viewer_stream
) {
1550 viewer_stream_put(metadata_viewer_stream
);
1552 viewer_stream_put(vstream
);
1557 * Send the next index for a stream
1559 * Return 0 on success or else a negative value.
1562 int viewer_get_packet(struct relay_connection
*conn
)
1567 struct lttng_viewer_get_packet get_packet_info
;
1568 struct lttng_viewer_trace_packet reply_header
;
1569 struct relay_viewer_stream
*vstream
= NULL
;
1570 uint32_t reply_size
= sizeof(reply_header
);
1571 uint32_t packet_data_len
= 0;
1574 DBG2("Relay get data packet");
1576 health_code_update();
1578 ret
= recv_request(conn
->sock
, &get_packet_info
,
1579 sizeof(get_packet_info
));
1583 health_code_update();
1585 /* From this point on, the error label can be reached. */
1586 memset(&reply_header
, 0, sizeof(reply_header
));
1588 vstream
= viewer_stream_get_by_id(be64toh(get_packet_info
.stream_id
));
1590 DBG("Client requested packet of unknown stream id %" PRIu64
,
1591 (uint64_t) be64toh(get_packet_info
.stream_id
));
1592 reply_header
.status
= htobe32(LTTNG_VIEWER_GET_PACKET_ERR
);
1593 goto send_reply_nolock
;
1595 packet_data_len
= be32toh(get_packet_info
.len
);
1596 reply_size
+= packet_data_len
;
1599 reply
= zmalloc(reply_size
);
1601 PERROR("packet reply zmalloc");
1602 reply_size
= sizeof(reply_header
);
1606 pthread_mutex_lock(&vstream
->stream
->lock
);
1607 lseek_ret
= lseek(vstream
->stream_fd
->fd
, be64toh(get_packet_info
.offset
),
1609 if (lseek_ret
< 0) {
1610 PERROR("lseek fd %d to offset %" PRIu64
, vstream
->stream_fd
->fd
,
1611 (uint64_t) be64toh(get_packet_info
.offset
));
1614 read_len
= lttng_read(vstream
->stream_fd
->fd
,
1615 reply
+ sizeof(reply_header
),
1617 if (read_len
< packet_data_len
) {
1618 PERROR("Relay reading trace file, fd: %d, offset: %" PRIu64
,
1619 vstream
->stream_fd
->fd
,
1620 (uint64_t) be64toh(get_packet_info
.offset
));
1623 reply_header
.status
= htobe32(LTTNG_VIEWER_GET_PACKET_OK
);
1624 reply_header
.len
= htobe32(packet_data_len
);
1628 reply_header
.status
= htobe32(LTTNG_VIEWER_GET_PACKET_ERR
);
1632 pthread_mutex_unlock(&vstream
->stream
->lock
);
1636 health_code_update();
1639 memcpy(reply
, &reply_header
, sizeof(reply_header
));
1640 ret
= send_response(conn
->sock
, reply
, reply_size
);
1642 /* No reply to send. */
1643 ret
= send_response(conn
->sock
, &reply_header
,
1647 health_code_update();
1649 PERROR("sendmsg of packet data failed");
1653 DBG("Sent %u bytes for stream %" PRIu64
, reply_size
,
1654 (uint64_t) be64toh(get_packet_info
.stream_id
));
1660 viewer_stream_put(vstream
);
1666 * Send the session's metadata
1668 * Return 0 on success else a negative value.
1671 int viewer_get_metadata(struct relay_connection
*conn
)
1677 struct lttng_viewer_get_metadata request
;
1678 struct lttng_viewer_metadata_packet reply
;
1679 struct relay_viewer_stream
*vstream
= NULL
;
1683 DBG("Relay get metadata");
1685 health_code_update();
1687 ret
= recv_request(conn
->sock
, &request
, sizeof(request
));
1691 health_code_update();
1693 memset(&reply
, 0, sizeof(reply
));
1695 vstream
= viewer_stream_get_by_id(be64toh(request
.stream_id
));
1698 * The metadata stream can be closed by a CLOSE command
1699 * just before we attach. It can also be closed by
1700 * per-pid tracing during tracing. Therefore, it is
1701 * possible that we cannot find this viewer stream.
1702 * Reply back to the client with an error if we cannot
1705 DBG("Client requested metadata of unknown stream id %" PRIu64
,
1706 (uint64_t) be64toh(request
.stream_id
));
1707 reply
.status
= htobe32(LTTNG_VIEWER_METADATA_ERR
);
1710 pthread_mutex_lock(&vstream
->stream
->lock
);
1711 if (!vstream
->stream
->is_metadata
) {
1712 ERR("Invalid metadata stream");
1716 assert(vstream
->metadata_sent
<= vstream
->stream
->metadata_received
);
1718 len
= vstream
->stream
->metadata_received
- vstream
->metadata_sent
;
1720 reply
.status
= htobe32(LTTNG_VIEWER_NO_NEW_METADATA
);
1724 /* first time, we open the metadata file */
1725 if (!vstream
->stream_fd
) {
1726 char fullpath
[PATH_MAX
];
1728 ret
= snprintf(fullpath
, PATH_MAX
, "%s/%s", vstream
->path_name
,
1729 vstream
->channel_name
);
1733 ret
= open(fullpath
, O_RDONLY
);
1735 PERROR("Relay opening metadata file");
1738 vstream
->stream_fd
= stream_fd_create(ret
);
1739 if (!vstream
->stream_fd
) {
1747 reply
.len
= htobe64(len
);
1748 data
= zmalloc(len
);
1750 PERROR("viewer metadata zmalloc");
1754 read_len
= lttng_read(vstream
->stream_fd
->fd
, data
, len
);
1755 if (read_len
< len
) {
1756 PERROR("Relay reading metadata file");
1759 vstream
->metadata_sent
+= read_len
;
1760 if (vstream
->metadata_sent
== vstream
->stream
->metadata_received
1761 && vstream
->stream
->closed
) {
1762 /* Release ownership for the viewer metadata stream. */
1763 viewer_stream_put(vstream
);
1766 reply
.status
= htobe32(LTTNG_VIEWER_METADATA_OK
);
1771 reply
.status
= htobe32(LTTNG_VIEWER_METADATA_ERR
);
1774 health_code_update();
1776 pthread_mutex_unlock(&vstream
->stream
->lock
);
1778 ret
= send_response(conn
->sock
, &reply
, sizeof(reply
));
1782 health_code_update();
1785 ret
= send_response(conn
->sock
, data
, len
);
1791 DBG("Sent %" PRIu64
" bytes of metadata for stream %" PRIu64
, len
,
1792 (uint64_t) be64toh(request
.stream_id
));
1794 DBG("Metadata sent");
1800 viewer_stream_put(vstream
);
1806 * Create a viewer session.
1808 * Return 0 on success or else a negative value.
1811 int viewer_create_session(struct relay_connection
*conn
)
1814 struct lttng_viewer_create_session_response resp
;
1816 DBG("Viewer create session received");
1818 memset(&resp
, 0, sizeof(resp
));
1819 resp
.status
= htobe32(LTTNG_VIEWER_CREATE_SESSION_OK
);
1820 conn
->viewer_session
= viewer_session_create();
1821 if (!conn
->viewer_session
) {
1822 ERR("Allocation viewer session");
1823 resp
.status
= htobe32(LTTNG_VIEWER_CREATE_SESSION_ERR
);
1828 health_code_update();
1829 ret
= send_response(conn
->sock
, &resp
, sizeof(resp
));
1833 health_code_update();
1841 * Detach a viewer session.
1843 * Return 0 on success or else a negative value.
1846 int viewer_detach_session(struct relay_connection
*conn
)
1849 struct lttng_viewer_detach_session_response response
;
1850 struct lttng_viewer_detach_session_request request
;
1851 struct relay_session
*session
= NULL
;
1852 uint64_t viewer_session_to_close
;
1854 DBG("Viewer detach session received");
1858 health_code_update();
1860 /* Receive the request from the connected client. */
1861 ret
= recv_request(conn
->sock
, &request
, sizeof(request
));
1865 viewer_session_to_close
= be64toh(request
.session_id
);
1867 if (!conn
->viewer_session
) {
1868 DBG("Client trying to detach before creating a live viewer session");
1869 response
.status
= htobe32(LTTNG_VIEWER_DETACH_SESSION_ERR
);
1873 health_code_update();
1875 memset(&response
, 0, sizeof(response
));
1876 DBG("Detaching from session ID %" PRIu64
, viewer_session_to_close
);
1878 session
= session_get_by_id(be64toh(request
.session_id
));
1880 DBG("Relay session %" PRIu64
" not found",
1881 (uint64_t) be64toh(request
.session_id
));
1882 response
.status
= htobe32(LTTNG_VIEWER_DETACH_SESSION_UNK
);
1886 ret
= viewer_session_is_attached(conn
->viewer_session
, session
);
1888 DBG("Not attached to this session");
1889 response
.status
= htobe32(LTTNG_VIEWER_DETACH_SESSION_ERR
);
1890 goto send_reply_put
;
1893 viewer_session_close_one_session(conn
->viewer_session
, session
);
1894 response
.status
= htobe32(LTTNG_VIEWER_DETACH_SESSION_OK
);
1895 DBG("Session %" PRIu64
" detached.", viewer_session_to_close
);
1898 session_put(session
);
1901 health_code_update();
1902 ret
= send_response(conn
->sock
, &response
, sizeof(response
));
1906 health_code_update();
1914 * live_relay_unknown_command: send -1 if received unknown command
1917 void live_relay_unknown_command(struct relay_connection
*conn
)
1919 struct lttcomm_relayd_generic_reply reply
;
1921 memset(&reply
, 0, sizeof(reply
));
1922 reply
.ret_code
= htobe32(LTTNG_ERR_UNK
);
1923 (void) send_response(conn
->sock
, &reply
, sizeof(reply
));
1927 * Process the commands received on the control socket
1930 int process_control(struct lttng_viewer_cmd
*recv_hdr
,
1931 struct relay_connection
*conn
)
1936 msg_value
= be32toh(recv_hdr
->cmd
);
1939 * Make sure we've done the version check before any command other then a
1940 * new client connection.
1942 if (msg_value
!= LTTNG_VIEWER_CONNECT
&& !conn
->version_check_done
) {
1943 ERR("Viewer conn value %" PRIu32
" before version check", msg_value
);
1948 switch (msg_value
) {
1949 case LTTNG_VIEWER_CONNECT
:
1950 ret
= viewer_connect(conn
);
1952 case LTTNG_VIEWER_LIST_SESSIONS
:
1953 ret
= viewer_list_sessions(conn
);
1955 case LTTNG_VIEWER_ATTACH_SESSION
:
1956 ret
= viewer_attach_session(conn
);
1958 case LTTNG_VIEWER_GET_NEXT_INDEX
:
1959 ret
= viewer_get_next_index(conn
);
1961 case LTTNG_VIEWER_GET_PACKET
:
1962 ret
= viewer_get_packet(conn
);
1964 case LTTNG_VIEWER_GET_METADATA
:
1965 ret
= viewer_get_metadata(conn
);
1967 case LTTNG_VIEWER_GET_NEW_STREAMS
:
1968 ret
= viewer_get_new_streams(conn
);
1970 case LTTNG_VIEWER_CREATE_SESSION
:
1971 ret
= viewer_create_session(conn
);
1973 case LTTNG_VIEWER_DETACH_SESSION
:
1974 ret
= viewer_detach_session(conn
);
1977 ERR("Received unknown viewer command (%u)",
1978 be32toh(recv_hdr
->cmd
));
1979 live_relay_unknown_command(conn
);
1989 void cleanup_connection_pollfd(struct lttng_poll_event
*events
, int pollfd
)
1993 (void) lttng_poll_del(events
, pollfd
);
1995 ret
= fd_tracker_close_unsuspendable_fd(the_fd_tracker
, &pollfd
, 1,
1996 fd_tracker_util_close_fd
, NULL
);
1998 ERR("Closing pollfd %d", pollfd
);
2003 * This thread does the actual work
2006 void *thread_worker(void *data
)
2010 struct lttng_poll_event events
;
2011 struct lttng_ht
*viewer_connections_ht
;
2012 struct lttng_ht_iter iter
;
2013 struct lttng_viewer_cmd recv_hdr
;
2014 struct relay_connection
*destroy_conn
;
2016 DBG("[thread] Live viewer relay worker started");
2018 rcu_register_thread();
2020 health_register(health_relayd
, HEALTH_RELAYD_TYPE_LIVE_WORKER
);
2022 if (testpoint(relayd_thread_live_worker
)) {
2023 goto error_testpoint
;
2026 /* table of connections indexed on socket */
2027 viewer_connections_ht
= lttng_ht_new(0, LTTNG_HT_TYPE_ULONG
);
2028 if (!viewer_connections_ht
) {
2029 goto viewer_connections_ht_error
;
2032 ret
= create_named_thread_poll_set(&events
, 2,
2033 "Live viewer worker thread epoll");
2035 goto error_poll_create
;
2038 ret
= lttng_poll_add(&events
, live_conn_pipe
[0], LPOLLIN
| LPOLLRDHUP
);
2047 health_code_update();
2049 /* Infinite blocking call, waiting for transmission */
2050 DBG3("Relayd live viewer worker thread polling...");
2051 health_poll_entry();
2052 ret
= lttng_poll_wait(&events
, -1);
2056 * Restart interrupted system call.
2058 if (errno
== EINTR
) {
2067 * Process control. The control connection is prioritised so we don't
2068 * starve it with high throughput tracing data on the data
2071 for (i
= 0; i
< nb_fd
; i
++) {
2072 /* Fetch once the poll data */
2073 uint32_t revents
= LTTNG_POLL_GETEV(&events
, i
);
2074 int pollfd
= LTTNG_POLL_GETFD(&events
, i
);
2076 health_code_update();
2079 /* No activity for this FD (poll implementation). */
2083 /* Thread quit pipe has been closed. Killing thread. */
2084 ret
= check_thread_quit_pipe(pollfd
, revents
);
2090 /* Inspect the relay conn pipe for new connection. */
2091 if (pollfd
== live_conn_pipe
[0]) {
2092 if (revents
& LPOLLIN
) {
2093 struct relay_connection
*conn
;
2095 ret
= lttng_read(live_conn_pipe
[0],
2096 &conn
, sizeof(conn
));
2100 lttng_poll_add(&events
, conn
->sock
->fd
,
2101 LPOLLIN
| LPOLLRDHUP
);
2102 connection_ht_add(viewer_connections_ht
, conn
);
2103 DBG("Connection socket %d added to poll", conn
->sock
->fd
);
2104 } else if (revents
& (LPOLLERR
| LPOLLHUP
| LPOLLRDHUP
)) {
2105 ERR("Relay live pipe error");
2108 ERR("Unexpected poll events %u for sock %d", revents
, pollfd
);
2112 /* Connection activity. */
2113 struct relay_connection
*conn
;
2115 conn
= connection_get_by_sock(viewer_connections_ht
, pollfd
);
2120 if (revents
& LPOLLIN
) {
2121 ret
= conn
->sock
->ops
->recvmsg(conn
->sock
, &recv_hdr
,
2122 sizeof(recv_hdr
), 0);
2124 /* Connection closed. */
2125 cleanup_connection_pollfd(&events
, pollfd
);
2126 /* Put "create" ownership reference. */
2127 connection_put(conn
);
2128 DBG("Viewer control conn closed with %d", pollfd
);
2130 ret
= process_control(&recv_hdr
, conn
);
2132 /* Clear the session on error. */
2133 cleanup_connection_pollfd(&events
, pollfd
);
2134 /* Put "create" ownership reference. */
2135 connection_put(conn
);
2136 DBG("Viewer connection closed with %d", pollfd
);
2139 } else if (revents
& (LPOLLERR
| LPOLLHUP
| LPOLLRDHUP
)) {
2140 cleanup_connection_pollfd(&events
, pollfd
);
2141 /* Put "create" ownership reference. */
2142 connection_put(conn
);
2144 ERR("Unexpected poll events %u for sock %d", revents
, pollfd
);
2145 connection_put(conn
);
2148 /* Put local "get_by_sock" reference. */
2149 connection_put(conn
);
2156 (void) fd_tracker_util_poll_clean(the_fd_tracker
, &events
);
2158 /* Cleanup reamaining connection object. */
2160 cds_lfht_for_each_entry(viewer_connections_ht
->ht
, &iter
.iter
,
2163 health_code_update();
2164 connection_put(destroy_conn
);
2168 lttng_ht_destroy(viewer_connections_ht
);
2169 viewer_connections_ht_error
:
2170 /* Close relay conn pipes */
2171 (void) fd_tracker_util_pipe_close(the_fd_tracker
, live_conn_pipe
);
2173 DBG("Viewer worker thread exited with error");
2175 DBG("Viewer worker thread cleanup complete");
2179 ERR("Health error occurred in %s", __func__
);
2181 health_unregister(health_relayd
);
2182 if (lttng_relay_stop_threads()) {
2183 ERR("Error stopping threads");
2185 rcu_unregister_thread();
2190 * Create the relay command pipe to wake thread_manage_apps.
2191 * Closed in cleanup().
2193 static int create_conn_pipe(void)
2195 return fd_tracker_util_pipe_open_cloexec(the_fd_tracker
,
2196 "Live connection pipe", live_conn_pipe
);
2199 int relayd_live_join(void)
2201 int ret
, retval
= 0;
2204 ret
= pthread_join(live_listener_thread
, &status
);
2207 PERROR("pthread_join live listener");
2211 ret
= pthread_join(live_worker_thread
, &status
);
2214 PERROR("pthread_join live worker");
2218 ret
= pthread_join(live_dispatcher_thread
, &status
);
2221 PERROR("pthread_join live dispatcher");
2225 cleanup_relayd_live();
2233 int relayd_live_create(struct lttng_uri
*uri
)
2235 int ret
= 0, retval
= 0;
2241 goto exit_init_data
;
2245 /* Check if daemon is UID = 0 */
2246 is_root
= !getuid();
2249 if (live_uri
->port
< 1024) {
2250 ERR("Need to be root to use ports < 1024");
2252 goto exit_init_data
;
2256 /* Setup the thread apps communication pipe. */
2257 if (create_conn_pipe()) {
2259 goto exit_init_data
;
2262 /* Init relay command queue. */
2263 cds_wfcq_init(&viewer_conn_queue
.head
, &viewer_conn_queue
.tail
);
2265 /* Set up max poll set size */
2266 if (lttng_poll_set_max_size()) {
2268 goto exit_init_data
;
2271 /* Setup the dispatcher thread */
2272 ret
= pthread_create(&live_dispatcher_thread
, default_pthread_attr(),
2273 thread_dispatcher
, (void *) NULL
);
2276 PERROR("pthread_create viewer dispatcher");
2278 goto exit_dispatcher_thread
;
2281 /* Setup the worker thread */
2282 ret
= pthread_create(&live_worker_thread
, default_pthread_attr(),
2283 thread_worker
, NULL
);
2286 PERROR("pthread_create viewer worker");
2288 goto exit_worker_thread
;
2291 /* Setup the listener thread */
2292 ret
= pthread_create(&live_listener_thread
, default_pthread_attr(),
2293 thread_listener
, (void *) NULL
);
2296 PERROR("pthread_create viewer listener");
2298 goto exit_listener_thread
;
2302 * All OK, started all threads.
2307 * Join on the live_listener_thread should anything be added after
2308 * the live_listener thread's creation.
2311 exit_listener_thread
:
2313 ret
= pthread_join(live_worker_thread
, &status
);
2316 PERROR("pthread_join live worker");
2321 ret
= pthread_join(live_dispatcher_thread
, &status
);
2324 PERROR("pthread_join live dispatcher");
2327 exit_dispatcher_thread
:
2330 cleanup_relayd_live();