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