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