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