Fix: relayd: live: unchecked return value when opening relay socket
[lttng-tools.git] / src / bin / lttng-relayd / live.c
1 /*
2 * Copyright (C) 2013 Julien Desfossez <jdesfossez@efficios.com>
3 * Copyright (C) 2013 David Goulet <dgoulet@efficios.com>
4 * Copyright (C) 2015 Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
5 *
6 * SPDX-License-Identifier: GPL-2.0-only
7 *
8 */
9
10 #define _LGPL_SOURCE
11 #include <fcntl.h>
12 #include <getopt.h>
13 #include <grp.h>
14 #include <inttypes.h>
15 #include <limits.h>
16 #include <pthread.h>
17 #include <signal.h>
18 #include <stdio.h>
19 #include <stdlib.h>
20 #include <string.h>
21 #include <sys/mman.h>
22 #include <sys/mount.h>
23 #include <sys/resource.h>
24 #include <sys/socket.h>
25 #include <sys/stat.h>
26 #include <sys/types.h>
27 #include <sys/wait.h>
28 #include <unistd.h>
29 #include <urcu/futex.h>
30 #include <urcu/rculist.h>
31 #include <urcu/uatomic.h>
32
33 #include <common/common.h>
34 #include <common/compat/endian.h>
35 #include <common/compat/poll.h>
36 #include <common/compat/socket.h>
37 #include <common/defaults.h>
38 #include <common/fd-tracker/utils.h>
39 #include <common/fs-handle.h>
40 #include <common/futex.h>
41 #include <common/index/index.h>
42 #include <common/sessiond-comm/inet.h>
43 #include <common/sessiond-comm/relayd.h>
44 #include <common/sessiond-comm/sessiond-comm.h>
45 #include <common/uri.h>
46 #include <common/utils.h>
47 #include <lttng/lttng.h>
48
49 #include "cmd.h"
50 #include "connection.h"
51 #include "ctf-trace.h"
52 #include "health-relayd.h"
53 #include "live.h"
54 #include "lttng-relayd.h"
55 #include "session.h"
56 #include "stream.h"
57 #include "testpoint.h"
58 #include "utils.h"
59 #include "viewer-session.h"
60 #include "viewer-stream.h"
61
62 #define SESSION_BUF_DEFAULT_COUNT 16
63
64 static struct lttng_uri *live_uri;
65
66 /*
67 * This pipe is used to inform the worker thread that a command is queued and
68 * ready to be processed.
69 */
70 static int live_conn_pipe[2] = { -1, -1 };
71
72 /* Shared between threads */
73 static int live_dispatch_thread_exit;
74
75 static pthread_t live_listener_thread;
76 static pthread_t live_dispatcher_thread;
77 static pthread_t live_worker_thread;
78
79 /*
80 * Relay command queue.
81 *
82 * The live_thread_listener and live_thread_dispatcher communicate with this
83 * queue.
84 */
85 static struct relay_conn_queue viewer_conn_queue;
86
87 static uint64_t last_relay_viewer_session_id;
88 static pthread_mutex_t last_relay_viewer_session_id_lock =
89 PTHREAD_MUTEX_INITIALIZER;
90
91 /*
92 * Cleanup the daemon
93 */
94 static
95 void cleanup_relayd_live(void)
96 {
97 DBG("Cleaning up");
98
99 free(live_uri);
100 }
101
102 /*
103 * Receive a request buffer using a given socket, destination allocated buffer
104 * of length size.
105 *
106 * Return the size of the received message or else a negative value on error
107 * with errno being set by recvmsg() syscall.
108 */
109 static
110 ssize_t recv_request(struct lttcomm_sock *sock, void *buf, size_t size)
111 {
112 ssize_t ret;
113
114 ret = sock->ops->recvmsg(sock, buf, size, 0);
115 if (ret < 0 || ret != size) {
116 if (ret == 0) {
117 /* Orderly shutdown. Not necessary to print an error. */
118 DBG("Socket %d did an orderly shutdown", sock->fd);
119 } else {
120 ERR("Relay failed to receive request.");
121 }
122 ret = -1;
123 }
124
125 return ret;
126 }
127
128 /*
129 * Send a response buffer using a given socket, source allocated buffer of
130 * length size.
131 *
132 * Return the size of the sent message or else a negative value on error with
133 * errno being set by sendmsg() syscall.
134 */
135 static
136 ssize_t send_response(struct lttcomm_sock *sock, void *buf, size_t size)
137 {
138 ssize_t ret;
139
140 ret = sock->ops->sendmsg(sock, buf, size, 0);
141 if (ret < 0) {
142 ERR("Relayd failed to send response.");
143 }
144
145 return ret;
146 }
147
148 /*
149 * Atomically check if new streams got added in one of the sessions attached
150 * and reset the flag to 0.
151 *
152 * Returns 1 if new streams got added, 0 if nothing changed, a negative value
153 * on error.
154 */
155 static
156 int check_new_streams(struct relay_connection *conn)
157 {
158 struct relay_session *session;
159 unsigned long current_val;
160 int ret = 0;
161
162 if (!conn->viewer_session) {
163 goto end;
164 }
165 rcu_read_lock();
166 cds_list_for_each_entry_rcu(session,
167 &conn->viewer_session->session_list,
168 viewer_session_node) {
169 if (!session_get(session)) {
170 continue;
171 }
172 current_val = uatomic_cmpxchg(&session->new_streams, 1, 0);
173 ret = current_val;
174 session_put(session);
175 if (ret == 1) {
176 goto end;
177 }
178 }
179 end:
180 rcu_read_unlock();
181 return ret;
182 }
183
184 /*
185 * Send viewer streams to the given socket. The ignore_sent_flag indicates if
186 * this function should ignore the sent flag or not.
187 *
188 * Return 0 on success or else a negative value.
189 */
190 static
191 ssize_t send_viewer_streams(struct lttcomm_sock *sock,
192 uint64_t session_id, unsigned int ignore_sent_flag)
193 {
194 ssize_t ret;
195 struct lttng_viewer_stream send_stream;
196 struct lttng_ht_iter iter;
197 struct relay_viewer_stream *vstream;
198
199 rcu_read_lock();
200
201 cds_lfht_for_each_entry(viewer_streams_ht->ht, &iter.iter, vstream,
202 stream_n.node) {
203 struct ctf_trace *ctf_trace;
204
205 health_code_update();
206
207 if (!viewer_stream_get(vstream)) {
208 continue;
209 }
210
211 pthread_mutex_lock(&vstream->stream->lock);
212 /* Ignore if not the same session. */
213 if (vstream->stream->trace->session->id != session_id ||
214 (!ignore_sent_flag && vstream->sent_flag)) {
215 pthread_mutex_unlock(&vstream->stream->lock);
216 viewer_stream_put(vstream);
217 continue;
218 }
219
220 ctf_trace = vstream->stream->trace;
221 send_stream.id = htobe64(vstream->stream->stream_handle);
222 send_stream.ctf_trace_id = htobe64(ctf_trace->id);
223 send_stream.metadata_flag = htobe32(
224 vstream->stream->is_metadata);
225 if (lttng_strncpy(send_stream.path_name, vstream->path_name,
226 sizeof(send_stream.path_name))) {
227 pthread_mutex_unlock(&vstream->stream->lock);
228 viewer_stream_put(vstream);
229 ret = -1; /* Error. */
230 goto end_unlock;
231 }
232 if (lttng_strncpy(send_stream.channel_name,
233 vstream->channel_name,
234 sizeof(send_stream.channel_name))) {
235 pthread_mutex_unlock(&vstream->stream->lock);
236 viewer_stream_put(vstream);
237 ret = -1; /* Error. */
238 goto end_unlock;
239 }
240
241 DBG("Sending stream %" PRIu64 " to viewer",
242 vstream->stream->stream_handle);
243 vstream->sent_flag = 1;
244 pthread_mutex_unlock(&vstream->stream->lock);
245
246 ret = send_response(sock, &send_stream, sizeof(send_stream));
247 viewer_stream_put(vstream);
248 if (ret < 0) {
249 goto end_unlock;
250 }
251 }
252
253 ret = 0;
254
255 end_unlock:
256 rcu_read_unlock();
257 return ret;
258 }
259
260 /*
261 * Create every viewer stream possible for the given session with the seek
262 * type. Three counters *can* be return which are in order the total amount of
263 * viewer stream of the session, the number of unsent stream and the number of
264 * stream created. Those counters can be NULL and thus will be ignored.
265 *
266 * session must be locked to ensure that we see either none or all initial
267 * streams for a session, but no intermediate state..
268 *
269 * Return 0 on success or else a negative value.
270 */
271 static int make_viewer_streams(struct relay_session *session,
272 struct lttng_trace_chunk *viewer_trace_chunk,
273 enum lttng_viewer_seek seek_t,
274 uint32_t *nb_total,
275 uint32_t *nb_unsent,
276 uint32_t *nb_created,
277 bool *closed)
278 {
279 int ret;
280 struct lttng_ht_iter iter;
281 struct ctf_trace *ctf_trace;
282
283 assert(session);
284 ASSERT_LOCKED(session->lock);
285
286 if (!viewer_trace_chunk) {
287 ERR("Internal error: viewer session associated with session \"%s\" has a NULL trace chunk",
288 session->session_name);
289 ret = -1;
290 goto error;
291 }
292
293 if (session->connection_closed) {
294 *closed = true;
295 }
296
297 /*
298 * Create viewer streams for relay streams that are ready to be
299 * used for a the given session id only.
300 */
301 rcu_read_lock();
302 cds_lfht_for_each_entry(session->ctf_traces_ht->ht, &iter.iter, ctf_trace,
303 node.node) {
304 bool trace_has_metadata_stream = false;
305 struct relay_stream *stream;
306
307 health_code_update();
308
309 if (!ctf_trace_get(ctf_trace)) {
310 continue;
311 }
312
313 /*
314 * Iterate over all the streams of the trace to see if we have a
315 * metadata stream.
316 */
317 cds_list_for_each_entry_rcu(
318 stream, &ctf_trace->stream_list, stream_node)
319 {
320 if (stream->is_metadata) {
321 trace_has_metadata_stream = true;
322 break;
323 }
324 }
325
326 /*
327 * If there is no metadata stream in this trace at the moment
328 * and we never sent one to the viewer, skip the trace. We
329 * accept that the viewer will not see this trace at all.
330 */
331 if (!trace_has_metadata_stream &&
332 !ctf_trace->metadata_stream_sent_to_viewer) {
333 ctf_trace_put(ctf_trace);
334 continue;
335 }
336
337 cds_list_for_each_entry_rcu(stream, &ctf_trace->stream_list, stream_node) {
338 struct relay_viewer_stream *vstream;
339
340 if (!stream_get(stream)) {
341 continue;
342 }
343 /*
344 * stream published is protected by the session lock.
345 */
346 if (!stream->published) {
347 goto next;
348 }
349 vstream = viewer_stream_get_by_id(stream->stream_handle);
350 if (!vstream) {
351 /*
352 * Save that we sent the metadata stream to the
353 * viewer. So that we know what trace the viewer
354 * is aware of.
355 */
356 if (stream->is_metadata) {
357 ctf_trace->metadata_stream_sent_to_viewer =
358 true;
359 }
360 vstream = viewer_stream_create(stream,
361 viewer_trace_chunk, seek_t);
362 if (!vstream) {
363 ret = -1;
364 ctf_trace_put(ctf_trace);
365 stream_put(stream);
366 goto error_unlock;
367 }
368
369 if (nb_created) {
370 /* Update number of created stream counter. */
371 (*nb_created)++;
372 }
373 /*
374 * Ensure a self-reference is preserved even
375 * after we have put our local reference.
376 */
377 if (!viewer_stream_get(vstream)) {
378 ERR("Unable to get self-reference on viewer stream, logic error.");
379 abort();
380 }
381 } else {
382 if (!vstream->sent_flag && nb_unsent) {
383 /* Update number of unsent stream counter. */
384 (*nb_unsent)++;
385 }
386 }
387 /* Update number of total stream counter. */
388 if (nb_total) {
389 if (stream->is_metadata) {
390 if (!stream->closed ||
391 stream->metadata_received > vstream->metadata_sent) {
392 (*nb_total)++;
393 }
394 } else {
395 if (!stream->closed ||
396 !(((int64_t) (stream->prev_data_seq - stream->last_net_seq_num)) >= 0)) {
397
398 (*nb_total)++;
399 }
400 }
401 }
402 /* Put local reference. */
403 viewer_stream_put(vstream);
404 next:
405 stream_put(stream);
406 }
407 ctf_trace_put(ctf_trace);
408 }
409
410 ret = 0;
411
412 error_unlock:
413 rcu_read_unlock();
414 error:
415 return ret;
416 }
417
418 int relayd_live_stop(void)
419 {
420 /* Stop dispatch thread */
421 CMM_STORE_SHARED(live_dispatch_thread_exit, 1);
422 futex_nto1_wake(&viewer_conn_queue.futex);
423 return 0;
424 }
425
426 /*
427 * Create a poll set with O_CLOEXEC and add the thread quit pipe to the set.
428 */
429 static
430 int create_named_thread_poll_set(struct lttng_poll_event *events,
431 int size, const char *name)
432 {
433 int ret;
434
435 if (events == NULL || size == 0) {
436 ret = -1;
437 goto error;
438 }
439
440 ret = fd_tracker_util_poll_create(the_fd_tracker,
441 name, events, 1, LTTNG_CLOEXEC);
442
443 /* Add quit pipe */
444 ret = lttng_poll_add(events, thread_quit_pipe[0], LPOLLIN | LPOLLERR);
445 if (ret < 0) {
446 goto error;
447 }
448
449 return 0;
450
451 error:
452 return ret;
453 }
454
455 /*
456 * Check if the thread quit pipe was triggered.
457 *
458 * Return 1 if it was triggered else 0;
459 */
460 static
461 int check_thread_quit_pipe(int fd, uint32_t events)
462 {
463 if (fd == thread_quit_pipe[0] && (events & LPOLLIN)) {
464 return 1;
465 }
466
467 return 0;
468 }
469
470 static
471 int create_sock(void *data, int *out_fd)
472 {
473 int ret;
474 struct lttcomm_sock *sock = data;
475
476 ret = lttcomm_create_sock(sock);
477 if (ret < 0) {
478 goto end;
479 }
480
481 *out_fd = sock->fd;
482 end:
483 return ret;
484 }
485
486 static
487 int close_sock(void *data, int *in_fd)
488 {
489 struct lttcomm_sock *sock = data;
490
491 return sock->ops->close(sock);
492 }
493
494 static int accept_sock(void *data, int *out_fd)
495 {
496 int ret = 0;
497 /* Socks is an array of in_sock, out_sock. */
498 struct lttcomm_sock **socks = data;
499 struct lttcomm_sock *in_sock = socks[0];
500
501 socks[1] = in_sock->ops->accept(in_sock);
502 if (!socks[1]) {
503 ret = -1;
504 goto end;
505 }
506 *out_fd = socks[1]->fd;
507 end:
508 return ret;
509 }
510
511 static
512 struct lttcomm_sock *accept_live_sock(struct lttcomm_sock *listening_sock,
513 const char *name)
514 {
515 int out_fd, ret;
516 struct lttcomm_sock *socks[2] = { listening_sock, NULL };
517 struct lttcomm_sock *new_sock = NULL;
518
519 ret = fd_tracker_open_unsuspendable_fd(the_fd_tracker, &out_fd,
520 (const char **) &name, 1, accept_sock, &socks);
521 if (ret) {
522 goto end;
523 }
524 new_sock = socks[1];
525 DBG("%s accepted, socket %d", name, new_sock->fd);
526 end:
527 return new_sock;
528 }
529
530 /*
531 * Create and init socket from uri.
532 */
533 static
534 struct lttcomm_sock *init_socket(struct lttng_uri *uri, const char *name)
535 {
536 int ret, sock_fd;
537 struct lttcomm_sock *sock = NULL;
538 char uri_str[LTTNG_PATH_MAX];
539 char *formated_name = NULL;
540
541 sock = lttcomm_alloc_sock_from_uri(uri);
542 if (sock == NULL) {
543 ERR("Allocating socket");
544 goto error;
545 }
546
547 /*
548 * Don't fail to create the socket if the name can't be built as it is
549 * only used for debugging purposes.
550 */
551 ret = uri_to_str_url(uri, uri_str, sizeof(uri_str));
552 uri_str[sizeof(uri_str) - 1] = '\0';
553 if (ret >= 0) {
554 ret = asprintf(&formated_name, "%s socket @ %s", name,
555 uri_str);
556 if (ret < 0) {
557 formated_name = NULL;
558 }
559 }
560
561 ret = fd_tracker_open_unsuspendable_fd(the_fd_tracker, &sock_fd,
562 (const char **) (formated_name ? &formated_name : NULL),
563 1, create_sock, sock);
564 if (ret) {
565 PERROR("Failed to create \"%s\" socket",
566 formated_name ?: "Unknown");
567 goto error;
568 }
569 DBG("Listening on %s socket %d", name, sock->fd);
570
571 ret = sock->ops->bind(sock);
572 if (ret < 0) {
573 PERROR("Failed to bind lttng-live socket");
574 goto error;
575 }
576
577 ret = sock->ops->listen(sock, -1);
578 if (ret < 0) {
579 goto error;
580
581 }
582
583 free(formated_name);
584 return sock;
585
586 error:
587 if (sock) {
588 lttcomm_destroy_sock(sock);
589 }
590 free(formated_name);
591 return NULL;
592 }
593
594 /*
595 * This thread manages the listening for new connections on the network
596 */
597 static
598 void *thread_listener(void *data)
599 {
600 int i, ret, pollfd, err = -1;
601 uint32_t revents, nb_fd;
602 struct lttng_poll_event events;
603 struct lttcomm_sock *live_control_sock;
604
605 DBG("[thread] Relay live listener started");
606
607 rcu_register_thread();
608 health_register(health_relayd, HEALTH_RELAYD_TYPE_LIVE_LISTENER);
609
610 health_code_update();
611
612 live_control_sock = init_socket(live_uri, "Live listener");
613 if (!live_control_sock) {
614 goto error_sock_control;
615 }
616
617 /* Pass 2 as size here for the thread quit pipe and control sockets. */
618 ret = create_named_thread_poll_set(&events, 2,
619 "Live listener thread epoll");
620 if (ret < 0) {
621 goto error_create_poll;
622 }
623
624 /* Add the control socket */
625 ret = lttng_poll_add(&events, live_control_sock->fd, LPOLLIN | LPOLLRDHUP);
626 if (ret < 0) {
627 goto error_poll_add;
628 }
629
630 lttng_relay_notify_ready();
631
632 if (testpoint(relayd_thread_live_listener)) {
633 goto error_testpoint;
634 }
635
636 while (1) {
637 health_code_update();
638
639 DBG("Listener accepting live viewers connections");
640
641 restart:
642 health_poll_entry();
643 ret = lttng_poll_wait(&events, -1);
644 health_poll_exit();
645 if (ret < 0) {
646 /*
647 * Restart interrupted system call.
648 */
649 if (errno == EINTR) {
650 goto restart;
651 }
652 goto error;
653 }
654 nb_fd = ret;
655
656 DBG("Relay new viewer connection received");
657 for (i = 0; i < nb_fd; i++) {
658 health_code_update();
659
660 /* Fetch once the poll data */
661 revents = LTTNG_POLL_GETEV(&events, i);
662 pollfd = LTTNG_POLL_GETFD(&events, i);
663
664 /* Thread quit pipe has been closed. Killing thread. */
665 ret = check_thread_quit_pipe(pollfd, revents);
666 if (ret) {
667 err = 0;
668 goto exit;
669 }
670
671 if (revents & LPOLLIN) {
672 /*
673 * A new connection is requested, therefore a
674 * viewer connection is allocated in this
675 * thread, enqueued to a global queue and
676 * dequeued (and freed) in the worker thread.
677 */
678 int val = 1;
679 struct relay_connection *new_conn;
680 struct lttcomm_sock *newsock;
681
682 newsock = accept_live_sock(live_control_sock,
683 "Live socket to client");
684 if (!newsock) {
685 PERROR("accepting control sock");
686 goto error;
687 }
688 DBG("Relay viewer connection accepted socket %d", newsock->fd);
689
690 ret = setsockopt(newsock->fd, SOL_SOCKET, SO_REUSEADDR, &val,
691 sizeof(val));
692 if (ret < 0) {
693 PERROR("setsockopt inet");
694 lttcomm_destroy_sock(newsock);
695 goto error;
696 }
697 new_conn = connection_create(newsock, RELAY_CONNECTION_UNKNOWN);
698 if (!new_conn) {
699 lttcomm_destroy_sock(newsock);
700 goto error;
701 }
702 /* Ownership assumed by the connection. */
703 newsock = NULL;
704
705 /* Enqueue request for the dispatcher thread. */
706 cds_wfcq_enqueue(&viewer_conn_queue.head, &viewer_conn_queue.tail,
707 &new_conn->qnode);
708
709 /*
710 * Wake the dispatch queue futex.
711 * Implicit memory barrier with the
712 * exchange in cds_wfcq_enqueue.
713 */
714 futex_nto1_wake(&viewer_conn_queue.futex);
715 } else if (revents & (LPOLLERR | LPOLLHUP | LPOLLRDHUP)) {
716 ERR("socket poll error");
717 goto error;
718 } else {
719 ERR("Unexpected poll events %u for sock %d", revents, pollfd);
720 goto error;
721 }
722 }
723 }
724
725 exit:
726 error:
727 error_poll_add:
728 error_testpoint:
729 (void) fd_tracker_util_poll_clean(the_fd_tracker, &events);
730 error_create_poll:
731 if (live_control_sock->fd >= 0) {
732 int sock_fd = live_control_sock->fd;
733
734 ret = fd_tracker_close_unsuspendable_fd(the_fd_tracker,
735 &sock_fd, 1, close_sock,
736 live_control_sock);
737 if (ret) {
738 PERROR("close");
739 }
740 live_control_sock->fd = -1;
741 }
742 lttcomm_destroy_sock(live_control_sock);
743 error_sock_control:
744 if (err) {
745 health_error();
746 DBG("Live viewer listener thread exited with error");
747 }
748 health_unregister(health_relayd);
749 rcu_unregister_thread();
750 DBG("Live viewer listener thread cleanup complete");
751 if (lttng_relay_stop_threads()) {
752 ERR("Error stopping threads");
753 }
754 return NULL;
755 }
756
757 /*
758 * This thread manages the dispatching of the requests to worker threads
759 */
760 static
761 void *thread_dispatcher(void *data)
762 {
763 int err = -1;
764 ssize_t ret;
765 struct cds_wfcq_node *node;
766 struct relay_connection *conn = NULL;
767
768 DBG("[thread] Live viewer relay dispatcher started");
769
770 health_register(health_relayd, HEALTH_RELAYD_TYPE_LIVE_DISPATCHER);
771
772 if (testpoint(relayd_thread_live_dispatcher)) {
773 goto error_testpoint;
774 }
775
776 health_code_update();
777
778 for (;;) {
779 health_code_update();
780
781 /* Atomically prepare the queue futex */
782 futex_nto1_prepare(&viewer_conn_queue.futex);
783
784 if (CMM_LOAD_SHARED(live_dispatch_thread_exit)) {
785 break;
786 }
787
788 do {
789 health_code_update();
790
791 /* Dequeue commands */
792 node = cds_wfcq_dequeue_blocking(&viewer_conn_queue.head,
793 &viewer_conn_queue.tail);
794 if (node == NULL) {
795 DBG("Woken up but nothing in the live-viewer "
796 "relay command queue");
797 /* Continue thread execution */
798 break;
799 }
800 conn = caa_container_of(node, struct relay_connection, qnode);
801 DBG("Dispatching viewer request waiting on sock %d",
802 conn->sock->fd);
803
804 /*
805 * Inform worker thread of the new request. This
806 * call is blocking so we can be assured that
807 * the data will be read at some point in time
808 * or wait to the end of the world :)
809 */
810 ret = lttng_write(live_conn_pipe[1], &conn, sizeof(conn));
811 if (ret < 0) {
812 PERROR("write conn pipe");
813 connection_put(conn);
814 goto error;
815 }
816 } while (node != NULL);
817
818 /* Futex wait on queue. Blocking call on futex() */
819 health_poll_entry();
820 futex_nto1_wait(&viewer_conn_queue.futex);
821 health_poll_exit();
822 }
823
824 /* Normal exit, no error */
825 err = 0;
826
827 error:
828 error_testpoint:
829 if (err) {
830 health_error();
831 ERR("Health error occurred in %s", __func__);
832 }
833 health_unregister(health_relayd);
834 DBG("Live viewer dispatch thread dying");
835 if (lttng_relay_stop_threads()) {
836 ERR("Error stopping threads");
837 }
838 return NULL;
839 }
840
841 /*
842 * Establish connection with the viewer and check the versions.
843 *
844 * Return 0 on success or else negative value.
845 */
846 static
847 int viewer_connect(struct relay_connection *conn)
848 {
849 int ret;
850 struct lttng_viewer_connect reply, msg;
851
852 conn->version_check_done = 1;
853
854 health_code_update();
855
856 DBG("Viewer is establishing a connection to the relayd.");
857
858 ret = recv_request(conn->sock, &msg, sizeof(msg));
859 if (ret < 0) {
860 goto end;
861 }
862
863 health_code_update();
864
865 memset(&reply, 0, sizeof(reply));
866 reply.major = RELAYD_VERSION_COMM_MAJOR;
867 reply.minor = RELAYD_VERSION_COMM_MINOR;
868
869 /* Major versions must be the same */
870 if (reply.major != be32toh(msg.major)) {
871 DBG("Incompatible major versions ([relayd] %u vs [client] %u)",
872 reply.major, be32toh(msg.major));
873 ret = -1;
874 goto end;
875 }
876
877 conn->major = reply.major;
878 /* We adapt to the lowest compatible version */
879 if (reply.minor <= be32toh(msg.minor)) {
880 conn->minor = reply.minor;
881 } else {
882 conn->minor = be32toh(msg.minor);
883 }
884
885 if (be32toh(msg.type) == LTTNG_VIEWER_CLIENT_COMMAND) {
886 conn->type = RELAY_VIEWER_COMMAND;
887 } else if (be32toh(msg.type) == LTTNG_VIEWER_CLIENT_NOTIFICATION) {
888 conn->type = RELAY_VIEWER_NOTIFICATION;
889 } else {
890 ERR("Unknown connection type : %u", be32toh(msg.type));
891 ret = -1;
892 goto end;
893 }
894
895 reply.major = htobe32(reply.major);
896 reply.minor = htobe32(reply.minor);
897 if (conn->type == RELAY_VIEWER_COMMAND) {
898 /*
899 * Increment outside of htobe64 macro, because the argument can
900 * be used more than once within the macro, and thus the
901 * operation may be undefined.
902 */
903 pthread_mutex_lock(&last_relay_viewer_session_id_lock);
904 last_relay_viewer_session_id++;
905 pthread_mutex_unlock(&last_relay_viewer_session_id_lock);
906 reply.viewer_session_id = htobe64(last_relay_viewer_session_id);
907 }
908
909 health_code_update();
910
911 ret = send_response(conn->sock, &reply, sizeof(reply));
912 if (ret < 0) {
913 goto end;
914 }
915
916 health_code_update();
917
918 DBG("Version check done using protocol %u.%u", conn->major, conn->minor);
919 ret = 0;
920
921 end:
922 return ret;
923 }
924
925 /*
926 * Send the viewer the list of current sessions.
927 * We need to create a copy of the hash table content because otherwise
928 * we cannot assume the number of entries stays the same between getting
929 * the number of HT elements and iteration over the HT.
930 *
931 * Return 0 on success or else a negative value.
932 */
933 static
934 int viewer_list_sessions(struct relay_connection *conn)
935 {
936 int ret = 0;
937 struct lttng_viewer_list_sessions session_list;
938 struct lttng_ht_iter iter;
939 struct relay_session *session;
940 struct lttng_viewer_session *send_session_buf = NULL;
941 uint32_t buf_count = SESSION_BUF_DEFAULT_COUNT;
942 uint32_t count = 0;
943
944 DBG("List sessions received");
945
946 send_session_buf = zmalloc(SESSION_BUF_DEFAULT_COUNT * sizeof(*send_session_buf));
947 if (!send_session_buf) {
948 return -1;
949 }
950
951 rcu_read_lock();
952 cds_lfht_for_each_entry(sessions_ht->ht, &iter.iter, session,
953 session_n.node) {
954 struct lttng_viewer_session *send_session;
955
956 health_code_update();
957
958 pthread_mutex_lock(&session->lock);
959 if (session->connection_closed) {
960 /* Skip closed session */
961 goto next_session;
962 }
963 if (!session->current_trace_chunk) {
964 /*
965 * Skip un-attachable session. It is either
966 * being destroyed or has not had a trace
967 * chunk created against it yet.
968 */
969 goto next_session;
970 }
971
972 if (count >= buf_count) {
973 struct lttng_viewer_session *newbuf;
974 uint32_t new_buf_count = buf_count << 1;
975
976 newbuf = realloc(send_session_buf,
977 new_buf_count * sizeof(*send_session_buf));
978 if (!newbuf) {
979 ret = -1;
980 goto break_loop;
981 }
982 send_session_buf = newbuf;
983 buf_count = new_buf_count;
984 }
985 send_session = &send_session_buf[count];
986 if (lttng_strncpy(send_session->session_name,
987 session->session_name,
988 sizeof(send_session->session_name))) {
989 ret = -1;
990 goto break_loop;
991 }
992 if (lttng_strncpy(send_session->hostname, session->hostname,
993 sizeof(send_session->hostname))) {
994 ret = -1;
995 goto break_loop;
996 }
997 send_session->id = htobe64(session->id);
998 send_session->live_timer = htobe32(session->live_timer);
999 if (session->viewer_attached) {
1000 send_session->clients = htobe32(1);
1001 } else {
1002 send_session->clients = htobe32(0);
1003 }
1004 send_session->streams = htobe32(session->stream_count);
1005 count++;
1006 next_session:
1007 pthread_mutex_unlock(&session->lock);
1008 continue;
1009 break_loop:
1010 pthread_mutex_unlock(&session->lock);
1011 break;
1012 }
1013 rcu_read_unlock();
1014 if (ret < 0) {
1015 goto end_free;
1016 }
1017
1018 session_list.sessions_count = htobe32(count);
1019
1020 health_code_update();
1021
1022 ret = send_response(conn->sock, &session_list, sizeof(session_list));
1023 if (ret < 0) {
1024 goto end_free;
1025 }
1026
1027 health_code_update();
1028
1029 ret = send_response(conn->sock, send_session_buf,
1030 count * sizeof(*send_session_buf));
1031 if (ret < 0) {
1032 goto end_free;
1033 }
1034 health_code_update();
1035
1036 ret = 0;
1037 end_free:
1038 free(send_session_buf);
1039 return ret;
1040 }
1041
1042 /*
1043 * Send the viewer the list of current streams.
1044 */
1045 static
1046 int viewer_get_new_streams(struct relay_connection *conn)
1047 {
1048 int ret, send_streams = 0;
1049 uint32_t nb_created = 0, nb_unsent = 0, nb_streams = 0, nb_total = 0;
1050 struct lttng_viewer_new_streams_request request;
1051 struct lttng_viewer_new_streams_response response;
1052 struct relay_session *session = NULL;
1053 uint64_t session_id;
1054 bool closed = false;
1055
1056 assert(conn);
1057
1058 DBG("Get new streams received");
1059
1060 health_code_update();
1061
1062 /* Receive the request from the connected client. */
1063 ret = recv_request(conn->sock, &request, sizeof(request));
1064 if (ret < 0) {
1065 goto error;
1066 }
1067 session_id = be64toh(request.session_id);
1068
1069 health_code_update();
1070
1071 memset(&response, 0, sizeof(response));
1072
1073 session = session_get_by_id(session_id);
1074 if (!session) {
1075 DBG("Relay session %" PRIu64 " not found", session_id);
1076 response.status = htobe32(LTTNG_VIEWER_NEW_STREAMS_ERR);
1077 goto send_reply;
1078 }
1079
1080 if (!viewer_session_is_attached(conn->viewer_session, session)) {
1081 response.status = htobe32(LTTNG_VIEWER_NEW_STREAMS_ERR);
1082 goto send_reply;
1083 }
1084
1085 pthread_mutex_lock(&session->lock);
1086 ret = make_viewer_streams(session,
1087 conn->viewer_session->current_trace_chunk,
1088 LTTNG_VIEWER_SEEK_LAST, &nb_total, &nb_unsent,
1089 &nb_created, &closed);
1090 if (ret < 0) {
1091 goto error_unlock_session;
1092 }
1093 send_streams = 1;
1094 response.status = htobe32(LTTNG_VIEWER_NEW_STREAMS_OK);
1095
1096 /* Only send back the newly created streams with the unsent ones. */
1097 nb_streams = nb_created + nb_unsent;
1098 response.streams_count = htobe32(nb_streams);
1099
1100 /*
1101 * If the session is closed, HUP when there are no more streams
1102 * with data.
1103 */
1104 if (closed && nb_total == 0) {
1105 send_streams = 0;
1106 response.streams_count = 0;
1107 response.status = htobe32(LTTNG_VIEWER_NEW_STREAMS_HUP);
1108 goto send_reply_unlock;
1109 }
1110 send_reply_unlock:
1111 pthread_mutex_unlock(&session->lock);
1112
1113 send_reply:
1114 health_code_update();
1115 ret = send_response(conn->sock, &response, sizeof(response));
1116 if (ret < 0) {
1117 goto end_put_session;
1118 }
1119 health_code_update();
1120
1121 /*
1122 * Unknown or empty session, just return gracefully, the viewer
1123 * knows what is happening.
1124 */
1125 if (!send_streams || !nb_streams) {
1126 ret = 0;
1127 goto end_put_session;
1128 }
1129
1130 /*
1131 * Send stream and *DON'T* ignore the sent flag so every viewer
1132 * streams that were not sent from that point will be sent to
1133 * the viewer.
1134 */
1135 ret = send_viewer_streams(conn->sock, session_id, 0);
1136 if (ret < 0) {
1137 goto end_put_session;
1138 }
1139
1140 end_put_session:
1141 if (session) {
1142 session_put(session);
1143 }
1144 error:
1145 return ret;
1146 error_unlock_session:
1147 pthread_mutex_unlock(&session->lock);
1148 session_put(session);
1149 return ret;
1150 }
1151
1152 /*
1153 * Send the viewer the list of current sessions.
1154 */
1155 static
1156 int viewer_attach_session(struct relay_connection *conn)
1157 {
1158 int send_streams = 0;
1159 ssize_t ret;
1160 uint32_t nb_streams = 0;
1161 enum lttng_viewer_seek seek_type;
1162 struct lttng_viewer_attach_session_request request;
1163 struct lttng_viewer_attach_session_response response;
1164 struct relay_session *session = NULL;
1165 enum lttng_viewer_attach_return_code viewer_attach_status;
1166 bool closed = false;
1167 uint64_t session_id;
1168
1169 assert(conn);
1170
1171 health_code_update();
1172
1173 /* Receive the request from the connected client. */
1174 ret = recv_request(conn->sock, &request, sizeof(request));
1175 if (ret < 0) {
1176 goto error;
1177 }
1178
1179 session_id = be64toh(request.session_id);
1180 health_code_update();
1181
1182 memset(&response, 0, sizeof(response));
1183
1184 if (!conn->viewer_session) {
1185 DBG("Client trying to attach before creating a live viewer session");
1186 response.status = htobe32(LTTNG_VIEWER_ATTACH_NO_SESSION);
1187 goto send_reply;
1188 }
1189
1190 session = session_get_by_id(session_id);
1191 if (!session) {
1192 DBG("Relay session %" PRIu64 " not found", session_id);
1193 response.status = htobe32(LTTNG_VIEWER_ATTACH_UNK);
1194 goto send_reply;
1195 }
1196 DBG("Attach session ID %" PRIu64 " received", session_id);
1197
1198 pthread_mutex_lock(&session->lock);
1199 if (!session->current_trace_chunk) {
1200 /*
1201 * Session is either being destroyed or it never had a trace
1202 * chunk created against it.
1203 */
1204 DBG("Session requested by live client has no current trace chunk, returning unknown session");
1205 response.status = htobe32(LTTNG_VIEWER_ATTACH_UNK);
1206 goto send_reply;
1207 }
1208 if (session->live_timer == 0) {
1209 DBG("Not live session");
1210 response.status = htobe32(LTTNG_VIEWER_ATTACH_NOT_LIVE);
1211 goto send_reply;
1212 }
1213
1214 send_streams = 1;
1215 viewer_attach_status = viewer_session_attach(conn->viewer_session,
1216 session);
1217 if (viewer_attach_status != LTTNG_VIEWER_ATTACH_OK) {
1218 response.status = htobe32(viewer_attach_status);
1219 goto send_reply;
1220 }
1221
1222 switch (be32toh(request.seek)) {
1223 case LTTNG_VIEWER_SEEK_BEGINNING:
1224 case LTTNG_VIEWER_SEEK_LAST:
1225 response.status = htobe32(LTTNG_VIEWER_ATTACH_OK);
1226 seek_type = be32toh(request.seek);
1227 break;
1228 default:
1229 ERR("Wrong seek parameter");
1230 response.status = htobe32(LTTNG_VIEWER_ATTACH_SEEK_ERR);
1231 send_streams = 0;
1232 goto send_reply;
1233 }
1234
1235 ret = make_viewer_streams(session,
1236 conn->viewer_session->current_trace_chunk, seek_type,
1237 &nb_streams, NULL, NULL, &closed);
1238 if (ret < 0) {
1239 goto end_put_session;
1240 }
1241 pthread_mutex_unlock(&session->lock);
1242 session_put(session);
1243 session = NULL;
1244
1245 response.streams_count = htobe32(nb_streams);
1246 /*
1247 * If the session is closed when the viewer is attaching, it
1248 * means some of the streams may have been concurrently removed,
1249 * so we don't allow the viewer to attach, even if there are
1250 * streams available.
1251 */
1252 if (closed) {
1253 send_streams = 0;
1254 response.streams_count = 0;
1255 response.status = htobe32(LTTNG_VIEWER_ATTACH_UNK);
1256 goto send_reply;
1257 }
1258
1259 send_reply:
1260 health_code_update();
1261 ret = send_response(conn->sock, &response, sizeof(response));
1262 if (ret < 0) {
1263 goto end_put_session;
1264 }
1265 health_code_update();
1266
1267 /*
1268 * Unknown or empty session, just return gracefully, the viewer
1269 * knows what is happening.
1270 */
1271 if (!send_streams || !nb_streams) {
1272 ret = 0;
1273 goto end_put_session;
1274 }
1275
1276 /* Send stream and ignore the sent flag. */
1277 ret = send_viewer_streams(conn->sock, session_id, 1);
1278 if (ret < 0) {
1279 goto end_put_session;
1280 }
1281
1282 end_put_session:
1283 if (session) {
1284 pthread_mutex_unlock(&session->lock);
1285 session_put(session);
1286 }
1287 error:
1288 return ret;
1289 }
1290
1291 /*
1292 * Open the index file if needed for the given vstream.
1293 *
1294 * If an index file is successfully opened, the vstream will set it as its
1295 * current index file.
1296 *
1297 * Return 0 on success, a negative value on error (-ENOENT if not ready yet).
1298 *
1299 * Called with rstream lock held.
1300 */
1301 static int try_open_index(struct relay_viewer_stream *vstream,
1302 struct relay_stream *rstream)
1303 {
1304 int ret = 0;
1305 const uint32_t connection_major = rstream->trace->session->major;
1306 const uint32_t connection_minor = rstream->trace->session->minor;
1307 enum lttng_trace_chunk_status chunk_status;
1308
1309 if (vstream->index_file) {
1310 goto end;
1311 }
1312
1313 /*
1314 * First time, we open the index file and at least one index is ready.
1315 */
1316 if (rstream->index_received_seqcount == 0) {
1317 ret = -ENOENT;
1318 goto end;
1319 }
1320 chunk_status = lttng_index_file_create_from_trace_chunk_read_only(
1321 vstream->stream_file.trace_chunk, rstream->path_name,
1322 rstream->channel_name, rstream->tracefile_size,
1323 vstream->current_tracefile_id,
1324 lttng_to_index_major(connection_major, connection_minor),
1325 lttng_to_index_minor(connection_major, connection_minor),
1326 true, &vstream->index_file);
1327 if (chunk_status != LTTNG_TRACE_CHUNK_STATUS_OK) {
1328 if (chunk_status == LTTNG_TRACE_CHUNK_STATUS_NO_FILE) {
1329 ret = -ENOENT;
1330 } else {
1331 ret = -1;
1332 }
1333 }
1334
1335 end:
1336 return ret;
1337 }
1338
1339 /*
1340 * Check the status of the index for the given stream. This function
1341 * updates the index structure if needed and can put (close) the vstream
1342 * in the HUP situation.
1343 *
1344 * Return 0 means that we can proceed with the index. A value of 1 means
1345 * that the index has been updated and is ready to be sent to the
1346 * client. A negative value indicates an error that can't be handled.
1347 *
1348 * Called with rstream lock held.
1349 */
1350 static int check_index_status(struct relay_viewer_stream *vstream,
1351 struct relay_stream *rstream, struct ctf_trace *trace,
1352 struct lttng_viewer_index *index)
1353 {
1354 int ret;
1355
1356 DBG("Check index status: index_received_seqcount %" PRIu64 " "
1357 "index_sent_seqcount %" PRIu64 " "
1358 "for stream %" PRIu64,
1359 rstream->index_received_seqcount,
1360 vstream->index_sent_seqcount,
1361 vstream->stream->stream_handle);
1362 if ((trace->session->connection_closed || rstream->closed)
1363 && rstream->index_received_seqcount
1364 == vstream->index_sent_seqcount) {
1365 /*
1366 * Last index sent and session connection or relay
1367 * stream are closed.
1368 */
1369 index->status = htobe32(LTTNG_VIEWER_INDEX_HUP);
1370 goto hup;
1371 } else if (rstream->beacon_ts_end != -1ULL &&
1372 (rstream->index_received_seqcount == 0 ||
1373 (vstream->index_sent_seqcount != 0 &&
1374 rstream->index_received_seqcount
1375 <= vstream->index_sent_seqcount))) {
1376 /*
1377 * We've received a synchronization beacon and the last index
1378 * available has been sent, the index for now is inactive.
1379 *
1380 * In this case, we have received a beacon which allows us to
1381 * inform the client of a time interval during which we can
1382 * guarantee that there are no events to read (and never will
1383 * be).
1384 *
1385 * The sent seqcount can grow higher than receive seqcount on
1386 * clear because the rotation performed by clear will push
1387 * the index_sent_seqcount ahead (see
1388 * viewer_stream_sync_tracefile_array_tail) and skip over
1389 * packet sequence numbers.
1390 */
1391 index->status = htobe32(LTTNG_VIEWER_INDEX_INACTIVE);
1392 index->timestamp_end = htobe64(rstream->beacon_ts_end);
1393 index->stream_id = htobe64(rstream->ctf_stream_id);
1394 DBG("Check index status: inactive with beacon, for stream %" PRIu64,
1395 vstream->stream->stream_handle);
1396 goto index_ready;
1397 } else if (rstream->index_received_seqcount == 0 ||
1398 (vstream->index_sent_seqcount != 0 &&
1399 rstream->index_received_seqcount
1400 <= vstream->index_sent_seqcount)) {
1401 /*
1402 * This checks whether received <= sent seqcount. In
1403 * this case, we have not received a beacon. Therefore,
1404 * we can only ask the client to retry later.
1405 *
1406 * The sent seqcount can grow higher than receive seqcount on
1407 * clear because the rotation performed by clear will push
1408 * the index_sent_seqcount ahead (see
1409 * viewer_stream_sync_tracefile_array_tail) and skip over
1410 * packet sequence numbers.
1411 */
1412 index->status = htobe32(LTTNG_VIEWER_INDEX_RETRY);
1413 DBG("Check index status: retry for stream %" PRIu64,
1414 vstream->stream->stream_handle);
1415 goto index_ready;
1416 } else if (!tracefile_array_seq_in_file(rstream->tfa,
1417 vstream->current_tracefile_id,
1418 vstream->index_sent_seqcount)) {
1419 /*
1420 * The next index we want to send cannot be read either
1421 * because we need to perform a rotation, or due to
1422 * the producer having overwritten its trace file.
1423 */
1424 DBG("Viewer stream %" PRIu64 " rotation",
1425 vstream->stream->stream_handle);
1426 ret = viewer_stream_rotate(vstream);
1427 if (ret == 1) {
1428 /* EOF across entire stream. */
1429 index->status = htobe32(LTTNG_VIEWER_INDEX_HUP);
1430 goto hup;
1431 }
1432 /*
1433 * If we have been pushed due to overwrite, it
1434 * necessarily means there is data that can be read in
1435 * the stream. If we rotated because we reached the end
1436 * of a tracefile, it means the following tracefile
1437 * needs to contain at least one index, else we would
1438 * have already returned LTTNG_VIEWER_INDEX_RETRY to the
1439 * viewer. The updated index_sent_seqcount needs to
1440 * point to a readable index entry now.
1441 *
1442 * In the case where we "rotate" on a single file, we
1443 * can end up in a case where the requested index is
1444 * still unavailable.
1445 */
1446 if (rstream->tracefile_count == 1 &&
1447 !tracefile_array_seq_in_file(
1448 rstream->tfa,
1449 vstream->current_tracefile_id,
1450 vstream->index_sent_seqcount)) {
1451 index->status = htobe32(LTTNG_VIEWER_INDEX_RETRY);
1452 DBG("Check index status: retry: "
1453 "tracefile array sequence number %" PRIu64
1454 " not in file for stream %" PRIu64,
1455 vstream->index_sent_seqcount,
1456 vstream->stream->stream_handle);
1457 goto index_ready;
1458 }
1459 assert(tracefile_array_seq_in_file(rstream->tfa,
1460 vstream->current_tracefile_id,
1461 vstream->index_sent_seqcount));
1462 }
1463 /* ret == 0 means successful so we continue. */
1464 ret = 0;
1465 return ret;
1466
1467 hup:
1468 viewer_stream_put(vstream);
1469 index_ready:
1470 return 1;
1471 }
1472
1473 /*
1474 * Send the next index for a stream.
1475 *
1476 * Return 0 on success or else a negative value.
1477 */
1478 static
1479 int viewer_get_next_index(struct relay_connection *conn)
1480 {
1481 int ret;
1482 struct lttng_viewer_get_next_index request_index;
1483 struct lttng_viewer_index viewer_index;
1484 struct ctf_packet_index packet_index;
1485 struct relay_viewer_stream *vstream = NULL;
1486 struct relay_stream *rstream = NULL;
1487 struct ctf_trace *ctf_trace = NULL;
1488 struct relay_viewer_stream *metadata_viewer_stream = NULL;
1489
1490 assert(conn);
1491
1492 DBG("Viewer get next index");
1493
1494 memset(&viewer_index, 0, sizeof(viewer_index));
1495 health_code_update();
1496
1497 ret = recv_request(conn->sock, &request_index, sizeof(request_index));
1498 if (ret < 0) {
1499 goto end;
1500 }
1501 health_code_update();
1502
1503 vstream = viewer_stream_get_by_id(be64toh(request_index.stream_id));
1504 if (!vstream) {
1505 DBG("Client requested index of unknown stream id %" PRIu64,
1506 (uint64_t) be64toh(request_index.stream_id));
1507 viewer_index.status = htobe32(LTTNG_VIEWER_INDEX_ERR);
1508 goto send_reply;
1509 }
1510
1511 /* Use back. ref. Protected by refcounts. */
1512 rstream = vstream->stream;
1513 ctf_trace = rstream->trace;
1514
1515 /* metadata_viewer_stream may be NULL. */
1516 metadata_viewer_stream =
1517 ctf_trace_get_viewer_metadata_stream(ctf_trace);
1518
1519 pthread_mutex_lock(&rstream->lock);
1520
1521 /*
1522 * The viewer should not ask for index on metadata stream.
1523 */
1524 if (rstream->is_metadata) {
1525 viewer_index.status = htobe32(LTTNG_VIEWER_INDEX_HUP);
1526 goto send_reply;
1527 }
1528
1529 if (rstream->ongoing_rotation.is_set) {
1530 /* Rotation is ongoing, try again later. */
1531 viewer_index.status = htobe32(LTTNG_VIEWER_INDEX_RETRY);
1532 goto send_reply;
1533 }
1534
1535 if (rstream->trace->session->ongoing_rotation) {
1536 /* Rotation is ongoing, try again later. */
1537 viewer_index.status = htobe32(LTTNG_VIEWER_INDEX_RETRY);
1538 goto send_reply;
1539 }
1540
1541 if (rstream->trace_chunk) {
1542 uint64_t rchunk_id, vchunk_id;
1543
1544 /*
1545 * If the relay stream is not yet closed, ensure the viewer
1546 * chunk matches the relay chunk after clear.
1547 */
1548 if (lttng_trace_chunk_get_id(rstream->trace_chunk,
1549 &rchunk_id) != LTTNG_TRACE_CHUNK_STATUS_OK) {
1550 viewer_index.status = htobe32(LTTNG_VIEWER_INDEX_ERR);
1551 goto send_reply;
1552 }
1553 if (lttng_trace_chunk_get_id(
1554 conn->viewer_session->current_trace_chunk,
1555 &vchunk_id) != LTTNG_TRACE_CHUNK_STATUS_OK) {
1556 viewer_index.status = htobe32(LTTNG_VIEWER_INDEX_ERR);
1557 goto send_reply;
1558 }
1559
1560 if (rchunk_id != vchunk_id) {
1561 DBG("Relay and viewer chunk ids differ: "
1562 "rchunk_id %" PRIu64 " vchunk_id %" PRIu64,
1563 rchunk_id, vchunk_id);
1564
1565 lttng_trace_chunk_put(
1566 conn->viewer_session->current_trace_chunk);
1567 conn->viewer_session->current_trace_chunk = NULL;
1568 ret = viewer_session_set_trace_chunk_copy(
1569 conn->viewer_session,
1570 rstream->trace_chunk);
1571 if (ret) {
1572 viewer_index.status =
1573 htobe32(LTTNG_VIEWER_INDEX_ERR);
1574 goto send_reply;
1575 }
1576 }
1577 }
1578 if (conn->viewer_session->current_trace_chunk !=
1579 vstream->stream_file.trace_chunk) {
1580 bool acquired_reference;
1581
1582 DBG("Viewer session and viewer stream chunk differ: "
1583 "vsession chunk %p vstream chunk %p",
1584 conn->viewer_session->current_trace_chunk,
1585 vstream->stream_file.trace_chunk);
1586 lttng_trace_chunk_put(vstream->stream_file.trace_chunk);
1587 acquired_reference = lttng_trace_chunk_get(conn->viewer_session->current_trace_chunk);
1588 assert(acquired_reference);
1589 vstream->stream_file.trace_chunk =
1590 conn->viewer_session->current_trace_chunk;
1591 viewer_stream_sync_tracefile_array_tail(vstream);
1592 viewer_stream_close_files(vstream);
1593 }
1594
1595 ret = check_index_status(vstream, rstream, ctf_trace, &viewer_index);
1596 if (ret < 0) {
1597 goto error_put;
1598 } else if (ret == 1) {
1599 /*
1600 * We have no index to send and check_index_status has populated
1601 * viewer_index's status.
1602 */
1603 goto send_reply;
1604 }
1605 /* At this point, ret is 0 thus we will be able to read the index. */
1606 assert(!ret);
1607
1608 /* Try to open an index if one is needed for that stream. */
1609 ret = try_open_index(vstream, rstream);
1610 if (ret == -ENOENT) {
1611 if (rstream->closed) {
1612 viewer_index.status = htobe32(LTTNG_VIEWER_INDEX_HUP);
1613 goto send_reply;
1614 } else {
1615 viewer_index.status = htobe32(LTTNG_VIEWER_INDEX_RETRY);
1616 goto send_reply;
1617 }
1618 }
1619 if (ret < 0) {
1620 viewer_index.status = htobe32(LTTNG_VIEWER_INDEX_ERR);
1621 goto send_reply;
1622 }
1623
1624 /*
1625 * vstream->stream_fd may be NULL if it has been closed by
1626 * tracefile rotation, or if we are at the beginning of the
1627 * stream. We open the data stream file here to protect against
1628 * overwrite caused by tracefile rotation (in association with
1629 * unlink performed before overwrite).
1630 */
1631 if (!vstream->stream_file.handle) {
1632 char file_path[LTTNG_PATH_MAX];
1633 enum lttng_trace_chunk_status status;
1634 struct fs_handle *fs_handle;
1635
1636 ret = utils_stream_file_path(rstream->path_name,
1637 rstream->channel_name, rstream->tracefile_size,
1638 vstream->current_tracefile_id, NULL, file_path,
1639 sizeof(file_path));
1640 if (ret < 0) {
1641 goto error_put;
1642 }
1643
1644 /*
1645 * It is possible the the file we are trying to open is
1646 * missing if the stream has been closed (application exits with
1647 * per-pid buffers) and a clear command has been performed.
1648 */
1649 status = lttng_trace_chunk_open_fs_handle(
1650 vstream->stream_file.trace_chunk,
1651 file_path, O_RDONLY, 0, &fs_handle, true);
1652 if (status != LTTNG_TRACE_CHUNK_STATUS_OK) {
1653 if (status == LTTNG_TRACE_CHUNK_STATUS_NO_FILE &&
1654 rstream->closed) {
1655 viewer_index.status = htobe32(LTTNG_VIEWER_INDEX_HUP);
1656 goto send_reply;
1657 }
1658 PERROR("Failed to open trace file for viewer stream");
1659 goto error_put;
1660 }
1661 vstream->stream_file.handle = fs_handle;
1662 }
1663
1664 ret = check_new_streams(conn);
1665 if (ret < 0) {
1666 viewer_index.status = htobe32(LTTNG_VIEWER_INDEX_ERR);
1667 goto send_reply;
1668 } else if (ret == 1) {
1669 viewer_index.flags |= LTTNG_VIEWER_FLAG_NEW_STREAM;
1670 }
1671
1672 ret = lttng_index_file_read(vstream->index_file, &packet_index);
1673 if (ret) {
1674 ERR("Relay error reading index file");
1675 viewer_index.status = htobe32(LTTNG_VIEWER_INDEX_ERR);
1676 goto send_reply;
1677 } else {
1678 viewer_index.status = htobe32(LTTNG_VIEWER_INDEX_OK);
1679 vstream->index_sent_seqcount++;
1680 }
1681
1682 /*
1683 * Indexes are stored in big endian, no need to switch before sending.
1684 */
1685 DBG("Sending viewer index for stream %" PRIu64 " offset %" PRIu64,
1686 rstream->stream_handle,
1687 (uint64_t) be64toh(packet_index.offset));
1688 viewer_index.offset = packet_index.offset;
1689 viewer_index.packet_size = packet_index.packet_size;
1690 viewer_index.content_size = packet_index.content_size;
1691 viewer_index.timestamp_begin = packet_index.timestamp_begin;
1692 viewer_index.timestamp_end = packet_index.timestamp_end;
1693 viewer_index.events_discarded = packet_index.events_discarded;
1694 viewer_index.stream_id = packet_index.stream_id;
1695
1696 send_reply:
1697 if (rstream) {
1698 pthread_mutex_unlock(&rstream->lock);
1699 }
1700
1701 if (metadata_viewer_stream) {
1702 pthread_mutex_lock(&metadata_viewer_stream->stream->lock);
1703 DBG("get next index metadata check: recv %" PRIu64
1704 " sent %" PRIu64,
1705 metadata_viewer_stream->stream->metadata_received,
1706 metadata_viewer_stream->metadata_sent);
1707 if (!metadata_viewer_stream->stream->metadata_received ||
1708 metadata_viewer_stream->stream->metadata_received >
1709 metadata_viewer_stream->metadata_sent) {
1710 viewer_index.flags |= LTTNG_VIEWER_FLAG_NEW_METADATA;
1711 }
1712 pthread_mutex_unlock(&metadata_viewer_stream->stream->lock);
1713 }
1714
1715 viewer_index.flags = htobe32(viewer_index.flags);
1716 health_code_update();
1717
1718 ret = send_response(conn->sock, &viewer_index, sizeof(viewer_index));
1719 if (ret < 0) {
1720 goto end;
1721 }
1722 health_code_update();
1723
1724 if (vstream) {
1725 DBG("Index %" PRIu64 " for stream %" PRIu64 " sent",
1726 vstream->index_sent_seqcount,
1727 vstream->stream->stream_handle);
1728 }
1729 end:
1730 if (metadata_viewer_stream) {
1731 viewer_stream_put(metadata_viewer_stream);
1732 }
1733 if (vstream) {
1734 viewer_stream_put(vstream);
1735 }
1736 return ret;
1737
1738 error_put:
1739 pthread_mutex_unlock(&rstream->lock);
1740 if (metadata_viewer_stream) {
1741 viewer_stream_put(metadata_viewer_stream);
1742 }
1743 viewer_stream_put(vstream);
1744 return ret;
1745 }
1746
1747 /*
1748 * Send the next index for a stream
1749 *
1750 * Return 0 on success or else a negative value.
1751 */
1752 static
1753 int viewer_get_packet(struct relay_connection *conn)
1754 {
1755 int ret;
1756 off_t lseek_ret;
1757 char *reply = NULL;
1758 struct lttng_viewer_get_packet get_packet_info;
1759 struct lttng_viewer_trace_packet reply_header;
1760 struct relay_viewer_stream *vstream = NULL;
1761 uint32_t reply_size = sizeof(reply_header);
1762 uint32_t packet_data_len = 0;
1763 ssize_t read_len;
1764 uint64_t stream_id;
1765
1766 DBG2("Relay get data packet");
1767
1768 health_code_update();
1769
1770 ret = recv_request(conn->sock, &get_packet_info,
1771 sizeof(get_packet_info));
1772 if (ret < 0) {
1773 goto end;
1774 }
1775 health_code_update();
1776
1777 /* From this point on, the error label can be reached. */
1778 memset(&reply_header, 0, sizeof(reply_header));
1779 stream_id = (uint64_t) be64toh(get_packet_info.stream_id);
1780
1781 vstream = viewer_stream_get_by_id(stream_id);
1782 if (!vstream) {
1783 DBG("Client requested packet of unknown stream id %" PRIu64,
1784 stream_id);
1785 reply_header.status = htobe32(LTTNG_VIEWER_GET_PACKET_ERR);
1786 goto send_reply_nolock;
1787 } else {
1788 packet_data_len = be32toh(get_packet_info.len);
1789 reply_size += packet_data_len;
1790 }
1791
1792 reply = zmalloc(reply_size);
1793 if (!reply) {
1794 PERROR("packet reply zmalloc");
1795 reply_size = sizeof(reply_header);
1796 goto error;
1797 }
1798
1799 pthread_mutex_lock(&vstream->stream->lock);
1800 lseek_ret = fs_handle_seek(vstream->stream_file.handle,
1801 be64toh(get_packet_info.offset), SEEK_SET);
1802 if (lseek_ret < 0) {
1803 PERROR("Failed to seek file system handle of viewer stream %" PRIu64
1804 " to offset %" PRIu64,
1805 stream_id,
1806 (uint64_t) be64toh(get_packet_info.offset));
1807 goto error;
1808 }
1809 read_len = fs_handle_read(vstream->stream_file.handle,
1810 reply + sizeof(reply_header), packet_data_len);
1811 if (read_len < packet_data_len) {
1812 PERROR("Failed to read from file system handle of viewer stream id %" PRIu64
1813 ", offset: %" PRIu64,
1814 stream_id,
1815 (uint64_t) be64toh(get_packet_info.offset));
1816 goto error;
1817 }
1818 reply_header.status = htobe32(LTTNG_VIEWER_GET_PACKET_OK);
1819 reply_header.len = htobe32(packet_data_len);
1820 goto send_reply;
1821
1822 error:
1823 reply_header.status = htobe32(LTTNG_VIEWER_GET_PACKET_ERR);
1824
1825 send_reply:
1826 if (vstream) {
1827 pthread_mutex_unlock(&vstream->stream->lock);
1828 }
1829 send_reply_nolock:
1830
1831 health_code_update();
1832
1833 if (reply) {
1834 memcpy(reply, &reply_header, sizeof(reply_header));
1835 ret = send_response(conn->sock, reply, reply_size);
1836 } else {
1837 /* No reply to send. */
1838 ret = send_response(conn->sock, &reply_header,
1839 reply_size);
1840 }
1841
1842 health_code_update();
1843 if (ret < 0) {
1844 PERROR("sendmsg of packet data failed");
1845 goto end_free;
1846 }
1847
1848 DBG("Sent %u bytes for stream %" PRIu64, reply_size, stream_id);
1849
1850 end_free:
1851 free(reply);
1852 end:
1853 if (vstream) {
1854 viewer_stream_put(vstream);
1855 }
1856 return ret;
1857 }
1858
1859 /*
1860 * Send the session's metadata
1861 *
1862 * Return 0 on success else a negative value.
1863 */
1864 static
1865 int viewer_get_metadata(struct relay_connection *conn)
1866 {
1867 int ret = 0;
1868 int fd = -1;
1869 ssize_t read_len;
1870 uint64_t len = 0;
1871 char *data = NULL;
1872 struct lttng_viewer_get_metadata request;
1873 struct lttng_viewer_metadata_packet reply;
1874 struct relay_viewer_stream *vstream = NULL;
1875
1876 assert(conn);
1877
1878 DBG("Relay get metadata");
1879
1880 health_code_update();
1881
1882 ret = recv_request(conn->sock, &request, sizeof(request));
1883 if (ret < 0) {
1884 goto end;
1885 }
1886 health_code_update();
1887
1888 memset(&reply, 0, sizeof(reply));
1889
1890 vstream = viewer_stream_get_by_id(be64toh(request.stream_id));
1891 if (!vstream) {
1892 /*
1893 * The metadata stream can be closed by a CLOSE command
1894 * just before we attach. It can also be closed by
1895 * per-pid tracing during tracing. Therefore, it is
1896 * possible that we cannot find this viewer stream.
1897 * Reply back to the client with an error if we cannot
1898 * find it.
1899 */
1900 DBG("Client requested metadata of unknown stream id %" PRIu64,
1901 (uint64_t) be64toh(request.stream_id));
1902 reply.status = htobe32(LTTNG_VIEWER_METADATA_ERR);
1903 goto send_reply;
1904 }
1905 pthread_mutex_lock(&vstream->stream->lock);
1906 if (!vstream->stream->is_metadata) {
1907 ERR("Invalid metadata stream");
1908 goto error;
1909 }
1910
1911 if (vstream->metadata_sent >= vstream->stream->metadata_received) {
1912 /*
1913 * The live viewers expect to receive a NO_NEW_METADATA
1914 * status before a stream disappears, otherwise they abort the
1915 * entire live connection when receiving an error status.
1916 *
1917 * Clear feature resets the metadata_sent to 0 until the
1918 * same metadata is received again.
1919 */
1920 reply.status = htobe32(LTTNG_VIEWER_NO_NEW_METADATA);
1921 /*
1922 * The live viewer considers a closed 0 byte metadata stream as
1923 * an error.
1924 */
1925 if (vstream->metadata_sent > 0) {
1926 vstream->stream->no_new_metadata_notified = true;
1927 if (vstream->stream->closed) {
1928 /* Release ownership for the viewer metadata stream. */
1929 viewer_stream_put(vstream);
1930 }
1931 }
1932 goto send_reply;
1933 }
1934
1935 len = vstream->stream->metadata_received - vstream->metadata_sent;
1936
1937 /* first time, we open the metadata file */
1938 if (!vstream->stream_file.handle) {
1939 struct fs_handle *fs_handle;
1940 char file_path[LTTNG_PATH_MAX];
1941 enum lttng_trace_chunk_status status;
1942 struct relay_stream *rstream = vstream->stream;
1943
1944 ret = utils_stream_file_path(rstream->path_name,
1945 rstream->channel_name, rstream->tracefile_size,
1946 vstream->current_tracefile_id, NULL, file_path,
1947 sizeof(file_path));
1948 if (ret < 0) {
1949 goto error;
1950 }
1951
1952 /*
1953 * It is possible the the metadata file we are trying to open is
1954 * missing if the stream has been closed (application exits with
1955 * per-pid buffers) and a clear command has been performed.
1956 */
1957 status = lttng_trace_chunk_open_fs_handle(
1958 vstream->stream_file.trace_chunk,
1959 file_path, O_RDONLY, 0, &fs_handle, true);
1960 if (status != LTTNG_TRACE_CHUNK_STATUS_OK) {
1961 if (status == LTTNG_TRACE_CHUNK_STATUS_NO_FILE) {
1962 reply.status = htobe32(LTTNG_VIEWER_NO_NEW_METADATA);
1963 len = 0;
1964 if (vstream->stream->closed) {
1965 viewer_stream_put(vstream);
1966 }
1967 goto send_reply;
1968 }
1969 PERROR("Failed to open metadata file for viewer stream");
1970 goto error;
1971 }
1972 vstream->stream_file.handle = fs_handle;
1973 }
1974
1975 reply.len = htobe64(len);
1976 data = zmalloc(len);
1977 if (!data) {
1978 PERROR("viewer metadata zmalloc");
1979 goto error;
1980 }
1981
1982 fd = fs_handle_get_fd(vstream->stream_file.handle);
1983 if (fd < 0) {
1984 ERR("Failed to restore viewer stream file system handle");
1985 goto error;
1986 }
1987 read_len = lttng_read(fd, data, len);
1988 fs_handle_put_fd(vstream->stream_file.handle);
1989 fd = -1;
1990 if (read_len < len) {
1991 PERROR("Relay reading metadata file");
1992 goto error;
1993 }
1994 vstream->metadata_sent += read_len;
1995 reply.status = htobe32(LTTNG_VIEWER_METADATA_OK);
1996
1997 goto send_reply;
1998
1999 error:
2000 reply.status = htobe32(LTTNG_VIEWER_METADATA_ERR);
2001
2002 send_reply:
2003 health_code_update();
2004 if (vstream) {
2005 pthread_mutex_unlock(&vstream->stream->lock);
2006 }
2007 ret = send_response(conn->sock, &reply, sizeof(reply));
2008 if (ret < 0) {
2009 goto end_free;
2010 }
2011 health_code_update();
2012
2013 if (len > 0) {
2014 ret = send_response(conn->sock, data, len);
2015 if (ret < 0) {
2016 goto end_free;
2017 }
2018 }
2019
2020 DBG("Sent %" PRIu64 " bytes of metadata for stream %" PRIu64, len,
2021 (uint64_t) be64toh(request.stream_id));
2022
2023 DBG("Metadata sent");
2024
2025 end_free:
2026 free(data);
2027 end:
2028 if (vstream) {
2029 viewer_stream_put(vstream);
2030 }
2031 return ret;
2032 }
2033
2034 /*
2035 * Create a viewer session.
2036 *
2037 * Return 0 on success or else a negative value.
2038 */
2039 static
2040 int viewer_create_session(struct relay_connection *conn)
2041 {
2042 int ret;
2043 struct lttng_viewer_create_session_response resp;
2044
2045 DBG("Viewer create session received");
2046
2047 memset(&resp, 0, sizeof(resp));
2048 resp.status = htobe32(LTTNG_VIEWER_CREATE_SESSION_OK);
2049 conn->viewer_session = viewer_session_create();
2050 if (!conn->viewer_session) {
2051 ERR("Allocation viewer session");
2052 resp.status = htobe32(LTTNG_VIEWER_CREATE_SESSION_ERR);
2053 goto send_reply;
2054 }
2055
2056 send_reply:
2057 health_code_update();
2058 ret = send_response(conn->sock, &resp, sizeof(resp));
2059 if (ret < 0) {
2060 goto end;
2061 }
2062 health_code_update();
2063 ret = 0;
2064
2065 end:
2066 return ret;
2067 }
2068
2069 /*
2070 * Detach a viewer session.
2071 *
2072 * Return 0 on success or else a negative value.
2073 */
2074 static
2075 int viewer_detach_session(struct relay_connection *conn)
2076 {
2077 int ret;
2078 struct lttng_viewer_detach_session_response response;
2079 struct lttng_viewer_detach_session_request request;
2080 struct relay_session *session = NULL;
2081 uint64_t viewer_session_to_close;
2082
2083 DBG("Viewer detach session received");
2084
2085 assert(conn);
2086
2087 health_code_update();
2088
2089 /* Receive the request from the connected client. */
2090 ret = recv_request(conn->sock, &request, sizeof(request));
2091 if (ret < 0) {
2092 goto end;
2093 }
2094 viewer_session_to_close = be64toh(request.session_id);
2095
2096 if (!conn->viewer_session) {
2097 DBG("Client trying to detach before creating a live viewer session");
2098 response.status = htobe32(LTTNG_VIEWER_DETACH_SESSION_ERR);
2099 goto send_reply;
2100 }
2101
2102 health_code_update();
2103
2104 memset(&response, 0, sizeof(response));
2105 DBG("Detaching from session ID %" PRIu64, viewer_session_to_close);
2106
2107 session = session_get_by_id(be64toh(request.session_id));
2108 if (!session) {
2109 DBG("Relay session %" PRIu64 " not found",
2110 (uint64_t) be64toh(request.session_id));
2111 response.status = htobe32(LTTNG_VIEWER_DETACH_SESSION_UNK);
2112 goto send_reply;
2113 }
2114
2115 ret = viewer_session_is_attached(conn->viewer_session, session);
2116 if (ret != 1) {
2117 DBG("Not attached to this session");
2118 response.status = htobe32(LTTNG_VIEWER_DETACH_SESSION_ERR);
2119 goto send_reply_put;
2120 }
2121
2122 viewer_session_close_one_session(conn->viewer_session, session);
2123 response.status = htobe32(LTTNG_VIEWER_DETACH_SESSION_OK);
2124 DBG("Session %" PRIu64 " detached.", viewer_session_to_close);
2125
2126 send_reply_put:
2127 session_put(session);
2128
2129 send_reply:
2130 health_code_update();
2131 ret = send_response(conn->sock, &response, sizeof(response));
2132 if (ret < 0) {
2133 goto end;
2134 }
2135 health_code_update();
2136 ret = 0;
2137
2138 end:
2139 return ret;
2140 }
2141
2142 /*
2143 * live_relay_unknown_command: send -1 if received unknown command
2144 */
2145 static
2146 void live_relay_unknown_command(struct relay_connection *conn)
2147 {
2148 struct lttcomm_relayd_generic_reply reply;
2149
2150 memset(&reply, 0, sizeof(reply));
2151 reply.ret_code = htobe32(LTTNG_ERR_UNK);
2152 (void) send_response(conn->sock, &reply, sizeof(reply));
2153 }
2154
2155 /*
2156 * Process the commands received on the control socket
2157 */
2158 static
2159 int process_control(struct lttng_viewer_cmd *recv_hdr,
2160 struct relay_connection *conn)
2161 {
2162 int ret = 0;
2163 uint32_t msg_value;
2164
2165 msg_value = be32toh(recv_hdr->cmd);
2166
2167 /*
2168 * Make sure we've done the version check before any command other then a
2169 * new client connection.
2170 */
2171 if (msg_value != LTTNG_VIEWER_CONNECT && !conn->version_check_done) {
2172 ERR("Viewer conn value %" PRIu32 " before version check", msg_value);
2173 ret = -1;
2174 goto end;
2175 }
2176
2177 switch (msg_value) {
2178 case LTTNG_VIEWER_CONNECT:
2179 ret = viewer_connect(conn);
2180 break;
2181 case LTTNG_VIEWER_LIST_SESSIONS:
2182 ret = viewer_list_sessions(conn);
2183 break;
2184 case LTTNG_VIEWER_ATTACH_SESSION:
2185 ret = viewer_attach_session(conn);
2186 break;
2187 case LTTNG_VIEWER_GET_NEXT_INDEX:
2188 ret = viewer_get_next_index(conn);
2189 break;
2190 case LTTNG_VIEWER_GET_PACKET:
2191 ret = viewer_get_packet(conn);
2192 break;
2193 case LTTNG_VIEWER_GET_METADATA:
2194 ret = viewer_get_metadata(conn);
2195 break;
2196 case LTTNG_VIEWER_GET_NEW_STREAMS:
2197 ret = viewer_get_new_streams(conn);
2198 break;
2199 case LTTNG_VIEWER_CREATE_SESSION:
2200 ret = viewer_create_session(conn);
2201 break;
2202 case LTTNG_VIEWER_DETACH_SESSION:
2203 ret = viewer_detach_session(conn);
2204 break;
2205 default:
2206 ERR("Received unknown viewer command (%u)",
2207 be32toh(recv_hdr->cmd));
2208 live_relay_unknown_command(conn);
2209 ret = -1;
2210 goto end;
2211 }
2212
2213 end:
2214 return ret;
2215 }
2216
2217 static
2218 void cleanup_connection_pollfd(struct lttng_poll_event *events, int pollfd)
2219 {
2220 int ret;
2221
2222 (void) lttng_poll_del(events, pollfd);
2223
2224 ret = fd_tracker_close_unsuspendable_fd(the_fd_tracker, &pollfd, 1,
2225 fd_tracker_util_close_fd, NULL);
2226 if (ret < 0) {
2227 ERR("Closing pollfd %d", pollfd);
2228 }
2229 }
2230
2231 /*
2232 * This thread does the actual work
2233 */
2234 static
2235 void *thread_worker(void *data)
2236 {
2237 int ret, err = -1;
2238 uint32_t nb_fd;
2239 struct lttng_poll_event events;
2240 struct lttng_ht *viewer_connections_ht;
2241 struct lttng_ht_iter iter;
2242 struct lttng_viewer_cmd recv_hdr;
2243 struct relay_connection *destroy_conn;
2244
2245 DBG("[thread] Live viewer relay worker started");
2246
2247 rcu_register_thread();
2248
2249 health_register(health_relayd, HEALTH_RELAYD_TYPE_LIVE_WORKER);
2250
2251 if (testpoint(relayd_thread_live_worker)) {
2252 goto error_testpoint;
2253 }
2254
2255 /* table of connections indexed on socket */
2256 viewer_connections_ht = lttng_ht_new(0, LTTNG_HT_TYPE_ULONG);
2257 if (!viewer_connections_ht) {
2258 goto viewer_connections_ht_error;
2259 }
2260
2261 ret = create_named_thread_poll_set(&events, 2,
2262 "Live viewer worker thread epoll");
2263 if (ret < 0) {
2264 goto error_poll_create;
2265 }
2266
2267 ret = lttng_poll_add(&events, live_conn_pipe[0], LPOLLIN | LPOLLRDHUP);
2268 if (ret < 0) {
2269 goto error;
2270 }
2271
2272 restart:
2273 while (1) {
2274 int i;
2275
2276 health_code_update();
2277
2278 /* Infinite blocking call, waiting for transmission */
2279 DBG3("Relayd live viewer worker thread polling...");
2280 health_poll_entry();
2281 ret = lttng_poll_wait(&events, -1);
2282 health_poll_exit();
2283 if (ret < 0) {
2284 /*
2285 * Restart interrupted system call.
2286 */
2287 if (errno == EINTR) {
2288 goto restart;
2289 }
2290 goto error;
2291 }
2292
2293 nb_fd = ret;
2294
2295 /*
2296 * Process control. The control connection is prioritised so we don't
2297 * starve it with high throughput tracing data on the data
2298 * connection.
2299 */
2300 for (i = 0; i < nb_fd; i++) {
2301 /* Fetch once the poll data */
2302 uint32_t revents = LTTNG_POLL_GETEV(&events, i);
2303 int pollfd = LTTNG_POLL_GETFD(&events, i);
2304
2305 health_code_update();
2306
2307 /* Thread quit pipe has been closed. Killing thread. */
2308 ret = check_thread_quit_pipe(pollfd, revents);
2309 if (ret) {
2310 err = 0;
2311 goto exit;
2312 }
2313
2314 /* Inspect the relay conn pipe for new connection. */
2315 if (pollfd == live_conn_pipe[0]) {
2316 if (revents & LPOLLIN) {
2317 struct relay_connection *conn;
2318
2319 ret = lttng_read(live_conn_pipe[0],
2320 &conn, sizeof(conn));
2321 if (ret < 0) {
2322 goto error;
2323 }
2324 ret = lttng_poll_add(&events,
2325 conn->sock->fd,
2326 LPOLLIN | LPOLLRDHUP);
2327 if (ret) {
2328 ERR("Failed to add new live connection file descriptor to poll set");
2329 goto error;
2330 }
2331 connection_ht_add(viewer_connections_ht, conn);
2332 DBG("Connection socket %d added to poll", conn->sock->fd);
2333 } else if (revents & (LPOLLERR | LPOLLHUP | LPOLLRDHUP)) {
2334 ERR("Relay live pipe error");
2335 goto error;
2336 } else {
2337 ERR("Unexpected poll events %u for sock %d", revents, pollfd);
2338 goto error;
2339 }
2340 } else {
2341 /* Connection activity. */
2342 struct relay_connection *conn;
2343
2344 conn = connection_get_by_sock(viewer_connections_ht, pollfd);
2345 if (!conn) {
2346 continue;
2347 }
2348
2349 if (revents & LPOLLIN) {
2350 ret = conn->sock->ops->recvmsg(conn->sock, &recv_hdr,
2351 sizeof(recv_hdr), 0);
2352 if (ret <= 0) {
2353 /* Connection closed. */
2354 cleanup_connection_pollfd(&events, pollfd);
2355 /* Put "create" ownership reference. */
2356 connection_put(conn);
2357 DBG("Viewer control conn closed with %d", pollfd);
2358 } else {
2359 ret = process_control(&recv_hdr, conn);
2360 if (ret < 0) {
2361 /* Clear the session on error. */
2362 cleanup_connection_pollfd(&events, pollfd);
2363 /* Put "create" ownership reference. */
2364 connection_put(conn);
2365 DBG("Viewer connection closed with %d", pollfd);
2366 }
2367 }
2368 } else if (revents & (LPOLLERR | LPOLLHUP | LPOLLRDHUP)) {
2369 cleanup_connection_pollfd(&events, pollfd);
2370 /* Put "create" ownership reference. */
2371 connection_put(conn);
2372 } else {
2373 ERR("Unexpected poll events %u for sock %d", revents, pollfd);
2374 connection_put(conn);
2375 goto error;
2376 }
2377 /* Put local "get_by_sock" reference. */
2378 connection_put(conn);
2379 }
2380 }
2381 }
2382
2383 exit:
2384 error:
2385 (void) fd_tracker_util_poll_clean(the_fd_tracker, &events);
2386
2387 /* Cleanup remaining connection object. */
2388 rcu_read_lock();
2389 cds_lfht_for_each_entry(viewer_connections_ht->ht, &iter.iter,
2390 destroy_conn,
2391 sock_n.node) {
2392 health_code_update();
2393 connection_put(destroy_conn);
2394 }
2395 rcu_read_unlock();
2396 error_poll_create:
2397 lttng_ht_destroy(viewer_connections_ht);
2398 viewer_connections_ht_error:
2399 /* Close relay conn pipes */
2400 (void) fd_tracker_util_pipe_close(the_fd_tracker, live_conn_pipe);
2401 if (err) {
2402 DBG("Viewer worker thread exited with error");
2403 }
2404 DBG("Viewer worker thread cleanup complete");
2405 error_testpoint:
2406 if (err) {
2407 health_error();
2408 ERR("Health error occurred in %s", __func__);
2409 }
2410 health_unregister(health_relayd);
2411 if (lttng_relay_stop_threads()) {
2412 ERR("Error stopping threads");
2413 }
2414 rcu_unregister_thread();
2415 return NULL;
2416 }
2417
2418 /*
2419 * Create the relay command pipe to wake thread_manage_apps.
2420 * Closed in cleanup().
2421 */
2422 static int create_conn_pipe(void)
2423 {
2424 return fd_tracker_util_pipe_open_cloexec(the_fd_tracker,
2425 "Live connection pipe", live_conn_pipe);
2426 }
2427
2428 int relayd_live_join(void)
2429 {
2430 int ret, retval = 0;
2431 void *status;
2432
2433 ret = pthread_join(live_listener_thread, &status);
2434 if (ret) {
2435 errno = ret;
2436 PERROR("pthread_join live listener");
2437 retval = -1;
2438 }
2439
2440 ret = pthread_join(live_worker_thread, &status);
2441 if (ret) {
2442 errno = ret;
2443 PERROR("pthread_join live worker");
2444 retval = -1;
2445 }
2446
2447 ret = pthread_join(live_dispatcher_thread, &status);
2448 if (ret) {
2449 errno = ret;
2450 PERROR("pthread_join live dispatcher");
2451 retval = -1;
2452 }
2453
2454 cleanup_relayd_live();
2455
2456 return retval;
2457 }
2458
2459 /*
2460 * main
2461 */
2462 int relayd_live_create(struct lttng_uri *uri)
2463 {
2464 int ret = 0, retval = 0;
2465 void *status;
2466 int is_root;
2467
2468 if (!uri) {
2469 retval = -1;
2470 goto exit_init_data;
2471 }
2472 live_uri = uri;
2473
2474 /* Check if daemon is UID = 0 */
2475 is_root = !getuid();
2476
2477 if (!is_root) {
2478 if (live_uri->port < 1024) {
2479 ERR("Need to be root to use ports < 1024");
2480 retval = -1;
2481 goto exit_init_data;
2482 }
2483 }
2484
2485 /* Setup the thread apps communication pipe. */
2486 if (create_conn_pipe()) {
2487 retval = -1;
2488 goto exit_init_data;
2489 }
2490
2491 /* Init relay command queue. */
2492 cds_wfcq_init(&viewer_conn_queue.head, &viewer_conn_queue.tail);
2493
2494 /* Set up max poll set size */
2495 if (lttng_poll_set_max_size()) {
2496 retval = -1;
2497 goto exit_init_data;
2498 }
2499
2500 /* Setup the dispatcher thread */
2501 ret = pthread_create(&live_dispatcher_thread, default_pthread_attr(),
2502 thread_dispatcher, (void *) NULL);
2503 if (ret) {
2504 errno = ret;
2505 PERROR("pthread_create viewer dispatcher");
2506 retval = -1;
2507 goto exit_dispatcher_thread;
2508 }
2509
2510 /* Setup the worker thread */
2511 ret = pthread_create(&live_worker_thread, default_pthread_attr(),
2512 thread_worker, NULL);
2513 if (ret) {
2514 errno = ret;
2515 PERROR("pthread_create viewer worker");
2516 retval = -1;
2517 goto exit_worker_thread;
2518 }
2519
2520 /* Setup the listener thread */
2521 ret = pthread_create(&live_listener_thread, default_pthread_attr(),
2522 thread_listener, (void *) NULL);
2523 if (ret) {
2524 errno = ret;
2525 PERROR("pthread_create viewer listener");
2526 retval = -1;
2527 goto exit_listener_thread;
2528 }
2529
2530 /*
2531 * All OK, started all threads.
2532 */
2533 return retval;
2534
2535 /*
2536 * Join on the live_listener_thread should anything be added after
2537 * the live_listener thread's creation.
2538 */
2539
2540 exit_listener_thread:
2541
2542 ret = pthread_join(live_worker_thread, &status);
2543 if (ret) {
2544 errno = ret;
2545 PERROR("pthread_join live worker");
2546 retval = -1;
2547 }
2548 exit_worker_thread:
2549
2550 ret = pthread_join(live_dispatcher_thread, &status);
2551 if (ret) {
2552 errno = ret;
2553 PERROR("pthread_join live dispatcher");
2554 retval = -1;
2555 }
2556 exit_dispatcher_thread:
2557
2558 exit_init_data:
2559 cleanup_relayd_live();
2560
2561 return retval;
2562 }
This page took 0.083924 seconds and 6 git commands to generate.