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