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