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.
29 #include <sys/mount.h>
30 #include <sys/resource.h>
31 #include <sys/socket.h>
33 #include <sys/types.h>
36 #include <urcu/futex.h>
37 #include <urcu/uatomic.h>
42 #include <lttng/lttng.h>
43 #include <common/common.h>
44 #include <common/compat/poll.h>
45 #include <common/compat/socket.h>
46 #include <common/defaults.h>
47 #include <common/futex.h>
48 #include <common/sessiond-comm/sessiond-comm.h>
49 #include <common/sessiond-comm/inet.h>
50 #include <common/sessiond-comm/relayd.h>
51 #include <common/uri.h>
52 #include <common/utils.h>
56 #include "lttng-relayd.h"
57 #include "lttng-viewer.h"
59 #include "health-relayd.h"
61 static struct lttng_uri
*live_uri
;
64 * Quit pipe for all threads. This permits a single cancellation point
65 * for all threads when receiving an event on the pipe.
67 static int live_thread_quit_pipe
[2] = { -1, -1 };
70 * This pipe is used to inform the worker thread that a command is queued and
71 * ready to be processed.
73 static int live_relay_cmd_pipe
[2] = { -1, -1 };
75 /* Shared between threads */
76 static int live_dispatch_thread_exit
;
78 static pthread_t live_listener_thread
;
79 static pthread_t live_dispatcher_thread
;
80 static pthread_t live_worker_thread
;
83 * Relay command queue.
85 * The live_thread_listener and live_thread_dispatcher communicate with this
88 static struct relay_cmd_queue viewer_cmd_queue
;
90 static uint64_t last_relay_viewer_session_id
;
104 * Write to writable pipe used to notify a thread.
107 int notify_thread_pipe(int wpipe
)
111 ret
= lttng_write(wpipe
, "!", 1);
113 PERROR("write poll pipe");
120 * Stop all threads by closing the thread quit pipe.
123 void stop_threads(void)
127 /* Stopping all threads */
128 DBG("Terminating all live threads");
129 ret
= notify_thread_pipe(live_thread_quit_pipe
[1]);
131 ERR("write error on thread quit pipe");
134 /* Dispatch thread */
135 CMM_STORE_SHARED(live_dispatch_thread_exit
, 1);
136 futex_nto1_wake(&viewer_cmd_queue
.futex
);
140 * Create a poll set with O_CLOEXEC and add the thread quit pipe to the set.
143 int create_thread_poll_set(struct lttng_poll_event
*events
, int size
)
147 if (events
== NULL
|| size
== 0) {
152 ret
= lttng_poll_create(events
, size
, LTTNG_CLOEXEC
);
158 ret
= lttng_poll_add(events
, live_thread_quit_pipe
[0], LPOLLIN
);
170 * Check if the thread quit pipe was triggered.
172 * Return 1 if it was triggered else 0;
175 int check_thread_quit_pipe(int fd
, uint32_t events
)
177 if (fd
== live_thread_quit_pipe
[0] && (events
& LPOLLIN
)) {
185 * Create and init socket from uri.
188 struct lttcomm_sock
*init_socket(struct lttng_uri
*uri
)
191 struct lttcomm_sock
*sock
= NULL
;
193 sock
= lttcomm_alloc_sock_from_uri(uri
);
195 ERR("Allocating socket");
199 ret
= lttcomm_create_sock(sock
);
203 DBG("Listening on sock %d for live", sock
->fd
);
205 ret
= sock
->ops
->bind(sock
);
210 ret
= sock
->ops
->listen(sock
, -1);
220 lttcomm_destroy_sock(sock
);
226 * This thread manages the listening for new connections on the network
229 void *thread_listener(void *data
)
231 int i
, ret
, pollfd
, err
= -1;
233 uint32_t revents
, nb_fd
;
234 struct lttng_poll_event events
;
235 struct lttcomm_sock
*live_control_sock
;
237 DBG("[thread] Relay live listener started");
239 health_register(health_relayd
, HEALTH_RELAYD_TYPE_LIVE_LISTENER
);
241 health_code_update();
243 live_control_sock
= init_socket(live_uri
);
244 if (!live_control_sock
) {
245 goto error_sock_control
;
249 * Pass 3 as size here for the thread quit pipe, control and data socket.
251 ret
= create_thread_poll_set(&events
, 2);
253 goto error_create_poll
;
256 /* Add the control socket */
257 ret
= lttng_poll_add(&events
, live_control_sock
->fd
, LPOLLIN
| LPOLLRDHUP
);
263 health_code_update();
265 DBG("Listener accepting live viewers connections");
269 ret
= lttng_poll_wait(&events
, -1);
273 * Restart interrupted system call.
275 if (errno
== EINTR
) {
282 DBG("Relay new viewer connection received");
283 for (i
= 0; i
< nb_fd
; i
++) {
284 health_code_update();
286 /* Fetch once the poll data */
287 revents
= LTTNG_POLL_GETEV(&events
, i
);
288 pollfd
= LTTNG_POLL_GETFD(&events
, i
);
290 /* Thread quit pipe has been closed. Killing thread. */
291 ret
= check_thread_quit_pipe(pollfd
, revents
);
297 if (revents
& (LPOLLERR
| LPOLLHUP
| LPOLLRDHUP
)) {
298 ERR("socket poll error");
300 } else if (revents
& LPOLLIN
) {
302 * Get allocated in this thread, enqueued to a global queue,
303 * dequeued and freed in the worker thread.
305 struct relay_command
*relay_cmd
;
306 struct lttcomm_sock
*newsock
;
308 relay_cmd
= zmalloc(sizeof(*relay_cmd
));
310 PERROR("relay command zmalloc");
314 assert(pollfd
== live_control_sock
->fd
);
315 newsock
= live_control_sock
->ops
->accept(live_control_sock
);
317 PERROR("accepting control sock");
321 DBG("Relay viewer connection accepted socket %d", newsock
->fd
);
322 ret
= setsockopt(newsock
->fd
, SOL_SOCKET
, SO_REUSEADDR
, &val
,
325 PERROR("setsockopt inet");
326 lttcomm_destroy_sock(newsock
);
330 relay_cmd
->sock
= newsock
;
333 * Lock free enqueue the request.
335 cds_wfq_enqueue(&viewer_cmd_queue
.queue
, &relay_cmd
->node
);
338 * Wake the dispatch queue futex. Implicit memory
339 * barrier with the exchange in cds_wfq_enqueue.
341 futex_nto1_wake(&viewer_cmd_queue
.futex
);
349 lttng_poll_clean(&events
);
351 if (live_control_sock
->fd
>= 0) {
352 ret
= live_control_sock
->ops
->close(live_control_sock
);
357 lttcomm_destroy_sock(live_control_sock
);
361 DBG("Live viewer listener thread exited with error");
363 health_unregister(health_relayd
);
364 DBG("Live viewer listener thread cleanup complete");
370 * This thread manages the dispatching of the requests to worker threads
373 void *thread_dispatcher(void *data
)
377 struct cds_wfq_node
*node
;
378 struct relay_command
*relay_cmd
= NULL
;
380 DBG("[thread] Live viewer relay dispatcher started");
382 health_register(health_relayd
, HEALTH_RELAYD_TYPE_LIVE_DISPATCHER
);
384 health_code_update();
386 while (!CMM_LOAD_SHARED(live_dispatch_thread_exit
)) {
387 health_code_update();
389 /* Atomically prepare the queue futex */
390 futex_nto1_prepare(&viewer_cmd_queue
.futex
);
393 health_code_update();
395 /* Dequeue commands */
396 node
= cds_wfq_dequeue_blocking(&viewer_cmd_queue
.queue
);
398 DBG("Woken up but nothing in the live-viewer "
399 "relay command queue");
400 /* Continue thread execution */
404 relay_cmd
= caa_container_of(node
, struct relay_command
, node
);
405 DBG("Dispatching viewer request waiting on sock %d",
406 relay_cmd
->sock
->fd
);
409 * Inform worker thread of the new request. This call is blocking
410 * so we can be assured that the data will be read at some point in
411 * time or wait to the end of the world :)
413 ret
= lttng_write(live_relay_cmd_pipe
[1], relay_cmd
,
416 if (ret
< sizeof(struct relay_command
)) {
417 PERROR("write cmd pipe");
420 } while (node
!= NULL
);
422 /* Futex wait on queue. Blocking call on futex() */
424 futex_nto1_wait(&viewer_cmd_queue
.futex
);
428 /* Normal exit, no error */
434 ERR("Health error occurred in %s", __func__
);
436 health_unregister(health_relayd
);
437 DBG("Live viewer dispatch thread dying");
443 * Establish connection with the viewer and check the versions.
445 * Return 0 on success or else negative value.
448 int viewer_connect(struct relay_command
*cmd
)
451 struct lttng_viewer_connect reply
, msg
;
455 cmd
->version_check_done
= 1;
457 health_code_update();
459 /* Get version from the other side. */
460 ret
= cmd
->sock
->ops
->recvmsg(cmd
->sock
, &msg
, sizeof(msg
), 0);
461 if (ret
< 0 || ret
!= sizeof(msg
)) {
463 /* Orderly shutdown. Not necessary to print an error. */
464 DBG("Socket %d did an orderly shutdown", cmd
->sock
->fd
);
466 ERR("Relay failed to receive the version values.");
472 health_code_update();
474 reply
.major
= RELAYD_VERSION_COMM_MAJOR
;
475 reply
.minor
= RELAYD_VERSION_COMM_MINOR
;
477 /* Major versions must be the same */
478 if (reply
.major
!= be32toh(msg
.major
)) {
479 DBG("Incompatible major versions (%u vs %u)", reply
.major
,
485 cmd
->major
= reply
.major
;
486 /* We adapt to the lowest compatible version */
487 if (reply
.minor
<= be32toh(msg
.minor
)) {
488 cmd
->minor
= reply
.minor
;
490 cmd
->minor
= be32toh(msg
.minor
);
493 if (be32toh(msg
.type
) == VIEWER_CLIENT_COMMAND
) {
494 cmd
->type
= RELAY_VIEWER_COMMAND
;
495 } else if (be32toh(msg
.type
) == VIEWER_CLIENT_NOTIFICATION
) {
496 cmd
->type
= RELAY_VIEWER_NOTIFICATION
;
498 ERR("Unknown connection type : %u", be32toh(msg
.type
));
503 reply
.major
= htobe32(reply
.major
);
504 reply
.minor
= htobe32(reply
.minor
);
505 if (cmd
->type
== RELAY_VIEWER_COMMAND
) {
506 reply
.viewer_session_id
= htobe64(++last_relay_viewer_session_id
);
509 health_code_update();
511 ret
= cmd
->sock
->ops
->sendmsg(cmd
->sock
, &reply
,
512 sizeof(struct lttng_viewer_connect
), 0);
514 ERR("Relay sending version");
517 health_code_update();
519 DBG("Version check done using protocol %u.%u", cmd
->major
, cmd
->minor
);
527 * Send the viewer the list of current sessions.
529 * Return 0 on success or else a negative value.
532 int viewer_list_sessions(struct relay_command
*cmd
,
533 struct lttng_ht
*sessions_ht
)
536 struct lttng_viewer_list_sessions session_list
;
538 long approx_before
, approx_after
;
539 struct lttng_ht_node_ulong
*node
;
540 struct lttng_ht_iter iter
;
541 struct lttng_viewer_session send_session
;
542 struct relay_session
*session
;
544 DBG("List sessions received");
546 if (cmd
->version_check_done
== 0) {
547 ERR("Trying to list sessions before version check");
553 cds_lfht_count_nodes(sessions_ht
->ht
, &approx_before
, &count
, &approx_after
);
554 session_list
.sessions_count
= htobe32(count
);
556 health_code_update();
558 ret
= cmd
->sock
->ops
->sendmsg(cmd
->sock
, &session_list
,
559 sizeof(session_list
), 0);
561 ERR("Relay sending sessions list");
565 health_code_update();
567 cds_lfht_for_each_entry(sessions_ht
->ht
, &iter
.iter
, node
, node
) {
568 health_code_update();
570 node
= lttng_ht_iter_get_node_ulong(&iter
);
574 session
= caa_container_of(node
, struct relay_session
, session_n
);
576 strncpy(send_session
.session_name
, session
->session_name
,
577 sizeof(send_session
.session_name
));
578 strncpy(send_session
.hostname
, session
->hostname
,
579 sizeof(send_session
.hostname
));
580 send_session
.id
= htobe64(session
->id
);
581 send_session
.live_timer
= htobe32(session
->live_timer
);
582 send_session
.clients
= htobe32(session
->viewer_attached
);
583 send_session
.streams
= htobe32(session
->stream_count
);
585 health_code_update();
587 ret
= cmd
->sock
->ops
->sendmsg(cmd
->sock
, &send_session
,
588 sizeof(send_session
), 0);
590 ERR("Relay sending session info");
594 health_code_update();
609 * Open index file using a given viewer stream.
611 * Return 0 on success or else a negative value.
613 static int open_index(struct relay_viewer_stream
*stream
)
616 char fullpath
[PATH_MAX
];
617 struct lttng_packet_index_file_hdr hdr
;
619 if (stream
->tracefile_count
> 0) {
620 ret
= snprintf(fullpath
, sizeof(fullpath
), "%s/" DEFAULT_INDEX_DIR
"/%s_%"
621 PRIu64 DEFAULT_INDEX_FILE_SUFFIX
, stream
->path_name
,
622 stream
->channel_name
, stream
->tracefile_count_current
);
624 ret
= snprintf(fullpath
, sizeof(fullpath
), "%s/" DEFAULT_INDEX_DIR
"/%s"
625 DEFAULT_INDEX_FILE_SUFFIX
, stream
->path_name
,
626 stream
->channel_name
);
629 PERROR("snprintf index path");
633 DBG("Opening index file %s in read only", fullpath
);
634 ret
= open(fullpath
, O_RDONLY
);
636 if (errno
== ENOENT
) {
640 PERROR("opening index in read-only");
644 stream
->index_read_fd
= ret
;
645 DBG("Opening index file %s in read only, (fd: %d)", fullpath
, ret
);
647 ret
= lttng_read(stream
->index_read_fd
, &hdr
, sizeof(hdr
));
648 if (ret
< sizeof(hdr
)) {
649 PERROR("Reading index header");
652 if (strncmp(hdr
.magic
, INDEX_MAGIC
, sizeof(hdr
.magic
)) != 0) {
653 ERR("Invalid header magic");
657 if (be32toh(hdr
.index_major
) != INDEX_MAJOR
||
658 be32toh(hdr
.index_minor
) != INDEX_MINOR
) {
659 ERR("Invalid header version");
670 * Allocate and init a new viewer_stream.
672 * Copies the values from the stream passed in parameter and insert the new
673 * stream in the viewer_streams_ht.
675 * MUST be called with rcu_read_lock held.
677 * Returns 0 on success or a negative value on error.
680 int init_viewer_stream(struct relay_stream
*stream
, int seek_last
)
683 struct relay_viewer_stream
*viewer_stream
;
687 viewer_stream
= zmalloc(sizeof(*viewer_stream
));
688 if (!viewer_stream
) {
689 PERROR("relay viewer stream zmalloc");
693 viewer_stream
->session_id
= stream
->session
->id
;
694 viewer_stream
->stream_handle
= stream
->stream_handle
;
695 viewer_stream
->path_name
= strndup(stream
->path_name
,
696 LTTNG_VIEWER_PATH_MAX
);
697 viewer_stream
->channel_name
= strndup(stream
->channel_name
,
698 LTTNG_VIEWER_NAME_MAX
);
699 viewer_stream
->tracefile_count
= stream
->tracefile_count
;
700 viewer_stream
->metadata_flag
= stream
->metadata_flag
;
702 viewer_stream
->tracefile_count_current
=
703 stream
->tracefile_count_current
;
705 viewer_stream
->tracefile_count_current
=
706 stream
->oldest_tracefile_id
;
710 * The deletion of this ctf_trace object is only done in a call RCU of the
711 * relay stream making it valid as long as we have the read side lock.
713 viewer_stream
->ctf_trace
= stream
->ctf_trace
;
714 uatomic_inc(&viewer_stream
->ctf_trace
->refcount
);
716 lttng_ht_node_init_u64(&viewer_stream
->stream_n
, stream
->stream_handle
);
717 lttng_ht_add_unique_u64(viewer_streams_ht
, &viewer_stream
->stream_n
);
719 viewer_stream
->index_read_fd
= -1;
720 viewer_stream
->read_fd
= -1;
723 * This is to avoid a race between the initialization of this object and
724 * the close of the given stream. If the stream is unable to find this
725 * viewer stream when closing, this copy will at least take the latest
727 * We also need that for the seek_last.
729 viewer_stream
->total_index_received
= stream
->total_index_received
;
732 * If we never received an index for the current stream, delay
733 * the opening of the index, otherwise open it right now.
735 if (viewer_stream
->tracefile_count_current
==
736 stream
->tracefile_count_current
&&
737 viewer_stream
->total_index_received
== 0) {
738 viewer_stream
->index_read_fd
= -1;
740 ret
= open_index(viewer_stream
);
746 if (seek_last
&& viewer_stream
->index_read_fd
> 0) {
747 ret
= lseek(viewer_stream
->index_read_fd
,
748 viewer_stream
->total_index_received
*
749 sizeof(struct lttng_packet_index
),
754 viewer_stream
->last_sent_index
=
755 viewer_stream
->total_index_received
;
765 * Rotate a stream to the next tracefile.
767 * Returns 0 on success, a negative value on error.
770 int rotate_viewer_stream(struct relay_viewer_stream
*viewer_stream
,
771 struct relay_stream
*stream
)
774 uint64_t tracefile_id
;
776 assert(viewer_stream
);
778 tracefile_id
= (viewer_stream
->tracefile_count_current
+ 1) %
779 viewer_stream
->tracefile_count
;
782 pthread_mutex_lock(&stream
->viewer_stream_rotation_lock
);
785 * The writer and the reader are not working in the same
786 * tracefile, we can read up to EOF, we don't care about the
787 * total_index_received.
789 if (!stream
|| (stream
->tracefile_count_current
!= tracefile_id
)) {
790 viewer_stream
->close_write_flag
= 1;
793 * We are opening a file that is still open in write, make
794 * sure we limit our reading to the number of indexes
797 viewer_stream
->close_write_flag
= 0;
799 viewer_stream
->total_index_received
=
800 stream
->total_index_received
;
803 viewer_stream
->tracefile_count_current
= tracefile_id
;
804 pthread_mutex_unlock(&stream
->viewer_stream_rotation_lock
);
806 if (viewer_stream
->abort_flag
== 0) {
807 ret
= close(viewer_stream
->index_read_fd
);
809 PERROR("close index file");
811 ret
= close(viewer_stream
->read_fd
);
813 PERROR("close tracefile");
816 viewer_stream
->abort_flag
= 0;
819 viewer_stream
->read_fd
= -1;
821 ret
= open_index(viewer_stream
);
833 * Send the viewer the list of current sessions.
836 int viewer_attach_session(struct relay_command
*cmd
,
837 struct lttng_ht
*sessions_ht
)
839 int ret
, send_streams
= 0, nb_streams
= 0;
840 struct lttng_viewer_attach_session_request request
;
841 struct lttng_viewer_attach_session_response response
;
842 struct lttng_viewer_stream send_stream
;
843 struct relay_stream
*stream
;
844 struct relay_viewer_stream
*viewer_stream
;
845 struct lttng_ht_node_ulong
*node
;
846 struct lttng_ht_node_u64
*node64
;
847 struct lttng_ht_iter iter
;
848 struct relay_session
*session
;
854 DBG("Attach session received");
856 if (cmd
->version_check_done
== 0) {
857 ERR("Trying to attach session before version check");
862 health_code_update();
864 ret
= cmd
->sock
->ops
->recvmsg(cmd
->sock
, &request
, sizeof(request
), 0);
865 if (ret
< 0 || ret
!= sizeof(request
)) {
867 /* Orderly shutdown. Not necessary to print an error. */
868 DBG("Socket %d did an orderly shutdown", cmd
->sock
->fd
);
870 ERR("Relay failed to receive the attach parameters.");
876 health_code_update();
879 lttng_ht_lookup(sessions_ht
,
880 (void *)((unsigned long) be64toh(request
.session_id
)), &iter
);
881 node
= lttng_ht_iter_get_node_ulong(&iter
);
883 DBG("Relay session %" PRIu64
" not found",
884 be64toh(request
.session_id
));
885 response
.status
= htobe32(VIEWER_ATTACH_UNK
);
889 session
= caa_container_of(node
, struct relay_session
, session_n
);
890 if (cmd
->session_id
== session
->id
) {
891 /* Same viewer already attached, just send the stream list. */
893 response
.status
= htobe32(VIEWER_ATTACH_OK
);
894 } else if (session
->viewer_attached
!= 0) {
895 DBG("Already a viewer attached");
896 response
.status
= htobe32(VIEWER_ATTACH_ALREADY
);
898 } else if (session
->live_timer
== 0) {
899 DBG("Not live session");
900 response
.status
= htobe32(VIEWER_ATTACH_NOT_LIVE
);
903 session
->viewer_attached
++;
905 response
.status
= htobe32(VIEWER_ATTACH_OK
);
906 cmd
->session_id
= session
->id
;
907 cmd
->session
= session
;
910 switch (be32toh(request
.seek
)) {
911 case VIEWER_SEEK_BEGINNING
:
912 /* Default behaviour. */
914 case VIEWER_SEEK_LAST
:
918 ERR("Wrong seek parameter");
919 response
.status
= htobe32(VIEWER_ATTACH_SEEK_ERR
);
925 /* We should only be there if we have a session to attach to. */
929 * Fill the viewer_streams_ht to count the number of streams
930 * ready to be sent and avoid concurrency issues on the
931 * relay_streams_ht and don't rely on a total session stream count.
933 cds_lfht_for_each_entry(relay_streams_ht
->ht
, &iter
.iter
, node
, node
) {
934 struct relay_viewer_stream
*vstream
;
936 health_code_update();
938 node
= lttng_ht_iter_get_node_ulong(&iter
);
942 stream
= caa_container_of(node
, struct relay_stream
, stream_n
);
943 if (stream
->session
!= cmd
->session
) {
948 * Don't send streams with no ctf_trace, they are not ready to be
951 if (!stream
->ctf_trace
) {
955 vstream
= live_find_viewer_stream_by_id(stream
->stream_handle
);
957 ret
= init_viewer_stream(stream
, seek_last
);
964 response
.streams_count
= htobe32(nb_streams
);
968 health_code_update();
969 ret
= cmd
->sock
->ops
->sendmsg(cmd
->sock
, &response
, sizeof(response
), 0);
971 ERR("Relay sending viewer attach response");
974 health_code_update();
977 * Unknown or busy session, just return gracefully, the viewer knows what
985 /* We should only be there if we have a session to attach to. */
987 cds_lfht_for_each_entry(viewer_streams_ht
->ht
, &iter
.iter
, node
, node
) {
988 health_code_update();
990 node64
= lttng_ht_iter_get_node_u64(&iter
);
994 viewer_stream
= caa_container_of(node64
, struct relay_viewer_stream
,
996 if (viewer_stream
->session_id
!= cmd
->session
->id
) {
1000 send_stream
.id
= htobe64(viewer_stream
->stream_handle
);
1001 send_stream
.ctf_trace_id
= htobe64(viewer_stream
->ctf_trace
->id
);
1002 send_stream
.metadata_flag
= htobe32(viewer_stream
->metadata_flag
);
1003 strncpy(send_stream
.path_name
, viewer_stream
->path_name
,
1004 sizeof(send_stream
.path_name
));
1005 strncpy(send_stream
.channel_name
, viewer_stream
->channel_name
,
1006 sizeof(send_stream
.channel_name
));
1008 ret
= cmd
->sock
->ops
->sendmsg(cmd
->sock
, &send_stream
,
1009 sizeof(send_stream
), 0);
1011 ERR("Relay sending stream %" PRIu64
, viewer_stream
->stream_handle
);
1014 DBG("Sent stream %" PRIu64
" to viewer", viewer_stream
->stream_handle
);
1026 * Get viewer stream from stream id.
1028 * RCU read side lock MUST be acquired.
1030 struct relay_viewer_stream
*live_find_viewer_stream_by_id(uint64_t stream_id
)
1032 struct lttng_ht_node_u64
*node
;
1033 struct lttng_ht_iter iter
;
1034 struct relay_viewer_stream
*stream
= NULL
;
1036 lttng_ht_lookup(viewer_streams_ht
, &stream_id
, &iter
);
1037 node
= lttng_ht_iter_get_node_u64(&iter
);
1039 DBG("Relay viewer stream %" PRIu64
" not found", stream_id
);
1042 stream
= caa_container_of(node
, struct relay_viewer_stream
, stream_n
);
1049 * Send the next index for a stream.
1051 * Return 0 on success or else a negative value.
1054 int viewer_get_next_index(struct relay_command
*cmd
,
1055 struct lttng_ht
*sessions_ht
)
1058 struct lttng_viewer_get_next_index request_index
;
1059 struct lttng_viewer_index viewer_index
;
1060 struct lttng_packet_index packet_index
;
1061 struct relay_viewer_stream
*vstream
;
1062 struct relay_stream
*rstream
;
1065 assert(sessions_ht
);
1067 DBG("Viewer get next index");
1069 if (cmd
->version_check_done
== 0) {
1070 ERR("Trying to request index before version check");
1072 goto end_no_session
;
1075 health_code_update();
1076 ret
= cmd
->sock
->ops
->recvmsg(cmd
->sock
, &request_index
,
1077 sizeof(request_index
), 0);
1078 if (ret
< 0 || ret
!= sizeof(request_index
)) {
1080 ERR("Relay didn't receive the whole packet");
1083 health_code_update();
1086 vstream
= live_find_viewer_stream_by_id(be64toh(request_index
.stream_id
));
1092 memset(&viewer_index
, 0, sizeof(viewer_index
));
1095 * The viewer should not ask for index on metadata stream.
1097 if (vstream
->metadata_flag
) {
1098 viewer_index
.status
= htobe32(VIEWER_INDEX_HUP
);
1102 /* First time, we open the index file */
1103 if (vstream
->index_read_fd
< 0) {
1104 ret
= open_index(vstream
);
1105 if (ret
== -ENOENT
) {
1107 * The index is created only when the first data packet arrives, it
1108 * might not be ready at the beginning of the session
1110 viewer_index
.status
= htobe32(VIEWER_INDEX_RETRY
);
1112 } else if (ret
< 0) {
1113 viewer_index
.status
= htobe32(VIEWER_INDEX_ERR
);
1118 rstream
= relay_stream_find_by_id(vstream
->stream_handle
);
1120 if (vstream
->abort_flag
) {
1121 /* Rotate on abort (overwrite). */
1122 DBG("Viewer rotate because of overwrite");
1123 ret
= rotate_viewer_stream(vstream
, rstream
);
1128 if (rstream
->beacon_ts_end
!= -1ULL &&
1129 vstream
->last_sent_index
== rstream
->total_index_received
) {
1130 viewer_index
.status
= htobe32(VIEWER_INDEX_INACTIVE
);
1131 viewer_index
.timestamp_end
= htobe64(rstream
->beacon_ts_end
);
1135 * Reader and writer are working in the same tracefile, so we care
1136 * about the number of index received and sent. Otherwise, we read
1139 pthread_mutex_lock(&rstream
->viewer_stream_rotation_lock
);
1140 if (rstream
->tracefile_count_current
== vstream
->tracefile_count_current
1141 && rstream
->total_index_received
<= vstream
->last_sent_index
1142 && !vstream
->close_write_flag
) {
1143 pthread_mutex_unlock(&rstream
->viewer_stream_rotation_lock
);
1144 /* No new index to send, retry later. */
1145 viewer_index
.status
= htobe32(VIEWER_INDEX_RETRY
);
1148 pthread_mutex_unlock(&rstream
->viewer_stream_rotation_lock
);
1149 } else if (!rstream
&& vstream
->close_write_flag
&&
1150 vstream
->total_index_received
== vstream
->last_sent_index
) {
1151 /* Last index sent and current tracefile closed in write */
1152 viewer_index
.status
= htobe32(VIEWER_INDEX_HUP
);
1155 vstream
->close_write_flag
= 1;
1158 if (!vstream
->ctf_trace
->metadata_received
||
1159 vstream
->ctf_trace
->metadata_received
>
1160 vstream
->ctf_trace
->metadata_sent
) {
1161 viewer_index
.flags
|= LTTNG_VIEWER_FLAG_NEW_METADATA
;
1164 ret
= lttng_read(vstream
->index_read_fd
, &packet_index
,
1165 sizeof(packet_index
));
1166 if (ret
< sizeof(packet_index
)) {
1168 * The tracefile is closed in write, so we read up to EOF.
1170 if (vstream
->close_write_flag
== 1) {
1171 viewer_index
.status
= htobe32(VIEWER_INDEX_RETRY
);
1172 /* Rotate on normal EOF */
1173 ret
= rotate_viewer_stream(vstream
, rstream
);
1179 * If the read fd was closed by the streaming side, the
1180 * abort_flag will be set to 1, otherwise it is an error.
1182 if (vstream
->abort_flag
!= 1) {
1183 PERROR("Relay reading index file");
1184 viewer_index
.status
= htobe32(VIEWER_INDEX_ERR
);
1187 viewer_index
.status
= htobe32(VIEWER_INDEX_HUP
);
1192 viewer_index
.status
= htobe32(VIEWER_INDEX_OK
);
1193 vstream
->last_sent_index
++;
1197 * Indexes are stored in big endian, no need to switch before sending.
1199 viewer_index
.offset
= packet_index
.offset
;
1200 viewer_index
.packet_size
= packet_index
.packet_size
;
1201 viewer_index
.content_size
= packet_index
.content_size
;
1202 viewer_index
.timestamp_begin
= packet_index
.timestamp_begin
;
1203 viewer_index
.timestamp_end
= packet_index
.timestamp_end
;
1204 viewer_index
.events_discarded
= packet_index
.events_discarded
;
1205 viewer_index
.stream_id
= packet_index
.stream_id
;
1208 viewer_index
.flags
= htobe32(viewer_index
.flags
);
1209 health_code_update();
1210 ret
= cmd
->sock
->ops
->sendmsg(cmd
->sock
, &viewer_index
,
1211 sizeof(viewer_index
), 0);
1213 ERR("Relay index to viewer");
1216 health_code_update();
1218 DBG("Index %" PRIu64
"for stream %" PRIu64
"sent",
1219 vstream
->last_sent_index
, vstream
->stream_handle
);
1230 * Send the next index for a stream
1232 * Return 0 on success or else a negative value.
1235 int viewer_get_packet(struct relay_command
*cmd
)
1237 int ret
, send_data
= 0;
1241 struct lttng_viewer_get_packet get_packet_info
;
1242 struct lttng_viewer_trace_packet reply
;
1243 struct relay_viewer_stream
*stream
;
1247 DBG2("Relay get data packet");
1249 if (cmd
->version_check_done
== 0) {
1250 ERR("Trying to get packet before version check");
1255 health_code_update();
1256 ret
= cmd
->sock
->ops
->recvmsg(cmd
->sock
, &get_packet_info
,
1257 sizeof(get_packet_info
), 0);
1258 if (ret
< 0 || ret
!= sizeof(get_packet_info
)) {
1260 ERR("Relay didn't receive the whole packet");
1263 health_code_update();
1265 /* From this point on, the error label can be reached. */
1266 memset(&reply
, 0, sizeof(reply
));
1269 stream
= live_find_viewer_stream_by_id(be64toh(get_packet_info
.stream_id
));
1273 assert(stream
->ctf_trace
);
1276 * First time we read this stream, we need open the tracefile, we should
1277 * only arrive here if an index has already been sent to the viewer, so the
1278 * tracefile must exist, if it does not it is a fatal error.
1280 if (stream
->read_fd
< 0) {
1281 char fullpath
[PATH_MAX
];
1283 if (stream
->tracefile_count
> 0) {
1284 ret
= snprintf(fullpath
, PATH_MAX
, "%s/%s_%" PRIu64
, stream
->path_name
,
1285 stream
->channel_name
,
1286 stream
->tracefile_count_current
);
1288 ret
= snprintf(fullpath
, PATH_MAX
, "%s/%s", stream
->path_name
,
1289 stream
->channel_name
);
1294 ret
= open(fullpath
, O_RDONLY
);
1296 PERROR("Relay opening trace file");
1299 stream
->read_fd
= ret
;
1302 if (!stream
->ctf_trace
->metadata_received
||
1303 stream
->ctf_trace
->metadata_received
>
1304 stream
->ctf_trace
->metadata_sent
) {
1305 reply
.status
= htobe32(VIEWER_GET_PACKET_ERR
);
1306 reply
.flags
|= LTTNG_VIEWER_FLAG_NEW_METADATA
;
1310 len
= be32toh(get_packet_info
.len
);
1311 data
= zmalloc(len
);
1313 PERROR("relay data zmalloc");
1317 ret
= lseek(stream
->read_fd
, be64toh(get_packet_info
.offset
), SEEK_SET
);
1320 * If the read fd was closed by the streaming side, the
1321 * abort_flag will be set to 1, otherwise it is an error.
1323 if (stream
->abort_flag
== 0) {
1327 reply
.status
= htobe32(VIEWER_GET_PACKET_EOF
);
1330 read_len
= lttng_read(stream
->read_fd
, data
, len
);
1331 if (read_len
< len
) {
1333 * If the read fd was closed by the streaming side, the
1334 * abort_flag will be set to 1, otherwise it is an error.
1336 if (stream
->abort_flag
== 0) {
1337 PERROR("Relay reading trace file, fd: %d, offset: %" PRIu64
,
1339 be64toh(get_packet_info
.offset
));
1342 reply
.status
= htobe32(VIEWER_GET_PACKET_EOF
);
1346 reply
.status
= htobe32(VIEWER_GET_PACKET_OK
);
1347 reply
.len
= htobe32(len
);
1352 reply
.status
= htobe32(VIEWER_GET_PACKET_ERR
);
1355 reply
.flags
= htobe32(reply
.flags
);
1357 health_code_update();
1358 ret
= cmd
->sock
->ops
->sendmsg(cmd
->sock
, &reply
, sizeof(reply
), 0);
1360 ERR("Relay data header to viewer");
1363 health_code_update();
1366 health_code_update();
1367 ret
= cmd
->sock
->ops
->sendmsg(cmd
->sock
, data
, len
, 0);
1369 ERR("Relay send data to viewer");
1372 health_code_update();
1375 DBG("Sent %u bytes for stream %" PRIu64
, len
,
1376 be64toh(get_packet_info
.stream_id
));
1387 * Send the session's metadata
1389 * Return 0 on success else a negative value.
1392 int viewer_get_metadata(struct relay_command
*cmd
)
1398 struct lttng_viewer_get_metadata request
;
1399 struct lttng_viewer_metadata_packet reply
;
1400 struct relay_viewer_stream
*stream
;
1404 DBG("Relay get metadata");
1406 if (cmd
->version_check_done
== 0) {
1407 ERR("Trying to get metadata before version check");
1412 health_code_update();
1413 ret
= cmd
->sock
->ops
->recvmsg(cmd
->sock
, &request
,
1414 sizeof(request
), 0);
1415 if (ret
< 0 || ret
!= sizeof(request
)) {
1417 ERR("Relay didn't receive the whole packet");
1420 health_code_update();
1423 stream
= live_find_viewer_stream_by_id(be64toh(request
.stream_id
));
1424 if (!stream
|| !stream
->metadata_flag
) {
1425 ERR("Invalid metadata stream");
1428 assert(stream
->ctf_trace
);
1429 assert(stream
->ctf_trace
->metadata_sent
<=
1430 stream
->ctf_trace
->metadata_received
);
1432 len
= stream
->ctf_trace
->metadata_received
-
1433 stream
->ctf_trace
->metadata_sent
;
1435 reply
.status
= htobe32(VIEWER_NO_NEW_METADATA
);
1439 /* first time, we open the metadata file */
1440 if (stream
->read_fd
< 0) {
1441 char fullpath
[PATH_MAX
];
1443 ret
= snprintf(fullpath
, PATH_MAX
, "%s/%s", stream
->path_name
,
1444 stream
->channel_name
);
1448 ret
= open(fullpath
, O_RDONLY
);
1450 PERROR("Relay opening metadata file");
1453 stream
->read_fd
= ret
;
1456 reply
.len
= htobe64(len
);
1457 data
= zmalloc(len
);
1459 PERROR("viewer metadata zmalloc");
1463 read_len
= lttng_read(stream
->read_fd
, data
, len
);
1464 if (read_len
< len
) {
1465 PERROR("Relay reading metadata file");
1468 stream
->ctf_trace
->metadata_sent
+= read_len
;
1469 reply
.status
= htobe32(VIEWER_METADATA_OK
);
1473 reply
.status
= htobe32(VIEWER_METADATA_ERR
);
1476 health_code_update();
1477 ret
= cmd
->sock
->ops
->sendmsg(cmd
->sock
, &reply
, sizeof(reply
), 0);
1479 ERR("Relay data header to viewer");
1482 health_code_update();
1485 ret
= cmd
->sock
->ops
->sendmsg(cmd
->sock
, data
, len
, 0);
1487 ERR("Relay send data to viewer");
1492 DBG("Sent %" PRIu64
" bytes of metadata for stream %" PRIu64
, len
,
1493 be64toh(request
.stream_id
));
1495 DBG("Metadata sent");
1505 * live_relay_unknown_command: send -1 if received unknown command
1508 void live_relay_unknown_command(struct relay_command
*cmd
)
1510 struct lttcomm_relayd_generic_reply reply
;
1513 reply
.ret_code
= htobe32(LTTNG_ERR_UNK
);
1514 ret
= cmd
->sock
->ops
->sendmsg(cmd
->sock
, &reply
,
1515 sizeof(struct lttcomm_relayd_generic_reply
), 0);
1517 ERR("Relay sending unknown command");
1522 * Process the commands received on the control socket
1525 int process_control(struct lttng_viewer_cmd
*recv_hdr
,
1526 struct relay_command
*cmd
, struct lttng_ht
*sessions_ht
)
1530 switch (be32toh(recv_hdr
->cmd
)) {
1531 case VIEWER_CONNECT
:
1532 ret
= viewer_connect(cmd
);
1534 case VIEWER_LIST_SESSIONS
:
1535 ret
= viewer_list_sessions(cmd
, sessions_ht
);
1537 case VIEWER_ATTACH_SESSION
:
1538 ret
= viewer_attach_session(cmd
, sessions_ht
);
1540 case VIEWER_GET_NEXT_INDEX
:
1541 ret
= viewer_get_next_index(cmd
, sessions_ht
);
1543 case VIEWER_GET_PACKET
:
1544 ret
= viewer_get_packet(cmd
);
1546 case VIEWER_GET_METADATA
:
1547 ret
= viewer_get_metadata(cmd
);
1550 ERR("Received unknown viewer command (%u)", be32toh(recv_hdr
->cmd
));
1551 live_relay_unknown_command(cmd
);
1561 void cleanup_poll_connection(struct lttng_poll_event
*events
, int pollfd
)
1567 lttng_poll_del(events
, pollfd
);
1569 ret
= close(pollfd
);
1571 ERR("Closing pollfd %d", pollfd
);
1576 * Create and add connection to the given hash table.
1578 * Return poll add value or else -1 on error.
1581 int add_connection(int fd
, struct lttng_poll_event
*events
,
1582 struct lttng_ht
*relay_connections_ht
)
1585 struct relay_command
*relay_connection
;
1588 assert(relay_connections_ht
);
1590 relay_connection
= zmalloc(sizeof(struct relay_command
));
1591 if (relay_connection
== NULL
) {
1592 PERROR("Relay command zmalloc");
1596 ret
= lttng_read(fd
, relay_connection
, sizeof(*relay_connection
));
1597 if (ret
< sizeof(*relay_connection
)) {
1598 PERROR("read relay cmd pipe");
1602 lttng_ht_node_init_ulong(&relay_connection
->sock_n
,
1603 (unsigned long) relay_connection
->sock
->fd
);
1605 lttng_ht_add_unique_ulong(relay_connections_ht
,
1606 &relay_connection
->sock_n
);
1609 return lttng_poll_add(events
, relay_connection
->sock
->fd
,
1610 LPOLLIN
| LPOLLRDHUP
);
1613 free(relay_connection
);
1619 void deferred_free_connection(struct rcu_head
*head
)
1621 struct relay_command
*relay_connection
=
1622 caa_container_of(head
, struct relay_command
, rcu_node
);
1624 if (relay_connection
->session
&&
1625 relay_connection
->session
->viewer_attached
> 0) {
1626 relay_connection
->session
->viewer_attached
--;
1628 lttcomm_destroy_sock(relay_connection
->sock
);
1629 free(relay_connection
);
1633 void deferred_free_viewer_stream(struct rcu_head
*head
)
1635 struct relay_viewer_stream
*stream
=
1636 caa_container_of(head
, struct relay_viewer_stream
, rcu_node
);
1638 if (stream
->ctf_trace
) {
1639 uatomic_dec(&stream
->ctf_trace
->refcount
);
1640 assert(uatomic_read(&stream
->ctf_trace
->refcount
) >= 0);
1641 if (uatomic_read(&stream
->ctf_trace
->refcount
) == 0) {
1642 DBG("Freeing ctf_trace %" PRIu64
, stream
->ctf_trace
->id
);
1643 free(stream
->ctf_trace
);
1647 free(stream
->path_name
);
1648 free(stream
->channel_name
);
1653 void viewer_del_streams(uint64_t session_id
)
1656 struct relay_viewer_stream
*stream
;
1657 struct lttng_ht_node_u64
*node
;
1658 struct lttng_ht_iter iter
;
1661 cds_lfht_for_each_entry(viewer_streams_ht
->ht
, &iter
.iter
, node
, node
) {
1662 health_code_update();
1664 node
= lttng_ht_iter_get_node_u64(&iter
);
1669 stream
= caa_container_of(node
, struct relay_viewer_stream
, stream_n
);
1670 if (stream
->session_id
!= session_id
) {
1674 if (stream
->read_fd
>= 0) {
1675 ret
= close(stream
->read_fd
);
1677 PERROR("close read_fd");
1680 if (stream
->index_read_fd
>= 0) {
1681 ret
= close(stream
->index_read_fd
);
1683 PERROR("close index_read_fd");
1686 if (stream
->metadata_flag
&& stream
->ctf_trace
) {
1687 stream
->ctf_trace
->metadata_sent
= 0;
1689 ret
= lttng_ht_del(viewer_streams_ht
, &iter
);
1691 call_rcu(&stream
->rcu_node
, deferred_free_viewer_stream
);
1697 * Delete and free a connection.
1699 * RCU read side lock MUST be acquired.
1702 void del_connection(struct lttng_ht
*relay_connections_ht
,
1703 struct lttng_ht_iter
*iter
, struct relay_command
*relay_connection
)
1707 assert(relay_connections_ht
);
1709 assert(relay_connection
);
1711 ret
= lttng_ht_del(relay_connections_ht
, iter
);
1714 viewer_del_streams(relay_connection
->session_id
);
1716 call_rcu(&relay_connection
->rcu_node
, deferred_free_connection
);
1720 * This thread does the actual work
1723 void *thread_worker(void *data
)
1727 struct relay_command
*relay_connection
;
1728 struct lttng_poll_event events
;
1729 struct lttng_ht
*relay_connections_ht
;
1730 struct lttng_ht_node_ulong
*node
;
1731 struct lttng_ht_iter iter
;
1732 struct lttng_viewer_cmd recv_hdr
;
1733 struct relay_local_data
*relay_ctx
= (struct relay_local_data
*) data
;
1734 struct lttng_ht
*sessions_ht
= relay_ctx
->sessions_ht
;
1736 DBG("[thread] Live viewer relay worker started");
1738 rcu_register_thread();
1740 health_register(health_relayd
, HEALTH_RELAYD_TYPE_LIVE_WORKER
);
1742 /* table of connections indexed on socket */
1743 relay_connections_ht
= lttng_ht_new(0, LTTNG_HT_TYPE_ULONG
);
1744 if (!relay_connections_ht
) {
1745 goto relay_connections_ht_error
;
1748 ret
= create_thread_poll_set(&events
, 2);
1750 goto error_poll_create
;
1753 ret
= lttng_poll_add(&events
, live_relay_cmd_pipe
[0], LPOLLIN
| LPOLLRDHUP
);
1762 health_code_update();
1764 /* Infinite blocking call, waiting for transmission */
1765 DBG3("Relayd live viewer worker thread polling...");
1766 health_poll_entry();
1767 ret
= lttng_poll_wait(&events
, -1);
1771 * Restart interrupted system call.
1773 if (errno
== EINTR
) {
1782 * Process control. The control connection is prioritised so we don't
1783 * starve it with high throughput tracing data on the data
1786 for (i
= 0; i
< nb_fd
; i
++) {
1787 /* Fetch once the poll data */
1788 uint32_t revents
= LTTNG_POLL_GETEV(&events
, i
);
1789 int pollfd
= LTTNG_POLL_GETFD(&events
, i
);
1791 health_code_update();
1793 /* Thread quit pipe has been closed. Killing thread. */
1794 ret
= check_thread_quit_pipe(pollfd
, revents
);
1800 /* Inspect the relay cmd pipe for new connection */
1801 if (pollfd
== live_relay_cmd_pipe
[0]) {
1802 if (revents
& (LPOLLERR
| LPOLLHUP
| LPOLLRDHUP
)) {
1803 ERR("Relay live pipe error");
1805 } else if (revents
& LPOLLIN
) {
1806 DBG("Relay live viewer command received");
1807 ret
= add_connection(live_relay_cmd_pipe
[0],
1808 &events
, relay_connections_ht
);
1813 } else if (revents
) {
1815 lttng_ht_lookup(relay_connections_ht
,
1816 (void *)((unsigned long) pollfd
), &iter
);
1817 node
= lttng_ht_iter_get_node_ulong(&iter
);
1819 DBG2("Relay viewer sock %d not found", pollfd
);
1823 relay_connection
= caa_container_of(node
, struct relay_command
,
1826 if (revents
& (LPOLLERR
)) {
1827 cleanup_poll_connection(&events
, pollfd
);
1828 del_connection(relay_connections_ht
, &iter
,
1830 } else if (revents
& (LPOLLHUP
| LPOLLRDHUP
)) {
1831 DBG("Viewer socket %d hung up", pollfd
);
1832 cleanup_poll_connection(&events
, pollfd
);
1833 del_connection(relay_connections_ht
, &iter
,
1835 } else if (revents
& LPOLLIN
) {
1836 ret
= relay_connection
->sock
->ops
->recvmsg(
1837 relay_connection
->sock
, &recv_hdr
,
1838 sizeof(struct lttng_viewer_cmd
),
1840 /* connection closed */
1842 cleanup_poll_connection(&events
, pollfd
);
1843 del_connection(relay_connections_ht
, &iter
,
1845 DBG("Viewer control connection closed with %d",
1848 if (relay_connection
->session
) {
1849 DBG2("Relay viewer worker receiving data for "
1850 "session: %" PRIu64
,
1851 relay_connection
->session
->id
);
1853 ret
= process_control(&recv_hdr
, relay_connection
,
1856 /* Clear the session on error. */
1857 cleanup_poll_connection(&events
, pollfd
);
1858 del_connection(relay_connections_ht
, &iter
,
1860 DBG("Viewer connection closed with %d", pollfd
);
1871 lttng_poll_clean(&events
);
1873 /* empty the hash table and free the memory */
1875 cds_lfht_for_each_entry(relay_connections_ht
->ht
, &iter
.iter
, node
, node
) {
1876 health_code_update();
1878 node
= lttng_ht_iter_get_node_ulong(&iter
);
1883 relay_connection
= caa_container_of(node
, struct relay_command
,
1885 del_connection(relay_connections_ht
, &iter
, relay_connection
);
1889 lttng_ht_destroy(relay_connections_ht
);
1890 relay_connections_ht_error
:
1891 /* Close relay cmd pipes */
1892 utils_close_pipe(live_relay_cmd_pipe
);
1894 DBG("Viewer worker thread exited with error");
1896 DBG("Viewer worker thread cleanup complete");
1899 ERR("Health error occurred in %s", __func__
);
1901 health_unregister(health_relayd
);
1903 rcu_unregister_thread();
1908 * Create the relay command pipe to wake thread_manage_apps.
1909 * Closed in cleanup().
1911 static int create_relay_cmd_pipe(void)
1915 ret
= utils_create_pipe_cloexec(live_relay_cmd_pipe
);
1920 void live_stop_threads(void)
1927 ret
= pthread_join(live_listener_thread
, &status
);
1929 PERROR("pthread_join live listener");
1930 goto error
; /* join error, exit without cleanup */
1933 ret
= pthread_join(live_worker_thread
, &status
);
1935 PERROR("pthread_join live worker");
1936 goto error
; /* join error, exit without cleanup */
1939 ret
= pthread_join(live_dispatcher_thread
, &status
);
1941 PERROR("pthread_join live dispatcher");
1942 goto error
; /* join error, exit without cleanup */
1954 int live_start_threads(struct lttng_uri
*uri
,
1955 struct relay_local_data
*relay_ctx
, int quit_pipe
[2])
1964 live_thread_quit_pipe
[0] = quit_pipe
[0];
1965 live_thread_quit_pipe
[1] = quit_pipe
[1];
1967 /* Check if daemon is UID = 0 */
1968 is_root
= !getuid();
1971 if (live_uri
->port
< 1024) {
1972 ERR("Need to be root to use ports < 1024");
1978 /* Setup the thread apps communication pipe. */
1979 if ((ret
= create_relay_cmd_pipe()) < 0) {
1983 /* Init relay command queue. */
1984 cds_wfq_init(&viewer_cmd_queue
.queue
);
1986 /* Set up max poll set size */
1987 lttng_poll_set_max_size();
1989 /* Setup the dispatcher thread */
1990 ret
= pthread_create(&live_dispatcher_thread
, NULL
,
1991 thread_dispatcher
, (void *) NULL
);
1993 PERROR("pthread_create viewer dispatcher");
1994 goto exit_dispatcher
;
1997 /* Setup the worker thread */
1998 ret
= pthread_create(&live_worker_thread
, NULL
,
1999 thread_worker
, relay_ctx
);
2001 PERROR("pthread_create viewer worker");
2005 /* Setup the listener thread */
2006 ret
= pthread_create(&live_listener_thread
, NULL
,
2007 thread_listener
, (void *) NULL
);
2009 PERROR("pthread_create viewer listener");
2017 ret
= pthread_join(live_listener_thread
, &status
);
2019 PERROR("pthread_join live listener");
2020 goto error
; /* join error, exit without cleanup */
2024 ret
= pthread_join(live_worker_thread
, &status
);
2026 PERROR("pthread_join live worker");
2027 goto error
; /* join error, exit without cleanup */
2031 ret
= pthread_join(live_dispatcher_thread
, &status
);
2033 PERROR("pthread_join live dispatcher");
2034 goto error
; /* join error, exit without cleanup */