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