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