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