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