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