Fix: relayd cmd line option for live port
[lttng-tools.git] / src / bin / lttng-relayd / main.c
CommitLineData
b8aa1682
JD
1/*
2 * Copyright (C) 2012 - 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>
173af62f 35#include <inttypes.h>
b8aa1682
JD
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>
48#include <common/sessiond-comm/sessiond-comm.h>
49#include <common/sessiond-comm/inet.h>
b8aa1682
JD
50#include <common/sessiond-comm/relayd.h>
51#include <common/uri.h>
a02de639 52#include <common/utils.h>
b8aa1682 53
0f907de1 54#include "cmd.h"
d3e2ba59 55#include "ctf-trace.h"
1c20f0e2 56#include "index.h"
0f907de1 57#include "utils.h"
b8aa1682 58#include "lttng-relayd.h"
d3e2ba59 59#include "live.h"
55706a7d 60#include "health-relayd.h"
b8aa1682
JD
61
62/* command line options */
0f907de1 63char *opt_output_path;
b8aa1682 64static int opt_daemon;
095a4ae5
MD
65static struct lttng_uri *control_uri;
66static struct lttng_uri *data_uri;
d3e2ba59 67static struct lttng_uri *live_uri;
b8aa1682
JD
68
69const char *progname;
b8aa1682 70
65931c8b
MD
71const char *tracing_group_name = DEFAULT_TRACING_GROUP;
72
b8aa1682
JD
73/*
74 * Quit pipe for all threads. This permits a single cancellation point
75 * for all threads when receiving an event on the pipe.
76 */
77static int thread_quit_pipe[2] = { -1, -1 };
78
79/*
80 * This pipe is used to inform the worker thread that a command is queued and
81 * ready to be processed.
82 */
83static int relay_cmd_pipe[2] = { -1, -1 };
84
26c9d55e 85/* Shared between threads */
b8aa1682
JD
86static int dispatch_thread_exit;
87
88static pthread_t listener_thread;
89static pthread_t dispatcher_thread;
90static pthread_t worker_thread;
65931c8b 91static pthread_t health_thread;
b8aa1682 92
095a4ae5
MD
93static uint64_t last_relay_stream_id;
94static uint64_t last_relay_session_id;
b8aa1682
JD
95
96/*
97 * Relay command queue.
98 *
99 * The relay_thread_listener and relay_thread_dispatcher communicate with this
100 * queue.
101 */
102static struct relay_cmd_queue relay_cmd_queue;
103
104/* buffer allocated at startup, used to store the trace data */
095a4ae5
MD
105static char *data_buffer;
106static unsigned int data_buffer_size;
b8aa1682 107
1c20f0e2
JD
108/* We need those values for the file/dir creation. */
109static uid_t relayd_uid;
110static gid_t relayd_gid;
111
d3e2ba59
JD
112/* Global relay stream hash table. */
113struct lttng_ht *relay_streams_ht;
114
92c6ca54
DG
115/* Global relay viewer stream hash table. */
116struct lttng_ht *viewer_streams_ht;
117
0a6518b0
DG
118/* Global hash table that stores relay index object. */
119struct lttng_ht *indexes_ht;
120
55706a7d 121/* Relayd health monitoring */
eea7556c 122struct health_app *health_relayd;
55706a7d 123
b8aa1682
JD
124/*
125 * usage function on stderr
126 */
127static
128void usage(void)
129{
130 fprintf(stderr, "Usage: %s OPTIONS\n\nOptions:\n", progname);
994fa64f
DG
131 fprintf(stderr, " -h, --help Display this usage.\n");
132 fprintf(stderr, " -d, --daemonize Start as a daemon.\n");
133 fprintf(stderr, " -C, --control-port URL Control port listening.\n");
134 fprintf(stderr, " -D, --data-port URL Data port listening.\n");
a6a062a4 135 fprintf(stderr, " -L, --live-port URL Live view port listening.\n");
994fa64f
DG
136 fprintf(stderr, " -o, --output PATH Output path for traces. Must use an absolute path.\n");
137 fprintf(stderr, " -v, --verbose Verbose mode. Activate DBG() macro.\n");
65931c8b 138 fprintf(stderr, " -g, --group NAME Specify the tracing group name. (default: tracing)\n");
b8aa1682
JD
139}
140
141static
142int parse_args(int argc, char **argv)
143{
144 int c;
145 int ret = 0;
146 char *default_address;
147
148 static struct option long_options[] = {
e3678fd8
MD
149 { "control-port", 1, 0, 'C', },
150 { "data-port", 1, 0, 'D', },
151 { "daemonize", 0, 0, 'd', },
65931c8b 152 { "group", 1, 0, 'g', },
e3678fd8
MD
153 { "help", 0, 0, 'h', },
154 { "output", 1, 0, 'o', },
155 { "verbose", 0, 0, 'v', },
095a4ae5 156 { NULL, 0, 0, 0, },
b8aa1682
JD
157 };
158
159 while (1) {
160 int option_index = 0;
a6a062a4 161 c = getopt_long(argc, argv, "dhv" "C:D:L:o:g:",
b8aa1682
JD
162 long_options, &option_index);
163 if (c == -1) {
164 break;
165 }
166
167 switch (c) {
168 case 0:
169 fprintf(stderr, "option %s", long_options[option_index].name);
170 if (optarg) {
171 fprintf(stderr, " with arg %s\n", optarg);
172 }
173 break;
174 case 'C':
175 ret = uri_parse(optarg, &control_uri);
176 if (ret < 0) {
177 ERR("Invalid control URI specified");
178 goto exit;
179 }
180 if (control_uri->port == 0) {
181 control_uri->port = DEFAULT_NETWORK_CONTROL_PORT;
182 }
183 break;
184 case 'D':
185 ret = uri_parse(optarg, &data_uri);
186 if (ret < 0) {
187 ERR("Invalid data URI specified");
188 goto exit;
189 }
190 if (data_uri->port == 0) {
191 data_uri->port = DEFAULT_NETWORK_DATA_PORT;
192 }
193 break;
a6a062a4
AM
194 case 'L':
195 ret = uri_parse(optarg, &live_uri);
196 if (ret < 0) {
197 ERR("Invalid live URI specified");
198 goto exit;
199 }
200 if (live_uri->port == 0) {
201 live_uri->port = DEFAULT_NETWORK_VIEWER_PORT;
202 }
203 break;
b8aa1682
JD
204 case 'd':
205 opt_daemon = 1;
206 break;
65931c8b
MD
207 case 'g':
208 tracing_group_name = optarg;
209 break;
b8aa1682
JD
210 case 'h':
211 usage();
212 exit(EXIT_FAILURE);
213 case 'o':
214 ret = asprintf(&opt_output_path, "%s", optarg);
215 if (ret < 0) {
216 PERROR("asprintf opt_output_path");
217 goto exit;
218 }
219 break;
220 case 'v':
221 /* Verbose level can increase using multiple -v */
222 lttng_opt_verbose += 1;
223 break;
224 default:
225 /* Unknown option or other error.
226 * Error is printed by getopt, just return */
227 ret = -1;
228 goto exit;
229 }
230 }
231
232 /* assign default values */
233 if (control_uri == NULL) {
234 ret = asprintf(&default_address, "tcp://0.0.0.0:%d",
235 DEFAULT_NETWORK_CONTROL_PORT);
236 if (ret < 0) {
237 PERROR("asprintf default data address");
238 goto exit;
239 }
240
241 ret = uri_parse(default_address, &control_uri);
242 free(default_address);
243 if (ret < 0) {
244 ERR("Invalid control URI specified");
245 goto exit;
246 }
247 }
248 if (data_uri == NULL) {
249 ret = asprintf(&default_address, "tcp://0.0.0.0:%d",
250 DEFAULT_NETWORK_DATA_PORT);
251 if (ret < 0) {
252 PERROR("asprintf default data address");
253 goto exit;
254 }
255
256 ret = uri_parse(default_address, &data_uri);
257 free(default_address);
258 if (ret < 0) {
259 ERR("Invalid data URI specified");
260 goto exit;
261 }
262 }
d3e2ba59
JD
263 if (live_uri == NULL) {
264 ret = asprintf(&default_address, "tcp://0.0.0.0:%d",
265 DEFAULT_NETWORK_VIEWER_PORT);
266 if (ret < 0) {
267 PERROR("asprintf default viewer control address");
268 goto exit;
269 }
270
271 ret = uri_parse(default_address, &live_uri);
272 free(default_address);
273 if (ret < 0) {
274 ERR("Invalid viewer control URI specified");
275 goto exit;
276 }
277 }
b8aa1682
JD
278
279exit:
280 return ret;
281}
282
283/*
284 * Cleanup the daemon
285 */
286static
287void cleanup(void)
288{
b8aa1682
JD
289 DBG("Cleaning up");
290
095a4ae5
MD
291 /* free the dynamically allocated opt_output_path */
292 free(opt_output_path);
293
a02de639
CB
294 /* Close thread quit pipes */
295 utils_close_pipe(thread_quit_pipe);
296
710c1f73
DG
297 uri_free(control_uri);
298 uri_free(data_uri);
a6a062a4 299 /* Live URI is freed in the live thread. */
b8aa1682
JD
300}
301
302/*
303 * Write to writable pipe used to notify a thread.
304 */
305static
306int notify_thread_pipe(int wpipe)
307{
6cd525e8 308 ssize_t ret;
b8aa1682 309
6cd525e8
MD
310 ret = lttng_write(wpipe, "!", 1);
311 if (ret < 1) {
b8aa1682
JD
312 PERROR("write poll pipe");
313 }
314
315 return ret;
316}
317
65931c8b
MD
318static void notify_health_quit_pipe(int *pipe)
319{
6cd525e8 320 ssize_t ret;
65931c8b 321
6cd525e8
MD
322 ret = lttng_write(pipe[1], "4", 1);
323 if (ret < 1) {
65931c8b
MD
324 PERROR("write relay health quit");
325 }
326}
327
b8aa1682
JD
328/*
329 * Stop all threads by closing the thread quit pipe.
330 */
331static
332void stop_threads(void)
333{
334 int ret;
335
336 /* Stopping all threads */
337 DBG("Terminating all threads");
338 ret = notify_thread_pipe(thread_quit_pipe[1]);
339 if (ret < 0) {
340 ERR("write error on thread quit pipe");
341 }
342
65931c8b
MD
343 notify_health_quit_pipe(health_quit_pipe);
344
b8aa1682 345 /* Dispatch thread */
26c9d55e 346 CMM_STORE_SHARED(dispatch_thread_exit, 1);
b8aa1682
JD
347 futex_nto1_wake(&relay_cmd_queue.futex);
348}
349
350/*
351 * Signal handler for the daemon
352 *
353 * Simply stop all worker threads, leaving main() return gracefully after
354 * joining all threads and calling cleanup().
355 */
356static
357void sighandler(int sig)
358{
359 switch (sig) {
360 case SIGPIPE:
361 DBG("SIGPIPE caught");
362 return;
363 case SIGINT:
364 DBG("SIGINT caught");
365 stop_threads();
366 break;
367 case SIGTERM:
368 DBG("SIGTERM caught");
369 stop_threads();
370 break;
371 default:
372 break;
373 }
374}
375
376/*
377 * Setup signal handler for :
378 * SIGINT, SIGTERM, SIGPIPE
379 */
380static
381int set_signal_handler(void)
382{
383 int ret = 0;
384 struct sigaction sa;
385 sigset_t sigset;
386
387 if ((ret = sigemptyset(&sigset)) < 0) {
388 PERROR("sigemptyset");
389 return ret;
390 }
391
392 sa.sa_handler = sighandler;
393 sa.sa_mask = sigset;
394 sa.sa_flags = 0;
395 if ((ret = sigaction(SIGTERM, &sa, NULL)) < 0) {
396 PERROR("sigaction");
397 return ret;
398 }
399
400 if ((ret = sigaction(SIGINT, &sa, NULL)) < 0) {
401 PERROR("sigaction");
402 return ret;
403 }
404
405 if ((ret = sigaction(SIGPIPE, &sa, NULL)) < 0) {
406 PERROR("sigaction");
407 return ret;
408 }
409
410 DBG("Signal handler set for SIGTERM, SIGPIPE and SIGINT");
411
412 return ret;
413}
414
415/*
416 * Init thread quit pipe.
417 *
418 * Return -1 on error or 0 if all pipes are created.
419 */
420static
421int init_thread_quit_pipe(void)
422{
a02de639 423 int ret;
b8aa1682 424
a02de639 425 ret = utils_create_pipe_cloexec(thread_quit_pipe);
b8aa1682 426
b8aa1682
JD
427 return ret;
428}
429
430/*
431 * Create a poll set with O_CLOEXEC and add the thread quit pipe to the set.
432 */
433static
434int create_thread_poll_set(struct lttng_poll_event *events, int size)
435{
436 int ret;
437
438 if (events == NULL || size == 0) {
439 ret = -1;
440 goto error;
441 }
442
443 ret = lttng_poll_create(events, size, LTTNG_CLOEXEC);
444 if (ret < 0) {
445 goto error;
446 }
447
448 /* Add quit pipe */
449 ret = lttng_poll_add(events, thread_quit_pipe[0], LPOLLIN);
450 if (ret < 0) {
451 goto error;
452 }
453
454 return 0;
455
456error:
457 return ret;
458}
459
460/*
461 * Check if the thread quit pipe was triggered.
462 *
463 * Return 1 if it was triggered else 0;
464 */
465static
466int check_thread_quit_pipe(int fd, uint32_t events)
467{
468 if (fd == thread_quit_pipe[0] && (events & LPOLLIN)) {
469 return 1;
470 }
471
472 return 0;
473}
474
475/*
476 * Create and init socket from uri.
477 */
478static
479struct lttcomm_sock *relay_init_sock(struct lttng_uri *uri)
480{
481 int ret;
482 struct lttcomm_sock *sock = NULL;
483
484 sock = lttcomm_alloc_sock_from_uri(uri);
485 if (sock == NULL) {
486 ERR("Allocating socket");
487 goto error;
488 }
489
490 ret = lttcomm_create_sock(sock);
491 if (ret < 0) {
492 goto error;
493 }
494 DBG("Listening on sock %d", sock->fd);
495
496 ret = sock->ops->bind(sock);
497 if (ret < 0) {
498 goto error;
499 }
500
501 ret = sock->ops->listen(sock, -1);
502 if (ret < 0) {
503 goto error;
504
505 }
506
507 return sock;
508
509error:
510 if (sock) {
511 lttcomm_destroy_sock(sock);
512 }
513 return NULL;
514}
515
173af62f
DG
516/*
517 * Return nonzero if stream needs to be closed.
518 */
519static
520int close_stream_check(struct relay_stream *stream)
521{
522
523 if (stream->close_flag && stream->prev_seq == stream->last_net_seq_num) {
f7079f67
DG
524 /*
525 * We are about to close the stream so set the data pending flag to 1
526 * which will make the end data pending command skip the stream which
527 * is now closed and ready. Note that after proceeding to a file close,
528 * the written file is ready for reading.
529 */
530 stream->data_pending_check_done = 1;
173af62f
DG
531 return 1;
532 }
533 return 0;
534}
535
b8aa1682
JD
536/*
537 * This thread manages the listening for new connections on the network
538 */
539static
540void *relay_thread_listener(void *data)
541{
095a4ae5 542 int i, ret, pollfd, err = -1;
b8aa1682
JD
543 int val = 1;
544 uint32_t revents, nb_fd;
545 struct lttng_poll_event events;
546 struct lttcomm_sock *control_sock, *data_sock;
547
b8aa1682
JD
548 DBG("[thread] Relay listener started");
549
55706a7d
MD
550 health_register(health_relayd, HEALTH_RELAYD_TYPE_LISTENER);
551
f385ae0a
MD
552 health_code_update();
553
b8aa1682
JD
554 control_sock = relay_init_sock(control_uri);
555 if (!control_sock) {
095a4ae5 556 goto error_sock_control;
b8aa1682
JD
557 }
558
559 data_sock = relay_init_sock(data_uri);
560 if (!data_sock) {
095a4ae5 561 goto error_sock_relay;
b8aa1682
JD
562 }
563
564 /*
565 * Pass 3 as size here for the thread quit pipe, control and data socket.
566 */
567 ret = create_thread_poll_set(&events, 3);
568 if (ret < 0) {
569 goto error_create_poll;
570 }
571
572 /* Add the control socket */
573 ret = lttng_poll_add(&events, control_sock->fd, LPOLLIN | LPOLLRDHUP);
574 if (ret < 0) {
575 goto error_poll_add;
576 }
577
578 /* Add the data socket */
579 ret = lttng_poll_add(&events, data_sock->fd, LPOLLIN | LPOLLRDHUP);
580 if (ret < 0) {
581 goto error_poll_add;
582 }
583
584 while (1) {
f385ae0a
MD
585 health_code_update();
586
b8aa1682
JD
587 DBG("Listener accepting connections");
588
b8aa1682 589restart:
f385ae0a 590 health_poll_entry();
b8aa1682 591 ret = lttng_poll_wait(&events, -1);
f385ae0a 592 health_poll_exit();
b8aa1682
JD
593 if (ret < 0) {
594 /*
595 * Restart interrupted system call.
596 */
597 if (errno == EINTR) {
598 goto restart;
599 }
600 goto error;
601 }
602
0d9c5d77
DG
603 nb_fd = ret;
604
b8aa1682
JD
605 DBG("Relay new connection received");
606 for (i = 0; i < nb_fd; i++) {
f385ae0a
MD
607 health_code_update();
608
b8aa1682
JD
609 /* Fetch once the poll data */
610 revents = LTTNG_POLL_GETEV(&events, i);
611 pollfd = LTTNG_POLL_GETFD(&events, i);
612
613 /* Thread quit pipe has been closed. Killing thread. */
614 ret = check_thread_quit_pipe(pollfd, revents);
615 if (ret) {
095a4ae5
MD
616 err = 0;
617 goto exit;
b8aa1682
JD
618 }
619
620 if (revents & (LPOLLERR | LPOLLHUP | LPOLLRDHUP)) {
621 ERR("socket poll error");
622 goto error;
623 } else if (revents & LPOLLIN) {
4b7f17b2
MD
624 /*
625 * Get allocated in this thread,
626 * enqueued to a global queue, dequeued
627 * and freed in the worker thread.
628 */
629 struct relay_command *relay_cmd;
630 struct lttcomm_sock *newsock;
b8aa1682
JD
631
632 relay_cmd = zmalloc(sizeof(struct relay_command));
633 if (relay_cmd == NULL) {
634 PERROR("relay command zmalloc");
635 goto error;
636 }
637
638 if (pollfd == data_sock->fd) {
639 newsock = data_sock->ops->accept(data_sock);
4b7f17b2 640 if (!newsock) {
b8aa1682 641 PERROR("accepting data sock");
4b7f17b2 642 free(relay_cmd);
b8aa1682
JD
643 goto error;
644 }
645 relay_cmd->type = RELAY_DATA;
646 DBG("Relay data connection accepted, socket %d", newsock->fd);
4b7f17b2
MD
647 } else {
648 assert(pollfd == control_sock->fd);
b8aa1682 649 newsock = control_sock->ops->accept(control_sock);
4b7f17b2 650 if (!newsock) {
b8aa1682 651 PERROR("accepting control sock");
4b7f17b2 652 free(relay_cmd);
b8aa1682
JD
653 goto error;
654 }
655 relay_cmd->type = RELAY_CONTROL;
656 DBG("Relay control connection accepted, socket %d", newsock->fd);
657 }
658 ret = setsockopt(newsock->fd, SOL_SOCKET, SO_REUSEADDR,
659 &val, sizeof(int));
660 if (ret < 0) {
661 PERROR("setsockopt inet");
4b7f17b2
MD
662 lttcomm_destroy_sock(newsock);
663 free(relay_cmd);
b8aa1682
JD
664 goto error;
665 }
666 relay_cmd->sock = newsock;
667 /*
668 * Lock free enqueue the request.
669 */
670 cds_wfq_enqueue(&relay_cmd_queue.queue, &relay_cmd->node);
671
672 /*
673 * Wake the dispatch queue futex. Implicit memory
674 * barrier with the exchange in cds_wfq_enqueue.
675 */
676 futex_nto1_wake(&relay_cmd_queue.futex);
677 }
678 }
679 }
680
095a4ae5 681exit:
b8aa1682
JD
682error:
683error_poll_add:
684 lttng_poll_clean(&events);
685error_create_poll:
095a4ae5
MD
686 if (data_sock->fd >= 0) {
687 ret = data_sock->ops->close(data_sock);
b8aa1682
JD
688 if (ret) {
689 PERROR("close");
690 }
b8aa1682 691 }
095a4ae5
MD
692 lttcomm_destroy_sock(data_sock);
693error_sock_relay:
694 if (control_sock->fd >= 0) {
695 ret = control_sock->ops->close(control_sock);
b8aa1682
JD
696 if (ret) {
697 PERROR("close");
698 }
b8aa1682 699 }
095a4ae5
MD
700 lttcomm_destroy_sock(control_sock);
701error_sock_control:
702 if (err) {
f385ae0a
MD
703 health_error();
704 ERR("Health error occurred in %s", __func__);
095a4ae5 705 }
55706a7d 706 health_unregister(health_relayd);
b8aa1682
JD
707 DBG("Relay listener thread cleanup complete");
708 stop_threads();
b8aa1682
JD
709 return NULL;
710}
711
712/*
713 * This thread manages the dispatching of the requests to worker threads
714 */
715static
716void *relay_thread_dispatcher(void *data)
717{
6cd525e8
MD
718 int err = -1;
719 ssize_t ret;
b8aa1682
JD
720 struct cds_wfq_node *node;
721 struct relay_command *relay_cmd = NULL;
722
723 DBG("[thread] Relay dispatcher started");
724
55706a7d
MD
725 health_register(health_relayd, HEALTH_RELAYD_TYPE_DISPATCHER);
726
f385ae0a
MD
727 health_code_update();
728
26c9d55e 729 while (!CMM_LOAD_SHARED(dispatch_thread_exit)) {
f385ae0a
MD
730 health_code_update();
731
b8aa1682
JD
732 /* Atomically prepare the queue futex */
733 futex_nto1_prepare(&relay_cmd_queue.futex);
734
735 do {
f385ae0a
MD
736 health_code_update();
737
b8aa1682
JD
738 /* Dequeue commands */
739 node = cds_wfq_dequeue_blocking(&relay_cmd_queue.queue);
740 if (node == NULL) {
741 DBG("Woken up but nothing in the relay command queue");
742 /* Continue thread execution */
743 break;
744 }
745
746 relay_cmd = caa_container_of(node, struct relay_command, node);
747 DBG("Dispatching request waiting on sock %d", relay_cmd->sock->fd);
748
749 /*
750 * Inform worker thread of the new request. This
751 * call is blocking so we can be assured that the data will be read
752 * at some point in time or wait to the end of the world :)
753 */
6cd525e8
MD
754 ret = lttng_write(relay_cmd_pipe[1], relay_cmd,
755 sizeof(struct relay_command));
b8aa1682 756 free(relay_cmd);
6cd525e8 757 if (ret < sizeof(struct relay_command)) {
b8aa1682
JD
758 PERROR("write cmd pipe");
759 goto error;
760 }
761 } while (node != NULL);
762
763 /* Futex wait on queue. Blocking call on futex() */
f385ae0a 764 health_poll_entry();
b8aa1682 765 futex_nto1_wait(&relay_cmd_queue.futex);
f385ae0a 766 health_poll_exit();
b8aa1682
JD
767 }
768
f385ae0a
MD
769 /* Normal exit, no error */
770 err = 0;
771
b8aa1682 772error:
f385ae0a
MD
773 if (err) {
774 health_error();
775 ERR("Health error occurred in %s", __func__);
776 }
55706a7d 777 health_unregister(health_relayd);
b8aa1682
JD
778 DBG("Dispatch thread dying");
779 stop_threads();
780 return NULL;
781}
782
de91f48a
DG
783/*
784 * Get stream from stream id.
785 * Need to be called with RCU read-side lock held.
786 */
d3e2ba59 787struct relay_stream *relay_stream_find_by_id(uint64_t stream_id)
de91f48a
DG
788{
789 struct lttng_ht_node_ulong *node;
790 struct lttng_ht_iter iter;
791 struct relay_stream *ret;
792
d3e2ba59 793 lttng_ht_lookup(relay_streams_ht,
de91f48a
DG
794 (void *)((unsigned long) stream_id),
795 &iter);
796 node = lttng_ht_iter_get_node_ulong(&iter);
797 if (node == NULL) {
798 DBG("Relay stream %" PRIu64 " not found", stream_id);
799 ret = NULL;
800 goto end;
801 }
802
803 ret = caa_container_of(node, struct relay_stream, stream_n);
804
805end:
806 return ret;
807}
808
9d1bbf21
MD
809static
810void deferred_free_stream(struct rcu_head *head)
811{
812 struct relay_stream *stream =
813 caa_container_of(head, struct relay_stream, rcu_node);
d3e2ba59 814
0f907de1
JD
815 free(stream->path_name);
816 free(stream->channel_name);
9d1bbf21
MD
817 free(stream);
818}
819
d3e2ba59
JD
820static
821void deferred_free_session(struct rcu_head *head)
822{
823 struct relay_session *session =
824 caa_container_of(head, struct relay_session, rcu_node);
825 free(session);
826}
827
4c80d9a2
DG
828/*
829 * Close a given stream. The stream is freed using a call RCU.
830 *
831 * RCU read side lock MUST be acquired. If NO close_stream_check() was called
832 * BEFORE the stream lock MUST be acquired.
833 */
c07d8a78 834static void destroy_stream(struct relay_stream *stream)
94d49140
JD
835{
836 int delret;
837 struct relay_viewer_stream *vstream;
838 struct lttng_ht_iter iter;
839
840 assert(stream);
94d49140
JD
841
842 delret = close(stream->fd);
843 if (delret < 0) {
844 PERROR("close stream");
845 }
846
847 if (stream->index_fd >= 0) {
848 delret = close(stream->index_fd);
849 if (delret < 0) {
850 PERROR("close stream index_fd");
851 }
852 }
853
92c6ca54 854 vstream = live_find_viewer_stream_by_id(stream->stream_handle);
94d49140
JD
855 if (vstream) {
856 /*
857 * Set the last good value into the viewer stream. This is done
858 * right before the stream gets deleted from the hash table. The
859 * lookup failure on the live thread side of a stream indicates
860 * that the viewer stream index received value should be used.
861 */
cef0f7d5 862 pthread_mutex_lock(&stream->viewer_stream_rotation_lock);
94d49140 863 vstream->total_index_received = stream->total_index_received;
a020f610 864 vstream->tracefile_count_last = stream->tracefile_count_current;
cef0f7d5
JD
865 vstream->close_write_flag = 1;
866 pthread_mutex_unlock(&stream->viewer_stream_rotation_lock);
94d49140
JD
867 }
868
efc8a87f
DG
869 /* Cleanup index of that stream. */
870 relay_index_destroy_by_stream_id(stream->stream_handle);
871
94d49140
JD
872 iter.iter.node = &stream->stream_n.node;
873 delret = lttng_ht_del(relay_streams_ht, &iter);
874 assert(!delret);
875 iter.iter.node = &stream->ctf_trace_node.node;
c07d8a78 876 delret = lttng_ht_del(stream->ctf_traces_ht, &iter);
94d49140 877 assert(!delret);
157df586
JD
878
879 if (stream->ctf_trace) {
880 ctf_trace_try_destroy(stream->ctf_trace);
881 }
882
94d49140
JD
883 call_rcu(&stream->rcu_node, deferred_free_stream);
884 DBG("Closed tracefile %d from close stream", stream->fd);
885}
886
b8aa1682
JD
887/*
888 * relay_delete_session: Free all memory associated with a session and
889 * close all the FDs
890 */
891static
d3e2ba59
JD
892void relay_delete_session(struct relay_command *cmd,
893 struct lttng_ht *sessions_ht)
b8aa1682
JD
894{
895 struct lttng_ht_iter iter;
896 struct lttng_ht_node_ulong *node;
897 struct relay_stream *stream;
898 int ret;
899
095a4ae5 900 if (!cmd->session) {
b8aa1682 901 return;
095a4ae5 902 }
b8aa1682 903
77c7c900 904 DBG("Relay deleting session %" PRIu64, cmd->session->id);
5b6d8097 905
9d1bbf21 906 rcu_read_lock();
d3e2ba59 907 cds_lfht_for_each_entry(relay_streams_ht->ht, &iter.iter, node, node) {
b8aa1682 908 node = lttng_ht_iter_get_node_ulong(&iter);
4c80d9a2
DG
909 if (!node) {
910 continue;
b8aa1682 911 }
4c80d9a2
DG
912 stream = caa_container_of(node, struct relay_stream, stream_n);
913 if (stream->session == cmd->session) {
c07d8a78 914 destroy_stream(stream);
87b576ec
JD
915 cmd->session->stream_count--;
916 assert(cmd->session->stream_count >= 0);
4c80d9a2 917 }
b8aa1682 918 }
4c80d9a2
DG
919
920 /* Make this session not visible anymore. */
d3e2ba59
JD
921 iter.iter.node = &cmd->session->session_n.node;
922 ret = lttng_ht_del(sessions_ht, &iter);
923 assert(!ret);
4c80d9a2 924 call_rcu(&cmd->session->rcu_node, deferred_free_session);
9d1bbf21 925 rcu_read_unlock();
b8aa1682
JD
926}
927
1c20f0e2
JD
928/*
929 * Copy index data from the control port to a given index object.
930 */
931static void copy_index_control_data(struct relay_index *index,
932 struct lttcomm_relayd_index *data)
933{
934 assert(index);
935 assert(data);
936
937 /*
938 * The index on disk is encoded in big endian, so we don't need to convert
939 * the data received on the network. The data_offset value is NEVER
940 * modified here and is updated by the data thread.
941 */
942 index->index_data.packet_size = data->packet_size;
943 index->index_data.content_size = data->content_size;
944 index->index_data.timestamp_begin = data->timestamp_begin;
945 index->index_data.timestamp_end = data->timestamp_end;
946 index->index_data.events_discarded = data->events_discarded;
947 index->index_data.stream_id = data->stream_id;
948}
949
c5b6f4f0
DG
950/*
951 * Handle the RELAYD_CREATE_SESSION command.
952 *
953 * On success, send back the session id or else return a negative value.
954 */
955static
956int relay_create_session(struct lttcomm_relayd_hdr *recv_hdr,
d3e2ba59
JD
957 struct relay_command *cmd,
958 struct lttng_ht *sessions_ht)
c5b6f4f0
DG
959{
960 int ret = 0, send_ret;
961 struct relay_session *session;
962 struct lttcomm_relayd_status_session reply;
963
964 assert(recv_hdr);
965 assert(cmd);
966
967 memset(&reply, 0, sizeof(reply));
968
969 session = zmalloc(sizeof(struct relay_session));
970 if (session == NULL) {
971 PERROR("relay session zmalloc");
972 ret = -1;
973 goto error;
974 }
975
976 session->id = ++last_relay_session_id;
977 session->sock = cmd->sock;
7d2f7452
DG
978 session->minor = cmd->minor;
979 session->major = cmd->major;
c5b6f4f0
DG
980 cmd->session = session;
981
982 reply.session_id = htobe64(session->id);
983
d3e2ba59
JD
984 switch (cmd->minor) {
985 case 4: /* LTTng sessiond 2.4 */
986 default:
987 ret = cmd_create_session_2_4(cmd, session);
988 break;
989 }
990
991 lttng_ht_node_init_ulong(&session->session_n,
992 (unsigned long) session->id);
993 lttng_ht_add_unique_ulong(sessions_ht,
994 &session->session_n);
995
c5b6f4f0
DG
996 DBG("Created session %" PRIu64, session->id);
997
998error:
999 if (ret < 0) {
1000 reply.ret_code = htobe32(LTTNG_ERR_FATAL);
1001 } else {
1002 reply.ret_code = htobe32(LTTNG_OK);
1003 }
1004
1005 send_ret = cmd->sock->ops->sendmsg(cmd->sock, &reply, sizeof(reply), 0);
1006 if (send_ret < 0) {
1007 ERR("Relayd sending session id");
4169f5ad 1008 ret = send_ret;
c5b6f4f0
DG
1009 }
1010
1011 return ret;
1012}
1013
b8aa1682
JD
1014/*
1015 * relay_add_stream: allocate a new stream for a session
1016 */
1017static
1018int relay_add_stream(struct lttcomm_relayd_hdr *recv_hdr,
d3e2ba59 1019 struct relay_command *cmd, struct lttng_ht *sessions_ht)
b8aa1682
JD
1020{
1021 struct relay_session *session = cmd->session;
b8aa1682
JD
1022 struct relay_stream *stream = NULL;
1023 struct lttcomm_relayd_status_stream reply;
b8aa1682
JD
1024 int ret, send_ret;
1025
c5b6f4f0 1026 if (!session || cmd->version_check_done == 0) {
b8aa1682
JD
1027 ERR("Trying to add a stream before version check");
1028 ret = -1;
1029 goto end_no_session;
1030 }
1031
b8aa1682
JD
1032 stream = zmalloc(sizeof(struct relay_stream));
1033 if (stream == NULL) {
1034 PERROR("relay stream zmalloc");
1035 ret = -1;
1036 goto end_no_session;
1037 }
1038
0f907de1
JD
1039 switch (cmd->minor) {
1040 case 1: /* LTTng sessiond 2.1 */
1041 ret = cmd_recv_stream_2_1(cmd, stream);
1042 break;
1043 case 2: /* LTTng sessiond 2.2 */
1044 default:
1045 ret = cmd_recv_stream_2_2(cmd, stream);
1046 break;
1047 }
1048 if (ret < 0) {
1049 goto err_free_stream;
1050 }
1051
9d1bbf21 1052 rcu_read_lock();
b8aa1682 1053 stream->stream_handle = ++last_relay_stream_id;
173af62f 1054 stream->prev_seq = -1ULL;
b8aa1682 1055 stream->session = session;
1c20f0e2 1056 stream->index_fd = -1;
d3e2ba59
JD
1057 stream->read_index_fd = -1;
1058 stream->ctf_trace = NULL;
1059 pthread_mutex_init(&stream->lock, NULL);
b8aa1682 1060
0f907de1 1061 ret = utils_mkdir_recursive(stream->path_name, S_IRWXU | S_IRWXG);
b8aa1682 1062 if (ret < 0) {
b8aa1682
JD
1063 ERR("relay creating output directory");
1064 goto end;
1065 }
1066
be96a7d1
DG
1067 /*
1068 * No need to use run_as API here because whatever we receives, the relayd
1069 * uses its own credentials for the stream files.
1070 */
0f907de1 1071 ret = utils_create_stream_file(stream->path_name, stream->channel_name,
1c20f0e2 1072 stream->tracefile_size, 0, relayd_uid, relayd_gid, NULL);
b8aa1682 1073 if (ret < 0) {
0f907de1 1074 ERR("Create output file");
b8aa1682
JD
1075 goto end;
1076 }
b8aa1682 1077 stream->fd = ret;
0f907de1
JD
1078 if (stream->tracefile_size) {
1079 DBG("Tracefile %s/%s_0 created", stream->path_name, stream->channel_name);
1080 } else {
1081 DBG("Tracefile %s/%s created", stream->path_name, stream->channel_name);
1082 }
b8aa1682 1083
d3e2ba59
JD
1084 if (!strncmp(stream->channel_name, DEFAULT_METADATA_NAME, NAME_MAX)) {
1085 stream->metadata_flag = 1;
1086 /*
1087 * When we receive a new metadata stream, we create a new
1088 * ctf_trace and we assign this ctf_trace to all streams with
1089 * the same path.
1090 *
1091 * If later on we receive a new stream for the same ctf_trace,
1092 * we copy the information from the first hit in the HT to the
1093 * new stream.
1094 */
1095 stream->ctf_trace = ctf_trace_create();
1096 if (!stream->ctf_trace) {
1097 ret = -1;
1098 goto end;
1099 }
1100 stream->ctf_trace->refcount++;
1101 stream->ctf_trace->metadata_stream = stream;
1102 }
1103 ctf_trace_assign(cmd->ctf_traces_ht, stream);
c07d8a78 1104 stream->ctf_traces_ht = cmd->ctf_traces_ht;
d3e2ba59 1105
b8aa1682
JD
1106 lttng_ht_node_init_ulong(&stream->stream_n,
1107 (unsigned long) stream->stream_handle);
d3e2ba59 1108 lttng_ht_add_unique_ulong(relay_streams_ht,
b8aa1682
JD
1109 &stream->stream_n);
1110
d3e2ba59
JD
1111 lttng_ht_node_init_str(&stream->ctf_trace_node, stream->path_name);
1112 lttng_ht_add_str(cmd->ctf_traces_ht, &stream->ctf_trace_node);
87b576ec 1113 session->stream_count++;
d3e2ba59 1114
1c20f0e2
JD
1115 DBG("Relay new stream added %s with ID %" PRIu64, stream->channel_name,
1116 stream->stream_handle);
b8aa1682
JD
1117
1118end:
5af40280 1119 reply.handle = htobe64(stream->stream_handle);
b8aa1682
JD
1120 /* send the session id to the client or a negative return code on error */
1121 if (ret < 0) {
f73fabfd 1122 reply.ret_code = htobe32(LTTNG_ERR_UNK);
5af40280
CB
1123 /* stream was not properly added to the ht, so free it */
1124 free(stream);
b8aa1682 1125 } else {
f73fabfd 1126 reply.ret_code = htobe32(LTTNG_OK);
b8aa1682 1127 }
5af40280 1128
b8aa1682
JD
1129 send_ret = cmd->sock->ops->sendmsg(cmd->sock, &reply,
1130 sizeof(struct lttcomm_relayd_status_stream), 0);
1131 if (send_ret < 0) {
1132 ERR("Relay sending stream id");
4169f5ad 1133 ret = send_ret;
b8aa1682 1134 }
9d1bbf21 1135 rcu_read_unlock();
b8aa1682
JD
1136
1137end_no_session:
1138 return ret;
0f907de1
JD
1139
1140err_free_stream:
1141 free(stream->path_name);
1142 free(stream->channel_name);
1143 free(stream);
1144 return ret;
b8aa1682
JD
1145}
1146
173af62f
DG
1147/*
1148 * relay_close_stream: close a specific stream
1149 */
1150static
1151int relay_close_stream(struct lttcomm_relayd_hdr *recv_hdr,
92c6ca54 1152 struct relay_command *cmd)
173af62f 1153{
94d49140 1154 int ret, send_ret;
173af62f
DG
1155 struct relay_session *session = cmd->session;
1156 struct lttcomm_relayd_close_stream stream_info;
1157 struct lttcomm_relayd_generic_reply reply;
1158 struct relay_stream *stream;
173af62f
DG
1159
1160 DBG("Close stream received");
1161
c5b6f4f0 1162 if (!session || cmd->version_check_done == 0) {
173af62f
DG
1163 ERR("Trying to close a stream before version check");
1164 ret = -1;
1165 goto end_no_session;
1166 }
1167
1168 ret = cmd->sock->ops->recvmsg(cmd->sock, &stream_info,
7c5aef62 1169 sizeof(struct lttcomm_relayd_close_stream), 0);
173af62f 1170 if (ret < sizeof(struct lttcomm_relayd_close_stream)) {
a6cd2b97
DG
1171 if (ret == 0) {
1172 /* Orderly shutdown. Not necessary to print an error. */
1173 DBG("Socket %d did an orderly shutdown", cmd->sock->fd);
1174 } else {
1175 ERR("Relay didn't receive valid add_stream struct size : %d", ret);
1176 }
173af62f
DG
1177 ret = -1;
1178 goto end_no_session;
1179 }
1180
1181 rcu_read_lock();
d3e2ba59 1182 stream = relay_stream_find_by_id(be64toh(stream_info.stream_id));
173af62f
DG
1183 if (!stream) {
1184 ret = -1;
1185 goto end_unlock;
1186 }
1187
8e2583a4 1188 stream->last_net_seq_num = be64toh(stream_info.last_net_seq_num);
173af62f 1189 stream->close_flag = 1;
87b576ec
JD
1190 session->stream_count--;
1191 assert(session->stream_count >= 0);
173af62f
DG
1192
1193 if (close_stream_check(stream)) {
c07d8a78 1194 destroy_stream(stream);
173af62f
DG
1195 }
1196
1197end_unlock:
1198 rcu_read_unlock();
1199
1200 if (ret < 0) {
f73fabfd 1201 reply.ret_code = htobe32(LTTNG_ERR_UNK);
173af62f 1202 } else {
f73fabfd 1203 reply.ret_code = htobe32(LTTNG_OK);
173af62f
DG
1204 }
1205 send_ret = cmd->sock->ops->sendmsg(cmd->sock, &reply,
1206 sizeof(struct lttcomm_relayd_generic_reply), 0);
1207 if (send_ret < 0) {
1208 ERR("Relay sending stream id");
4169f5ad 1209 ret = send_ret;
173af62f
DG
1210 }
1211
1212end_no_session:
1213 return ret;
1214}
1215
b8aa1682
JD
1216/*
1217 * relay_unknown_command: send -1 if received unknown command
1218 */
1219static
1220void relay_unknown_command(struct relay_command *cmd)
1221{
1222 struct lttcomm_relayd_generic_reply reply;
1223 int ret;
1224
f73fabfd 1225 reply.ret_code = htobe32(LTTNG_ERR_UNK);
b8aa1682
JD
1226 ret = cmd->sock->ops->sendmsg(cmd->sock, &reply,
1227 sizeof(struct lttcomm_relayd_generic_reply), 0);
1228 if (ret < 0) {
1229 ERR("Relay sending unknown command");
1230 }
1231}
1232
1233/*
1234 * relay_start: send an acknowledgment to the client to tell if we are
1235 * ready to receive data. We are ready if a session is established.
1236 */
1237static
1238int relay_start(struct lttcomm_relayd_hdr *recv_hdr,
1239 struct relay_command *cmd)
1240{
f73fabfd 1241 int ret = htobe32(LTTNG_OK);
b8aa1682
JD
1242 struct lttcomm_relayd_generic_reply reply;
1243 struct relay_session *session = cmd->session;
1244
1245 if (!session) {
1246 DBG("Trying to start the streaming without a session established");
f73fabfd 1247 ret = htobe32(LTTNG_ERR_UNK);
b8aa1682
JD
1248 }
1249
1250 reply.ret_code = ret;
1251 ret = cmd->sock->ops->sendmsg(cmd->sock, &reply,
1252 sizeof(struct lttcomm_relayd_generic_reply), 0);
1253 if (ret < 0) {
1254 ERR("Relay sending start ack");
1255 }
1256
1257 return ret;
1258}
1259
1d4dfdef
DG
1260/*
1261 * Append padding to the file pointed by the file descriptor fd.
1262 */
1263static int write_padding_to_file(int fd, uint32_t size)
1264{
6cd525e8 1265 ssize_t ret = 0;
1d4dfdef
DG
1266 char *zeros;
1267
1268 if (size == 0) {
1269 goto end;
1270 }
1271
1272 zeros = zmalloc(size);
1273 if (zeros == NULL) {
1274 PERROR("zmalloc zeros for padding");
1275 ret = -1;
1276 goto end;
1277 }
1278
6cd525e8
MD
1279 ret = lttng_write(fd, zeros, size);
1280 if (ret < size) {
1d4dfdef
DG
1281 PERROR("write padding to file");
1282 }
1283
e986c7a1
DG
1284 free(zeros);
1285
1d4dfdef
DG
1286end:
1287 return ret;
1288}
1289
b8aa1682
JD
1290/*
1291 * relay_recv_metadata: receive the metada for the session.
1292 */
1293static
1294int relay_recv_metadata(struct lttcomm_relayd_hdr *recv_hdr,
d3e2ba59 1295 struct relay_command *cmd)
b8aa1682 1296{
f73fabfd 1297 int ret = htobe32(LTTNG_OK);
6cd525e8 1298 ssize_t size_ret;
b8aa1682
JD
1299 struct relay_session *session = cmd->session;
1300 struct lttcomm_relayd_metadata_payload *metadata_struct;
1301 struct relay_stream *metadata_stream;
1302 uint64_t data_size, payload_size;
1303
1304 if (!session) {
1305 ERR("Metadata sent before version check");
1306 ret = -1;
1307 goto end;
1308 }
1309
f6416125
MD
1310 data_size = payload_size = be64toh(recv_hdr->data_size);
1311 if (data_size < sizeof(struct lttcomm_relayd_metadata_payload)) {
1312 ERR("Incorrect data size");
1313 ret = -1;
1314 goto end;
1315 }
1316 payload_size -= sizeof(struct lttcomm_relayd_metadata_payload);
1317
b8aa1682 1318 if (data_buffer_size < data_size) {
d7b3776f 1319 /* In case the realloc fails, we can free the memory */
c617c0c6
MD
1320 char *tmp_data_ptr;
1321
1322 tmp_data_ptr = realloc(data_buffer, data_size);
1323 if (!tmp_data_ptr) {
b8aa1682 1324 ERR("Allocating data buffer");
c617c0c6 1325 free(data_buffer);
b8aa1682
JD
1326 ret = -1;
1327 goto end;
1328 }
c617c0c6 1329 data_buffer = tmp_data_ptr;
b8aa1682
JD
1330 data_buffer_size = data_size;
1331 }
1332 memset(data_buffer, 0, data_size);
77c7c900 1333 DBG2("Relay receiving metadata, waiting for %" PRIu64 " bytes", data_size);
7c5aef62 1334 ret = cmd->sock->ops->recvmsg(cmd->sock, data_buffer, data_size, 0);
b8aa1682 1335 if (ret < 0 || ret != data_size) {
a6cd2b97
DG
1336 if (ret == 0) {
1337 /* Orderly shutdown. Not necessary to print an error. */
1338 DBG("Socket %d did an orderly shutdown", cmd->sock->fd);
1339 } else {
1340 ERR("Relay didn't receive the whole metadata");
1341 }
b8aa1682 1342 ret = -1;
b8aa1682
JD
1343 goto end;
1344 }
1345 metadata_struct = (struct lttcomm_relayd_metadata_payload *) data_buffer;
9d1bbf21
MD
1346
1347 rcu_read_lock();
d3e2ba59
JD
1348 metadata_stream = relay_stream_find_by_id(
1349 be64toh(metadata_struct->stream_id));
b8aa1682
JD
1350 if (!metadata_stream) {
1351 ret = -1;
9d1bbf21 1352 goto end_unlock;
b8aa1682
JD
1353 }
1354
6cd525e8
MD
1355 size_ret = lttng_write(metadata_stream->fd, metadata_struct->payload,
1356 payload_size);
1357 if (size_ret < payload_size) {
b8aa1682
JD
1358 ERR("Relay error writing metadata on file");
1359 ret = -1;
9d1bbf21 1360 goto end_unlock;
b8aa1682 1361 }
1d4dfdef
DG
1362
1363 ret = write_padding_to_file(metadata_stream->fd,
1364 be32toh(metadata_struct->padding_size));
1365 if (ret < 0) {
1366 goto end_unlock;
1367 }
d3e2ba59
JD
1368 metadata_stream->ctf_trace->metadata_received +=
1369 payload_size + be32toh(metadata_struct->padding_size);
1d4dfdef 1370
b8aa1682
JD
1371 DBG2("Relay metadata written");
1372
9d1bbf21 1373end_unlock:
6e3c5836 1374 rcu_read_unlock();
b8aa1682
JD
1375end:
1376 return ret;
1377}
1378
1379/*
1380 * relay_send_version: send relayd version number
1381 */
1382static
1383int relay_send_version(struct lttcomm_relayd_hdr *recv_hdr,
d3e2ba59 1384 struct relay_command *cmd, struct lttng_ht *sessions_ht)
b8aa1682 1385{
7f51dcba 1386 int ret;
092b6259 1387 struct lttcomm_relayd_version reply, msg;
b8aa1682 1388
c5b6f4f0
DG
1389 assert(cmd);
1390
1391 cmd->version_check_done = 1;
b8aa1682 1392
092b6259 1393 /* Get version from the other side. */
7c5aef62 1394 ret = cmd->sock->ops->recvmsg(cmd->sock, &msg, sizeof(msg), 0);
092b6259 1395 if (ret < 0 || ret != sizeof(msg)) {
a6cd2b97
DG
1396 if (ret == 0) {
1397 /* Orderly shutdown. Not necessary to print an error. */
1398 DBG("Socket %d did an orderly shutdown", cmd->sock->fd);
1399 } else {
1400 ERR("Relay failed to receive the version values.");
1401 }
092b6259 1402 ret = -1;
092b6259
DG
1403 goto end;
1404 }
1405
d83a952c
MD
1406 reply.major = RELAYD_VERSION_COMM_MAJOR;
1407 reply.minor = RELAYD_VERSION_COMM_MINOR;
d4519fa3
JD
1408
1409 /* Major versions must be the same */
1410 if (reply.major != be32toh(msg.major)) {
6151a90f
JD
1411 DBG("Incompatible major versions (%u vs %u), deleting session",
1412 reply.major, be32toh(msg.major));
d3e2ba59 1413 relay_delete_session(cmd, sessions_ht);
d4519fa3
JD
1414 ret = 0;
1415 goto end;
1416 }
1417
0f907de1
JD
1418 cmd->major = reply.major;
1419 /* We adapt to the lowest compatible version */
1420 if (reply.minor <= be32toh(msg.minor)) {
1421 cmd->minor = reply.minor;
1422 } else {
1423 cmd->minor = be32toh(msg.minor);
1424 }
1425
6151a90f
JD
1426 reply.major = htobe32(reply.major);
1427 reply.minor = htobe32(reply.minor);
1428 ret = cmd->sock->ops->sendmsg(cmd->sock, &reply,
1429 sizeof(struct lttcomm_relayd_version), 0);
1430 if (ret < 0) {
1431 ERR("Relay sending version");
1432 }
1433
0f907de1
JD
1434 DBG("Version check done using protocol %u.%u", cmd->major,
1435 cmd->minor);
b8aa1682
JD
1436
1437end:
1438 return ret;
1439}
1440
c8f59ee5 1441/*
6d805429 1442 * Check for data pending for a given stream id from the session daemon.
c8f59ee5
DG
1443 */
1444static
6d805429 1445int relay_data_pending(struct lttcomm_relayd_hdr *recv_hdr,
d3e2ba59 1446 struct relay_command *cmd)
c8f59ee5
DG
1447{
1448 struct relay_session *session = cmd->session;
6d805429 1449 struct lttcomm_relayd_data_pending msg;
c8f59ee5
DG
1450 struct lttcomm_relayd_generic_reply reply;
1451 struct relay_stream *stream;
1452 int ret;
c8f59ee5
DG
1453 uint64_t last_net_seq_num, stream_id;
1454
6d805429 1455 DBG("Data pending command received");
c8f59ee5 1456
c5b6f4f0 1457 if (!session || cmd->version_check_done == 0) {
c8f59ee5
DG
1458 ERR("Trying to check for data before version check");
1459 ret = -1;
1460 goto end_no_session;
1461 }
1462
7c5aef62 1463 ret = cmd->sock->ops->recvmsg(cmd->sock, &msg, sizeof(msg), 0);
c8f59ee5 1464 if (ret < sizeof(msg)) {
a6cd2b97
DG
1465 if (ret == 0) {
1466 /* Orderly shutdown. Not necessary to print an error. */
1467 DBG("Socket %d did an orderly shutdown", cmd->sock->fd);
1468 } else {
1469 ERR("Relay didn't receive valid data_pending struct size : %d",
1470 ret);
1471 }
c8f59ee5
DG
1472 ret = -1;
1473 goto end_no_session;
1474 }
1475
1476 stream_id = be64toh(msg.stream_id);
1477 last_net_seq_num = be64toh(msg.last_net_seq_num);
1478
1479 rcu_read_lock();
d3e2ba59 1480 stream = relay_stream_find_by_id(stream_id);
de91f48a 1481 if (stream == NULL) {
c8f59ee5
DG
1482 ret = -1;
1483 goto end_unlock;
1484 }
1485
6d805429 1486 DBG("Data pending for stream id %" PRIu64 " prev_seq %" PRIu64
c8f59ee5
DG
1487 " and last_seq %" PRIu64, stream_id, stream->prev_seq,
1488 last_net_seq_num);
1489
33832e64 1490 /* Avoid wrapping issue */
39df6d9f 1491 if (((int64_t) (stream->prev_seq - last_net_seq_num)) >= 0) {
6d805429 1492 /* Data has in fact been written and is NOT pending */
c8f59ee5 1493 ret = 0;
6d805429
DG
1494 } else {
1495 /* Data still being streamed thus pending */
1496 ret = 1;
c8f59ee5
DG
1497 }
1498
f7079f67
DG
1499 /* Pending check is now done. */
1500 stream->data_pending_check_done = 1;
1501
c8f59ee5
DG
1502end_unlock:
1503 rcu_read_unlock();
1504
1505 reply.ret_code = htobe32(ret);
1506 ret = cmd->sock->ops->sendmsg(cmd->sock, &reply, sizeof(reply), 0);
1507 if (ret < 0) {
6d805429 1508 ERR("Relay data pending ret code failed");
c8f59ee5
DG
1509 }
1510
1511end_no_session:
1512 return ret;
1513}
1514
1515/*
1516 * Wait for the control socket to reach a quiescent state.
1517 *
1518 * Note that for now, when receiving this command from the session daemon, this
1519 * means that every subsequent commands or data received on the control socket
1520 * has been handled. So, this is why we simply return OK here.
1521 */
1522static
1523int relay_quiescent_control(struct lttcomm_relayd_hdr *recv_hdr,
d3e2ba59 1524 struct relay_command *cmd)
c8f59ee5
DG
1525{
1526 int ret;
ad7051c0
DG
1527 uint64_t stream_id;
1528 struct relay_stream *stream;
1529 struct lttng_ht_iter iter;
1530 struct lttcomm_relayd_quiescent_control msg;
c8f59ee5
DG
1531 struct lttcomm_relayd_generic_reply reply;
1532
1533 DBG("Checking quiescent state on control socket");
1534
ad7051c0
DG
1535 if (!cmd->session || cmd->version_check_done == 0) {
1536 ERR("Trying to check for data before version check");
1537 ret = -1;
1538 goto end_no_session;
1539 }
1540
1541 ret = cmd->sock->ops->recvmsg(cmd->sock, &msg, sizeof(msg), 0);
1542 if (ret < sizeof(msg)) {
a6cd2b97
DG
1543 if (ret == 0) {
1544 /* Orderly shutdown. Not necessary to print an error. */
1545 DBG("Socket %d did an orderly shutdown", cmd->sock->fd);
1546 } else {
1547 ERR("Relay didn't receive valid begin data_pending struct size: %d",
1548 ret);
1549 }
ad7051c0
DG
1550 ret = -1;
1551 goto end_no_session;
1552 }
1553
1554 stream_id = be64toh(msg.stream_id);
1555
1556 rcu_read_lock();
d3e2ba59
JD
1557 cds_lfht_for_each_entry(relay_streams_ht->ht, &iter.iter, stream,
1558 stream_n.node) {
ad7051c0
DG
1559 if (stream->stream_handle == stream_id) {
1560 stream->data_pending_check_done = 1;
1561 DBG("Relay quiescent control pending flag set to %" PRIu64,
1562 stream_id);
1563 break;
1564 }
1565 }
1566 rcu_read_unlock();
1567
c8f59ee5
DG
1568 reply.ret_code = htobe32(LTTNG_OK);
1569 ret = cmd->sock->ops->sendmsg(cmd->sock, &reply, sizeof(reply), 0);
1570 if (ret < 0) {
6d805429 1571 ERR("Relay data quiescent control ret code failed");
c8f59ee5
DG
1572 }
1573
ad7051c0 1574end_no_session:
c8f59ee5
DG
1575 return ret;
1576}
1577
f7079f67
DG
1578/*
1579 * Initialize a data pending command. This means that a client is about to ask
1580 * for data pending for each stream he/she holds. Simply iterate over all
1581 * streams of a session and set the data_pending_check_done flag.
1582 *
1583 * This command returns to the client a LTTNG_OK code.
1584 */
1585static
1586int relay_begin_data_pending(struct lttcomm_relayd_hdr *recv_hdr,
d3e2ba59 1587 struct relay_command *cmd)
f7079f67
DG
1588{
1589 int ret;
1590 struct lttng_ht_iter iter;
1591 struct lttcomm_relayd_begin_data_pending msg;
1592 struct lttcomm_relayd_generic_reply reply;
1593 struct relay_stream *stream;
1594 uint64_t session_id;
1595
1596 assert(recv_hdr);
1597 assert(cmd);
f7079f67
DG
1598
1599 DBG("Init streams for data pending");
1600
1601 if (!cmd->session || cmd->version_check_done == 0) {
1602 ERR("Trying to check for data before version check");
1603 ret = -1;
1604 goto end_no_session;
1605 }
1606
1607 ret = cmd->sock->ops->recvmsg(cmd->sock, &msg, sizeof(msg), 0);
1608 if (ret < sizeof(msg)) {
a6cd2b97
DG
1609 if (ret == 0) {
1610 /* Orderly shutdown. Not necessary to print an error. */
1611 DBG("Socket %d did an orderly shutdown", cmd->sock->fd);
1612 } else {
1613 ERR("Relay didn't receive valid begin data_pending struct size: %d",
1614 ret);
1615 }
f7079f67
DG
1616 ret = -1;
1617 goto end_no_session;
1618 }
1619
1620 session_id = be64toh(msg.session_id);
1621
1622 /*
1623 * Iterate over all streams to set the begin data pending flag. For now, the
1624 * streams are indexed by stream handle so we have to iterate over all
1625 * streams to find the one associated with the right session_id.
1626 */
1627 rcu_read_lock();
d3e2ba59
JD
1628 cds_lfht_for_each_entry(relay_streams_ht->ht, &iter.iter, stream,
1629 stream_n.node) {
f7079f67
DG
1630 if (stream->session->id == session_id) {
1631 stream->data_pending_check_done = 0;
1632 DBG("Set begin data pending flag to stream %" PRIu64,
1633 stream->stream_handle);
1634 }
1635 }
1636 rcu_read_unlock();
1637
1638 /* All good, send back reply. */
1639 reply.ret_code = htobe32(LTTNG_OK);
1640
1641 ret = cmd->sock->ops->sendmsg(cmd->sock, &reply, sizeof(reply), 0);
1642 if (ret < 0) {
1643 ERR("Relay begin data pending send reply failed");
1644 }
1645
1646end_no_session:
1647 return ret;
1648}
1649
1650/*
1651 * End data pending command. This will check, for a given session id, if each
1652 * stream associated with it has its data_pending_check_done flag set. If not,
1653 * this means that the client lost track of the stream but the data is still
1654 * being streamed on our side. In this case, we inform the client that data is
1655 * inflight.
1656 *
1657 * Return to the client if there is data in flight or not with a ret_code.
1658 */
1659static
1660int relay_end_data_pending(struct lttcomm_relayd_hdr *recv_hdr,
d3e2ba59 1661 struct relay_command *cmd)
f7079f67
DG
1662{
1663 int ret;
1664 struct lttng_ht_iter iter;
1665 struct lttcomm_relayd_end_data_pending msg;
1666 struct lttcomm_relayd_generic_reply reply;
1667 struct relay_stream *stream;
1668 uint64_t session_id;
1669 uint32_t is_data_inflight = 0;
1670
1671 assert(recv_hdr);
1672 assert(cmd);
f7079f67
DG
1673
1674 DBG("End data pending command");
1675
1676 if (!cmd->session || cmd->version_check_done == 0) {
1677 ERR("Trying to check for data before version check");
1678 ret = -1;
1679 goto end_no_session;
1680 }
1681
1682 ret = cmd->sock->ops->recvmsg(cmd->sock, &msg, sizeof(msg), 0);
1683 if (ret < sizeof(msg)) {
a6cd2b97
DG
1684 if (ret == 0) {
1685 /* Orderly shutdown. Not necessary to print an error. */
1686 DBG("Socket %d did an orderly shutdown", cmd->sock->fd);
1687 } else {
1688 ERR("Relay didn't receive valid end data_pending struct size: %d",
1689 ret);
1690 }
f7079f67
DG
1691 ret = -1;
1692 goto end_no_session;
1693 }
1694
1695 session_id = be64toh(msg.session_id);
1696
1697 /* Iterate over all streams to see if the begin data pending flag is set. */
1698 rcu_read_lock();
d3e2ba59
JD
1699 cds_lfht_for_each_entry(relay_streams_ht->ht, &iter.iter, stream,
1700 stream_n.node) {
f7079f67
DG
1701 if (stream->session->id == session_id &&
1702 !stream->data_pending_check_done) {
1703 is_data_inflight = 1;
1704 DBG("Data is still in flight for stream %" PRIu64,
1705 stream->stream_handle);
1706 break;
1707 }
1708 }
1709 rcu_read_unlock();
1710
1711 /* All good, send back reply. */
1712 reply.ret_code = htobe32(is_data_inflight);
1713
1714 ret = cmd->sock->ops->sendmsg(cmd->sock, &reply, sizeof(reply), 0);
1715 if (ret < 0) {
1716 ERR("Relay end data pending send reply failed");
1717 }
1718
1719end_no_session:
1720 return ret;
1721}
1722
1c20f0e2
JD
1723/*
1724 * Receive an index for a specific stream.
1725 *
1726 * Return 0 on success else a negative value.
1727 */
1728static
1729int relay_recv_index(struct lttcomm_relayd_hdr *recv_hdr,
0a6518b0 1730 struct relay_command *cmd)
1c20f0e2
JD
1731{
1732 int ret, send_ret, index_created = 0;
1733 struct relay_session *session = cmd->session;
1734 struct lttcomm_relayd_index index_info;
1735 struct relay_index *index, *wr_index = NULL;
1736 struct lttcomm_relayd_generic_reply reply;
1737 struct relay_stream *stream;
1738 uint64_t net_seq_num;
1739
1740 assert(cmd);
1c20f0e2
JD
1741
1742 DBG("Relay receiving index");
1743
1744 if (!session || cmd->version_check_done == 0) {
1745 ERR("Trying to close a stream before version check");
1746 ret = -1;
1747 goto end_no_session;
1748 }
1749
1750 ret = cmd->sock->ops->recvmsg(cmd->sock, &index_info,
1751 sizeof(index_info), 0);
1752 if (ret < sizeof(index_info)) {
1753 if (ret == 0) {
1754 /* Orderly shutdown. Not necessary to print an error. */
1755 DBG("Socket %d did an orderly shutdown", cmd->sock->fd);
1756 } else {
1757 ERR("Relay didn't receive valid index struct size : %d", ret);
1758 }
1759 ret = -1;
1760 goto end_no_session;
1761 }
1762
1763 net_seq_num = be64toh(index_info.net_seq_num);
1764
1765 rcu_read_lock();
d3e2ba59 1766 stream = relay_stream_find_by_id(be64toh(index_info.relay_stream_id));
1c20f0e2
JD
1767 if (!stream) {
1768 ret = -1;
1769 goto end_rcu_unlock;
1770 }
1771
d3e2ba59
JD
1772 /* Live beacon handling */
1773 if (index_info.packet_size == 0) {
1774 DBG("Received live beacon for stream %" PRIu64, stream->stream_handle);
1775
1776 /*
1777 * Only flag a stream inactive when it has already received data.
1778 */
1779 if (stream->total_index_received > 0) {
1780 stream->beacon_ts_end = be64toh(index_info.timestamp_end);
1781 }
1782 ret = 0;
1783 goto end_rcu_unlock;
1784 } else {
1785 stream->beacon_ts_end = -1ULL;
1786 }
1787
0a6518b0 1788 index = relay_index_find(stream->stream_handle, net_seq_num);
1c20f0e2
JD
1789 if (!index) {
1790 /* A successful creation will add the object to the HT. */
1791 index = relay_index_create(stream->stream_handle, net_seq_num);
1792 if (!index) {
1793 goto end_rcu_unlock;
1794 }
1795 index_created = 1;
1796 }
1797
1798 copy_index_control_data(index, &index_info);
1799
1800 if (index_created) {
1801 /*
1802 * Try to add the relay index object to the hash table. If an object
1803 * already exist, destroy back the index created, set the data in this
1804 * object and write it on disk.
1805 */
0a6518b0 1806 relay_index_add(index, &wr_index);
1c20f0e2
JD
1807 if (wr_index) {
1808 copy_index_control_data(wr_index, &index_info);
1809 free(index);
1810 }
1811 } else {
1812 /* The index already exists so write it on disk. */
1813 wr_index = index;
1814 }
1815
1816 /* Do we have a writable ready index to write on disk. */
1817 if (wr_index) {
1818 /* Starting at 2.4, create the index file if none available. */
1819 if (cmd->minor >= 4 && stream->index_fd < 0) {
1820 ret = index_create_file(stream->path_name, stream->channel_name,
1821 relayd_uid, relayd_gid, stream->tracefile_size,
1822 stream->tracefile_count_current);
1823 if (ret < 0) {
1824 goto end_rcu_unlock;
1825 }
1826 stream->index_fd = ret;
1827 }
1828
0a6518b0 1829 ret = relay_index_write(wr_index->fd, wr_index);
1c20f0e2
JD
1830 if (ret < 0) {
1831 goto end_rcu_unlock;
1832 }
d3e2ba59 1833 stream->total_index_received++;
1c20f0e2
JD
1834 }
1835
1836end_rcu_unlock:
1837 rcu_read_unlock();
1838
1839 if (ret < 0) {
1840 reply.ret_code = htobe32(LTTNG_ERR_UNK);
1841 } else {
1842 reply.ret_code = htobe32(LTTNG_OK);
1843 }
1844 send_ret = cmd->sock->ops->sendmsg(cmd->sock, &reply, sizeof(reply), 0);
1845 if (send_ret < 0) {
1846 ERR("Relay sending close index id reply");
1847 ret = send_ret;
1848 }
1849
1850end_no_session:
1851 return ret;
1852}
1853
b8aa1682 1854/*
d3e2ba59 1855 * Process the commands received on the control socket
b8aa1682
JD
1856 */
1857static
1858int relay_process_control(struct lttcomm_relayd_hdr *recv_hdr,
d3e2ba59 1859 struct relay_command *cmd, struct relay_local_data *ctx)
b8aa1682
JD
1860{
1861 int ret = 0;
1862
1863 switch (be32toh(recv_hdr->cmd)) {
b8aa1682 1864 case RELAYD_CREATE_SESSION:
d3e2ba59 1865 ret = relay_create_session(recv_hdr, cmd, ctx->sessions_ht);
b8aa1682 1866 break;
b8aa1682 1867 case RELAYD_ADD_STREAM:
d3e2ba59 1868 ret = relay_add_stream(recv_hdr, cmd, ctx->sessions_ht);
b8aa1682
JD
1869 break;
1870 case RELAYD_START_DATA:
1871 ret = relay_start(recv_hdr, cmd);
1872 break;
1873 case RELAYD_SEND_METADATA:
d3e2ba59 1874 ret = relay_recv_metadata(recv_hdr, cmd);
b8aa1682
JD
1875 break;
1876 case RELAYD_VERSION:
d3e2ba59 1877 ret = relay_send_version(recv_hdr, cmd, ctx->sessions_ht);
b8aa1682 1878 break;
173af62f 1879 case RELAYD_CLOSE_STREAM:
92c6ca54 1880 ret = relay_close_stream(recv_hdr, cmd);
173af62f 1881 break;
6d805429 1882 case RELAYD_DATA_PENDING:
d3e2ba59 1883 ret = relay_data_pending(recv_hdr, cmd);
c8f59ee5
DG
1884 break;
1885 case RELAYD_QUIESCENT_CONTROL:
d3e2ba59 1886 ret = relay_quiescent_control(recv_hdr, cmd);
c8f59ee5 1887 break;
f7079f67 1888 case RELAYD_BEGIN_DATA_PENDING:
d3e2ba59 1889 ret = relay_begin_data_pending(recv_hdr, cmd);
f7079f67
DG
1890 break;
1891 case RELAYD_END_DATA_PENDING:
d3e2ba59 1892 ret = relay_end_data_pending(recv_hdr, cmd);
f7079f67 1893 break;
1c20f0e2 1894 case RELAYD_SEND_INDEX:
0a6518b0 1895 ret = relay_recv_index(recv_hdr, cmd);
1c20f0e2 1896 break;
b8aa1682
JD
1897 case RELAYD_UPDATE_SYNC_INFO:
1898 default:
1899 ERR("Received unknown command (%u)", be32toh(recv_hdr->cmd));
1900 relay_unknown_command(cmd);
1901 ret = -1;
1902 goto end;
1903 }
1904
1905end:
1906 return ret;
1907}
1908
7d2f7452
DG
1909/*
1910 * Handle index for a data stream.
1911 *
1912 * RCU read side lock MUST be acquired.
1913 *
1914 * Return 0 on success else a negative value.
1915 */
1916static int handle_index_data(struct relay_stream *stream, uint64_t net_seq_num,
1917 int rotate_index)
1918{
1919 int ret = 0, index_created = 0;
1920 uint64_t stream_id, data_offset;
1921 struct relay_index *index, *wr_index = NULL;
1922
1923 assert(stream);
1924
1925 stream_id = stream->stream_handle;
1926 /* Get data offset because we are about to update the index. */
1927 data_offset = htobe64(stream->tracefile_size_current);
1928
1929 /*
1930 * Lookup for an existing index for that stream id/sequence number. If on
1931 * exists, the control thread already received the data for it thus we need
1932 * to write it on disk.
1933 */
1934 index = relay_index_find(stream_id, net_seq_num);
1935 if (!index) {
1936 /* A successful creation will add the object to the HT. */
1937 index = relay_index_create(stream_id, net_seq_num);
1938 if (!index) {
1939 ret = -1;
1940 goto error;
1941 }
1942 index_created = 1;
1943 }
1944
1945 if (rotate_index || stream->index_fd < 0) {
1946 index->to_close_fd = stream->index_fd;
1947 ret = index_create_file(stream->path_name, stream->channel_name,
1948 relayd_uid, relayd_gid, stream->tracefile_size,
1949 stream->tracefile_count_current);
1950 if (ret < 0) {
1951 /* This will close the stream's index fd if one. */
1952 relay_index_free_safe(index);
1953 goto error;
1954 }
1955 stream->index_fd = ret;
1956 }
1957 index->fd = stream->index_fd;
1958 index->index_data.offset = data_offset;
1959
1960 if (index_created) {
1961 /*
1962 * Try to add the relay index object to the hash table. If an object
1963 * already exist, destroy back the index created and set the data.
1964 */
1965 relay_index_add(index, &wr_index);
1966 if (wr_index) {
1967 /* Copy back data from the created index. */
1968 wr_index->fd = index->fd;
1969 wr_index->to_close_fd = index->to_close_fd;
1970 wr_index->index_data.offset = data_offset;
1971 free(index);
1972 }
1973 } else {
1974 /* The index already exists so write it on disk. */
1975 wr_index = index;
1976 }
1977
1978 /* Do we have a writable ready index to write on disk. */
1979 if (wr_index) {
1980 ret = relay_index_write(wr_index->fd, wr_index);
1981 if (ret < 0) {
1982 goto error;
1983 }
1984 stream->total_index_received++;
1985 }
1986
1987error:
1988 return ret;
1989}
1990
b8aa1682
JD
1991/*
1992 * relay_process_data: Process the data received on the data socket
1993 */
1994static
0a6518b0 1995int relay_process_data(struct relay_command *cmd)
b8aa1682 1996{
7d2f7452 1997 int ret = 0, rotate_index = 0;
6cd525e8 1998 ssize_t size_ret;
b8aa1682
JD
1999 struct relay_stream *stream;
2000 struct lttcomm_relayd_data_hdr data_hdr;
7d2f7452 2001 uint64_t stream_id;
173af62f 2002 uint64_t net_seq_num;
b8aa1682
JD
2003 uint32_t data_size;
2004
2005 ret = cmd->sock->ops->recvmsg(cmd->sock, &data_hdr,
7c5aef62 2006 sizeof(struct lttcomm_relayd_data_hdr), 0);
b8aa1682 2007 if (ret <= 0) {
a6cd2b97
DG
2008 if (ret == 0) {
2009 /* Orderly shutdown. Not necessary to print an error. */
2010 DBG("Socket %d did an orderly shutdown", cmd->sock->fd);
2011 } else {
2012 ERR("Unable to receive data header on sock %d", cmd->sock->fd);
2013 }
b8aa1682
JD
2014 ret = -1;
2015 goto end;
2016 }
2017
2018 stream_id = be64toh(data_hdr.stream_id);
9d1bbf21
MD
2019
2020 rcu_read_lock();
d3e2ba59 2021 stream = relay_stream_find_by_id(stream_id);
b8aa1682
JD
2022 if (!stream) {
2023 ret = -1;
1c20f0e2 2024 goto end_rcu_unlock;
b8aa1682
JD
2025 }
2026
2027 data_size = be32toh(data_hdr.data_size);
2028 if (data_buffer_size < data_size) {
c617c0c6
MD
2029 char *tmp_data_ptr;
2030
2031 tmp_data_ptr = realloc(data_buffer, data_size);
2032 if (!tmp_data_ptr) {
b8aa1682 2033 ERR("Allocating data buffer");
c617c0c6 2034 free(data_buffer);
b8aa1682 2035 ret = -1;
1c20f0e2 2036 goto end_rcu_unlock;
b8aa1682 2037 }
c617c0c6 2038 data_buffer = tmp_data_ptr;
b8aa1682
JD
2039 data_buffer_size = data_size;
2040 }
2041 memset(data_buffer, 0, data_size);
2042
173af62f
DG
2043 net_seq_num = be64toh(data_hdr.net_seq_num);
2044
77c7c900 2045 DBG3("Receiving data of size %u for stream id %" PRIu64 " seqnum %" PRIu64,
173af62f 2046 data_size, stream_id, net_seq_num);
7c5aef62 2047 ret = cmd->sock->ops->recvmsg(cmd->sock, data_buffer, data_size, 0);
b8aa1682 2048 if (ret <= 0) {
a6cd2b97
DG
2049 if (ret == 0) {
2050 /* Orderly shutdown. Not necessary to print an error. */
2051 DBG("Socket %d did an orderly shutdown", cmd->sock->fd);
2052 }
b8aa1682 2053 ret = -1;
1c20f0e2 2054 goto end_rcu_unlock;
b8aa1682
JD
2055 }
2056
1c20f0e2 2057 /* Check if a rotation is needed. */
0f907de1
JD
2058 if (stream->tracefile_size > 0 &&
2059 (stream->tracefile_size_current + data_size) >
2060 stream->tracefile_size) {
6b6b9a5a
JD
2061 struct relay_viewer_stream *vstream;
2062 uint64_t new_id;
2063
2064 new_id = (stream->tracefile_count_current + 1) %
2065 stream->tracefile_count;
2066 /*
2067 * When we wrap-around back to 0, we start overwriting old
2068 * trace data.
2069 */
2070 if (!stream->tracefile_overwrite && new_id == 0) {
2071 stream->tracefile_overwrite = 1;
2072 }
2073 pthread_mutex_lock(&stream->viewer_stream_rotation_lock);
2074 if (stream->tracefile_overwrite) {
2075 stream->oldest_tracefile_id =
2076 (stream->oldest_tracefile_id + 1) %
2077 stream->tracefile_count;
2078 }
2079 vstream = live_find_viewer_stream_by_id(stream->stream_handle);
2080 if (vstream) {
2081 /*
2082 * The viewer is reading a file about to be
2083 * overwritten. Close the FDs it is
2084 * currently using and let it handle the fault.
2085 */
2086 if (vstream->tracefile_count_current == new_id) {
cef0f7d5 2087 pthread_mutex_lock(&vstream->overwrite_lock);
6b6b9a5a 2088 vstream->abort_flag = 1;
cef0f7d5 2089 pthread_mutex_unlock(&vstream->overwrite_lock);
6b6b9a5a
JD
2090 DBG("Streaming side setting abort_flag on stream %s_%lu\n",
2091 stream->channel_name, new_id);
2092 } else if (vstream->tracefile_count_current ==
2093 stream->tracefile_count_current) {
2094 /*
2095 * The reader and writer were in the
2096 * same trace file, inform the viewer
2097 * that no new index will ever be added
2098 * to this file.
2099 */
2100 vstream->close_write_flag = 1;
2101 }
2102 }
1c20f0e2
JD
2103 ret = utils_rotate_stream_file(stream->path_name, stream->channel_name,
2104 stream->tracefile_size, stream->tracefile_count,
2105 relayd_uid, relayd_gid, stream->fd,
2106 &(stream->tracefile_count_current), &stream->fd);
cef0f7d5 2107 stream->total_index_received = 0;
6b6b9a5a 2108 pthread_mutex_unlock(&stream->viewer_stream_rotation_lock);
0f907de1 2109 if (ret < 0) {
1c20f0e2
JD
2110 ERR("Rotating stream output file");
2111 goto end_rcu_unlock;
0f907de1 2112 }
a6976990
DG
2113 /* Reset current size because we just perform a stream rotation. */
2114 stream->tracefile_size_current = 0;
1c20f0e2
JD
2115 rotate_index = 1;
2116 }
2117
1c20f0e2 2118 /*
7d2f7452
DG
2119 * Index are handled in protocol version 2.4 and above. Also, snapshot and
2120 * index are NOT supported.
1c20f0e2 2121 */
7d2f7452
DG
2122 if (stream->session->minor >= 4 && !stream->session->snapshot) {
2123 ret = handle_index_data(stream, net_seq_num, rotate_index);
1c20f0e2 2124 if (ret < 0) {
1c20f0e2
JD
2125 goto end_rcu_unlock;
2126 }
1c20f0e2
JD
2127 }
2128
7d2f7452 2129 /* Write data to stream output fd. */
6cd525e8
MD
2130 size_ret = lttng_write(stream->fd, data_buffer, data_size);
2131 if (size_ret < data_size) {
b8aa1682
JD
2132 ERR("Relay error writing data to file");
2133 ret = -1;
1c20f0e2 2134 goto end_rcu_unlock;
b8aa1682 2135 }
1d4dfdef 2136
5ab7344e
JD
2137 DBG2("Relay wrote %d bytes to tracefile for stream id %" PRIu64,
2138 ret, stream->stream_handle);
2139
1d4dfdef
DG
2140 ret = write_padding_to_file(stream->fd, be32toh(data_hdr.padding_size));
2141 if (ret < 0) {
1c20f0e2 2142 goto end_rcu_unlock;
1d4dfdef 2143 }
1c20f0e2 2144 stream->tracefile_size_current += data_size + be32toh(data_hdr.padding_size);
1d4dfdef 2145
173af62f
DG
2146 stream->prev_seq = net_seq_num;
2147
2148 /* Check if we need to close the FD */
2149 if (close_stream_check(stream)) {
c07d8a78 2150 destroy_stream(stream);
173af62f
DG
2151 }
2152
1c20f0e2 2153end_rcu_unlock:
9d1bbf21 2154 rcu_read_unlock();
b8aa1682
JD
2155end:
2156 return ret;
2157}
2158
2159static
9d1bbf21 2160void relay_cleanup_poll_connection(struct lttng_poll_event *events, int pollfd)
b8aa1682
JD
2161{
2162 int ret;
2163
b8aa1682
JD
2164 lttng_poll_del(events, pollfd);
2165
2166 ret = close(pollfd);
2167 if (ret < 0) {
2168 ERR("Closing pollfd %d", pollfd);
2169 }
2170}
2171
2172static
2173int relay_add_connection(int fd, struct lttng_poll_event *events,
2174 struct lttng_ht *relay_connections_ht)
2175{
b8aa1682 2176 struct relay_command *relay_connection;
6cd525e8 2177 ssize_t ret;
b8aa1682
JD
2178
2179 relay_connection = zmalloc(sizeof(struct relay_command));
2180 if (relay_connection == NULL) {
2181 PERROR("Relay command zmalloc");
9d1bbf21 2182 goto error;
b8aa1682 2183 }
6cd525e8
MD
2184 ret = lttng_read(fd, relay_connection, sizeof(struct relay_command));
2185 if (ret < sizeof(struct relay_command)) {
b8aa1682 2186 PERROR("read relay cmd pipe");
9d1bbf21 2187 goto error_read;
b8aa1682
JD
2188 }
2189
c07d8a78
DG
2190 /*
2191 * Only used by the control side and the reference is copied inside each
2192 * stream from that connection. Thus a destroy HT must be done after every
2193 * stream has been destroyed.
2194 */
2195 if (relay_connection->type == RELAY_CONTROL) {
2196 relay_connection->ctf_traces_ht = lttng_ht_new(0,
2197 LTTNG_HT_TYPE_STRING);
2198 if (!relay_connection->ctf_traces_ht) {
2199 goto error_read;
2200 }
d3e2ba59
JD
2201 }
2202
b8aa1682
JD
2203 lttng_ht_node_init_ulong(&relay_connection->sock_n,
2204 (unsigned long) relay_connection->sock->fd);
9d1bbf21 2205 rcu_read_lock();
b8aa1682
JD
2206 lttng_ht_add_unique_ulong(relay_connections_ht,
2207 &relay_connection->sock_n);
9d1bbf21
MD
2208 rcu_read_unlock();
2209 return lttng_poll_add(events,
b8aa1682
JD
2210 relay_connection->sock->fd,
2211 LPOLLIN | LPOLLRDHUP);
2212
9d1bbf21
MD
2213error_read:
2214 free(relay_connection);
2215error:
2216 return -1;
2217}
2218
2219static
2220void deferred_free_connection(struct rcu_head *head)
2221{
2222 struct relay_command *relay_connection =
2223 caa_container_of(head, struct relay_command, rcu_node);
5b6d8097
DG
2224
2225 lttcomm_destroy_sock(relay_connection->sock);
9d1bbf21
MD
2226 free(relay_connection);
2227}
2228
2229static
2230void relay_del_connection(struct lttng_ht *relay_connections_ht,
d3e2ba59
JD
2231 struct lttng_ht_iter *iter, struct relay_command *relay_connection,
2232 struct lttng_ht *sessions_ht)
9d1bbf21
MD
2233{
2234 int ret;
2235
2236 ret = lttng_ht_del(relay_connections_ht, iter);
2237 assert(!ret);
c07d8a78 2238
9d1bbf21 2239 if (relay_connection->type == RELAY_CONTROL) {
d3e2ba59 2240 relay_delete_session(relay_connection, sessions_ht);
c07d8a78 2241 lttng_ht_destroy(relay_connection->ctf_traces_ht);
9d1bbf21 2242 }
5b6d8097 2243
c07d8a78 2244 call_rcu(&relay_connection->rcu_node, deferred_free_connection);
b8aa1682
JD
2245}
2246
2247/*
2248 * This thread does the actual work
2249 */
2250static
2251void *relay_thread_worker(void *data)
2252{
beaad64c
DG
2253 int ret, err = -1, last_seen_data_fd = -1;
2254 uint32_t nb_fd;
b8aa1682
JD
2255 struct relay_command *relay_connection;
2256 struct lttng_poll_event events;
2257 struct lttng_ht *relay_connections_ht;
2258 struct lttng_ht_node_ulong *node;
2259 struct lttng_ht_iter iter;
b8aa1682 2260 struct lttcomm_relayd_hdr recv_hdr;
d3e2ba59
JD
2261 struct relay_local_data *relay_ctx = (struct relay_local_data *) data;
2262 struct lttng_ht *sessions_ht = relay_ctx->sessions_ht;
b8aa1682
JD
2263
2264 DBG("[thread] Relay worker started");
2265
9d1bbf21
MD
2266 rcu_register_thread();
2267
55706a7d
MD
2268 health_register(health_relayd, HEALTH_RELAYD_TYPE_WORKER);
2269
f385ae0a
MD
2270 health_code_update();
2271
b8aa1682
JD
2272 /* table of connections indexed on socket */
2273 relay_connections_ht = lttng_ht_new(0, LTTNG_HT_TYPE_ULONG);
095a4ae5
MD
2274 if (!relay_connections_ht) {
2275 goto relay_connections_ht_error;
2276 }
b8aa1682 2277
1c20f0e2
JD
2278 /* Tables of received indexes indexed by index handle and net_seq_num. */
2279 indexes_ht = lttng_ht_new(0, LTTNG_HT_TYPE_TWO_U64);
2280 if (!indexes_ht) {
2281 goto indexes_ht_error;
2282 }
2283
b8aa1682
JD
2284 ret = create_thread_poll_set(&events, 2);
2285 if (ret < 0) {
2286 goto error_poll_create;
2287 }
2288
2289 ret = lttng_poll_add(&events, relay_cmd_pipe[0], LPOLLIN | LPOLLRDHUP);
2290 if (ret < 0) {
2291 goto error;
2292 }
2293
beaad64c 2294restart:
b8aa1682 2295 while (1) {
beaad64c
DG
2296 int idx = -1, i, seen_control = 0, last_notdel_data_fd = -1;
2297
f385ae0a
MD
2298 health_code_update();
2299
b8aa1682 2300 /* Infinite blocking call, waiting for transmission */
87c1611d 2301 DBG3("Relayd worker thread polling...");
f385ae0a 2302 health_poll_entry();
b8aa1682 2303 ret = lttng_poll_wait(&events, -1);
f385ae0a 2304 health_poll_exit();
b8aa1682
JD
2305 if (ret < 0) {
2306 /*
2307 * Restart interrupted system call.
2308 */
2309 if (errno == EINTR) {
2310 goto restart;
2311 }
2312 goto error;
2313 }
2314
0d9c5d77
DG
2315 nb_fd = ret;
2316
beaad64c
DG
2317 /*
2318 * Process control. The control connection is prioritised so we don't
2319 * starve it with high throughout put tracing data on the data
2320 * connection.
2321 */
b8aa1682
JD
2322 for (i = 0; i < nb_fd; i++) {
2323 /* Fetch once the poll data */
beaad64c
DG
2324 uint32_t revents = LTTNG_POLL_GETEV(&events, i);
2325 int pollfd = LTTNG_POLL_GETFD(&events, i);
b8aa1682 2326
f385ae0a
MD
2327 health_code_update();
2328
b8aa1682
JD
2329 /* Thread quit pipe has been closed. Killing thread. */
2330 ret = check_thread_quit_pipe(pollfd, revents);
2331 if (ret) {
095a4ae5
MD
2332 err = 0;
2333 goto exit;
b8aa1682
JD
2334 }
2335
2336 /* Inspect the relay cmd pipe for new connection */
2337 if (pollfd == relay_cmd_pipe[0]) {
2338 if (revents & (LPOLLERR | LPOLLHUP | LPOLLRDHUP)) {
2339 ERR("Relay pipe error");
2340 goto error;
2341 } else if (revents & LPOLLIN) {
2342 DBG("Relay command received");
2343 ret = relay_add_connection(relay_cmd_pipe[0],
2344 &events, relay_connections_ht);
2345 if (ret < 0) {
2346 goto error;
2347 }
2348 }
beaad64c 2349 } else if (revents) {
9d1bbf21 2350 rcu_read_lock();
b8aa1682
JD
2351 lttng_ht_lookup(relay_connections_ht,
2352 (void *)((unsigned long) pollfd),
2353 &iter);
2354 node = lttng_ht_iter_get_node_ulong(&iter);
2355 if (node == NULL) {
2356 DBG2("Relay sock %d not found", pollfd);
9d1bbf21 2357 rcu_read_unlock();
b8aa1682
JD
2358 goto error;
2359 }
2360 relay_connection = caa_container_of(node,
2361 struct relay_command, sock_n);
2362
2363 if (revents & (LPOLLERR)) {
2364 ERR("POLL ERROR");
9d1bbf21
MD
2365 relay_cleanup_poll_connection(&events, pollfd);
2366 relay_del_connection(relay_connections_ht,
d3e2ba59 2367 &iter, relay_connection, sessions_ht);
beaad64c
DG
2368 if (last_seen_data_fd == pollfd) {
2369 last_seen_data_fd = last_notdel_data_fd;
2370 }
b8aa1682
JD
2371 } else if (revents & (LPOLLHUP | LPOLLRDHUP)) {
2372 DBG("Socket %d hung up", pollfd);
9d1bbf21
MD
2373 relay_cleanup_poll_connection(&events, pollfd);
2374 relay_del_connection(relay_connections_ht,
d3e2ba59 2375 &iter, relay_connection, sessions_ht);
beaad64c
DG
2376 if (last_seen_data_fd == pollfd) {
2377 last_seen_data_fd = last_notdel_data_fd;
2378 }
b8aa1682
JD
2379 } else if (revents & LPOLLIN) {
2380 /* control socket */
2381 if (relay_connection->type == RELAY_CONTROL) {
2382 ret = relay_connection->sock->ops->recvmsg(
2383 relay_connection->sock, &recv_hdr,
7c5aef62 2384 sizeof(struct lttcomm_relayd_hdr), 0);
b8aa1682
JD
2385 /* connection closed */
2386 if (ret <= 0) {
9d1bbf21
MD
2387 relay_cleanup_poll_connection(&events, pollfd);
2388 relay_del_connection(relay_connections_ht,
d3e2ba59 2389 &iter, relay_connection, sessions_ht);
b8aa1682
JD
2390 DBG("Control connection closed with %d", pollfd);
2391 } else {
2392 if (relay_connection->session) {
77c7c900 2393 DBG2("Relay worker receiving data for session : %" PRIu64,
b8aa1682
JD
2394 relay_connection->session->id);
2395 }
2396 ret = relay_process_control(&recv_hdr,
d3e2ba59 2397 relay_connection, relay_ctx);
b8aa1682 2398 if (ret < 0) {
beaad64c 2399 /* Clear the session on error. */
9d1bbf21
MD
2400 relay_cleanup_poll_connection(&events, pollfd);
2401 relay_del_connection(relay_connections_ht,
d3e2ba59 2402 &iter, relay_connection, sessions_ht);
b8aa1682
JD
2403 DBG("Connection closed with %d", pollfd);
2404 }
beaad64c 2405 seen_control = 1;
b8aa1682 2406 }
beaad64c
DG
2407 } else {
2408 /*
2409 * Flag the last seen data fd not deleted. It will be
2410 * used as the last seen fd if any fd gets deleted in
2411 * this first loop.
2412 */
2413 last_notdel_data_fd = pollfd;
2414 }
2415 }
2416 rcu_read_unlock();
2417 }
2418 }
2419
2420 /*
2421 * The last loop handled a control request, go back to poll to make
2422 * sure we prioritise the control socket.
2423 */
2424 if (seen_control) {
2425 continue;
2426 }
2427
2428 if (last_seen_data_fd >= 0) {
2429 for (i = 0; i < nb_fd; i++) {
2430 int pollfd = LTTNG_POLL_GETFD(&events, i);
f385ae0a
MD
2431
2432 health_code_update();
2433
beaad64c
DG
2434 if (last_seen_data_fd == pollfd) {
2435 idx = i;
2436 break;
2437 }
2438 }
2439 }
2440
2441 /* Process data connection. */
2442 for (i = idx + 1; i < nb_fd; i++) {
2443 /* Fetch the poll data. */
2444 uint32_t revents = LTTNG_POLL_GETEV(&events, i);
2445 int pollfd = LTTNG_POLL_GETFD(&events, i);
2446
f385ae0a
MD
2447 health_code_update();
2448
beaad64c
DG
2449 /* Skip the command pipe. It's handled in the first loop. */
2450 if (pollfd == relay_cmd_pipe[0]) {
2451 continue;
2452 }
2453
2454 if (revents) {
2455 rcu_read_lock();
2456 lttng_ht_lookup(relay_connections_ht,
2457 (void *)((unsigned long) pollfd),
2458 &iter);
2459 node = lttng_ht_iter_get_node_ulong(&iter);
2460 if (node == NULL) {
2461 /* Skip it. Might be removed before. */
2462 rcu_read_unlock();
2463 continue;
2464 }
2465 relay_connection = caa_container_of(node,
2466 struct relay_command, sock_n);
2467
2468 if (revents & LPOLLIN) {
2469 if (relay_connection->type != RELAY_DATA) {
2470 continue;
2471 }
2472
0a6518b0 2473 ret = relay_process_data(relay_connection);
beaad64c
DG
2474 /* connection closed */
2475 if (ret < 0) {
2476 relay_cleanup_poll_connection(&events, pollfd);
2477 relay_del_connection(relay_connections_ht,
d3e2ba59 2478 &iter, relay_connection, sessions_ht);
beaad64c
DG
2479 DBG("Data connection closed with %d", pollfd);
2480 /*
2481 * Every goto restart call sets the last seen fd where
2482 * here we don't really care since we gracefully
2483 * continue the loop after the connection is deleted.
2484 */
2485 } else {
2486 /* Keep last seen port. */
2487 last_seen_data_fd = pollfd;
2488 rcu_read_unlock();
2489 goto restart;
b8aa1682
JD
2490 }
2491 }
9d1bbf21 2492 rcu_read_unlock();
b8aa1682
JD
2493 }
2494 }
beaad64c 2495 last_seen_data_fd = -1;
b8aa1682
JD
2496 }
2497
f385ae0a
MD
2498 /* Normal exit, no error */
2499 ret = 0;
2500
095a4ae5 2501exit:
b8aa1682
JD
2502error:
2503 lttng_poll_clean(&events);
2504
2505 /* empty the hash table and free the memory */
9d1bbf21 2506 rcu_read_lock();
b8aa1682 2507 cds_lfht_for_each_entry(relay_connections_ht->ht, &iter.iter, node, node) {
f385ae0a
MD
2508 health_code_update();
2509
b8aa1682
JD
2510 node = lttng_ht_iter_get_node_ulong(&iter);
2511 if (node) {
2512 relay_connection = caa_container_of(node,
2513 struct relay_command, sock_n);
9d1bbf21 2514 relay_del_connection(relay_connections_ht,
d3e2ba59 2515 &iter, relay_connection, sessions_ht);
b8aa1682 2516 }
b8aa1682 2517 }
94d49140 2518 rcu_read_unlock();
7d2f7452
DG
2519error_poll_create:
2520 lttng_ht_destroy(indexes_ht);
1c20f0e2 2521indexes_ht_error:
b8aa1682 2522 lttng_ht_destroy(relay_connections_ht);
095a4ae5 2523relay_connections_ht_error:
6620da75
DG
2524 /* Close relay cmd pipes */
2525 utils_close_pipe(relay_cmd_pipe);
095a4ae5
MD
2526 if (err) {
2527 DBG("Thread exited with error");
2528 }
b8aa1682 2529 DBG("Worker thread cleanup complete");
095a4ae5 2530 free(data_buffer);
f385ae0a
MD
2531 if (err) {
2532 health_error();
2533 ERR("Health error occurred in %s", __func__);
2534 }
2535 health_unregister(health_relayd);
9d1bbf21 2536 rcu_unregister_thread();
f385ae0a 2537 stop_threads();
b8aa1682
JD
2538 return NULL;
2539}
2540
2541/*
2542 * Create the relay command pipe to wake thread_manage_apps.
2543 * Closed in cleanup().
2544 */
2545static int create_relay_cmd_pipe(void)
2546{
a02de639 2547 int ret;
b8aa1682 2548
a02de639 2549 ret = utils_create_pipe_cloexec(relay_cmd_pipe);
b8aa1682 2550
b8aa1682
JD
2551 return ret;
2552}
2553
2554/*
2555 * main
2556 */
2557int main(int argc, char **argv)
2558{
2559 int ret = 0;
2560 void *status;
d3e2ba59 2561 struct relay_local_data *relay_ctx;
b8aa1682
JD
2562
2563 /* Create thread quit pipe */
2564 if ((ret = init_thread_quit_pipe()) < 0) {
2565 goto error;
2566 }
2567
2568 /* Parse arguments */
2569 progname = argv[0];
c617c0c6 2570 if ((ret = parse_args(argc, argv)) < 0) {
a02de639 2571 goto exit;
b8aa1682
JD
2572 }
2573
2574 if ((ret = set_signal_handler()) < 0) {
2575 goto exit;
2576 }
2577
4d513a50
DG
2578 /* Try to create directory if -o, --output is specified. */
2579 if (opt_output_path) {
994fa64f
DG
2580 if (*opt_output_path != '/') {
2581 ERR("Please specify an absolute path for -o, --output PATH");
2582 goto exit;
2583 }
2584
4d513a50
DG
2585 ret = utils_mkdir_recursive(opt_output_path, S_IRWXU | S_IRWXG);
2586 if (ret < 0) {
2587 ERR("Unable to create %s", opt_output_path);
2588 goto exit;
2589 }
2590 }
2591
b8aa1682
JD
2592 /* Daemonize */
2593 if (opt_daemon) {
2594 ret = daemon(0, 0);
2595 if (ret < 0) {
2596 PERROR("daemon");
a02de639 2597 goto exit;
b8aa1682
JD
2598 }
2599 }
2600
1c20f0e2
JD
2601 /* We need those values for the file/dir creation. */
2602 relayd_uid = getuid();
2603 relayd_gid = getgid();
b8aa1682 2604
1c20f0e2
JD
2605 /* Check if daemon is UID = 0 */
2606 if (relayd_uid == 0) {
a6a062a4
AM
2607 if (control_uri->port < 1024 || data_uri->port < 1024 ||
2608 live_uri->port < 1024) {
b8aa1682
JD
2609 ERR("Need to be root to use ports < 1024");
2610 ret = -1;
a02de639 2611 goto exit;
b8aa1682
JD
2612 }
2613 }
2614
2615 /* Setup the thread apps communication pipe. */
2616 if ((ret = create_relay_cmd_pipe()) < 0) {
2617 goto exit;
2618 }
2619
2620 /* Init relay command queue. */
2621 cds_wfq_init(&relay_cmd_queue.queue);
2622
2623 /* Set up max poll set size */
2624 lttng_poll_set_max_size();
2625
554831e7
MD
2626 /* Initialize communication library */
2627 lttcomm_init();
2628
d3e2ba59
JD
2629 relay_ctx = zmalloc(sizeof(struct relay_local_data));
2630 if (!relay_ctx) {
2631 PERROR("relay_ctx");
2632 goto exit;
2633 }
2634
2635 /* tables of sessions indexed by session ID */
2636 relay_ctx->sessions_ht = lttng_ht_new(0, LTTNG_HT_TYPE_ULONG);
2637 if (!relay_ctx->sessions_ht) {
2638 goto exit_relay_ctx_sessions;
2639 }
2640
2641 /* tables of streams indexed by stream ID */
2642 relay_streams_ht = lttng_ht_new(0, LTTNG_HT_TYPE_ULONG);
2643 if (!relay_streams_ht) {
2644 goto exit_relay_ctx_streams;
2645 }
2646
2647 /* tables of streams indexed by stream ID */
92c6ca54
DG
2648 viewer_streams_ht = lttng_ht_new(0, LTTNG_HT_TYPE_U64);
2649 if (!viewer_streams_ht) {
d3e2ba59
JD
2650 goto exit_relay_ctx_viewer_streams;
2651 }
2652
55706a7d
MD
2653 /* Initialize thread health monitoring */
2654 health_relayd = health_app_create(NR_HEALTH_RELAYD_TYPES);
2655 if (!health_relayd) {
2656 PERROR("health_app_create error");
2657 goto exit_health_app_create;
2658 }
2659
65931c8b
MD
2660 ret = utils_create_pipe(health_quit_pipe);
2661 if (ret < 0) {
2662 goto error_health_pipe;
2663 }
2664
2665 /* Create thread to manage the client socket */
2666 ret = pthread_create(&health_thread, NULL,
2667 thread_manage_health, (void *) NULL);
2668 if (ret != 0) {
2669 PERROR("pthread_create health");
2670 goto health_error;
2671 }
2672
b8aa1682
JD
2673 /* Setup the dispatcher thread */
2674 ret = pthread_create(&dispatcher_thread, NULL,
2675 relay_thread_dispatcher, (void *) NULL);
2676 if (ret != 0) {
2677 PERROR("pthread_create dispatcher");
2678 goto exit_dispatcher;
2679 }
2680
2681 /* Setup the worker thread */
2682 ret = pthread_create(&worker_thread, NULL,
d3e2ba59 2683 relay_thread_worker, (void *) relay_ctx);
b8aa1682
JD
2684 if (ret != 0) {
2685 PERROR("pthread_create worker");
2686 goto exit_worker;
2687 }
2688
2689 /* Setup the listener thread */
2690 ret = pthread_create(&listener_thread, NULL,
2691 relay_thread_listener, (void *) NULL);
2692 if (ret != 0) {
2693 PERROR("pthread_create listener");
2694 goto exit_listener;
2695 }
2696
42415026 2697 ret = live_start_threads(live_uri, relay_ctx, thread_quit_pipe);
d3e2ba59
JD
2698 if (ret != 0) {
2699 ERR("Starting live viewer threads");
50138f51 2700 goto exit_live;
d3e2ba59
JD
2701 }
2702
50138f51 2703exit_live:
b8aa1682
JD
2704 ret = pthread_join(listener_thread, &status);
2705 if (ret != 0) {
2706 PERROR("pthread_join");
2707 goto error; /* join error, exit without cleanup */
2708 }
2709
50138f51 2710exit_listener:
b8aa1682
JD
2711 ret = pthread_join(worker_thread, &status);
2712 if (ret != 0) {
2713 PERROR("pthread_join");
2714 goto error; /* join error, exit without cleanup */
2715 }
2716
50138f51 2717exit_worker:
b8aa1682
JD
2718 ret = pthread_join(dispatcher_thread, &status);
2719 if (ret != 0) {
2720 PERROR("pthread_join");
2721 goto error; /* join error, exit without cleanup */
2722 }
42415026 2723
50138f51 2724exit_dispatcher:
65931c8b
MD
2725 ret = pthread_join(health_thread, &status);
2726 if (ret != 0) {
2727 PERROR("pthread_join health thread");
2728 goto error; /* join error, exit without cleanup */
2729 }
2730
bd11e201
MD
2731 /*
2732 * Stop live threads only after joining other threads.
2733 */
2734 live_stop_threads();
2735
65931c8b
MD
2736health_error:
2737 utils_close_pipe(health_quit_pipe);
2738
2739error_health_pipe:
55706a7d
MD
2740 health_app_destroy(health_relayd);
2741
2742exit_health_app_create:
92c6ca54 2743 lttng_ht_destroy(viewer_streams_ht);
d3e2ba59
JD
2744
2745exit_relay_ctx_viewer_streams:
2746 lttng_ht_destroy(relay_streams_ht);
2747
2748exit_relay_ctx_streams:
2749 lttng_ht_destroy(relay_ctx->sessions_ht);
2750
2751exit_relay_ctx_sessions:
2752 free(relay_ctx);
b8aa1682
JD
2753
2754exit:
2755 cleanup();
2756 if (!ret) {
2757 exit(EXIT_SUCCESS);
2758 }
a02de639 2759
b8aa1682
JD
2760error:
2761 exit(EXIT_FAILURE);
2762}
This page took 0.172386 seconds and 4 git commands to generate.