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