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