relayd: implement support for clear feature
[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,
c06fdd95 200 uint64_t session_id, unsigned int ignore_sent_flag)
2f8f53af
DG
201{
202 ssize_t ret;
203 struct lttng_viewer_stream send_stream;
204 struct lttng_ht_iter iter;
205 struct relay_viewer_stream *vstream;
206
2f8f53af
DG
207 rcu_read_lock();
208
209 cds_lfht_for_each_entry(viewer_streams_ht->ht, &iter.iter, vstream,
210 stream_n.node) {
2a174661
DG
211 struct ctf_trace *ctf_trace;
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. */
c06fdd95 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 *
c06fdd95
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 */
b66a15d1
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);
c06fdd95 292 ASSERT_LOCKED(session->lock);
2f8f53af 293
dbd6665b
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) {
123ed7c2 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
123ed7c2
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) {
3d7708ff
JG
341 ctf_trace_put(ctf_trace);
342 continue;
123ed7c2
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) {
123ed7c2
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 }
b66a15d1
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 ||
a8f9f353 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();
dbd6665b 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
d995f382 876 pthread_mutex_lock(&session->lock);
7e0a4379
JR
877 if (session->connection_closed) {
878 /* Skip closed session */
d995f382
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;
7e0a4379
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;
d995f382 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;
d995f382 908 goto break_loop;
bfc3fb17
MD
909 }
910 if (lttng_strncpy(send_session->hostname, session->hostname,
911 sizeof(send_session->hostname))) {
912 ret = -1;
d995f382 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++;
d995f382
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;
b66a15d1 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
c06fdd95 1003 pthread_mutex_lock(&session->lock);
b66a15d1
JG
1004 ret = make_viewer_streams(session,
1005 conn->viewer_session->current_trace_chunk,
1006 LTTNG_VIEWER_SEEK_LAST, &nb_total, &nb_unsent,
bddf80e4 1007 &nb_created, &closed);
2f8f53af 1008 if (ret < 0) {
b66a15d1 1009 goto error_unlock_session;
2f8f53af 1010 }
3d0bbd40
JG
1011 send_streams = 1;
1012 response.status = htobe32(LTTNG_VIEWER_NEW_STREAMS_OK);
b66a15d1 1013
2f8f53af
DG
1014 /* Only send back the newly created streams with the unsent ones. */
1015 nb_streams = nb_created + nb_unsent;
80e8027a
JD
1016 response.streams_count = htobe32(nb_streams);
1017
4479f682 1018 /*
2229a09c
MD
1019 * If the session is closed, HUP when there are no more streams
1020 * with data.
4479f682 1021 */
bddf80e4 1022 if (closed && nb_total == 0) {
4479f682 1023 send_streams = 0;
bddf80e4 1024 response.streams_count = 0;
4479f682 1025 response.status = htobe32(LTTNG_VIEWER_NEW_STREAMS_HUP);
3d0bbd40 1026 goto send_reply_unlock;
4479f682 1027 }
3d0bbd40
JG
1028send_reply_unlock:
1029 pthread_mutex_unlock(&session->lock);
4479f682 1030
80e8027a
JD
1031send_reply:
1032 health_code_update();
58eb9381 1033 ret = send_response(conn->sock, &response, sizeof(response));
80e8027a 1034 if (ret < 0) {
7591bab1 1035 goto end_put_session;
80e8027a
JD
1036 }
1037 health_code_update();
1038
1039 /*
7591bab1
MD
1040 * Unknown or empty session, just return gracefully, the viewer
1041 * knows what is happening.
80e8027a
JD
1042 */
1043 if (!send_streams || !nb_streams) {
1044 ret = 0;
7591bab1 1045 goto end_put_session;
80e8027a
JD
1046 }
1047
2f8f53af 1048 /*
7591bab1
MD
1049 * Send stream and *DON'T* ignore the sent flag so every viewer
1050 * streams that were not sent from that point will be sent to
1051 * the viewer.
2f8f53af 1052 */
c06fdd95 1053 ret = send_viewer_streams(conn->sock, session_id, 0);
2f8f53af 1054 if (ret < 0) {
7591bab1 1055 goto end_put_session;
80e8027a
JD
1056 }
1057
7591bab1
MD
1058end_put_session:
1059 if (session) {
1060 session_put(session);
1061 }
80e8027a
JD
1062error:
1063 return ret;
b66a15d1
JG
1064error_unlock_session:
1065 pthread_mutex_unlock(&session->lock);
1066 session_put(session);
1067 return ret;
80e8027a
JD
1068}
1069
d3e2ba59
JD
1070/*
1071 * Send the viewer the list of current sessions.
1072 */
1073static
58eb9381 1074int viewer_attach_session(struct relay_connection *conn)
d3e2ba59 1075{
2f8f53af
DG
1076 int send_streams = 0;
1077 ssize_t ret;
80e8027a 1078 uint32_t nb_streams = 0;
2f8f53af 1079 enum lttng_viewer_seek seek_type;
d3e2ba59
JD
1080 struct lttng_viewer_attach_session_request request;
1081 struct lttng_viewer_attach_session_response response;
7591bab1 1082 struct relay_session *session = NULL;
dbd6665b 1083 enum lttng_viewer_attach_return_code viewer_attach_status;
bddf80e4 1084 bool closed = false;
c06fdd95 1085 uint64_t session_id;
d3e2ba59 1086
58eb9381 1087 assert(conn);
d3e2ba59 1088
eea7556c
MD
1089 health_code_update();
1090
2f8f53af 1091 /* Receive the request from the connected client. */
58eb9381 1092 ret = recv_request(conn->sock, &request, sizeof(request));
2f8f53af 1093 if (ret < 0) {
d3e2ba59
JD
1094 goto error;
1095 }
1096
c06fdd95 1097 session_id = be64toh(request.session_id);
eea7556c
MD
1098 health_code_update();
1099
53efb85a
MD
1100 memset(&response, 0, sizeof(response));
1101
c3b7390b
JD
1102 if (!conn->viewer_session) {
1103 DBG("Client trying to attach before creating a live viewer session");
1104 response.status = htobe32(LTTNG_VIEWER_ATTACH_NO_SESSION);
1105 goto send_reply;
1106 }
1107
c06fdd95 1108 session = session_get_by_id(session_id);
2f8f53af 1109 if (!session) {
c06fdd95 1110 DBG("Relay session %" PRIu64 " not found", session_id);
c4e361a4 1111 response.status = htobe32(LTTNG_VIEWER_ATTACH_UNK);
d3e2ba59
JD
1112 goto send_reply;
1113 }
c06fdd95 1114 DBG("Attach session ID %" PRIu64 " received", session_id);
d3e2ba59 1115
c06fdd95 1116 pthread_mutex_lock(&session->lock);
79a42980
JG
1117 if (!session->current_trace_chunk) {
1118 /*
1119 * Session is either being destroyed or it never had a trace
1120 * chunk created against it.
1121 */
1122 DBG("Session requested by live client has no current trace chunk, returning unknown session");
1123 response.status = htobe32(LTTNG_VIEWER_ATTACH_UNK);
1124 goto send_reply;
1125 }
7591bab1 1126 if (session->live_timer == 0) {
d3e2ba59 1127 DBG("Not live session");
c4e361a4 1128 response.status = htobe32(LTTNG_VIEWER_ATTACH_NOT_LIVE);
d3e2ba59 1129 goto send_reply;
7591bab1
MD
1130 }
1131
1132 send_streams = 1;
dbd6665b
JG
1133 viewer_attach_status = viewer_session_attach(conn->viewer_session,
1134 session);
1135 if (viewer_attach_status != LTTNG_VIEWER_ATTACH_OK) {
1136 response.status = htobe32(viewer_attach_status);
7591bab1 1137 goto send_reply;
d3e2ba59
JD
1138 }
1139
1140 switch (be32toh(request.seek)) {
c4e361a4
JD
1141 case LTTNG_VIEWER_SEEK_BEGINNING:
1142 case LTTNG_VIEWER_SEEK_LAST:
7591bab1 1143 response.status = htobe32(LTTNG_VIEWER_ATTACH_OK);
2f8f53af 1144 seek_type = be32toh(request.seek);
d3e2ba59
JD
1145 break;
1146 default:
1147 ERR("Wrong seek parameter");
c4e361a4 1148 response.status = htobe32(LTTNG_VIEWER_ATTACH_SEEK_ERR);
d3e2ba59
JD
1149 send_streams = 0;
1150 goto send_reply;
1151 }
1152
b66a15d1
JG
1153 ret = make_viewer_streams(session,
1154 conn->viewer_session->current_trace_chunk, seek_type,
1155 &nb_streams, NULL, NULL, &closed);
2f8f53af 1156 if (ret < 0) {
7591bab1 1157 goto end_put_session;
d3e2ba59 1158 }
c06fdd95
JG
1159 pthread_mutex_unlock(&session->lock);
1160 session_put(session);
1161 session = NULL;
1162
1163 response.streams_count = htobe32(nb_streams);
bddf80e4
MD
1164 /*
1165 * If the session is closed when the viewer is attaching, it
1166 * means some of the streams may have been concurrently removed,
1167 * so we don't allow the viewer to attach, even if there are
1168 * streams available.
1169 */
1170 if (closed) {
1171 send_streams = 0;
1172 response.streams_count = 0;
06079f15 1173 response.status = htobe32(LTTNG_VIEWER_ATTACH_UNK);
bddf80e4
MD
1174 goto send_reply;
1175 }
1176
d3e2ba59 1177send_reply:
eea7556c 1178 health_code_update();
58eb9381 1179 ret = send_response(conn->sock, &response, sizeof(response));
d3e2ba59 1180 if (ret < 0) {
7591bab1 1181 goto end_put_session;
d3e2ba59 1182 }
eea7556c 1183 health_code_update();
d3e2ba59
JD
1184
1185 /*
7591bab1
MD
1186 * Unknown or empty session, just return gracefully, the viewer
1187 * knows what is happening.
d3e2ba59 1188 */
157df586 1189 if (!send_streams || !nb_streams) {
d3e2ba59 1190 ret = 0;
7591bab1 1191 goto end_put_session;
d3e2ba59
JD
1192 }
1193
2f8f53af 1194 /* Send stream and ignore the sent flag. */
c06fdd95 1195 ret = send_viewer_streams(conn->sock, session_id, 1);
2f8f53af 1196 if (ret < 0) {
7591bab1 1197 goto end_put_session;
d3e2ba59 1198 }
d3e2ba59 1199
7591bab1
MD
1200end_put_session:
1201 if (session) {
c06fdd95 1202 pthread_mutex_unlock(&session->lock);
7591bab1
MD
1203 session_put(session);
1204 }
4a9daf17
JD
1205error:
1206 return ret;
1207}
1208
878c34cf
DG
1209/*
1210 * Open the index file if needed for the given vstream.
1211 *
f8f3885c
MD
1212 * If an index file is successfully opened, the vstream will set it as its
1213 * current index file.
878c34cf
DG
1214 *
1215 * Return 0 on success, a negative value on error (-ENOENT if not ready yet).
7591bab1
MD
1216 *
1217 * Called with rstream lock held.
878c34cf
DG
1218 */
1219static int try_open_index(struct relay_viewer_stream *vstream,
1220 struct relay_stream *rstream)
1221{
1222 int ret = 0;
ebb29c10
JG
1223 const uint32_t connection_major = rstream->trace->session->major;
1224 const uint32_t connection_minor = rstream->trace->session->minor;
3ff5c5db 1225 enum lttng_trace_chunk_status chunk_status;
878c34cf 1226
f8f3885c 1227 if (vstream->index_file) {
878c34cf
DG
1228 goto end;
1229 }
1230
1231 /*
7591bab1 1232 * First time, we open the index file and at least one index is ready.
878c34cf 1233 */
a44ca2ca 1234 if (rstream->index_received_seqcount == 0) {
878c34cf
DG
1235 ret = -ENOENT;
1236 goto end;
1237 }
3ff5c5db 1238 chunk_status = lttng_index_file_create_from_trace_chunk_read_only(
b66a15d1 1239 vstream->stream_file.trace_chunk, rstream->path_name,
ebb29c10
JG
1240 rstream->channel_name, rstream->tracefile_size,
1241 vstream->current_tracefile_id,
1242 lttng_to_index_major(connection_major, connection_minor),
3ff5c5db
MD
1243 lttng_to_index_minor(connection_major, connection_minor),
1244 true, &vstream->index_file);
1245 if (chunk_status != LTTNG_TRACE_CHUNK_STATUS_OK) {
1246 if (chunk_status == LTTNG_TRACE_CHUNK_STATUS_NO_FILE) {
1247 ret = -ENOENT;
1248 } else {
1249 ret = -1;
1250 }
878c34cf
DG
1251 }
1252
1253end:
1254 return ret;
1255}
1256
1257/*
7591bab1
MD
1258 * Check the status of the index for the given stream. This function
1259 * updates the index structure if needed and can put (close) the vstream
1260 * in the HUP situation.
1261 *
1262 * Return 0 means that we can proceed with the index. A value of 1 means
1263 * that the index has been updated and is ready to be sent to the
1264 * client. A negative value indicates an error that can't be handled.
878c34cf 1265 *
7591bab1 1266 * Called with rstream lock held.
878c34cf
DG
1267 */
1268static int check_index_status(struct relay_viewer_stream *vstream,
1269 struct relay_stream *rstream, struct ctf_trace *trace,
1270 struct lttng_viewer_index *index)
1271{
1272 int ret;
1273
68c40154
MD
1274 DBG("Check index status: index_received_seqcount %" PRIu64 " "
1275 "index_sent_seqcount %" PRIu64 " "
1276 "for stream %" PRIu64,
1277 rstream->index_received_seqcount,
1278 vstream->index_sent_seqcount,
1279 vstream->stream->stream_handle);
797bc362 1280 if ((trace->session->connection_closed || rstream->closed)
a44ca2ca
MD
1281 && rstream->index_received_seqcount
1282 == vstream->index_sent_seqcount) {
797bc362
MD
1283 /*
1284 * Last index sent and session connection or relay
1285 * stream are closed.
1286 */
7591bab1
MD
1287 index->status = htobe32(LTTNG_VIEWER_INDEX_HUP);
1288 goto hup;
1289 } else if (rstream->beacon_ts_end != -1ULL &&
a44ca2ca
MD
1290 rstream->index_received_seqcount
1291 == vstream->index_sent_seqcount) {
7591bab1
MD
1292 /*
1293 * We've received a synchronization beacon and the last index
1294 * available has been sent, the index for now is inactive.
1295 *
1296 * In this case, we have received a beacon which allows us to
1297 * inform the client of a time interval during which we can
1298 * guarantee that there are no events to read (and never will
1299 * be).
1300 */
1301 index->status = htobe32(LTTNG_VIEWER_INDEX_INACTIVE);
1302 index->timestamp_end = htobe64(rstream->beacon_ts_end);
1303 index->stream_id = htobe64(rstream->ctf_stream_id);
68c40154
MD
1304 DBG("Check index status: inactive with beacon, for stream %" PRIu64,
1305 vstream->stream->stream_handle);
7591bab1 1306 goto index_ready;
a44ca2ca
MD
1307 } else if (rstream->index_received_seqcount
1308 == vstream->index_sent_seqcount) {
7591bab1 1309 /*
a44ca2ca
MD
1310 * This checks whether received == sent seqcount. In
1311 * this case, we have not received a beacon. Therefore,
1312 * we can only ask the client to retry later.
7591bab1
MD
1313 */
1314 index->status = htobe32(LTTNG_VIEWER_INDEX_RETRY);
68c40154
MD
1315 DBG("Check index status: retry for stream %" PRIu64,
1316 vstream->stream->stream_handle);
7591bab1 1317 goto index_ready;
a44ca2ca
MD
1318 } else if (!tracefile_array_seq_in_file(rstream->tfa,
1319 vstream->current_tracefile_id,
1320 vstream->index_sent_seqcount)) {
7591bab1 1321 /*
a44ca2ca
MD
1322 * The next index we want to send cannot be read either
1323 * because we need to perform a rotation, or due to
1324 * the producer having overwritten its trace file.
7591bab1 1325 */
a44ca2ca 1326 DBG("Viewer stream %" PRIu64 " rotation",
7591bab1
MD
1327 vstream->stream->stream_handle);
1328 ret = viewer_stream_rotate(vstream);
1329 if (ret < 0) {
1330 goto end;
1331 } else if (ret == 1) {
1332 /* EOF across entire stream. */
1333 index->status = htobe32(LTTNG_VIEWER_INDEX_HUP);
1334 goto hup;
1335 }
7591bab1 1336 /*
a44ca2ca
MD
1337 * If we have been pushed due to overwrite, it
1338 * necessarily means there is data that can be read in
1339 * the stream. If we rotated because we reached the end
1340 * of a tracefile, it means the following tracefile
1341 * needs to contain at least one index, else we would
1342 * have already returned LTTNG_VIEWER_INDEX_RETRY to the
1343 * viewer. The updated index_sent_seqcount needs to
1344 * point to a readable index entry now.
1345 *
1346 * In the case where we "rotate" on a single file, we
1347 * can end up in a case where the requested index is
1348 * still unavailable.
7591bab1 1349 */
a44ca2ca
MD
1350 if (rstream->tracefile_count == 1 &&
1351 !tracefile_array_seq_in_file(
1352 rstream->tfa,
1353 vstream->current_tracefile_id,
1354 vstream->index_sent_seqcount)) {
1355 index->status = htobe32(LTTNG_VIEWER_INDEX_RETRY);
68c40154
MD
1356 DBG("Check index status: retry: "
1357 "tracefile array sequence number %" PRIu64
1358 " not in file for stream %" PRIu64,
1359 vstream->index_sent_seqcount,
1360 vstream->stream->stream_handle);
a44ca2ca 1361 goto index_ready;
878c34cf 1362 }
a44ca2ca
MD
1363 assert(tracefile_array_seq_in_file(rstream->tfa,
1364 vstream->current_tracefile_id,
1365 vstream->index_sent_seqcount));
878c34cf 1366 }
a44ca2ca
MD
1367 /* ret == 0 means successful so we continue. */
1368 ret = 0;
7591bab1 1369end:
878c34cf
DG
1370 return ret;
1371
1372hup:
7591bab1 1373 viewer_stream_put(vstream);
878c34cf
DG
1374index_ready:
1375 return 1;
1376}
1377
d3e2ba59
JD
1378/*
1379 * Send the next index for a stream.
1380 *
1381 * Return 0 on success or else a negative value.
1382 */
1383static
58eb9381 1384int viewer_get_next_index(struct relay_connection *conn)
d3e2ba59
JD
1385{
1386 int ret;
1387 struct lttng_viewer_get_next_index request_index;
1388 struct lttng_viewer_index viewer_index;
50adc264 1389 struct ctf_packet_index packet_index;
7591bab1
MD
1390 struct relay_viewer_stream *vstream = NULL;
1391 struct relay_stream *rstream = NULL;
1392 struct ctf_trace *ctf_trace = NULL;
1393 struct relay_viewer_stream *metadata_viewer_stream = NULL;
d3e2ba59 1394
58eb9381 1395 assert(conn);
d3e2ba59
JD
1396
1397 DBG("Viewer get next index");
1398
7591bab1 1399 memset(&viewer_index, 0, sizeof(viewer_index));
eea7556c 1400 health_code_update();
2f8f53af 1401
58eb9381 1402 ret = recv_request(conn->sock, &request_index, sizeof(request_index));
2f8f53af 1403 if (ret < 0) {
d3e2ba59
JD
1404 goto end;
1405 }
eea7556c 1406 health_code_update();
d3e2ba59 1407
7591bab1 1408 vstream = viewer_stream_get_by_id(be64toh(request_index.stream_id));
6763619c 1409 if (!vstream) {
a44ca2ca 1410 DBG("Client requested index of unknown stream id %" PRIu64,
9b9f9f94 1411 (uint64_t) be64toh(request_index.stream_id));
f1883937
MD
1412 viewer_index.status = htobe32(LTTNG_VIEWER_INDEX_ERR);
1413 goto send_reply;
2a174661
DG
1414 }
1415
7591bab1
MD
1416 /* Use back. ref. Protected by refcounts. */
1417 rstream = vstream->stream;
1418 ctf_trace = rstream->trace;
d3e2ba59 1419
7591bab1
MD
1420 /* metadata_viewer_stream may be NULL. */
1421 metadata_viewer_stream =
1422 ctf_trace_get_viewer_metadata_stream(ctf_trace);
2a174661 1423
7591bab1 1424 pthread_mutex_lock(&rstream->lock);
d3e2ba59
JD
1425
1426 /*
1427 * The viewer should not ask for index on metadata stream.
1428 */
7591bab1 1429 if (rstream->is_metadata) {
c4e361a4 1430 viewer_index.status = htobe32(LTTNG_VIEWER_INDEX_HUP);
d3e2ba59
JD
1431 goto send_reply;
1432 }
1433
878c34cf
DG
1434 /* Try to open an index if one is needed for that stream. */
1435 ret = try_open_index(vstream, rstream);
1436 if (ret < 0) {
0e6830aa 1437 if (ret == -ENOENT) {
d3e2ba59 1438 /*
7591bab1
MD
1439 * The index is created only when the first data
1440 * packet arrives, it might not be ready at the
1441 * beginning of the session
d3e2ba59 1442 */
c4e361a4 1443 viewer_index.status = htobe32(LTTNG_VIEWER_INDEX_RETRY);
878c34cf
DG
1444 } else {
1445 /* Unhandled error. */
c4e361a4 1446 viewer_index.status = htobe32(LTTNG_VIEWER_INDEX_ERR);
d3e2ba59 1447 }
878c34cf 1448 goto send_reply;
d3e2ba59
JD
1449 }
1450
878c34cf 1451 ret = check_index_status(vstream, rstream, ctf_trace, &viewer_index);
878c34cf 1452 if (ret < 0) {
7591bab1 1453 goto error_put;
878c34cf
DG
1454 } else if (ret == 1) {
1455 /*
7591bab1
MD
1456 * We have no index to send and check_index_status has populated
1457 * viewer_index's status.
878c34cf 1458 */
d3e2ba59
JD
1459 goto send_reply;
1460 }
7591bab1 1461 /* At this point, ret is 0 thus we will be able to read the index. */
878c34cf 1462 assert(!ret);
d3e2ba59 1463
7591bab1
MD
1464 /*
1465 * vstream->stream_fd may be NULL if it has been closed by
1466 * tracefile rotation, or if we are at the beginning of the
1467 * stream. We open the data stream file here to protect against
1468 * overwrite caused by tracefile rotation (in association with
1469 * unlink performed before overwrite).
1470 */
ebb29c10
JG
1471 if (!vstream->stream_file.fd) {
1472 int fd;
1473 char file_path[LTTNG_PATH_MAX];
1474 enum lttng_trace_chunk_status status;
1475
1476 ret = utils_stream_file_path(rstream->path_name,
1477 rstream->channel_name, rstream->tracefile_size,
1478 vstream->current_tracefile_id, NULL, file_path,
1479 sizeof(file_path));
7591bab1
MD
1480 if (ret < 0) {
1481 goto error_put;
1482 }
ebb29c10 1483
3ff5c5db
MD
1484 /*
1485 * It is possible the the file we are trying to open is
1486 * missing if the stream has been closed (application exits with
1487 * per-pid buffers) and a clear command has been performed.
1488 */
ebb29c10
JG
1489 status = lttng_trace_chunk_open_file(
1490 vstream->stream_file.trace_chunk,
3ff5c5db 1491 file_path, O_RDONLY, 0, &fd, true);
ebb29c10
JG
1492 if (status != LTTNG_TRACE_CHUNK_STATUS_OK) {
1493 PERROR("Failed to open trace file for viewer stream");
7591bab1
MD
1494 goto error_put;
1495 }
ebb29c10
JG
1496 vstream->stream_file.fd = stream_fd_create(fd);
1497 if (!vstream->stream_file.fd) {
1498 if (close(fd)) {
1499 PERROR("Failed to close viewer stream file");
7591bab1
MD
1500 }
1501 goto error_put;
1502 }
d3e2ba59
JD
1503 }
1504
f04a971b 1505 ret = check_new_streams(conn);
4a9daf17 1506 if (ret < 0) {
7591bab1
MD
1507 viewer_index.status = htobe32(LTTNG_VIEWER_INDEX_ERR);
1508 goto send_reply;
4a9daf17
JD
1509 } else if (ret == 1) {
1510 viewer_index.flags |= LTTNG_VIEWER_FLAG_NEW_STREAM;
1511 }
1512
f8f3885c
MD
1513 ret = lttng_index_file_read(vstream->index_file, &packet_index);
1514 if (ret) {
1515 ERR("Relay error reading index file %d",
1516 vstream->index_file->fd);
7591bab1 1517 viewer_index.status = htobe32(LTTNG_VIEWER_INDEX_ERR);
6b6b9a5a 1518 goto send_reply;
d3e2ba59 1519 } else {
c4e361a4 1520 viewer_index.status = htobe32(LTTNG_VIEWER_INDEX_OK);
a44ca2ca 1521 vstream->index_sent_seqcount++;
d3e2ba59
JD
1522 }
1523
1524 /*
1525 * Indexes are stored in big endian, no need to switch before sending.
1526 */
7591bab1
MD
1527 DBG("Sending viewer index for stream %" PRIu64 " offset %" PRIu64,
1528 rstream->stream_handle,
9b9f9f94 1529 (uint64_t) be64toh(packet_index.offset));
d3e2ba59
JD
1530 viewer_index.offset = packet_index.offset;
1531 viewer_index.packet_size = packet_index.packet_size;
1532 viewer_index.content_size = packet_index.content_size;
1533 viewer_index.timestamp_begin = packet_index.timestamp_begin;
1534 viewer_index.timestamp_end = packet_index.timestamp_end;
1535 viewer_index.events_discarded = packet_index.events_discarded;
1536 viewer_index.stream_id = packet_index.stream_id;
1537
1538send_reply:
f1883937
MD
1539 if (rstream) {
1540 pthread_mutex_unlock(&rstream->lock);
1541 }
7591bab1
MD
1542
1543 if (metadata_viewer_stream) {
1544 pthread_mutex_lock(&metadata_viewer_stream->stream->lock);
1545 DBG("get next index metadata check: recv %" PRIu64
1546 " sent %" PRIu64,
1547 metadata_viewer_stream->stream->metadata_received,
1548 metadata_viewer_stream->metadata_sent);
1549 if (!metadata_viewer_stream->stream->metadata_received ||
1550 metadata_viewer_stream->stream->metadata_received >
1551 metadata_viewer_stream->metadata_sent) {
1552 viewer_index.flags |= LTTNG_VIEWER_FLAG_NEW_METADATA;
1553 }
1554 pthread_mutex_unlock(&metadata_viewer_stream->stream->lock);
1555 }
1556
d3e2ba59 1557 viewer_index.flags = htobe32(viewer_index.flags);
eea7556c 1558 health_code_update();
2f8f53af 1559
58eb9381 1560 ret = send_response(conn->sock, &viewer_index, sizeof(viewer_index));
d3e2ba59 1561 if (ret < 0) {
7591bab1 1562 goto end;
d3e2ba59 1563 }
eea7556c 1564 health_code_update();
d3e2ba59 1565
9237e6a1
MD
1566 if (vstream) {
1567 DBG("Index %" PRIu64 " for stream %" PRIu64 " sent",
a44ca2ca 1568 vstream->index_sent_seqcount,
9237e6a1
MD
1569 vstream->stream->stream_handle);
1570 }
d3e2ba59 1571end:
7591bab1
MD
1572 if (metadata_viewer_stream) {
1573 viewer_stream_put(metadata_viewer_stream);
1574 }
1575 if (vstream) {
1576 viewer_stream_put(vstream);
1577 }
1578 return ret;
1579
1580error_put:
1581 pthread_mutex_unlock(&rstream->lock);
1582 if (metadata_viewer_stream) {
1583 viewer_stream_put(metadata_viewer_stream);
1584 }
1585 viewer_stream_put(vstream);
d3e2ba59
JD
1586 return ret;
1587}
1588
1589/*
1590 * Send the next index for a stream
1591 *
1592 * Return 0 on success or else a negative value.
1593 */
1594static
58eb9381 1595int viewer_get_packet(struct relay_connection *conn)
d3e2ba59 1596{
b6025e94 1597 int ret;
a5df8828 1598 off_t lseek_ret;
553b2adb 1599 char *reply = NULL;
d3e2ba59 1600 struct lttng_viewer_get_packet get_packet_info;
553b2adb 1601 struct lttng_viewer_trace_packet reply_header;
7591bab1 1602 struct relay_viewer_stream *vstream = NULL;
553b2adb 1603 uint32_t reply_size = sizeof(reply_header);
b6025e94
JR
1604 uint32_t packet_data_len = 0;
1605 ssize_t read_len;
d3e2ba59
JD
1606
1607 DBG2("Relay get data packet");
1608
eea7556c 1609 health_code_update();
2f8f53af 1610
7591bab1
MD
1611 ret = recv_request(conn->sock, &get_packet_info,
1612 sizeof(get_packet_info));
2f8f53af 1613 if (ret < 0) {
d3e2ba59
JD
1614 goto end;
1615 }
eea7556c 1616 health_code_update();
d3e2ba59 1617
0233a6a5 1618 /* From this point on, the error label can be reached. */
553b2adb 1619 memset(&reply_header, 0, sizeof(reply_header));
0233a6a5 1620
7591bab1
MD
1621 vstream = viewer_stream_get_by_id(be64toh(get_packet_info.stream_id));
1622 if (!vstream) {
a44ca2ca 1623 DBG("Client requested packet of unknown stream id %" PRIu64,
9b9f9f94 1624 (uint64_t) be64toh(get_packet_info.stream_id));
553b2adb
JG
1625 reply_header.status = htobe32(LTTNG_VIEWER_GET_PACKET_ERR);
1626 goto send_reply_nolock;
b6025e94
JR
1627 } else {
1628 packet_data_len = be32toh(get_packet_info.len);
553b2adb 1629 reply_size += packet_data_len;
d3e2ba59 1630 }
2a174661 1631
553b2adb
JG
1632 reply = zmalloc(reply_size);
1633 if (!reply) {
1634 PERROR("packet reply zmalloc");
1635 reply_size = sizeof(reply_header);
d3e2ba59
JD
1636 goto error;
1637 }
1638
b6025e94 1639 pthread_mutex_lock(&vstream->stream->lock);
ebb29c10
JG
1640 lseek_ret = lseek(vstream->stream_file.fd->fd,
1641 be64toh(get_packet_info.offset), SEEK_SET);
a5df8828 1642 if (lseek_ret < 0) {
ebb29c10
JG
1643 PERROR("lseek fd %d to offset %" PRIu64,
1644 vstream->stream_file.fd->fd,
1645 (uint64_t) be64toh(get_packet_info.offset));
7591bab1 1646 goto error;
d3e2ba59 1647 }
ebb29c10
JG
1648 read_len = lttng_read(vstream->stream_file.fd->fd,
1649 reply + sizeof(reply_header), packet_data_len);
b6025e94 1650 if (read_len < packet_data_len) {
7591bab1 1651 PERROR("Relay reading trace file, fd: %d, offset: %" PRIu64,
ebb29c10 1652 vstream->stream_file.fd->fd,
9b9f9f94 1653 (uint64_t) be64toh(get_packet_info.offset));
7591bab1 1654 goto error;
d3e2ba59 1655 }
553b2adb
JG
1656 reply_header.status = htobe32(LTTNG_VIEWER_GET_PACKET_OK);
1657 reply_header.len = htobe32(packet_data_len);
d3e2ba59
JD
1658 goto send_reply;
1659
1660error:
553b2adb 1661 reply_header.status = htobe32(LTTNG_VIEWER_GET_PACKET_ERR);
d3e2ba59
JD
1662
1663send_reply:
7591bab1
MD
1664 if (vstream) {
1665 pthread_mutex_unlock(&vstream->stream->lock);
1666 }
1667send_reply_nolock:
eea7556c
MD
1668
1669 health_code_update();
2f8f53af 1670
553b2adb
JG
1671 if (reply) {
1672 memcpy(reply, &reply_header, sizeof(reply_header));
1673 ret = send_response(conn->sock, reply, reply_size);
1674 } else {
1675 /* No reply to send. */
1676 ret = send_response(conn->sock, &reply_header,
1677 reply_size);
1678 }
1679
b6025e94 1680 health_code_update();
d3e2ba59 1681 if (ret < 0) {
b6025e94 1682 PERROR("sendmsg of packet data failed");
7591bab1 1683 goto end_free;
d3e2ba59 1684 }
d3e2ba59 1685
553b2adb 1686 DBG("Sent %u bytes for stream %" PRIu64, reply_size,
9b9f9f94 1687 (uint64_t) be64toh(get_packet_info.stream_id));
d3e2ba59 1688
7591bab1 1689end_free:
553b2adb 1690 free(reply);
d3e2ba59 1691end:
7591bab1
MD
1692 if (vstream) {
1693 viewer_stream_put(vstream);
1694 }
d3e2ba59
JD
1695 return ret;
1696}
1697
1698/*
1699 * Send the session's metadata
1700 *
1701 * Return 0 on success else a negative value.
1702 */
1703static
58eb9381 1704int viewer_get_metadata(struct relay_connection *conn)
d3e2ba59
JD
1705{
1706 int ret = 0;
1707 ssize_t read_len;
1708 uint64_t len = 0;
1709 char *data = NULL;
1710 struct lttng_viewer_get_metadata request;
1711 struct lttng_viewer_metadata_packet reply;
7591bab1 1712 struct relay_viewer_stream *vstream = NULL;
d3e2ba59 1713
58eb9381 1714 assert(conn);
d3e2ba59
JD
1715
1716 DBG("Relay get metadata");
1717
eea7556c 1718 health_code_update();
2f8f53af 1719
58eb9381 1720 ret = recv_request(conn->sock, &request, sizeof(request));
2f8f53af 1721 if (ret < 0) {
d3e2ba59
JD
1722 goto end;
1723 }
eea7556c 1724 health_code_update();
d3e2ba59 1725
53efb85a
MD
1726 memset(&reply, 0, sizeof(reply));
1727
7591bab1
MD
1728 vstream = viewer_stream_get_by_id(be64toh(request.stream_id));
1729 if (!vstream) {
3b463131
MD
1730 /*
1731 * The metadata stream can be closed by a CLOSE command
1732 * just before we attach. It can also be closed by
1733 * per-pid tracing during tracing. Therefore, it is
1734 * possible that we cannot find this viewer stream.
1735 * Reply back to the client with an error if we cannot
1736 * find it.
1737 */
a44ca2ca 1738 DBG("Client requested metadata of unknown stream id %" PRIu64,
9b9f9f94 1739 (uint64_t) be64toh(request.stream_id));
3b463131 1740 reply.status = htobe32(LTTNG_VIEWER_METADATA_ERR);
7591bab1 1741 goto send_reply;
d3e2ba59 1742 }
7591bab1
MD
1743 pthread_mutex_lock(&vstream->stream->lock);
1744 if (!vstream->stream->is_metadata) {
1745 ERR("Invalid metadata stream");
6763619c
JD
1746 goto error;
1747 }
1748
7591bab1 1749 assert(vstream->metadata_sent <= vstream->stream->metadata_received);
2a174661 1750
7591bab1 1751 len = vstream->stream->metadata_received - vstream->metadata_sent;
d3e2ba59 1752 if (len == 0) {
94f73d08
MD
1753 /*
1754 * The live viewers expect to receive a NO_NEW_METADATA
1755 * status before a stream disappears, otherwise they abort the
1756 * entire live connection when receiving an error status.
1757 */
c4e361a4 1758 reply.status = htobe32(LTTNG_VIEWER_NO_NEW_METADATA);
94f73d08
MD
1759 /*
1760 * The live viewer considers a closed 0 byte metadata stream as
1761 * an error.
1762 */
1763 if (vstream->metadata_sent > 0) {
1764 vstream->stream->no_new_metadata_notified = true;
1765 if (vstream->stream->closed) {
1766 /* Release ownership for the viewer metadata stream. */
1767 viewer_stream_put(vstream);
1768 }
1769 }
d3e2ba59
JD
1770 goto send_reply;
1771 }
1772
1773 /* first time, we open the metadata file */
ebb29c10
JG
1774 if (!vstream->stream_file.fd) {
1775 int fd;
1776 char file_path[LTTNG_PATH_MAX];
1777 enum lttng_trace_chunk_status status;
1778 struct relay_stream *rstream = vstream->stream;
1779
1780 ret = utils_stream_file_path(rstream->path_name,
1781 rstream->channel_name, rstream->tracefile_size,
1782 vstream->current_tracefile_id, NULL, file_path,
1783 sizeof(file_path));
d3e2ba59
JD
1784 if (ret < 0) {
1785 goto error;
1786 }
ebb29c10 1787
3ff5c5db
MD
1788 /*
1789 * It is possible the the metadata file we are trying to open is
1790 * missing if the stream has been closed (application exits with
1791 * per-pid buffers) and a clear command has been performed.
1792 */
ebb29c10
JG
1793 status = lttng_trace_chunk_open_file(
1794 vstream->stream_file.trace_chunk,
3ff5c5db 1795 file_path, O_RDONLY, 0, &fd, true);
ebb29c10
JG
1796 if (status != LTTNG_TRACE_CHUNK_STATUS_OK) {
1797 PERROR("Failed to open metadata file for viewer stream");
d3e2ba59
JD
1798 goto error;
1799 }
ebb29c10
JG
1800 vstream->stream_file.fd = stream_fd_create(fd);
1801 if (!vstream->stream_file.fd) {
1802 if (close(fd)) {
1803 PERROR("Failed to close viewer metadata file");
7591bab1
MD
1804 }
1805 goto error;
1806 }
d3e2ba59
JD
1807 }
1808
1809 reply.len = htobe64(len);
1810 data = zmalloc(len);
1811 if (!data) {
1812 PERROR("viewer metadata zmalloc");
1813 goto error;
1814 }
1815
ebb29c10 1816 read_len = lttng_read(vstream->stream_file.fd->fd, data, len);
6cd525e8 1817 if (read_len < len) {
d3e2ba59
JD
1818 PERROR("Relay reading metadata file");
1819 goto error;
1820 }
7591bab1 1821 vstream->metadata_sent += read_len;
c4e361a4 1822 reply.status = htobe32(LTTNG_VIEWER_METADATA_OK);
7591bab1 1823
d3e2ba59
JD
1824 goto send_reply;
1825
1826error:
c4e361a4 1827 reply.status = htobe32(LTTNG_VIEWER_METADATA_ERR);
d3e2ba59
JD
1828
1829send_reply:
eea7556c 1830 health_code_update();
7591bab1
MD
1831 if (vstream) {
1832 pthread_mutex_unlock(&vstream->stream->lock);
1833 }
58eb9381 1834 ret = send_response(conn->sock, &reply, sizeof(reply));
d3e2ba59 1835 if (ret < 0) {
7591bab1 1836 goto end_free;
d3e2ba59 1837 }
eea7556c 1838 health_code_update();
d3e2ba59
JD
1839
1840 if (len > 0) {
58eb9381 1841 ret = send_response(conn->sock, data, len);
d3e2ba59 1842 if (ret < 0) {
7591bab1 1843 goto end_free;
d3e2ba59
JD
1844 }
1845 }
1846
1847 DBG("Sent %" PRIu64 " bytes of metadata for stream %" PRIu64, len,
9b9f9f94 1848 (uint64_t) be64toh(request.stream_id));
d3e2ba59
JD
1849
1850 DBG("Metadata sent");
1851
7591bab1 1852end_free:
d3e2ba59 1853 free(data);
d3e2ba59 1854end:
7591bab1
MD
1855 if (vstream) {
1856 viewer_stream_put(vstream);
1857 }
d3e2ba59
JD
1858 return ret;
1859}
1860
c3b7390b
JD
1861/*
1862 * Create a viewer session.
1863 *
1864 * Return 0 on success or else a negative value.
1865 */
1866static
1867int viewer_create_session(struct relay_connection *conn)
1868{
1869 int ret;
1870 struct lttng_viewer_create_session_response resp;
1871
1872 DBG("Viewer create session received");
1873
53efb85a 1874 memset(&resp, 0, sizeof(resp));
c3b7390b 1875 resp.status = htobe32(LTTNG_VIEWER_CREATE_SESSION_OK);
7591bab1 1876 conn->viewer_session = viewer_session_create();
c3b7390b
JD
1877 if (!conn->viewer_session) {
1878 ERR("Allocation viewer session");
1879 resp.status = htobe32(LTTNG_VIEWER_CREATE_SESSION_ERR);
1880 goto send_reply;
1881 }
c3b7390b
JD
1882
1883send_reply:
1884 health_code_update();
1885 ret = send_response(conn->sock, &resp, sizeof(resp));
1886 if (ret < 0) {
1887 goto end;
1888 }
1889 health_code_update();
1890 ret = 0;
1891
1892end:
1893 return ret;
1894}
1895
d62023be
JD
1896/*
1897 * Detach a viewer session.
1898 *
1899 * Return 0 on success or else a negative value.
1900 */
1901static
1902int viewer_detach_session(struct relay_connection *conn)
1903{
1904 int ret;
1905 struct lttng_viewer_detach_session_response response;
1906 struct lttng_viewer_detach_session_request request;
1907 struct relay_session *session = NULL;
1908 uint64_t viewer_session_to_close;
1909
1910 DBG("Viewer detach session received");
1911
1912 assert(conn);
1913
1914 health_code_update();
1915
1916 /* Receive the request from the connected client. */
1917 ret = recv_request(conn->sock, &request, sizeof(request));
1918 if (ret < 0) {
1919 goto end;
1920 }
1921 viewer_session_to_close = be64toh(request.session_id);
1922
1923 if (!conn->viewer_session) {
1924 DBG("Client trying to detach before creating a live viewer session");
1925 response.status = htobe32(LTTNG_VIEWER_DETACH_SESSION_ERR);
1926 goto send_reply;
1927 }
1928
1929 health_code_update();
1930
1931 memset(&response, 0, sizeof(response));
1932 DBG("Detaching from session ID %" PRIu64, viewer_session_to_close);
1933
1934 session = session_get_by_id(be64toh(request.session_id));
1935 if (!session) {
1936 DBG("Relay session %" PRIu64 " not found",
9b9f9f94 1937 (uint64_t) be64toh(request.session_id));
d62023be
JD
1938 response.status = htobe32(LTTNG_VIEWER_DETACH_SESSION_UNK);
1939 goto send_reply;
1940 }
1941
1942 ret = viewer_session_is_attached(conn->viewer_session, session);
1943 if (ret != 1) {
1944 DBG("Not attached to this session");
1945 response.status = htobe32(LTTNG_VIEWER_DETACH_SESSION_ERR);
1946 goto send_reply_put;
1947 }
1948
1949 viewer_session_close_one_session(conn->viewer_session, session);
1950 response.status = htobe32(LTTNG_VIEWER_DETACH_SESSION_OK);
1951 DBG("Session %" PRIu64 " detached.", viewer_session_to_close);
1952
1953send_reply_put:
1954 session_put(session);
1955
1956send_reply:
1957 health_code_update();
1958 ret = send_response(conn->sock, &response, sizeof(response));
1959 if (ret < 0) {
1960 goto end;
1961 }
1962 health_code_update();
1963 ret = 0;
1964
1965end:
1966 return ret;
1967}
c3b7390b 1968
d3e2ba59
JD
1969/*
1970 * live_relay_unknown_command: send -1 if received unknown command
1971 */
1972static
58eb9381 1973void live_relay_unknown_command(struct relay_connection *conn)
d3e2ba59
JD
1974{
1975 struct lttcomm_relayd_generic_reply reply;
d3e2ba59 1976
53efb85a 1977 memset(&reply, 0, sizeof(reply));
d3e2ba59 1978 reply.ret_code = htobe32(LTTNG_ERR_UNK);
58eb9381 1979 (void) send_response(conn->sock, &reply, sizeof(reply));
d3e2ba59
JD
1980}
1981
1982/*
1983 * Process the commands received on the control socket
1984 */
1985static
1986int process_control(struct lttng_viewer_cmd *recv_hdr,
58eb9381 1987 struct relay_connection *conn)
d3e2ba59
JD
1988{
1989 int ret = 0;
2f8f53af
DG
1990 uint32_t msg_value;
1991
2f8f53af
DG
1992 msg_value = be32toh(recv_hdr->cmd);
1993
1994 /*
1995 * Make sure we've done the version check before any command other then a
1996 * new client connection.
1997 */
c4e361a4 1998 if (msg_value != LTTNG_VIEWER_CONNECT && !conn->version_check_done) {
58eb9381 1999 ERR("Viewer conn value %" PRIu32 " before version check", msg_value);
2f8f53af
DG
2000 ret = -1;
2001 goto end;
2002 }
d3e2ba59 2003
2f8f53af 2004 switch (msg_value) {
c4e361a4 2005 case LTTNG_VIEWER_CONNECT:
58eb9381 2006 ret = viewer_connect(conn);
d3e2ba59 2007 break;
c4e361a4 2008 case LTTNG_VIEWER_LIST_SESSIONS:
58eb9381 2009 ret = viewer_list_sessions(conn);
d3e2ba59 2010 break;
c4e361a4 2011 case LTTNG_VIEWER_ATTACH_SESSION:
58eb9381 2012 ret = viewer_attach_session(conn);
d3e2ba59 2013 break;
c4e361a4 2014 case LTTNG_VIEWER_GET_NEXT_INDEX:
58eb9381 2015 ret = viewer_get_next_index(conn);
d3e2ba59 2016 break;
c4e361a4 2017 case LTTNG_VIEWER_GET_PACKET:
58eb9381 2018 ret = viewer_get_packet(conn);
d3e2ba59 2019 break;
c4e361a4 2020 case LTTNG_VIEWER_GET_METADATA:
58eb9381 2021 ret = viewer_get_metadata(conn);
d3e2ba59 2022 break;
c4e361a4 2023 case LTTNG_VIEWER_GET_NEW_STREAMS:
58eb9381 2024 ret = viewer_get_new_streams(conn);
80e8027a 2025 break;
c3b7390b
JD
2026 case LTTNG_VIEWER_CREATE_SESSION:
2027 ret = viewer_create_session(conn);
2028 break;
d62023be
JD
2029 case LTTNG_VIEWER_DETACH_SESSION:
2030 ret = viewer_detach_session(conn);
2031 break;
d3e2ba59 2032 default:
7591bab1
MD
2033 ERR("Received unknown viewer command (%u)",
2034 be32toh(recv_hdr->cmd));
58eb9381 2035 live_relay_unknown_command(conn);
d3e2ba59
JD
2036 ret = -1;
2037 goto end;
2038 }
2039
2040end:
2041 return ret;
2042}
2043
2044static
58eb9381 2045void cleanup_connection_pollfd(struct lttng_poll_event *events, int pollfd)
d3e2ba59
JD
2046{
2047 int ret;
2048
58eb9381 2049 (void) lttng_poll_del(events, pollfd);
d3e2ba59
JD
2050
2051 ret = close(pollfd);
2052 if (ret < 0) {
2053 ERR("Closing pollfd %d", pollfd);
2054 }
2055}
2056
d3e2ba59
JD
2057/*
2058 * This thread does the actual work
2059 */
2060static
2061void *thread_worker(void *data)
2062{
2063 int ret, err = -1;
2064 uint32_t nb_fd;
d3e2ba59 2065 struct lttng_poll_event events;
7591bab1 2066 struct lttng_ht *viewer_connections_ht;
d3e2ba59
JD
2067 struct lttng_ht_iter iter;
2068 struct lttng_viewer_cmd recv_hdr;
302d8906 2069 struct relay_connection *destroy_conn;
d3e2ba59
JD
2070
2071 DBG("[thread] Live viewer relay worker started");
2072
2073 rcu_register_thread();
2074
eea7556c
MD
2075 health_register(health_relayd, HEALTH_RELAYD_TYPE_LIVE_WORKER);
2076
9b5e0863
MD
2077 if (testpoint(relayd_thread_live_worker)) {
2078 goto error_testpoint;
2079 }
2080
d3e2ba59 2081 /* table of connections indexed on socket */
7591bab1
MD
2082 viewer_connections_ht = lttng_ht_new(0, LTTNG_HT_TYPE_ULONG);
2083 if (!viewer_connections_ht) {
2084 goto viewer_connections_ht_error;
d3e2ba59
JD
2085 }
2086
2087 ret = create_thread_poll_set(&events, 2);
2088 if (ret < 0) {
2089 goto error_poll_create;
2090 }
2091
58eb9381 2092 ret = lttng_poll_add(&events, live_conn_pipe[0], LPOLLIN | LPOLLRDHUP);
d3e2ba59
JD
2093 if (ret < 0) {
2094 goto error;
2095 }
2096
2097restart:
2098 while (1) {
2099 int i;
2100
eea7556c
MD
2101 health_code_update();
2102
d3e2ba59
JD
2103 /* Infinite blocking call, waiting for transmission */
2104 DBG3("Relayd live viewer worker thread polling...");
eea7556c 2105 health_poll_entry();
d3e2ba59 2106 ret = lttng_poll_wait(&events, -1);
eea7556c 2107 health_poll_exit();
d3e2ba59
JD
2108 if (ret < 0) {
2109 /*
2110 * Restart interrupted system call.
2111 */
2112 if (errno == EINTR) {
2113 goto restart;
2114 }
2115 goto error;
2116 }
2117
2118 nb_fd = ret;
2119
2120 /*
2121 * Process control. The control connection is prioritised so we don't
2122 * starve it with high throughput tracing data on the data
2123 * connection.
2124 */
2125 for (i = 0; i < nb_fd; i++) {
2126 /* Fetch once the poll data */
2127 uint32_t revents = LTTNG_POLL_GETEV(&events, i);
2128 int pollfd = LTTNG_POLL_GETFD(&events, i);
2129
eea7556c
MD
2130 health_code_update();
2131
d3e2ba59 2132 /* Thread quit pipe has been closed. Killing thread. */
bcf4a440 2133 ret = check_thread_quit_pipe(pollfd, revents);
d3e2ba59
JD
2134 if (ret) {
2135 err = 0;
2136 goto exit;
2137 }
2138
7591bab1 2139 /* Inspect the relay conn pipe for new connection. */
58eb9381 2140 if (pollfd == live_conn_pipe[0]) {
03e43155 2141 if (revents & LPOLLIN) {
302d8906
JG
2142 struct relay_connection *conn;
2143
7591bab1
MD
2144 ret = lttng_read(live_conn_pipe[0],
2145 &conn, sizeof(conn));
d3e2ba59
JD
2146 if (ret < 0) {
2147 goto error;
2148 }
73039936
FD
2149 ret = lttng_poll_add(&events,
2150 conn->sock->fd,
58eb9381 2151 LPOLLIN | LPOLLRDHUP);
73039936
FD
2152 if (ret) {
2153 ERR("Failed to add new live connection file descriptor to poll set");
2154 goto error;
2155 }
7591bab1
MD
2156 connection_ht_add(viewer_connections_ht, conn);
2157 DBG("Connection socket %d added to poll", conn->sock->fd);
03e43155
MD
2158 } else if (revents & (LPOLLERR | LPOLLHUP | LPOLLRDHUP)) {
2159 ERR("Relay live pipe error");
2160 goto error;
2161 } else {
2162 ERR("Unexpected poll events %u for sock %d", revents, pollfd);
2163 goto error;
d3e2ba59 2164 }
58eb9381 2165 } else {
7591bab1 2166 /* Connection activity. */
302d8906
JG
2167 struct relay_connection *conn;
2168
7591bab1
MD
2169 conn = connection_get_by_sock(viewer_connections_ht, pollfd);
2170 if (!conn) {
2171 continue;
2172 }
58eb9381 2173
03e43155 2174 if (revents & LPOLLIN) {
58eb9381
DG
2175 ret = conn->sock->ops->recvmsg(conn->sock, &recv_hdr,
2176 sizeof(recv_hdr), 0);
d3e2ba59 2177 if (ret <= 0) {
7591bab1 2178 /* Connection closed. */
58eb9381 2179 cleanup_connection_pollfd(&events, pollfd);
7591bab1
MD
2180 /* Put "create" ownership reference. */
2181 connection_put(conn);
58eb9381 2182 DBG("Viewer control conn closed with %d", pollfd);
d3e2ba59 2183 } else {
58eb9381 2184 ret = process_control(&recv_hdr, conn);
d3e2ba59
JD
2185 if (ret < 0) {
2186 /* Clear the session on error. */
58eb9381 2187 cleanup_connection_pollfd(&events, pollfd);
7591bab1
MD
2188 /* Put "create" ownership reference. */
2189 connection_put(conn);
d3e2ba59
JD
2190 DBG("Viewer connection closed with %d", pollfd);
2191 }
2192 }
03e43155
MD
2193 } else if (revents & (LPOLLERR | LPOLLHUP | LPOLLRDHUP)) {
2194 cleanup_connection_pollfd(&events, pollfd);
2195 /* Put "create" ownership reference. */
2196 connection_put(conn);
2197 } else {
2198 ERR("Unexpected poll events %u for sock %d", revents, pollfd);
2199 connection_put(conn);
2200 goto error;
d3e2ba59 2201 }
7591bab1
MD
2202 /* Put local "get_by_sock" reference. */
2203 connection_put(conn);
d3e2ba59
JD
2204 }
2205 }
2206 }
2207
2208exit:
2209error:
2210 lttng_poll_clean(&events);
2211
71efa8ef 2212 /* Cleanup remaining connection object. */
d3e2ba59 2213 rcu_read_lock();
7591bab1 2214 cds_lfht_for_each_entry(viewer_connections_ht->ht, &iter.iter,
302d8906 2215 destroy_conn,
58eb9381 2216 sock_n.node) {
eea7556c 2217 health_code_update();
7591bab1 2218 connection_put(destroy_conn);
d3e2ba59
JD
2219 }
2220 rcu_read_unlock();
2221error_poll_create:
7591bab1
MD
2222 lttng_ht_destroy(viewer_connections_ht);
2223viewer_connections_ht_error:
58eb9381
DG
2224 /* Close relay conn pipes */
2225 utils_close_pipe(live_conn_pipe);
d3e2ba59
JD
2226 if (err) {
2227 DBG("Viewer worker thread exited with error");
2228 }
2229 DBG("Viewer worker thread cleanup complete");
9b5e0863 2230error_testpoint:
eea7556c
MD
2231 if (err) {
2232 health_error();
2233 ERR("Health error occurred in %s", __func__);
2234 }
2235 health_unregister(health_relayd);
b4aacfdc
MD
2236 if (lttng_relay_stop_threads()) {
2237 ERR("Error stopping threads");
178a0557 2238 }
d3e2ba59
JD
2239 rcu_unregister_thread();
2240 return NULL;
2241}
2242
2243/*
2244 * Create the relay command pipe to wake thread_manage_apps.
2245 * Closed in cleanup().
2246 */
58eb9381 2247static int create_conn_pipe(void)
d3e2ba59 2248{
178a0557
MD
2249 return utils_create_pipe_cloexec(live_conn_pipe);
2250}
d3e2ba59 2251
178a0557 2252int relayd_live_join(void)
d3e2ba59 2253{
178a0557 2254 int ret, retval = 0;
d3e2ba59
JD
2255 void *status;
2256
d3e2ba59 2257 ret = pthread_join(live_listener_thread, &status);
178a0557
MD
2258 if (ret) {
2259 errno = ret;
d3e2ba59 2260 PERROR("pthread_join live listener");
178a0557 2261 retval = -1;
d3e2ba59
JD
2262 }
2263
2264 ret = pthread_join(live_worker_thread, &status);
178a0557
MD
2265 if (ret) {
2266 errno = ret;
d3e2ba59 2267 PERROR("pthread_join live worker");
178a0557 2268 retval = -1;
d3e2ba59
JD
2269 }
2270
2271 ret = pthread_join(live_dispatcher_thread, &status);
178a0557
MD
2272 if (ret) {
2273 errno = ret;
d3e2ba59 2274 PERROR("pthread_join live dispatcher");
178a0557 2275 retval = -1;
d3e2ba59
JD
2276 }
2277
178a0557 2278 cleanup_relayd_live();
d3e2ba59 2279
178a0557 2280 return retval;
d3e2ba59
JD
2281}
2282
2283/*
2284 * main
2285 */
7591bab1 2286int relayd_live_create(struct lttng_uri *uri)
d3e2ba59 2287{
178a0557 2288 int ret = 0, retval = 0;
d3e2ba59
JD
2289 void *status;
2290 int is_root;
2291
178a0557
MD
2292 if (!uri) {
2293 retval = -1;
2294 goto exit_init_data;
2295 }
d3e2ba59
JD
2296 live_uri = uri;
2297
d3e2ba59
JD
2298 /* Check if daemon is UID = 0 */
2299 is_root = !getuid();
2300
2301 if (!is_root) {
2302 if (live_uri->port < 1024) {
2303 ERR("Need to be root to use ports < 1024");
178a0557
MD
2304 retval = -1;
2305 goto exit_init_data;
d3e2ba59
JD
2306 }
2307 }
2308
2309 /* Setup the thread apps communication pipe. */
178a0557
MD
2310 if (create_conn_pipe()) {
2311 retval = -1;
2312 goto exit_init_data;
d3e2ba59
JD
2313 }
2314
2315 /* Init relay command queue. */
8bdee6e2 2316 cds_wfcq_init(&viewer_conn_queue.head, &viewer_conn_queue.tail);
d3e2ba59
JD
2317
2318 /* Set up max poll set size */
25b397f9
MD
2319 if (lttng_poll_set_max_size()) {
2320 retval = -1;
2321 goto exit_init_data;
2322 }
d3e2ba59
JD
2323
2324 /* Setup the dispatcher thread */
1a1a34b4 2325 ret = pthread_create(&live_dispatcher_thread, default_pthread_attr(),
d3e2ba59 2326 thread_dispatcher, (void *) NULL);
178a0557
MD
2327 if (ret) {
2328 errno = ret;
d3e2ba59 2329 PERROR("pthread_create viewer dispatcher");
178a0557
MD
2330 retval = -1;
2331 goto exit_dispatcher_thread;
d3e2ba59
JD
2332 }
2333
2334 /* Setup the worker thread */
1a1a34b4 2335 ret = pthread_create(&live_worker_thread, default_pthread_attr(),
7591bab1 2336 thread_worker, NULL);
178a0557
MD
2337 if (ret) {
2338 errno = ret;
d3e2ba59 2339 PERROR("pthread_create viewer worker");
178a0557
MD
2340 retval = -1;
2341 goto exit_worker_thread;
d3e2ba59
JD
2342 }
2343
2344 /* Setup the listener thread */
1a1a34b4 2345 ret = pthread_create(&live_listener_thread, default_pthread_attr(),
d3e2ba59 2346 thread_listener, (void *) NULL);
178a0557
MD
2347 if (ret) {
2348 errno = ret;
d3e2ba59 2349 PERROR("pthread_create viewer listener");
178a0557
MD
2350 retval = -1;
2351 goto exit_listener_thread;
d3e2ba59
JD
2352 }
2353
178a0557
MD
2354 /*
2355 * All OK, started all threads.
2356 */
2357 return retval;
2358
9911d21b
JG
2359 /*
2360 * Join on the live_listener_thread should anything be added after
2361 * the live_listener thread's creation.
2362 */
d3e2ba59 2363
178a0557 2364exit_listener_thread:
d3e2ba59 2365
d3e2ba59 2366 ret = pthread_join(live_worker_thread, &status);
178a0557
MD
2367 if (ret) {
2368 errno = ret;
d3e2ba59 2369 PERROR("pthread_join live worker");
178a0557 2370 retval = -1;
d3e2ba59 2371 }
178a0557 2372exit_worker_thread:
d3e2ba59 2373
d3e2ba59 2374 ret = pthread_join(live_dispatcher_thread, &status);
178a0557
MD
2375 if (ret) {
2376 errno = ret;
d3e2ba59 2377 PERROR("pthread_join live dispatcher");
178a0557 2378 retval = -1;
d3e2ba59 2379 }
178a0557 2380exit_dispatcher_thread:
d3e2ba59 2381
178a0557
MD
2382exit_init_data:
2383 cleanup_relayd_live();
d3e2ba59 2384
178a0557 2385 return retval;
d3e2ba59 2386}
This page took 0.173049 seconds and 4 git commands to generate.