Fix: miscellaneous memory handling fixes
[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
53efb85a
MD
934 memset(&response, 0, sizeof(response));
935
80e8027a 936 rcu_read_lock();
6763619c 937 session = session_find_by_id(conn->sessions_ht, session_id);
2f8f53af 938 if (!session) {
6763619c 939 DBG("Relay session %" PRIu64 " not found", session_id);
c4e361a4 940 response.status = htobe32(LTTNG_VIEWER_NEW_STREAMS_ERR);
80e8027a
JD
941 goto send_reply;
942 }
943
6763619c 944 if (!session_attached(conn, session_id)) {
80e8027a 945 send_streams = 0;
c4e361a4 946 response.status = htobe32(LTTNG_VIEWER_NEW_STREAMS_ERR);
80e8027a
JD
947 goto send_reply;
948 }
949
6763619c
JD
950 send_streams = 1;
951 response.status = htobe32(LTTNG_VIEWER_NEW_STREAMS_OK);
952
c4e361a4 953 ret = make_viewer_streams(session, LTTNG_VIEWER_SEEK_LAST, NULL, &nb_unsent,
2f8f53af
DG
954 &nb_created);
955 if (ret < 0) {
956 goto end_unlock;
957 }
958 /* Only send back the newly created streams with the unsent ones. */
959 nb_streams = nb_created + nb_unsent;
80e8027a
JD
960 response.streams_count = htobe32(nb_streams);
961
4479f682
JD
962 /*
963 * If the session is closed and we have no new streams to send,
964 * it means that the viewer has already received the whole trace
965 * for this session and should now close it.
966 */
967 if (nb_streams == 0 && session->close_flag) {
968 send_streams = 0;
969 response.status = htobe32(LTTNG_VIEWER_NEW_STREAMS_HUP);
6763619c
JD
970 /*
971 * Remove the session from the attached list of the connection
972 * and try to destroy it.
973 */
974 cds_list_del(&session->viewer_session_list);
d227d5bd 975 cleanup_session(conn, session);
4479f682
JD
976 goto send_reply;
977 }
978
80e8027a
JD
979send_reply:
980 health_code_update();
58eb9381 981 ret = send_response(conn->sock, &response, sizeof(response));
80e8027a 982 if (ret < 0) {
80e8027a
JD
983 goto end_unlock;
984 }
985 health_code_update();
986
987 /*
988 * Unknown or empty session, just return gracefully, the viewer knows what
989 * is happening.
990 */
991 if (!send_streams || !nb_streams) {
992 ret = 0;
993 goto end_unlock;
994 }
995
2f8f53af
DG
996 /*
997 * Send stream and *DON'T* ignore the sent flag so every viewer streams
998 * that were not sent from that point will be sent to the viewer.
999 */
58eb9381 1000 ret = send_viewer_streams(conn->sock, session, 0);
2f8f53af
DG
1001 if (ret < 0) {
1002 goto end_unlock;
80e8027a
JD
1003 }
1004
80e8027a
JD
1005end_unlock:
1006 rcu_read_unlock();
80e8027a
JD
1007error:
1008 return ret;
1009}
1010
d3e2ba59
JD
1011/*
1012 * Send the viewer the list of current sessions.
1013 */
1014static
58eb9381 1015int viewer_attach_session(struct relay_connection *conn)
d3e2ba59 1016{
2f8f53af
DG
1017 int send_streams = 0;
1018 ssize_t ret;
80e8027a 1019 uint32_t nb_streams = 0;
2f8f53af 1020 enum lttng_viewer_seek seek_type;
d3e2ba59
JD
1021 struct lttng_viewer_attach_session_request request;
1022 struct lttng_viewer_attach_session_response response;
d3e2ba59
JD
1023 struct relay_session *session;
1024
58eb9381 1025 assert(conn);
d3e2ba59 1026
eea7556c
MD
1027 health_code_update();
1028
2f8f53af 1029 /* Receive the request from the connected client. */
58eb9381 1030 ret = recv_request(conn->sock, &request, sizeof(request));
2f8f53af 1031 if (ret < 0) {
d3e2ba59
JD
1032 goto error;
1033 }
1034
eea7556c
MD
1035 health_code_update();
1036
53efb85a
MD
1037 memset(&response, 0, sizeof(response));
1038
c3b7390b
JD
1039 if (!conn->viewer_session) {
1040 DBG("Client trying to attach before creating a live viewer session");
1041 response.status = htobe32(LTTNG_VIEWER_ATTACH_NO_SESSION);
1042 goto send_reply;
1043 }
1044
d3e2ba59 1045 rcu_read_lock();
58eb9381
DG
1046 session = session_find_by_id(conn->sessions_ht,
1047 be64toh(request.session_id));
2f8f53af 1048 if (!session) {
d3e2ba59
JD
1049 DBG("Relay session %" PRIu64 " not found",
1050 be64toh(request.session_id));
c4e361a4 1051 response.status = htobe32(LTTNG_VIEWER_ATTACH_UNK);
d3e2ba59
JD
1052 goto send_reply;
1053 }
2a174661
DG
1054 session_viewer_attach(session);
1055 DBG("Attach session ID %" PRIu64 " received", be64toh(request.session_id));
d3e2ba59 1056
2a174661 1057 if (uatomic_read(&session->viewer_refcount) > 1) {
d3e2ba59 1058 DBG("Already a viewer attached");
c4e361a4 1059 response.status = htobe32(LTTNG_VIEWER_ATTACH_ALREADY);
2a174661 1060 session_viewer_detach(session);
d3e2ba59
JD
1061 goto send_reply;
1062 } else if (session->live_timer == 0) {
1063 DBG("Not live session");
c4e361a4 1064 response.status = htobe32(LTTNG_VIEWER_ATTACH_NOT_LIVE);
d3e2ba59
JD
1065 goto send_reply;
1066 } else {
d3e2ba59 1067 send_streams = 1;
c4e361a4 1068 response.status = htobe32(LTTNG_VIEWER_ATTACH_OK);
6763619c
JD
1069 cds_list_add(&session->viewer_session_list,
1070 &conn->viewer_session->sessions_head);
d3e2ba59
JD
1071 }
1072
1073 switch (be32toh(request.seek)) {
c4e361a4
JD
1074 case LTTNG_VIEWER_SEEK_BEGINNING:
1075 case LTTNG_VIEWER_SEEK_LAST:
2f8f53af 1076 seek_type = be32toh(request.seek);
d3e2ba59
JD
1077 break;
1078 default:
1079 ERR("Wrong seek parameter");
c4e361a4 1080 response.status = htobe32(LTTNG_VIEWER_ATTACH_SEEK_ERR);
d3e2ba59
JD
1081 send_streams = 0;
1082 goto send_reply;
1083 }
1084
2f8f53af
DG
1085 ret = make_viewer_streams(session, seek_type, &nb_streams, NULL, NULL);
1086 if (ret < 0) {
1087 goto end_unlock;
d3e2ba59 1088 }
2f8f53af 1089 response.streams_count = htobe32(nb_streams);
d3e2ba59
JD
1090
1091send_reply:
eea7556c 1092 health_code_update();
58eb9381 1093 ret = send_response(conn->sock, &response, sizeof(response));
d3e2ba59 1094 if (ret < 0) {
d3e2ba59
JD
1095 goto end_unlock;
1096 }
eea7556c 1097 health_code_update();
d3e2ba59
JD
1098
1099 /*
157df586 1100 * Unknown or empty session, just return gracefully, the viewer knows what
d3e2ba59
JD
1101 * is happening.
1102 */
157df586 1103 if (!send_streams || !nb_streams) {
d3e2ba59
JD
1104 ret = 0;
1105 goto end_unlock;
1106 }
1107
2f8f53af 1108 /* Send stream and ignore the sent flag. */
58eb9381 1109 ret = send_viewer_streams(conn->sock, session, 1);
2f8f53af
DG
1110 if (ret < 0) {
1111 goto end_unlock;
d3e2ba59 1112 }
d3e2ba59
JD
1113
1114end_unlock:
1115 rcu_read_unlock();
4a9daf17
JD
1116error:
1117 return ret;
1118}
1119
878c34cf
DG
1120/*
1121 * Open the index file if needed for the given vstream.
1122 *
1123 * If an index file is successfully opened, the index_read_fd of the stream is
1124 * set with it.
1125 *
1126 * Return 0 on success, a negative value on error (-ENOENT if not ready yet).
1127 */
1128static int try_open_index(struct relay_viewer_stream *vstream,
1129 struct relay_stream *rstream)
1130{
1131 int ret = 0;
1132
1133 assert(vstream);
1134 assert(rstream);
1135
1136 if (vstream->index_read_fd >= 0) {
1137 goto end;
1138 }
1139
1140 /*
1141 * First time, we open the index file and at least one index is ready. The
1142 * race between the read and write of the total_index_received is
1143 * acceptable here since the client will be notified to simply come back
1144 * and get the next index.
1145 */
1146 if (rstream->total_index_received <= 0) {
1147 ret = -ENOENT;
1148 goto end;
1149 }
1150 ret = index_open(vstream->path_name, vstream->channel_name,
1151 vstream->tracefile_count, vstream->tracefile_count_current);
1152 if (ret >= 0) {
1153 vstream->index_read_fd = ret;
1154 ret = 0;
1155 goto end;
1156 }
1157
1158end:
1159 return ret;
1160}
1161
1162/*
1163 * Check the status of the index for the given stream. This function updates
1164 * the index structure if needed and can destroy the vstream also for the HUP
1165 * situation.
1166 *
1167 * Return 0 means that we can proceed with the index. A value of 1 means that
1168 * the index has been updated and is ready to be send to the client. A negative
1169 * value indicates an error that can't be handled.
1170 */
1171static int check_index_status(struct relay_viewer_stream *vstream,
1172 struct relay_stream *rstream, struct ctf_trace *trace,
1173 struct lttng_viewer_index *index)
1174{
1175 int ret;
1176
1177 assert(vstream);
1178 assert(rstream);
1179 assert(index);
1180 assert(trace);
1181
1182 if (!rstream->close_flag) {
1183 /* Rotate on abort (overwrite). */
1184 if (vstream->abort_flag) {
1185 DBG("Viewer stream %" PRIu64 " rotate because of overwrite",
1186 vstream->stream_handle);
1187 ret = viewer_stream_rotate(vstream, rstream);
1188 if (ret < 0) {
1189 goto error;
1190 } else if (ret == 1) {
1191 /* EOF */
1192 index->status = htobe32(LTTNG_VIEWER_INDEX_HUP);
1193 goto hup;
1194 }
1195 /* ret == 0 means successful so we continue. */
1196 }
1197
1198 /* Check if we are in the same trace file at this point. */
1199 if (rstream->tracefile_count_current == vstream->tracefile_count_current) {
1200 if (rstream->beacon_ts_end != -1ULL &&
1201 vstream->last_sent_index == rstream->total_index_received) {
1202 /*
1203 * We've received a synchronization beacon and the last index
1204 * available has been sent, the index for now is inactive.
1205 */
1206 index->status = htobe32(LTTNG_VIEWER_INDEX_INACTIVE);
1207 index->timestamp_end = htobe64(rstream->beacon_ts_end);
1208 goto index_ready;
1209 } else if (rstream->total_index_received <= vstream->last_sent_index
1210 && !vstream->close_write_flag) {
1211 /*
1212 * Reader and writer are working in the same tracefile, so we care
1213 * about the number of index received and sent. Otherwise, we read
1214 * up to EOF.
1215 */
1216 index->status = htobe32(LTTNG_VIEWER_INDEX_RETRY);
1217 goto index_ready;
1218 }
1219 }
1220 /* Nothing to do with the index, continue with it. */
1221 ret = 0;
1222 } else if (rstream->close_flag && vstream->close_write_flag &&
1223 vstream->total_index_received == vstream->last_sent_index) {
1224 /* Last index sent and current tracefile closed in write */
1225 index->status = htobe32(LTTNG_VIEWER_INDEX_HUP);
1226 goto hup;
1227 } else {
1228 vstream->close_write_flag = 1;
1229 ret = 0;
1230 }
1231
1232error:
1233 return ret;
1234
1235hup:
1236 viewer_stream_delete(vstream);
1237 viewer_stream_destroy(trace, vstream);
1238index_ready:
1239 return 1;
1240}
1241
d3e2ba59
JD
1242/*
1243 * Send the next index for a stream.
1244 *
1245 * Return 0 on success or else a negative value.
1246 */
1247static
58eb9381 1248int viewer_get_next_index(struct relay_connection *conn)
d3e2ba59
JD
1249{
1250 int ret;
878c34cf 1251 ssize_t read_ret;
d3e2ba59
JD
1252 struct lttng_viewer_get_next_index request_index;
1253 struct lttng_viewer_index viewer_index;
50adc264 1254 struct ctf_packet_index packet_index;
d3e2ba59
JD
1255 struct relay_viewer_stream *vstream;
1256 struct relay_stream *rstream;
2a174661
DG
1257 struct ctf_trace *ctf_trace;
1258 struct relay_session *session;
d3e2ba59 1259
58eb9381 1260 assert(conn);
d3e2ba59
JD
1261
1262 DBG("Viewer get next index");
1263
eea7556c 1264 health_code_update();
2f8f53af 1265
58eb9381 1266 ret = recv_request(conn->sock, &request_index, sizeof(request_index));
2f8f53af 1267 if (ret < 0) {
d3e2ba59
JD
1268 goto end;
1269 }
eea7556c 1270 health_code_update();
d3e2ba59
JD
1271
1272 rcu_read_lock();
6763619c
JD
1273 vstream = viewer_stream_find_by_id(be64toh(request_index.stream_id));
1274 if (!vstream) {
2a174661
DG
1275 ret = -1;
1276 goto end_unlock;
1277 }
1278
6763619c
JD
1279 session = session_find_by_id(conn->sessions_ht, vstream->session_id);
1280 if (!session) {
d3e2ba59
JD
1281 ret = -1;
1282 goto end_unlock;
1283 }
1284
2a174661
DG
1285 ctf_trace = ctf_trace_find_by_path(session->ctf_traces_ht, vstream->path_name);
1286 assert(ctf_trace);
1287
d3e2ba59
JD
1288 memset(&viewer_index, 0, sizeof(viewer_index));
1289
1290 /*
1291 * The viewer should not ask for index on metadata stream.
1292 */
1293 if (vstream->metadata_flag) {
c4e361a4 1294 viewer_index.status = htobe32(LTTNG_VIEWER_INDEX_HUP);
d3e2ba59
JD
1295 goto send_reply;
1296 }
1297
878c34cf
DG
1298 rstream = stream_find_by_id(relay_streams_ht, vstream->stream_handle);
1299 assert(rstream);
1300
1301 /* Try to open an index if one is needed for that stream. */
1302 ret = try_open_index(vstream, rstream);
1303 if (ret < 0) {
0e6830aa 1304 if (ret == -ENOENT) {
d3e2ba59
JD
1305 /*
1306 * The index is created only when the first data packet arrives, it
1307 * might not be ready at the beginning of the session
1308 */
c4e361a4 1309 viewer_index.status = htobe32(LTTNG_VIEWER_INDEX_RETRY);
878c34cf
DG
1310 } else {
1311 /* Unhandled error. */
c4e361a4 1312 viewer_index.status = htobe32(LTTNG_VIEWER_INDEX_ERR);
d3e2ba59 1313 }
878c34cf 1314 goto send_reply;
d3e2ba59
JD
1315 }
1316
10b0cd2e 1317 pthread_mutex_lock(&rstream->viewer_stream_rotation_lock);
878c34cf
DG
1318 ret = check_index_status(vstream, rstream, ctf_trace, &viewer_index);
1319 pthread_mutex_unlock(&rstream->viewer_stream_rotation_lock);
1320 if (ret < 0) {
1321 goto end;
1322 } else if (ret == 1) {
1323 /*
1324 * This means the viewer index data structure has been populated by the
1325 * check call thus we now send back the reply to the client.
1326 */
d3e2ba59
JD
1327 goto send_reply;
1328 }
878c34cf
DG
1329 /* At this point, ret MUST be 0 thus we continue with the get. */
1330 assert(!ret);
d3e2ba59 1331
2a174661
DG
1332 if (!ctf_trace->metadata_received ||
1333 ctf_trace->metadata_received > ctf_trace->metadata_sent) {
d3e2ba59
JD
1334 viewer_index.flags |= LTTNG_VIEWER_FLAG_NEW_METADATA;
1335 }
1336
f04a971b 1337 ret = check_new_streams(conn);
4a9daf17
JD
1338 if (ret < 0) {
1339 goto end_unlock;
1340 } else if (ret == 1) {
1341 viewer_index.flags |= LTTNG_VIEWER_FLAG_NEW_STREAM;
1342 }
1343
56611b06 1344 pthread_mutex_lock(&rstream->viewer_stream_rotation_lock);
cef0f7d5
JD
1345 pthread_mutex_lock(&vstream->overwrite_lock);
1346 if (vstream->abort_flag) {
878c34cf 1347 /* The file is being overwritten by the writer, we cannot use it. */
cef0f7d5 1348 pthread_mutex_unlock(&vstream->overwrite_lock);
2f8f53af 1349 ret = viewer_stream_rotate(vstream, rstream);
56611b06 1350 pthread_mutex_unlock(&rstream->viewer_stream_rotation_lock);
cef0f7d5
JD
1351 if (ret < 0) {
1352 goto end_unlock;
a020f610 1353 } else if (ret == 1) {
c4e361a4 1354 viewer_index.status = htobe32(LTTNG_VIEWER_INDEX_HUP);
2f8f53af 1355 viewer_stream_delete(vstream);
2a174661 1356 viewer_stream_destroy(ctf_trace, vstream);
878c34cf
DG
1357 } else {
1358 viewer_index.status = htobe32(LTTNG_VIEWER_INDEX_RETRY);
cef0f7d5
JD
1359 }
1360 goto send_reply;
1361 }
2f8f53af 1362
878c34cf 1363 read_ret = lttng_read(vstream->index_read_fd, &packet_index,
6cd525e8 1364 sizeof(packet_index));
cef0f7d5 1365 pthread_mutex_unlock(&vstream->overwrite_lock);
56611b06 1366 pthread_mutex_unlock(&rstream->viewer_stream_rotation_lock);
878c34cf
DG
1367 if (read_ret < 0) {
1368 viewer_index.status = htobe32(LTTNG_VIEWER_INDEX_HUP);
1369 viewer_stream_delete(vstream);
1370 viewer_stream_destroy(ctf_trace, vstream);
1371 goto send_reply;
1372 } else if (read_ret < sizeof(packet_index)) {
10b0cd2e 1373 pthread_mutex_lock(&rstream->viewer_stream_rotation_lock);
878c34cf 1374 if (vstream->close_write_flag) {
2f8f53af 1375 ret = viewer_stream_rotate(vstream, rstream);
6b6b9a5a 1376 if (ret < 0) {
878c34cf 1377 pthread_mutex_unlock(&rstream->viewer_stream_rotation_lock);
6b6b9a5a 1378 goto end_unlock;
a020f610 1379 } else if (ret == 1) {
c4e361a4 1380 viewer_index.status = htobe32(LTTNG_VIEWER_INDEX_HUP);
2f8f53af 1381 viewer_stream_delete(vstream);
2a174661 1382 viewer_stream_destroy(ctf_trace, vstream);
878c34cf
DG
1383 } else {
1384 viewer_index.status = htobe32(LTTNG_VIEWER_INDEX_RETRY);
6b6b9a5a
JD
1385 }
1386 } else {
878c34cf 1387 ERR("Relay reading index file %d", vstream->index_read_fd);
c4e361a4 1388 viewer_index.status = htobe32(LTTNG_VIEWER_INDEX_ERR);
6b6b9a5a 1389 }
878c34cf 1390 pthread_mutex_unlock(&rstream->viewer_stream_rotation_lock);
6b6b9a5a 1391 goto send_reply;
d3e2ba59 1392 } else {
c4e361a4 1393 viewer_index.status = htobe32(LTTNG_VIEWER_INDEX_OK);
d3e2ba59
JD
1394 vstream->last_sent_index++;
1395 }
1396
1397 /*
1398 * Indexes are stored in big endian, no need to switch before sending.
1399 */
1400 viewer_index.offset = packet_index.offset;
1401 viewer_index.packet_size = packet_index.packet_size;
1402 viewer_index.content_size = packet_index.content_size;
1403 viewer_index.timestamp_begin = packet_index.timestamp_begin;
1404 viewer_index.timestamp_end = packet_index.timestamp_end;
1405 viewer_index.events_discarded = packet_index.events_discarded;
1406 viewer_index.stream_id = packet_index.stream_id;
1407
1408send_reply:
1409 viewer_index.flags = htobe32(viewer_index.flags);
eea7556c 1410 health_code_update();
2f8f53af 1411
58eb9381 1412 ret = send_response(conn->sock, &viewer_index, sizeof(viewer_index));
d3e2ba59 1413 if (ret < 0) {
d3e2ba59
JD
1414 goto end_unlock;
1415 }
eea7556c 1416 health_code_update();
d3e2ba59 1417
2f8f53af 1418 DBG("Index %" PRIu64 " for stream %" PRIu64 " sent",
d3e2ba59
JD
1419 vstream->last_sent_index, vstream->stream_handle);
1420
1421end_unlock:
1422 rcu_read_unlock();
1423
d3e2ba59
JD
1424end:
1425 return ret;
1426}
1427
1428/*
1429 * Send the next index for a stream
1430 *
1431 * Return 0 on success or else a negative value.
1432 */
1433static
58eb9381 1434int viewer_get_packet(struct relay_connection *conn)
d3e2ba59
JD
1435{
1436 int ret, send_data = 0;
1437 char *data = NULL;
1438 uint32_t len = 0;
1439 ssize_t read_len;
1440 struct lttng_viewer_get_packet get_packet_info;
1441 struct lttng_viewer_trace_packet reply;
1442 struct relay_viewer_stream *stream;
6763619c 1443 struct relay_session *session;
2a174661 1444 struct ctf_trace *ctf_trace;
d3e2ba59 1445
58eb9381 1446 assert(conn);
d3e2ba59
JD
1447
1448 DBG2("Relay get data packet");
1449
eea7556c 1450 health_code_update();
2f8f53af 1451
58eb9381 1452 ret = recv_request(conn->sock, &get_packet_info, sizeof(get_packet_info));
2f8f53af 1453 if (ret < 0) {
d3e2ba59
JD
1454 goto end;
1455 }
eea7556c 1456 health_code_update();
d3e2ba59 1457
0233a6a5
DG
1458 /* From this point on, the error label can be reached. */
1459 memset(&reply, 0, sizeof(reply));
1460
d3e2ba59 1461 rcu_read_lock();
2f8f53af 1462 stream = viewer_stream_find_by_id(be64toh(get_packet_info.stream_id));
d3e2ba59
JD
1463 if (!stream) {
1464 goto error;
1465 }
2a174661 1466
6763619c
JD
1467 session = session_find_by_id(conn->sessions_ht, stream->session_id);
1468 if (!session) {
1469 ret = -1;
1470 goto error;
1471 }
1472
1473 ctf_trace = ctf_trace_find_by_path(session->ctf_traces_ht,
2a174661
DG
1474 stream->path_name);
1475 assert(ctf_trace);
d3e2ba59
JD
1476
1477 /*
1478 * First time we read this stream, we need open the tracefile, we should
1479 * only arrive here if an index has already been sent to the viewer, so the
1480 * tracefile must exist, if it does not it is a fatal error.
1481 */
1482 if (stream->read_fd < 0) {
1483 char fullpath[PATH_MAX];
1484
6b6b9a5a
JD
1485 if (stream->tracefile_count > 0) {
1486 ret = snprintf(fullpath, PATH_MAX, "%s/%s_%" PRIu64, stream->path_name,
1487 stream->channel_name,
1488 stream->tracefile_count_current);
1489 } else {
1490 ret = snprintf(fullpath, PATH_MAX, "%s/%s", stream->path_name,
1491 stream->channel_name);
1492 }
d3e2ba59
JD
1493 if (ret < 0) {
1494 goto error;
1495 }
1496 ret = open(fullpath, O_RDONLY);
1497 if (ret < 0) {
1498 PERROR("Relay opening trace file");
1499 goto error;
1500 }
1501 stream->read_fd = ret;
1502 }
1503
2a174661
DG
1504 if (!ctf_trace->metadata_received ||
1505 ctf_trace->metadata_received > ctf_trace->metadata_sent) {
c4e361a4 1506 reply.status = htobe32(LTTNG_VIEWER_GET_PACKET_ERR);
d3e2ba59 1507 reply.flags |= LTTNG_VIEWER_FLAG_NEW_METADATA;
d3e2ba59
JD
1508 goto send_reply;
1509 }
1510
f04a971b 1511 ret = check_new_streams(conn);
4a9daf17
JD
1512 if (ret < 0) {
1513 goto end_unlock;
1514 } else if (ret == 1) {
c4e361a4 1515 reply.status = htobe32(LTTNG_VIEWER_GET_PACKET_ERR);
4a9daf17
JD
1516 reply.flags |= LTTNG_VIEWER_FLAG_NEW_STREAM;
1517 goto send_reply;
1518 }
1519
d3e2ba59
JD
1520 len = be32toh(get_packet_info.len);
1521 data = zmalloc(len);
1522 if (!data) {
1523 PERROR("relay data zmalloc");
1524 goto error;
1525 }
1526
1527 ret = lseek(stream->read_fd, be64toh(get_packet_info.offset), SEEK_SET);
1528 if (ret < 0) {
6b6b9a5a
JD
1529 /*
1530 * If the read fd was closed by the streaming side, the
1531 * abort_flag will be set to 1, otherwise it is an error.
1532 */
1533 if (stream->abort_flag == 0) {
1534 PERROR("lseek");
1535 goto error;
1536 }
c4e361a4 1537 reply.status = htobe32(LTTNG_VIEWER_GET_PACKET_EOF);
6b6b9a5a 1538 goto send_reply;
d3e2ba59 1539 }
6cd525e8
MD
1540 read_len = lttng_read(stream->read_fd, data, len);
1541 if (read_len < len) {
6b6b9a5a
JD
1542 /*
1543 * If the read fd was closed by the streaming side, the
1544 * abort_flag will be set to 1, otherwise it is an error.
1545 */
1546 if (stream->abort_flag == 0) {
1547 PERROR("Relay reading trace file, fd: %d, offset: %" PRIu64,
1548 stream->read_fd,
1549 be64toh(get_packet_info.offset));
1550 goto error;
1551 } else {
c4e361a4 1552 reply.status = htobe32(LTTNG_VIEWER_GET_PACKET_EOF);
6b6b9a5a
JD
1553 goto send_reply;
1554 }
d3e2ba59 1555 }
c4e361a4 1556 reply.status = htobe32(LTTNG_VIEWER_GET_PACKET_OK);
d3e2ba59
JD
1557 reply.len = htobe32(len);
1558 send_data = 1;
1559 goto send_reply;
1560
1561error:
c4e361a4 1562 reply.status = htobe32(LTTNG_VIEWER_GET_PACKET_ERR);
d3e2ba59
JD
1563
1564send_reply:
1565 reply.flags = htobe32(reply.flags);
eea7556c
MD
1566
1567 health_code_update();
2f8f53af 1568
58eb9381 1569 ret = send_response(conn->sock, &reply, sizeof(reply));
d3e2ba59 1570 if (ret < 0) {
d3e2ba59
JD
1571 goto end_unlock;
1572 }
eea7556c 1573 health_code_update();
d3e2ba59
JD
1574
1575 if (send_data) {
eea7556c 1576 health_code_update();
58eb9381 1577 ret = send_response(conn->sock, data, len);
d3e2ba59 1578 if (ret < 0) {
d3e2ba59
JD
1579 goto end_unlock;
1580 }
eea7556c 1581 health_code_update();
d3e2ba59
JD
1582 }
1583
1584 DBG("Sent %u bytes for stream %" PRIu64, len,
1585 be64toh(get_packet_info.stream_id));
1586
1587end_unlock:
1588 free(data);
1589 rcu_read_unlock();
1590
1591end:
1592 return ret;
1593}
1594
1595/*
1596 * Send the session's metadata
1597 *
1598 * Return 0 on success else a negative value.
1599 */
1600static
58eb9381 1601int viewer_get_metadata(struct relay_connection *conn)
d3e2ba59
JD
1602{
1603 int ret = 0;
1604 ssize_t read_len;
1605 uint64_t len = 0;
1606 char *data = NULL;
1607 struct lttng_viewer_get_metadata request;
1608 struct lttng_viewer_metadata_packet reply;
1609 struct relay_viewer_stream *stream;
2a174661 1610 struct ctf_trace *ctf_trace;
6763619c 1611 struct relay_session *session;
d3e2ba59 1612
58eb9381 1613 assert(conn);
d3e2ba59
JD
1614
1615 DBG("Relay get metadata");
1616
eea7556c 1617 health_code_update();
2f8f53af 1618
58eb9381 1619 ret = recv_request(conn->sock, &request, sizeof(request));
2f8f53af 1620 if (ret < 0) {
d3e2ba59
JD
1621 goto end;
1622 }
eea7556c 1623 health_code_update();
d3e2ba59 1624
53efb85a
MD
1625 memset(&reply, 0, sizeof(reply));
1626
d3e2ba59 1627 rcu_read_lock();
2f8f53af 1628 stream = viewer_stream_find_by_id(be64toh(request.stream_id));
d3e2ba59
JD
1629 if (!stream || !stream->metadata_flag) {
1630 ERR("Invalid metadata stream");
1631 goto error;
1632 }
d3e2ba59 1633
6763619c
JD
1634 session = session_find_by_id(conn->sessions_ht, stream->session_id);
1635 if (!session) {
1636 ret = -1;
1637 goto error;
1638 }
1639
1640 ctf_trace = ctf_trace_find_by_path(session->ctf_traces_ht,
2a174661
DG
1641 stream->path_name);
1642 assert(ctf_trace);
1643 assert(ctf_trace->metadata_sent <= ctf_trace->metadata_received);
1644
1645 len = ctf_trace->metadata_received - ctf_trace->metadata_sent;
d3e2ba59 1646 if (len == 0) {
c4e361a4 1647 reply.status = htobe32(LTTNG_VIEWER_NO_NEW_METADATA);
d3e2ba59
JD
1648 goto send_reply;
1649 }
1650
1651 /* first time, we open the metadata file */
1652 if (stream->read_fd < 0) {
1653 char fullpath[PATH_MAX];
1654
1655 ret = snprintf(fullpath, PATH_MAX, "%s/%s", stream->path_name,
1656 stream->channel_name);
1657 if (ret < 0) {
1658 goto error;
1659 }
1660 ret = open(fullpath, O_RDONLY);
1661 if (ret < 0) {
1662 PERROR("Relay opening metadata file");
1663 goto error;
1664 }
1665 stream->read_fd = ret;
1666 }
1667
1668 reply.len = htobe64(len);
1669 data = zmalloc(len);
1670 if (!data) {
1671 PERROR("viewer metadata zmalloc");
1672 goto error;
1673 }
1674
6cd525e8
MD
1675 read_len = lttng_read(stream->read_fd, data, len);
1676 if (read_len < len) {
d3e2ba59
JD
1677 PERROR("Relay reading metadata file");
1678 goto error;
1679 }
2a174661 1680 ctf_trace->metadata_sent += read_len;
c4e361a4 1681 reply.status = htobe32(LTTNG_VIEWER_METADATA_OK);
d3e2ba59
JD
1682 goto send_reply;
1683
1684error:
c4e361a4 1685 reply.status = htobe32(LTTNG_VIEWER_METADATA_ERR);
d3e2ba59
JD
1686
1687send_reply:
eea7556c 1688 health_code_update();
58eb9381 1689 ret = send_response(conn->sock, &reply, sizeof(reply));
d3e2ba59 1690 if (ret < 0) {
d3e2ba59
JD
1691 goto end_unlock;
1692 }
eea7556c 1693 health_code_update();
d3e2ba59
JD
1694
1695 if (len > 0) {
58eb9381 1696 ret = send_response(conn->sock, data, len);
d3e2ba59 1697 if (ret < 0) {
d3e2ba59
JD
1698 goto end_unlock;
1699 }
1700 }
1701
1702 DBG("Sent %" PRIu64 " bytes of metadata for stream %" PRIu64, len,
1703 be64toh(request.stream_id));
1704
1705 DBG("Metadata sent");
1706
1707end_unlock:
1708 free(data);
1709 rcu_read_unlock();
1710end:
1711 return ret;
1712}
1713
c3b7390b
JD
1714/*
1715 * Create a viewer session.
1716 *
1717 * Return 0 on success or else a negative value.
1718 */
1719static
1720int viewer_create_session(struct relay_connection *conn)
1721{
1722 int ret;
1723 struct lttng_viewer_create_session_response resp;
1724
1725 DBG("Viewer create session received");
1726
53efb85a 1727 memset(&resp, 0, sizeof(resp));
c3b7390b 1728 resp.status = htobe32(LTTNG_VIEWER_CREATE_SESSION_OK);
32816a93 1729 conn->viewer_session = zmalloc(sizeof(*conn->viewer_session));
c3b7390b
JD
1730 if (!conn->viewer_session) {
1731 ERR("Allocation viewer session");
1732 resp.status = htobe32(LTTNG_VIEWER_CREATE_SESSION_ERR);
1733 goto send_reply;
1734 }
1735 CDS_INIT_LIST_HEAD(&conn->viewer_session->sessions_head);
1736
1737send_reply:
1738 health_code_update();
1739 ret = send_response(conn->sock, &resp, sizeof(resp));
1740 if (ret < 0) {
1741 goto end;
1742 }
1743 health_code_update();
1744 ret = 0;
1745
1746end:
1747 return ret;
1748}
1749
1750
d3e2ba59
JD
1751/*
1752 * live_relay_unknown_command: send -1 if received unknown command
1753 */
1754static
58eb9381 1755void live_relay_unknown_command(struct relay_connection *conn)
d3e2ba59
JD
1756{
1757 struct lttcomm_relayd_generic_reply reply;
d3e2ba59 1758
53efb85a 1759 memset(&reply, 0, sizeof(reply));
d3e2ba59 1760 reply.ret_code = htobe32(LTTNG_ERR_UNK);
58eb9381 1761 (void) send_response(conn->sock, &reply, sizeof(reply));
d3e2ba59
JD
1762}
1763
1764/*
1765 * Process the commands received on the control socket
1766 */
1767static
1768int process_control(struct lttng_viewer_cmd *recv_hdr,
58eb9381 1769 struct relay_connection *conn)
d3e2ba59
JD
1770{
1771 int ret = 0;
2f8f53af
DG
1772 uint32_t msg_value;
1773
1774 assert(recv_hdr);
58eb9381 1775 assert(conn);
2f8f53af
DG
1776
1777 msg_value = be32toh(recv_hdr->cmd);
1778
1779 /*
1780 * Make sure we've done the version check before any command other then a
1781 * new client connection.
1782 */
c4e361a4 1783 if (msg_value != LTTNG_VIEWER_CONNECT && !conn->version_check_done) {
58eb9381 1784 ERR("Viewer conn value %" PRIu32 " before version check", msg_value);
2f8f53af
DG
1785 ret = -1;
1786 goto end;
1787 }
d3e2ba59 1788
2f8f53af 1789 switch (msg_value) {
c4e361a4 1790 case LTTNG_VIEWER_CONNECT:
58eb9381 1791 ret = viewer_connect(conn);
d3e2ba59 1792 break;
c4e361a4 1793 case LTTNG_VIEWER_LIST_SESSIONS:
58eb9381 1794 ret = viewer_list_sessions(conn);
d3e2ba59 1795 break;
c4e361a4 1796 case LTTNG_VIEWER_ATTACH_SESSION:
58eb9381 1797 ret = viewer_attach_session(conn);
d3e2ba59 1798 break;
c4e361a4 1799 case LTTNG_VIEWER_GET_NEXT_INDEX:
58eb9381 1800 ret = viewer_get_next_index(conn);
d3e2ba59 1801 break;
c4e361a4 1802 case LTTNG_VIEWER_GET_PACKET:
58eb9381 1803 ret = viewer_get_packet(conn);
d3e2ba59 1804 break;
c4e361a4 1805 case LTTNG_VIEWER_GET_METADATA:
58eb9381 1806 ret = viewer_get_metadata(conn);
d3e2ba59 1807 break;
c4e361a4 1808 case LTTNG_VIEWER_GET_NEW_STREAMS:
58eb9381 1809 ret = viewer_get_new_streams(conn);
80e8027a 1810 break;
c3b7390b
JD
1811 case LTTNG_VIEWER_CREATE_SESSION:
1812 ret = viewer_create_session(conn);
1813 break;
d3e2ba59
JD
1814 default:
1815 ERR("Received unknown viewer command (%u)", be32toh(recv_hdr->cmd));
58eb9381 1816 live_relay_unknown_command(conn);
d3e2ba59
JD
1817 ret = -1;
1818 goto end;
1819 }
1820
1821end:
1822 return ret;
1823}
1824
1825static
58eb9381 1826void cleanup_connection_pollfd(struct lttng_poll_event *events, int pollfd)
d3e2ba59
JD
1827{
1828 int ret;
1829
1830 assert(events);
1831
58eb9381 1832 (void) lttng_poll_del(events, pollfd);
d3e2ba59
JD
1833
1834 ret = close(pollfd);
1835 if (ret < 0) {
1836 ERR("Closing pollfd %d", pollfd);
1837 }
1838}
1839
d3e2ba59 1840/*
58eb9381 1841 * Delete and destroy a connection.
d3e2ba59
JD
1842 *
1843 * RCU read side lock MUST be acquired.
1844 */
58eb9381
DG
1845static void destroy_connection(struct lttng_ht *relay_connections_ht,
1846 struct relay_connection *conn)
d3e2ba59 1847{
6763619c 1848 struct relay_session *session, *tmp_session;
d3e2ba59
JD
1849
1850 assert(relay_connections_ht);
58eb9381 1851 assert(conn);
d3e2ba59 1852
58eb9381 1853 connection_delete(relay_connections_ht, conn);
d3e2ba59 1854
6763619c
JD
1855 if (!conn->viewer_session) {
1856 goto end;
1857 }
1858
58eb9381 1859 rcu_read_lock();
6763619c
JD
1860 cds_list_for_each_entry_safe(session, tmp_session,
1861 &conn->viewer_session->sessions_head,
1862 viewer_session_list) {
1863 DBG("Cleaning connection of session ID %" PRIu64, session->id);
d227d5bd 1864 cleanup_session(conn, session);
2a174661
DG
1865 }
1866 rcu_read_unlock();
d3e2ba59 1867
6763619c 1868end:
58eb9381 1869 connection_destroy(conn);
d3e2ba59
JD
1870}
1871
1872/*
1873 * This thread does the actual work
1874 */
1875static
1876void *thread_worker(void *data)
1877{
1878 int ret, err = -1;
1879 uint32_t nb_fd;
58eb9381 1880 struct relay_connection *conn;
d3e2ba59
JD
1881 struct lttng_poll_event events;
1882 struct lttng_ht *relay_connections_ht;
d3e2ba59
JD
1883 struct lttng_ht_iter iter;
1884 struct lttng_viewer_cmd recv_hdr;
1885 struct relay_local_data *relay_ctx = (struct relay_local_data *) data;
1886 struct lttng_ht *sessions_ht = relay_ctx->sessions_ht;
d3e2ba59
JD
1887
1888 DBG("[thread] Live viewer relay worker started");
1889
1890 rcu_register_thread();
1891
eea7556c
MD
1892 health_register(health_relayd, HEALTH_RELAYD_TYPE_LIVE_WORKER);
1893
9b5e0863
MD
1894 if (testpoint(relayd_thread_live_worker)) {
1895 goto error_testpoint;
1896 }
1897
d3e2ba59
JD
1898 /* table of connections indexed on socket */
1899 relay_connections_ht = lttng_ht_new(0, LTTNG_HT_TYPE_ULONG);
1900 if (!relay_connections_ht) {
1901 goto relay_connections_ht_error;
1902 }
1903
1904 ret = create_thread_poll_set(&events, 2);
1905 if (ret < 0) {
1906 goto error_poll_create;
1907 }
1908
58eb9381 1909 ret = lttng_poll_add(&events, live_conn_pipe[0], LPOLLIN | LPOLLRDHUP);
d3e2ba59
JD
1910 if (ret < 0) {
1911 goto error;
1912 }
1913
1914restart:
1915 while (1) {
1916 int i;
1917
eea7556c
MD
1918 health_code_update();
1919
d3e2ba59
JD
1920 /* Infinite blocking call, waiting for transmission */
1921 DBG3("Relayd live viewer worker thread polling...");
eea7556c 1922 health_poll_entry();
d3e2ba59 1923 ret = lttng_poll_wait(&events, -1);
eea7556c 1924 health_poll_exit();
d3e2ba59
JD
1925 if (ret < 0) {
1926 /*
1927 * Restart interrupted system call.
1928 */
1929 if (errno == EINTR) {
1930 goto restart;
1931 }
1932 goto error;
1933 }
1934
1935 nb_fd = ret;
1936
1937 /*
1938 * Process control. The control connection is prioritised so we don't
1939 * starve it with high throughput tracing data on the data
1940 * connection.
1941 */
1942 for (i = 0; i < nb_fd; i++) {
1943 /* Fetch once the poll data */
1944 uint32_t revents = LTTNG_POLL_GETEV(&events, i);
1945 int pollfd = LTTNG_POLL_GETFD(&events, i);
1946
eea7556c
MD
1947 health_code_update();
1948
d3e2ba59 1949 /* Thread quit pipe has been closed. Killing thread. */
bcf4a440 1950 ret = check_thread_quit_pipe(pollfd, revents);
d3e2ba59
JD
1951 if (ret) {
1952 err = 0;
1953 goto exit;
1954 }
1955
58eb9381
DG
1956 /* Inspect the relay conn pipe for new connection */
1957 if (pollfd == live_conn_pipe[0]) {
d3e2ba59
JD
1958 if (revents & (LPOLLERR | LPOLLHUP | LPOLLRDHUP)) {
1959 ERR("Relay live pipe error");
1960 goto error;
1961 } else if (revents & LPOLLIN) {
58eb9381 1962 ret = lttng_read(live_conn_pipe[0], &conn, sizeof(conn));
d3e2ba59
JD
1963 if (ret < 0) {
1964 goto error;
1965 }
58eb9381
DG
1966 conn->sessions_ht = sessions_ht;
1967 connection_init(conn);
1968 lttng_poll_add(&events, conn->sock->fd,
1969 LPOLLIN | LPOLLRDHUP);
1970 rcu_read_lock();
1971 lttng_ht_add_unique_ulong(relay_connections_ht,
1972 &conn->sock_n);
d3e2ba59 1973 rcu_read_unlock();
58eb9381 1974 DBG("Connection socket %d added", conn->sock->fd);
d3e2ba59 1975 }
58eb9381
DG
1976 } else {
1977 rcu_read_lock();
1978 conn = connection_find_by_sock(relay_connections_ht, pollfd);
1979 /* If not found, there is a synchronization issue. */
1980 assert(conn);
1981
1982 if (revents & (LPOLLERR | LPOLLHUP | LPOLLRDHUP)) {
1983 cleanup_connection_pollfd(&events, pollfd);
1984 destroy_connection(relay_connections_ht, conn);
d3e2ba59 1985 } else if (revents & LPOLLIN) {
58eb9381
DG
1986 ret = conn->sock->ops->recvmsg(conn->sock, &recv_hdr,
1987 sizeof(recv_hdr), 0);
d3e2ba59 1988 if (ret <= 0) {
58eb9381
DG
1989 /* Connection closed */
1990 cleanup_connection_pollfd(&events, pollfd);
1991 destroy_connection(relay_connections_ht, conn);
1992 DBG("Viewer control conn closed with %d", pollfd);
d3e2ba59 1993 } else {
58eb9381 1994 ret = process_control(&recv_hdr, conn);
d3e2ba59
JD
1995 if (ret < 0) {
1996 /* Clear the session on error. */
58eb9381
DG
1997 cleanup_connection_pollfd(&events, pollfd);
1998 destroy_connection(relay_connections_ht, conn);
d3e2ba59
JD
1999 DBG("Viewer connection closed with %d", pollfd);
2000 }
2001 }
2002 }
2003 rcu_read_unlock();
2004 }
2005 }
2006 }
2007
2008exit:
2009error:
2010 lttng_poll_clean(&events);
2011
58eb9381 2012 /* Cleanup reamaining connection object. */
d3e2ba59 2013 rcu_read_lock();
58eb9381
DG
2014 cds_lfht_for_each_entry(relay_connections_ht->ht, &iter.iter, conn,
2015 sock_n.node) {
eea7556c 2016 health_code_update();
58eb9381 2017 destroy_connection(relay_connections_ht, conn);
d3e2ba59
JD
2018 }
2019 rcu_read_unlock();
2020error_poll_create:
2021 lttng_ht_destroy(relay_connections_ht);
2022relay_connections_ht_error:
58eb9381
DG
2023 /* Close relay conn pipes */
2024 utils_close_pipe(live_conn_pipe);
d3e2ba59
JD
2025 if (err) {
2026 DBG("Viewer worker thread exited with error");
2027 }
2028 DBG("Viewer worker thread cleanup complete");
9b5e0863 2029error_testpoint:
eea7556c
MD
2030 if (err) {
2031 health_error();
2032 ERR("Health error occurred in %s", __func__);
2033 }
2034 health_unregister(health_relayd);
d3e2ba59
JD
2035 stop_threads();
2036 rcu_unregister_thread();
2037 return NULL;
2038}
2039
2040/*
2041 * Create the relay command pipe to wake thread_manage_apps.
2042 * Closed in cleanup().
2043 */
58eb9381 2044static int create_conn_pipe(void)
d3e2ba59
JD
2045{
2046 int ret;
2047
58eb9381 2048 ret = utils_create_pipe_cloexec(live_conn_pipe);
d3e2ba59
JD
2049
2050 return ret;
2051}
2052
aaec7998 2053void live_stop_threads(void)
d3e2ba59
JD
2054{
2055 int ret;
2056 void *status;
2057
2058 stop_threads();
2059
2060 ret = pthread_join(live_listener_thread, &status);
2061 if (ret != 0) {
2062 PERROR("pthread_join live listener");
2063 goto error; /* join error, exit without cleanup */
2064 }
2065
2066 ret = pthread_join(live_worker_thread, &status);
2067 if (ret != 0) {
2068 PERROR("pthread_join live worker");
2069 goto error; /* join error, exit without cleanup */
2070 }
2071
2072 ret = pthread_join(live_dispatcher_thread, &status);
2073 if (ret != 0) {
2074 PERROR("pthread_join live dispatcher");
2075 goto error; /* join error, exit without cleanup */
2076 }
2077
2078 cleanup();
2079
2080error:
2081 return;
2082}
2083
2084/*
2085 * main
2086 */
2087int live_start_threads(struct lttng_uri *uri,
0b242f62 2088 struct relay_local_data *relay_ctx)
d3e2ba59
JD
2089{
2090 int ret = 0;
2091 void *status;
2092 int is_root;
2093
2094 assert(uri);
2095 live_uri = uri;
2096
d3e2ba59
JD
2097 /* Check if daemon is UID = 0 */
2098 is_root = !getuid();
2099
2100 if (!is_root) {
2101 if (live_uri->port < 1024) {
2102 ERR("Need to be root to use ports < 1024");
2103 ret = -1;
2104 goto exit;
2105 }
2106 }
2107
2108 /* Setup the thread apps communication pipe. */
58eb9381 2109 if ((ret = create_conn_pipe()) < 0) {
d3e2ba59
JD
2110 goto exit;
2111 }
2112
2113 /* Init relay command queue. */
58eb9381 2114 cds_wfq_init(&viewer_conn_queue.queue);
d3e2ba59
JD
2115
2116 /* Set up max poll set size */
2117 lttng_poll_set_max_size();
2118
2119 /* Setup the dispatcher thread */
2120 ret = pthread_create(&live_dispatcher_thread, NULL,
2121 thread_dispatcher, (void *) NULL);
2122 if (ret != 0) {
2123 PERROR("pthread_create viewer dispatcher");
2124 goto exit_dispatcher;
2125 }
2126
2127 /* Setup the worker thread */
2128 ret = pthread_create(&live_worker_thread, NULL,
2129 thread_worker, relay_ctx);
2130 if (ret != 0) {
2131 PERROR("pthread_create viewer worker");
2132 goto exit_worker;
2133 }
2134
2135 /* Setup the listener thread */
2136 ret = pthread_create(&live_listener_thread, NULL,
2137 thread_listener, (void *) NULL);
2138 if (ret != 0) {
2139 PERROR("pthread_create viewer listener");
2140 goto exit_listener;
2141 }
2142
2143 ret = 0;
2144 goto end;
2145
2146exit_listener:
2147 ret = pthread_join(live_listener_thread, &status);
2148 if (ret != 0) {
2149 PERROR("pthread_join live listener");
2150 goto error; /* join error, exit without cleanup */
2151 }
2152
2153exit_worker:
2154 ret = pthread_join(live_worker_thread, &status);
2155 if (ret != 0) {
2156 PERROR("pthread_join live worker");
2157 goto error; /* join error, exit without cleanup */
2158 }
2159
2160exit_dispatcher:
2161 ret = pthread_join(live_dispatcher_thread, &status);
2162 if (ret != 0) {
2163 PERROR("pthread_join live dispatcher");
2164 goto error; /* join error, exit without cleanup */
2165 }
2166
2167exit:
2168 cleanup();
2169
2170end:
2171error:
2172 return ret;
2173}
This page took 0.128528 seconds and 4 git commands to generate.