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