Build fix: missing initializer for member 'rotation_positions'
[lttng-tools.git] / src / bin / lttng-relayd / main.cpp
CommitLineData
b8aa1682 1/*
ab5be9fa
MJ
2 * Copyright (C) 2012 Julien Desfossez <jdesfossez@efficios.com>
3 * Copyright (C) 2012 David Goulet <dgoulet@efficios.com>
4 * Copyright (C) 2013 Jérémie Galarneau <jeremie.galarneau@efficios.com>
5 * Copyright (C) 2015 Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
b8aa1682 6 *
ab5be9fa 7 * SPDX-License-Identifier: GPL-2.0-only
b8aa1682 8 *
b8aa1682
JD
9 */
10
6c1c0768 11#define _LGPL_SOURCE
b8aa1682
JD
12#include <getopt.h>
13#include <grp.h>
14#include <limits.h>
15#include <pthread.h>
16#include <signal.h>
17#include <stdio.h>
18#include <stdlib.h>
19#include <string.h>
20#include <sys/mman.h>
21#include <sys/mount.h>
22#include <sys/resource.h>
23#include <sys/socket.h>
24#include <sys/stat.h>
25#include <sys/types.h>
26#include <sys/wait.h>
896010e3 27#include <sys/resource.h>
173af62f 28#include <inttypes.h>
b8aa1682
JD
29#include <urcu/futex.h>
30#include <urcu/uatomic.h>
70626904 31#include <urcu/rculist.h>
b8aa1682
JD
32#include <unistd.h>
33#include <fcntl.h>
f8be1183 34#include <strings.h>
896010e3 35#include <ctype.h>
ac497a37 36#include <algorithm>
b8aa1682
JD
37
38#include <lttng/lttng.h>
c9e313bc
SM
39#include <common/common.hpp>
40#include <common/compat/poll.hpp>
41#include <common/compat/socket.hpp>
42#include <common/compat/endian.hpp>
43#include <common/compat/getenv.hpp>
44#include <common/defaults.hpp>
45#include <common/daemonize.hpp>
46#include <common/futex.hpp>
47#include <common/sessiond-comm/sessiond-comm.hpp>
48#include <common/sessiond-comm/inet.hpp>
49#include <common/sessiond-comm/relayd.hpp>
50#include <common/uri.hpp>
51#include <common/utils.hpp>
52#include <common/path.hpp>
53#include <common/align.hpp>
54#include <common/ini-config/ini-config.hpp>
55#include <common/dynamic-buffer.hpp>
56#include <common/buffer-view.hpp>
57#include <common/string-utils/format.hpp>
58#include <common/fd-tracker/fd-tracker.hpp>
59#include <common/fd-tracker/utils.hpp>
b8aa1682 60
c9e313bc
SM
61#include "backward-compatibility-group-by.hpp"
62#include "cmd.hpp"
63#include "connection.hpp"
64#include "ctf-trace.hpp"
65#include "health-relayd.hpp"
66#include "index.hpp"
67#include "live.hpp"
68#include "lttng-relayd.hpp"
69#include "session.hpp"
70#include "sessiond-trace-chunks.hpp"
71#include "stream.hpp"
72#include "tcp_keep_alive.hpp"
73#include "testpoint.hpp"
74#include "tracefile-array.hpp"
75#include "utils.hpp"
76#include "version.hpp"
77#include "viewer-stream.hpp"
b8aa1682 78
4fc83d94
PP
79static const char *help_msg =
80#ifdef LTTNG_EMBED_HELP
81#include <lttng-relayd.8.h>
82#else
83NULL
84#endif
85;
86
5569b118
JG
87enum relay_connection_status {
88 RELAY_CONNECTION_STATUS_OK,
a9577b76 89 /* An error occurred while processing an event on the connection. */
5569b118
JG
90 RELAY_CONNECTION_STATUS_ERROR,
91 /* Connection closed/shutdown cleanly. */
92 RELAY_CONNECTION_STATUS_CLOSED,
93};
94
b8aa1682 95/* command line options */
ce9ee1fb 96char *opt_output_path, *opt_working_directory;
35ab25e5 97static int opt_daemon, opt_background, opt_print_version, opt_allow_clear = 1;
a8b66566 98enum relay_group_output_by opt_group_output_by = RELAYD_GROUP_OUTPUT_BY_UNKNOWN;
3fd27398 99
e56e5792
MJ
100/* Argument variables */
101int lttng_opt_quiet; /* not static in error.h */
102int lttng_opt_verbose; /* not static in error.h */
103int lttng_opt_mi; /* not static in error.h */
104
3fd27398
MD
105/*
106 * We need to wait for listener and live listener threads, as well as
107 * health check thread, before being ready to signal readiness.
108 */
109#define NR_LTTNG_RELAY_READY 3
110static int lttng_relay_ready = NR_LTTNG_RELAY_READY;
0848dba7
MD
111
112/* Size of receive buffer. */
113#define RECV_DATA_BUFFER_SIZE 65536
114
3fd27398
MD
115static int recv_child_signal; /* Set to 1 when a SIGUSR1 signal is received. */
116static pid_t child_ppid; /* Internal parent PID use with daemonize. */
117
095a4ae5
MD
118static struct lttng_uri *control_uri;
119static struct lttng_uri *data_uri;
d3e2ba59 120static struct lttng_uri *live_uri;
b8aa1682
JD
121
122const char *progname;
b8aa1682 123
65931c8b 124const char *tracing_group_name = DEFAULT_TRACING_GROUP;
cd60b05a
JG
125static int tracing_group_name_override;
126
127const char * const config_section_name = "relayd";
65931c8b 128
b8aa1682
JD
129/*
130 * Quit pipe for all threads. This permits a single cancellation point
131 * for all threads when receiving an event on the pipe.
132 */
0b242f62 133int thread_quit_pipe[2] = { -1, -1 };
b8aa1682
JD
134
135/*
136 * This pipe is used to inform the worker thread that a command is queued and
137 * ready to be processed.
138 */
58eb9381 139static int relay_conn_pipe[2] = { -1, -1 };
b8aa1682 140
26c9d55e 141/* Shared between threads */
b8aa1682
JD
142static int dispatch_thread_exit;
143
144static pthread_t listener_thread;
145static pthread_t dispatcher_thread;
146static pthread_t worker_thread;
65931c8b 147static pthread_t health_thread;
b8aa1682 148
7591bab1
MD
149/*
150 * last_relay_stream_id_lock protects last_relay_stream_id increment
151 * atomicity on 32-bit architectures.
152 */
153static pthread_mutex_t last_relay_stream_id_lock = PTHREAD_MUTEX_INITIALIZER;
095a4ae5 154static uint64_t last_relay_stream_id;
b8aa1682
JD
155
156/*
157 * Relay command queue.
158 *
159 * The relay_thread_listener and relay_thread_dispatcher communicate with this
160 * queue.
161 */
58eb9381 162static struct relay_conn_queue relay_conn_queue;
b8aa1682 163
896010e3 164/* Cap of file desriptors to be in simultaneous use by the relay daemon. */
5c0551f9 165static unsigned int lttng_opt_fd_pool_size = -1;
896010e3 166
d3e2ba59
JD
167/* Global relay stream hash table. */
168struct lttng_ht *relay_streams_ht;
169
92c6ca54
DG
170/* Global relay viewer stream hash table. */
171struct lttng_ht *viewer_streams_ht;
172
7591bab1
MD
173/* Global relay sessions hash table. */
174struct lttng_ht *sessions_ht;
0a6518b0 175
55706a7d 176/* Relayd health monitoring */
eea7556c 177struct health_app *health_relayd;
55706a7d 178
23c8ff50
JG
179struct sessiond_trace_chunk_registry *sessiond_trace_chunk_registry;
180
00e3b7f1
JG
181/* Global fd tracker. */
182struct fd_tracker *the_fd_tracker;
183
cd60b05a
JG
184static struct option long_options[] = {
185 { "control-port", 1, 0, 'C', },
186 { "data-port", 1, 0, 'D', },
8d5c808e 187 { "live-port", 1, 0, 'L', },
cd60b05a 188 { "daemonize", 0, 0, 'd', },
b5218ffb 189 { "background", 0, 0, 'b', },
cd60b05a 190 { "group", 1, 0, 'g', },
5c0551f9 191 { "fd-pool-size", 1, 0, '\0', },
cd60b05a
JG
192 { "help", 0, 0, 'h', },
193 { "output", 1, 0, 'o', },
194 { "verbose", 0, 0, 'v', },
195 { "config", 1, 0, 'f' },
3a904098 196 { "version", 0, 0, 'V' },
ce9ee1fb 197 { "working-directory", 1, 0, 'w', },
a8b66566
JR
198 { "group-output-by-session", 0, 0, 's', },
199 { "group-output-by-host", 0, 0, 'p', },
35ab25e5 200 { "disallow-clear", 0, 0, 'x' },
cd60b05a
JG
201 { NULL, 0, 0, 0, },
202};
203
3a904098 204static const char *config_ignore_options[] = { "help", "config", "version" };
cd60b05a 205
a3bc3918
JR
206static void print_version(void) {
207 fprintf(stdout, "%s\n", VERSION);
208}
209
210static void relayd_config_log(void)
211{
212 DBG("LTTng-relayd " VERSION " - " VERSION_NAME "%s%s",
213 GIT_VERSION[0] == '\0' ? "" : " - " GIT_VERSION,
214 EXTRA_VERSION_NAME[0] == '\0' ? "" : " - " EXTRA_VERSION_NAME);
215 if (EXTRA_VERSION_DESCRIPTION[0] != '\0') {
216 DBG("LTTng-relayd extra version description:\n\t" EXTRA_VERSION_DESCRIPTION "\n");
217 }
7f5ed73a
JR
218 if (EXTRA_VERSION_PATCHES[0] != '\0') {
219 DBG("LTTng-relayd extra patches:\n\t" EXTRA_VERSION_PATCHES "\n");
220 }
a3bc3918
JR
221}
222
cd60b05a
JG
223/*
224 * Take an option from the getopt output and set it in the right variable to be
225 * used later.
226 *
227 * Return 0 on success else a negative value.
228 */
7591bab1 229static int set_option(int opt, const char *arg, const char *optname)
b8aa1682 230{
cd60b05a
JG
231 int ret;
232
233 switch (opt) {
234 case 0:
5c0551f9 235 if (!strcmp(optname, "fd-pool-size")) {
896010e3
JG
236 unsigned long v;
237
238 errno = 0;
239 v = strtoul(arg, NULL, 0);
60b7e1f8 240 if (errno != 0 || !isdigit((unsigned char) arg[0])) {
5c0551f9 241 ERR("Wrong value in --fd-pool-size parameter: %s", arg);
896010e3
JG
242 ret = -1;
243 goto end;
244 }
896010e3 245 if (v >= UINT_MAX) {
5c0551f9 246 ERR("File descriptor cap overflow in --fd-pool-size parameter: %s", arg);
896010e3
JG
247 ret = -1;
248 goto end;
249 }
5c0551f9 250 lttng_opt_fd_pool_size = (unsigned int) v;
896010e3
JG
251 } else {
252 fprintf(stderr, "unknown option %s", optname);
253 if (arg) {
254 fprintf(stderr, " with arg %s\n", arg);
255 }
cd60b05a
JG
256 }
257 break;
258 case 'C':
e8fa9fb0
MD
259 if (lttng_is_setuid_setgid()) {
260 WARN("Getting '%s' argument from setuid/setgid binary refused for security reasons.",
261 "-C, --control-port");
262 } else {
263 ret = uri_parse(arg, &control_uri);
264 if (ret < 0) {
265 ERR("Invalid control URI specified");
266 goto end;
267 }
268 if (control_uri->port == 0) {
269 control_uri->port = DEFAULT_NETWORK_CONTROL_PORT;
270 }
cd60b05a
JG
271 }
272 break;
273 case 'D':
e8fa9fb0
MD
274 if (lttng_is_setuid_setgid()) {
275 WARN("Getting '%s' argument from setuid/setgid binary refused for security reasons.",
276 "-D, -data-port");
277 } else {
278 ret = uri_parse(arg, &data_uri);
279 if (ret < 0) {
280 ERR("Invalid data URI specified");
281 goto end;
282 }
283 if (data_uri->port == 0) {
284 data_uri->port = DEFAULT_NETWORK_DATA_PORT;
285 }
cd60b05a
JG
286 }
287 break;
8d5c808e 288 case 'L':
e8fa9fb0
MD
289 if (lttng_is_setuid_setgid()) {
290 WARN("Getting '%s' argument from setuid/setgid binary refused for security reasons.",
291 "-L, -live-port");
292 } else {
293 ret = uri_parse(arg, &live_uri);
294 if (ret < 0) {
295 ERR("Invalid live URI specified");
296 goto end;
297 }
298 if (live_uri->port == 0) {
299 live_uri->port = DEFAULT_NETWORK_VIEWER_PORT;
300 }
8d5c808e
AM
301 }
302 break;
cd60b05a
JG
303 case 'd':
304 opt_daemon = 1;
305 break;
b5218ffb
MD
306 case 'b':
307 opt_background = 1;
308 break;
cd60b05a 309 case 'g':
e8fa9fb0
MD
310 if (lttng_is_setuid_setgid()) {
311 WARN("Getting '%s' argument from setuid/setgid binary refused for security reasons.",
312 "-g, --group");
313 } else {
314 tracing_group_name = strdup(arg);
315 if (tracing_group_name == NULL) {
316 ret = -errno;
317 PERROR("strdup");
318 goto end;
319 }
320 tracing_group_name_override = 1;
330a40bb 321 }
cd60b05a
JG
322 break;
323 case 'h':
4fc83d94 324 ret = utils_show_help(8, "lttng-relayd", help_msg);
655b5cc1 325 if (ret) {
4fc83d94 326 ERR("Cannot show --help for `lttng-relayd`");
655b5cc1
PP
327 perror("exec");
328 }
cd60b05a 329 exit(EXIT_FAILURE);
3a904098 330 case 'V':
a3bc3918
JR
331 opt_print_version = 1;
332 break;
cd60b05a 333 case 'o':
e8fa9fb0
MD
334 if (lttng_is_setuid_setgid()) {
335 WARN("Getting '%s' argument from setuid/setgid binary refused for security reasons.",
336 "-o, --output");
337 } else {
338 ret = asprintf(&opt_output_path, "%s", arg);
339 if (ret < 0) {
340 ret = -errno;
341 PERROR("asprintf opt_output_path");
342 goto end;
343 }
cd60b05a
JG
344 }
345 break;
ce9ee1fb
JR
346 case 'w':
347 if (lttng_is_setuid_setgid()) {
348 WARN("Getting '%s' argument from setuid/setgid binary refused for security reasons.",
349 "-w, --working-directory");
350 } else {
351 ret = asprintf(&opt_working_directory, "%s", arg);
352 if (ret < 0) {
353 ret = -errno;
354 PERROR("asprintf opt_working_directory");
355 goto end;
356 }
357 }
358 break;
359
cd60b05a
JG
360 case 'v':
361 /* Verbose level can increase using multiple -v */
362 if (arg) {
363 lttng_opt_verbose = config_parse_value(arg);
364 } else {
849e5b7b
DG
365 /* Only 3 level of verbosity (-vvv). */
366 if (lttng_opt_verbose < 3) {
367 lttng_opt_verbose += 1;
368 }
cd60b05a
JG
369 }
370 break;
a8b66566
JR
371 case 's':
372 if (opt_group_output_by != RELAYD_GROUP_OUTPUT_BY_UNKNOWN) {
373 ERR("Cannot set --group-output-by-session, another --group-output-by argument is present");
374 exit(EXIT_FAILURE);
375 }
376 opt_group_output_by = RELAYD_GROUP_OUTPUT_BY_SESSION;
377 break;
378 case 'p':
379 if (opt_group_output_by != RELAYD_GROUP_OUTPUT_BY_UNKNOWN) {
380 ERR("Cannot set --group-output-by-host, another --group-output-by argument is present");
381 exit(EXIT_FAILURE);
382 }
383 opt_group_output_by = RELAYD_GROUP_OUTPUT_BY_HOST;
384 break;
35ab25e5
MD
385 case 'x':
386 /* Disallow clear */
387 opt_allow_clear = 0;
388 break;
cd60b05a
JG
389 default:
390 /* Unknown option or other error.
391 * Error is printed by getopt, just return */
392 ret = -1;
393 goto end;
394 }
395
396 /* All good. */
397 ret = 0;
398
399end:
400 return ret;
401}
402
403/*
404 * config_entry_handler_cb used to handle options read from a config file.
f40ef1d5 405 * See config_entry_handler_cb comment in common/config/session-config.h for the
cd60b05a
JG
406 * return value conventions.
407 */
f46376a1
MJ
408static int config_entry_handler(const struct config_entry *entry,
409 void *unused __attribute__((unused)))
cd60b05a
JG
410{
411 int ret = 0, i;
412
413 if (!entry || !entry->name || !entry->value) {
414 ret = -EINVAL;
415 goto end;
416 }
417
418 /* Check if the option is to be ignored */
419 for (i = 0; i < sizeof(config_ignore_options) / sizeof(char *); i++) {
420 if (!strcmp(entry->name, config_ignore_options[i])) {
421 goto end;
422 }
423 }
424
425 for (i = 0; i < (sizeof(long_options) / sizeof(struct option)) - 1; i++) {
426 /* Ignore if entry name is not fully matched. */
427 if (strcmp(entry->name, long_options[i].name)) {
428 continue;
429 }
430
431 /*
7591bab1
MD
432 * If the option takes no argument on the command line,
433 * we have to check if the value is "true". We support
434 * non-zero numeric values, true, on and yes.
cd60b05a
JG
435 */
436 if (!long_options[i].has_arg) {
437 ret = config_parse_value(entry->value);
438 if (ret <= 0) {
439 if (ret) {
440 WARN("Invalid configuration value \"%s\" for option %s",
441 entry->value, entry->name);
442 }
443 /* False, skip boolean config option. */
444 goto end;
445 }
446 }
447
448 ret = set_option(long_options[i].val, entry->value, entry->name);
449 goto end;
450 }
451
452 WARN("Unrecognized option \"%s\" in daemon configuration file.",
453 entry->name);
454
455end:
456 return ret;
457}
458
2a10de3b
JR
459static int parse_env_options(void)
460{
461 int ret = 0;
462 char *value = NULL;
463
464 value = lttng_secure_getenv(DEFAULT_LTTNG_RELAYD_WORKING_DIRECTORY_ENV);
465 if (value) {
466 opt_working_directory = strdup(value);
467 if (!opt_working_directory) {
468 ERR("Failed to allocate working directory string (\"%s\")",
469 value);
470 ret = -1;
471 }
472 }
473 return ret;
474}
475
5c0551f9
JG
476static int set_fd_pool_size(void)
477{
478 int ret = 0;
479 struct rlimit rlimit;
480
481 ret = getrlimit(RLIMIT_NOFILE, &rlimit);
482 if (ret) {
483 PERROR("Failed to get file descriptor limit");
484 ret = -1;
485 goto end;
486 }
487
488 DBG("File descriptor count limits are %" PRIu64 " (soft) and %" PRIu64 " (hard)",
489 (uint64_t) rlimit.rlim_cur,
490 (uint64_t) rlimit.rlim_max);
491 if (lttng_opt_fd_pool_size == -1) {
492 /* Use default value (soft limit - reserve). */
493 if (rlimit.rlim_cur < DEFAULT_RELAYD_MIN_FD_POOL_SIZE) {
494 ERR("The process' file number limit is too low (%" PRIu64 "). The process' file number limit must be set to at least %i.",
495 (uint64_t) rlimit.rlim_cur, DEFAULT_RELAYD_MIN_FD_POOL_SIZE);
496 ret = -1;
497 goto end;
498 }
499 lttng_opt_fd_pool_size = rlimit.rlim_cur -
500 DEFAULT_RELAYD_FD_POOL_SIZE_RESERVE;
501 goto end;
502 }
503
504 if (lttng_opt_fd_pool_size < DEFAULT_RELAYD_MIN_FD_POOL_SIZE) {
505 ERR("File descriptor pool size must be set to at least %d",
506 DEFAULT_RELAYD_MIN_FD_POOL_SIZE);
507 ret = -1;
508 goto end;
509 }
510
511 if (lttng_opt_fd_pool_size > rlimit.rlim_cur) {
512 ERR("File descriptor pool size argument (%u) exceeds the process' soft limit (%" PRIu64 ").",
513 lttng_opt_fd_pool_size, (uint64_t) rlimit.rlim_cur);
514 ret = -1;
515 goto end;
516 }
517
d49487dc 518 DBG("File descriptor pool size argument (%u) adjusted to %u to accommodates transient fd uses",
5c0551f9
JG
519 lttng_opt_fd_pool_size,
520 lttng_opt_fd_pool_size - DEFAULT_RELAYD_FD_POOL_SIZE_RESERVE);
521 lttng_opt_fd_pool_size -= DEFAULT_RELAYD_FD_POOL_SIZE_RESERVE;
522end:
523 return ret;
524}
525
7591bab1 526static int set_options(int argc, char **argv)
cd60b05a 527{
178a0557 528 int c, ret = 0, option_index = 0, retval = 0;
cd60b05a
JG
529 int orig_optopt = optopt, orig_optind = optind;
530 char *default_address, *optstring;
3a9e5d16 531 char *config_path = NULL;
cd60b05a
JG
532
533 optstring = utils_generate_optstring(long_options,
534 sizeof(long_options) / sizeof(struct option));
535 if (!optstring) {
178a0557 536 retval = -ENOMEM;
cd60b05a
JG
537 goto exit;
538 }
539
540 /* Check for the --config option */
541
542 while ((c = getopt_long(argc, argv, optstring, long_options,
543 &option_index)) != -1) {
544 if (c == '?') {
178a0557 545 retval = -EINVAL;
cd60b05a
JG
546 goto exit;
547 } else if (c != 'f') {
548 continue;
549 }
550
e8fa9fb0
MD
551 if (lttng_is_setuid_setgid()) {
552 WARN("Getting '%s' argument from setuid/setgid binary refused for security reasons.",
553 "-f, --config");
554 } else {
3a9e5d16 555 free(config_path);
e8fa9fb0
MD
556 config_path = utils_expand_path(optarg);
557 if (!config_path) {
558 ERR("Failed to resolve path: %s", optarg);
559 }
cd60b05a
JG
560 }
561 }
562
563 ret = config_get_section_entries(config_path, config_section_name,
564 config_entry_handler, NULL);
565 if (ret) {
566 if (ret > 0) {
567 ERR("Invalid configuration option at line %i", ret);
cd60b05a 568 }
178a0557 569 retval = -1;
cd60b05a
JG
570 goto exit;
571 }
b8aa1682 572
cd60b05a
JG
573 /* Reset getopt's global state */
574 optopt = orig_optopt;
575 optind = orig_optind;
b8aa1682 576 while (1) {
cd60b05a 577 c = getopt_long(argc, argv, optstring, long_options, &option_index);
b8aa1682
JD
578 if (c == -1) {
579 break;
580 }
581
cd60b05a
JG
582 ret = set_option(c, optarg, long_options[option_index].name);
583 if (ret < 0) {
178a0557 584 retval = -1;
b8aa1682
JD
585 goto exit;
586 }
587 }
588
589 /* assign default values */
590 if (control_uri == NULL) {
fa91dc52
MD
591 ret = asprintf(&default_address,
592 "tcp://" DEFAULT_NETWORK_CONTROL_BIND_ADDRESS ":%d",
593 DEFAULT_NETWORK_CONTROL_PORT);
b8aa1682
JD
594 if (ret < 0) {
595 PERROR("asprintf default data address");
178a0557 596 retval = -1;
b8aa1682
JD
597 goto exit;
598 }
599
600 ret = uri_parse(default_address, &control_uri);
601 free(default_address);
602 if (ret < 0) {
603 ERR("Invalid control URI specified");
178a0557 604 retval = -1;
b8aa1682
JD
605 goto exit;
606 }
607 }
608 if (data_uri == NULL) {
fa91dc52
MD
609 ret = asprintf(&default_address,
610 "tcp://" DEFAULT_NETWORK_DATA_BIND_ADDRESS ":%d",
611 DEFAULT_NETWORK_DATA_PORT);
b8aa1682
JD
612 if (ret < 0) {
613 PERROR("asprintf default data address");
178a0557 614 retval = -1;
b8aa1682
JD
615 goto exit;
616 }
617
618 ret = uri_parse(default_address, &data_uri);
619 free(default_address);
620 if (ret < 0) {
621 ERR("Invalid data URI specified");
178a0557 622 retval = -1;
b8aa1682
JD
623 goto exit;
624 }
625 }
d3e2ba59 626 if (live_uri == NULL) {
fa91dc52
MD
627 ret = asprintf(&default_address,
628 "tcp://" DEFAULT_NETWORK_VIEWER_BIND_ADDRESS ":%d",
629 DEFAULT_NETWORK_VIEWER_PORT);
d3e2ba59
JD
630 if (ret < 0) {
631 PERROR("asprintf default viewer control address");
178a0557 632 retval = -1;
d3e2ba59
JD
633 goto exit;
634 }
635
636 ret = uri_parse(default_address, &live_uri);
637 free(default_address);
638 if (ret < 0) {
639 ERR("Invalid viewer control URI specified");
178a0557 640 retval = -1;
d3e2ba59
JD
641 goto exit;
642 }
643 }
5c0551f9
JG
644 ret = set_fd_pool_size();
645 if (ret) {
646 retval = -1;
647 goto exit;
896010e3 648 }
b8aa1682 649
a8b66566
JR
650 if (opt_group_output_by == RELAYD_GROUP_OUTPUT_BY_UNKNOWN) {
651 opt_group_output_by = RELAYD_GROUP_OUTPUT_BY_HOST;
652 }
35ab25e5
MD
653 if (opt_allow_clear) {
654 /* Check if env variable exists. */
655 const char *value = lttng_secure_getenv(DEFAULT_LTTNG_RELAYD_DISALLOW_CLEAR_ENV);
656 if (value) {
657 ret = config_parse_value(value);
658 if (ret < 0) {
659 ERR("Invalid value for %s specified", DEFAULT_LTTNG_RELAYD_DISALLOW_CLEAR_ENV);
660 retval = -1;
661 goto exit;
662 }
663 opt_allow_clear = !ret;
664 }
665 }
a8b66566 666
b8aa1682 667exit:
3a9e5d16 668 free(config_path);
cd60b05a 669 free(optstring);
178a0557 670 return retval;
b8aa1682
JD
671}
672
7591bab1
MD
673static void print_global_objects(void)
674{
7591bab1
MD
675 print_viewer_streams();
676 print_relay_streams();
677 print_sessions();
7591bab1
MD
678}
679
f46376a1
MJ
680static int noop_close(void *data __attribute__((unused)),
681 int *fds __attribute__((unused)))
5c0551f9
JG
682{
683 return 0;
684}
685
686static void untrack_stdio(void)
687{
688 int fds[] = { fileno(stdout), fileno(stderr) };
689
690 /*
691 * noop_close is used since we don't really want to close
692 * the stdio output fds; we merely want to stop tracking them.
693 */
694 (void) fd_tracker_close_unsuspendable_fd(the_fd_tracker,
695 fds, 2, noop_close, NULL);
696}
697
b8aa1682
JD
698/*
699 * Cleanup the daemon
700 */
7591bab1 701static void relayd_cleanup(void)
b8aa1682 702{
7591bab1
MD
703 print_global_objects();
704
b8aa1682
JD
705 DBG("Cleaning up");
706
178a0557
MD
707 if (viewer_streams_ht)
708 lttng_ht_destroy(viewer_streams_ht);
709 if (relay_streams_ht)
710 lttng_ht_destroy(relay_streams_ht);
7591bab1
MD
711 if (sessions_ht)
712 lttng_ht_destroy(sessions_ht);
178a0557 713
095a4ae5 714 free(opt_output_path);
ce9ee1fb 715 free(opt_working_directory);
095a4ae5 716
794e2e5f
JG
717 if (health_relayd) {
718 health_app_destroy(health_relayd);
719 }
a02de639 720 /* Close thread quit pipes */
bcee2b96
JG
721 if (health_quit_pipe[0] != -1) {
722 (void) fd_tracker_util_pipe_close(
723 the_fd_tracker, health_quit_pipe);
724 }
67609994
JG
725 if (thread_quit_pipe[0] != -1) {
726 (void) fd_tracker_util_pipe_close(
727 the_fd_tracker, thread_quit_pipe);
728 }
794e2e5f
JG
729 if (sessiond_trace_chunk_registry) {
730 sessiond_trace_chunk_registry_destroy(
731 sessiond_trace_chunk_registry);
732 }
00e3b7f1 733 if (the_fd_tracker) {
9c256b01
JG
734 untrack_stdio();
735 /*
736 * fd_tracker_destroy() will log the contents of the fd-tracker
737 * if a leak is detected.
738 */
00e3b7f1
JG
739 fd_tracker_destroy(the_fd_tracker);
740 }
794e2e5f 741
710c1f73
DG
742 uri_free(control_uri);
743 uri_free(data_uri);
8d5c808e 744 /* Live URI is freed in the live thread. */
cd60b05a
JG
745
746 if (tracing_group_name_override) {
747 free((void *) tracing_group_name);
748 }
b8aa1682
JD
749}
750
751/*
752 * Write to writable pipe used to notify a thread.
753 */
7591bab1 754static int notify_thread_pipe(int wpipe)
b8aa1682 755{
6cd525e8 756 ssize_t ret;
b8aa1682 757
6cd525e8
MD
758 ret = lttng_write(wpipe, "!", 1);
759 if (ret < 1) {
b8aa1682 760 PERROR("write poll pipe");
b4aacfdc 761 goto end;
b8aa1682 762 }
b4aacfdc
MD
763 ret = 0;
764end:
b8aa1682
JD
765 return ret;
766}
767
7591bab1 768static int notify_health_quit_pipe(int *pipe)
65931c8b 769{
6cd525e8 770 ssize_t ret;
65931c8b 771
6cd525e8
MD
772 ret = lttng_write(pipe[1], "4", 1);
773 if (ret < 1) {
65931c8b 774 PERROR("write relay health quit");
b4aacfdc 775 goto end;
65931c8b 776 }
b4aacfdc
MD
777 ret = 0;
778end:
779 return ret;
65931c8b
MD
780}
781
b8aa1682 782/*
b4aacfdc 783 * Stop all relayd and relayd-live threads.
b8aa1682 784 */
b4aacfdc 785int lttng_relay_stop_threads(void)
b8aa1682 786{
b4aacfdc 787 int retval = 0;
b8aa1682
JD
788
789 /* Stopping all threads */
790 DBG("Terminating all threads");
b4aacfdc 791 if (notify_thread_pipe(thread_quit_pipe[1])) {
b8aa1682 792 ERR("write error on thread quit pipe");
b4aacfdc 793 retval = -1;
b8aa1682
JD
794 }
795
b4aacfdc
MD
796 if (notify_health_quit_pipe(health_quit_pipe)) {
797 ERR("write error on health quit pipe");
798 }
65931c8b 799
b8aa1682 800 /* Dispatch thread */
26c9d55e 801 CMM_STORE_SHARED(dispatch_thread_exit, 1);
58eb9381 802 futex_nto1_wake(&relay_conn_queue.futex);
178a0557 803
b4aacfdc 804 if (relayd_live_stop()) {
178a0557 805 ERR("Error stopping live threads");
b4aacfdc 806 retval = -1;
178a0557 807 }
b4aacfdc 808 return retval;
b8aa1682
JD
809}
810
811/*
812 * Signal handler for the daemon
813 *
814 * Simply stop all worker threads, leaving main() return gracefully after
815 * joining all threads and calling cleanup().
816 */
7591bab1 817static void sighandler(int sig)
b8aa1682
JD
818{
819 switch (sig) {
b8aa1682
JD
820 case SIGINT:
821 DBG("SIGINT caught");
b4aacfdc
MD
822 if (lttng_relay_stop_threads()) {
823 ERR("Error stopping threads");
824 }
b8aa1682
JD
825 break;
826 case SIGTERM:
827 DBG("SIGTERM caught");
b4aacfdc
MD
828 if (lttng_relay_stop_threads()) {
829 ERR("Error stopping threads");
830 }
b8aa1682 831 break;
3fd27398
MD
832 case SIGUSR1:
833 CMM_STORE_SHARED(recv_child_signal, 1);
834 break;
b8aa1682
JD
835 default:
836 break;
837 }
838}
839
840/*
841 * Setup signal handler for :
842 * SIGINT, SIGTERM, SIGPIPE
843 */
7591bab1 844static int set_signal_handler(void)
b8aa1682
JD
845{
846 int ret = 0;
847 struct sigaction sa;
848 sigset_t sigset;
849
850 if ((ret = sigemptyset(&sigset)) < 0) {
851 PERROR("sigemptyset");
852 return ret;
853 }
854
b8aa1682
JD
855 sa.sa_mask = sigset;
856 sa.sa_flags = 0;
0072e5e2
MD
857
858 sa.sa_handler = sighandler;
b8aa1682
JD
859 if ((ret = sigaction(SIGTERM, &sa, NULL)) < 0) {
860 PERROR("sigaction");
861 return ret;
862 }
863
864 if ((ret = sigaction(SIGINT, &sa, NULL)) < 0) {
865 PERROR("sigaction");
866 return ret;
867 }
868
0072e5e2 869 if ((ret = sigaction(SIGUSR1, &sa, NULL)) < 0) {
b8aa1682
JD
870 PERROR("sigaction");
871 return ret;
872 }
873
0072e5e2
MD
874 sa.sa_handler = SIG_IGN;
875 if ((ret = sigaction(SIGPIPE, &sa, NULL)) < 0) {
3fd27398
MD
876 PERROR("sigaction");
877 return ret;
878 }
879
880 DBG("Signal handler set for SIGTERM, SIGUSR1, SIGPIPE and SIGINT");
b8aa1682
JD
881
882 return ret;
883}
884
3fd27398
MD
885void lttng_relay_notify_ready(void)
886{
887 /* Notify the parent of the fork() process that we are ready. */
888 if (opt_daemon || opt_background) {
889 if (uatomic_sub_return(&lttng_relay_ready, 1) == 0) {
890 kill(child_ppid, SIGUSR1);
891 }
892 }
893}
894
b8aa1682
JD
895/*
896 * Init thread quit pipe.
897 *
898 * Return -1 on error or 0 if all pipes are created.
899 */
7591bab1 900static int init_thread_quit_pipe(void)
b8aa1682 901{
67609994
JG
902 return fd_tracker_util_pipe_open_cloexec(
903 the_fd_tracker, "Quit pipe", thread_quit_pipe);
b8aa1682
JD
904}
905
bcee2b96
JG
906/*
907 * Init health quit pipe.
908 *
909 * Return -1 on error or 0 if all pipes are created.
910 */
911static int init_health_quit_pipe(void)
912{
913 return fd_tracker_util_pipe_open_cloexec(the_fd_tracker,
914 "Health quit pipe", health_quit_pipe);
915}
916
b8aa1682
JD
917/*
918 * Create a poll set with O_CLOEXEC and add the thread quit pipe to the set.
919 */
e32a0864
JG
920static int create_named_thread_poll_set(struct lttng_poll_event *events,
921 int size, const char *name)
b8aa1682
JD
922{
923 int ret;
924
925 if (events == NULL || size == 0) {
926 ret = -1;
927 goto error;
928 }
929
e32a0864 930 ret = fd_tracker_util_poll_create(the_fd_tracker,
f118099a 931 name, events, 1, LTTNG_CLOEXEC);
64e2c0ed
JG
932 if (ret) {
933 PERROR("Failed to create \"%s\" poll file descriptor", name);
934 goto error;
935 }
b8aa1682
JD
936
937 /* Add quit pipe */
c7759e6a 938 ret = lttng_poll_add(events, thread_quit_pipe[0], LPOLLIN | LPOLLERR);
b8aa1682
JD
939 if (ret < 0) {
940 goto error;
941 }
942
943 return 0;
944
945error:
946 return ret;
947}
948
949/*
950 * Check if the thread quit pipe was triggered.
951 *
952 * Return 1 if it was triggered else 0;
953 */
7591bab1 954static int check_thread_quit_pipe(int fd, uint32_t events)
b8aa1682
JD
955{
956 if (fd == thread_quit_pipe[0] && (events & LPOLLIN)) {
957 return 1;
958 }
959
960 return 0;
961}
962
40212d87
JG
963static int create_sock(void *data, int *out_fd)
964{
965 int ret;
ac497a37 966 struct lttcomm_sock *sock = (lttcomm_sock *) data;
40212d87
JG
967
968 ret = lttcomm_create_sock(sock);
969 if (ret < 0) {
970 goto end;
971 }
972
973 *out_fd = sock->fd;
974end:
975 return ret;
976}
977
f46376a1 978static int close_sock(void *data, int *in_fd __attribute__((unused)))
40212d87 979{
ac497a37 980 struct lttcomm_sock *sock = (lttcomm_sock *) data;
40212d87
JG
981
982 return sock->ops->close(sock);
983}
984
f355467e
JG
985static int accept_sock(void *data, int *out_fd)
986{
987 int ret = 0;
988 /* Socks is an array of in_sock, out_sock. */
ac497a37 989 struct lttcomm_sock **socks = (lttcomm_sock **) data;
f355467e
JG
990 struct lttcomm_sock *in_sock = socks[0];
991
f118099a 992 socks[1] = in_sock->ops->accept(in_sock);
f355467e
JG
993 if (!socks[1]) {
994 ret = -1;
995 goto end;
996 }
997 *out_fd = socks[1]->fd;
998end:
999 return ret;
1000}
1001
b8aa1682
JD
1002/*
1003 * Create and init socket from uri.
1004 */
40212d87
JG
1005static struct lttcomm_sock *relay_socket_create(struct lttng_uri *uri,
1006 const char *name)
b8aa1682 1007{
40212d87 1008 int ret, sock_fd;
b8aa1682 1009 struct lttcomm_sock *sock = NULL;
40212d87
JG
1010 char uri_str[PATH_MAX];
1011 char *formated_name = NULL;
b8aa1682
JD
1012
1013 sock = lttcomm_alloc_sock_from_uri(uri);
1014 if (sock == NULL) {
1015 ERR("Allocating socket");
1016 goto error;
1017 }
1018
40212d87
JG
1019 /*
1020 * Don't fail to create the socket if the name can't be built as it is
1021 * only used for debugging purposes.
1022 */
1023 ret = uri_to_str_url(uri, uri_str, sizeof(uri_str));
1024 uri_str[sizeof(uri_str) - 1] = '\0';
1025 if (ret >= 0) {
1026 ret = asprintf(&formated_name, "%s socket @ %s", name,
1027 uri_str);
1028 if (ret < 0) {
1029 formated_name = NULL;
1030 }
b8aa1682 1031 }
40212d87
JG
1032
1033 ret = fd_tracker_open_unsuspendable_fd(the_fd_tracker, &sock_fd,
1034 (const char **) (formated_name ? &formated_name : NULL),
1035 1, create_sock, sock);
6016eb62
JG
1036 if (ret) {
1037 PERROR("Failed to open \"%s\" relay socket",
1038 formated_name ?: "Unknown");
1039 goto error;
1040 }
40212d87 1041 DBG("Listening on %s socket %d", name, sock->fd);
b8aa1682
JD
1042
1043 ret = sock->ops->bind(sock);
1044 if (ret < 0) {
2288467f 1045 PERROR("Failed to bind socket");
b8aa1682
JD
1046 goto error;
1047 }
1048
1049 ret = sock->ops->listen(sock, -1);
1050 if (ret < 0) {
1051 goto error;
1052
1053 }
1054
6016eb62 1055 free(formated_name);
b8aa1682
JD
1056 return sock;
1057
1058error:
1059 if (sock) {
1060 lttcomm_destroy_sock(sock);
1061 }
6016eb62 1062 free(formated_name);
b8aa1682
JD
1063 return NULL;
1064}
1065
f355467e
JG
1066static
1067struct lttcomm_sock *accept_relayd_sock(struct lttcomm_sock *listening_sock,
1068 const char *name)
1069{
1070 int out_fd, ret;
1071 struct lttcomm_sock *socks[2] = { listening_sock, NULL };
1072 struct lttcomm_sock *new_sock = NULL;
1073
f118099a 1074 ret = fd_tracker_open_unsuspendable_fd(
f355467e
JG
1075 the_fd_tracker, &out_fd,
1076 (const char **) &name,
1077 1, accept_sock, &socks);
1078 if (ret) {
1079 goto end;
1080 }
1081 new_sock = socks[1];
1082 DBG("%s accepted, socket %d", name, new_sock->fd);
1083end:
1084 return new_sock;
1085}
1086
b8aa1682
JD
1087/*
1088 * This thread manages the listening for new connections on the network
1089 */
f46376a1 1090static void *relay_thread_listener(void *data __attribute__((unused)))
b8aa1682 1091{
095a4ae5 1092 int i, ret, pollfd, err = -1;
b8aa1682
JD
1093 uint32_t revents, nb_fd;
1094 struct lttng_poll_event events;
1095 struct lttcomm_sock *control_sock, *data_sock;
1096
b8aa1682
JD
1097 DBG("[thread] Relay listener started");
1098
8fba2b8d 1099 rcu_register_thread();
55706a7d
MD
1100 health_register(health_relayd, HEALTH_RELAYD_TYPE_LISTENER);
1101
f385ae0a
MD
1102 health_code_update();
1103
40212d87 1104 control_sock = relay_socket_create(control_uri, "Control listener");
b8aa1682 1105 if (!control_sock) {
095a4ae5 1106 goto error_sock_control;
b8aa1682
JD
1107 }
1108
40212d87 1109 data_sock = relay_socket_create(data_uri, "Data listener");
b8aa1682 1110 if (!data_sock) {
095a4ae5 1111 goto error_sock_relay;
b8aa1682
JD
1112 }
1113
1114 /*
7591bab1
MD
1115 * Pass 3 as size here for the thread quit pipe, control and
1116 * data socket.
b8aa1682 1117 */
ba9cf8e1 1118 ret = create_named_thread_poll_set(&events, 3, "Listener thread epoll");
b8aa1682
JD
1119 if (ret < 0) {
1120 goto error_create_poll;
1121 }
1122
1123 /* Add the control socket */
1124 ret = lttng_poll_add(&events, control_sock->fd, LPOLLIN | LPOLLRDHUP);
1125 if (ret < 0) {
1126 goto error_poll_add;
1127 }
1128
1129 /* Add the data socket */
1130 ret = lttng_poll_add(&events, data_sock->fd, LPOLLIN | LPOLLRDHUP);
1131 if (ret < 0) {
1132 goto error_poll_add;
1133 }
1134
3fd27398
MD
1135 lttng_relay_notify_ready();
1136
9b5e0863
MD
1137 if (testpoint(relayd_thread_listener)) {
1138 goto error_testpoint;
1139 }
1140
b8aa1682 1141 while (1) {
f385ae0a
MD
1142 health_code_update();
1143
b8aa1682
JD
1144 DBG("Listener accepting connections");
1145
b8aa1682 1146restart:
f385ae0a 1147 health_poll_entry();
b8aa1682 1148 ret = lttng_poll_wait(&events, -1);
f385ae0a 1149 health_poll_exit();
b8aa1682
JD
1150 if (ret < 0) {
1151 /*
1152 * Restart interrupted system call.
1153 */
1154 if (errno == EINTR) {
1155 goto restart;
1156 }
1157 goto error;
1158 }
1159
0d9c5d77
DG
1160 nb_fd = ret;
1161
b8aa1682
JD
1162 DBG("Relay new connection received");
1163 for (i = 0; i < nb_fd; i++) {
f385ae0a
MD
1164 health_code_update();
1165
b8aa1682
JD
1166 /* Fetch once the poll data */
1167 revents = LTTNG_POLL_GETEV(&events, i);
1168 pollfd = LTTNG_POLL_GETFD(&events, i);
1169
1170 /* Thread quit pipe has been closed. Killing thread. */
1171 ret = check_thread_quit_pipe(pollfd, revents);
1172 if (ret) {
095a4ae5
MD
1173 err = 0;
1174 goto exit;
b8aa1682
JD
1175 }
1176
03e43155 1177 if (revents & LPOLLIN) {
4b7f17b2 1178 /*
7591bab1
MD
1179 * A new connection is requested, therefore a
1180 * sessiond/consumerd connection is allocated in
1181 * this thread, enqueued to a global queue and
1182 * dequeued (and freed) in the worker thread.
4b7f17b2 1183 */
58eb9381
DG
1184 int val = 1;
1185 struct relay_connection *new_conn;
f355467e 1186 struct lttcomm_sock *newsock = NULL;
7591bab1 1187 enum connection_type type;
b8aa1682
JD
1188
1189 if (pollfd == data_sock->fd) {
7591bab1 1190 type = RELAY_DATA;
f355467e
JG
1191 newsock = accept_relayd_sock(data_sock,
1192 "Data socket to relayd");
4b7f17b2 1193 } else {
a0377dfe 1194 LTTNG_ASSERT(pollfd == control_sock->fd);
7591bab1 1195 type = RELAY_CONTROL;
875e3164
JG
1196 newsock = accept_relayd_sock(control_sock,
1197 "Control socket to relayd");
b8aa1682 1198 }
58eb9381
DG
1199 if (!newsock) {
1200 PERROR("accepting sock");
58eb9381
DG
1201 goto error;
1202 }
1203
1204 ret = setsockopt(newsock->fd, SOL_SOCKET, SO_REUSEADDR, &val,
1205 sizeof(val));
b8aa1682
JD
1206 if (ret < 0) {
1207 PERROR("setsockopt inet");
4b7f17b2 1208 lttcomm_destroy_sock(newsock);
b8aa1682
JD
1209 goto error;
1210 }
f056029c
JR
1211
1212 ret = socket_apply_keep_alive_config(newsock->fd);
1213 if (ret < 0) {
1214 ERR("Failed to apply TCP keep-alive configuration on socket (%i)",
1215 newsock->fd);
1216 lttcomm_destroy_sock(newsock);
1217 goto error;
1218 }
1219
7591bab1
MD
1220 new_conn = connection_create(newsock, type);
1221 if (!new_conn) {
1222 lttcomm_destroy_sock(newsock);
1223 goto error;
1224 }
58eb9381
DG
1225
1226 /* Enqueue request for the dispatcher thread. */
ac497a37
SM
1227 cds_wfcq_head_ptr_t head;
1228 head.h = &relay_conn_queue.head;
1229 cds_wfcq_enqueue(head, &relay_conn_queue.tail,
8bdee6e2 1230 &new_conn->qnode);
b8aa1682
JD
1231
1232 /*
7591bab1
MD
1233 * Wake the dispatch queue futex.
1234 * Implicit memory barrier with the
1235 * exchange in cds_wfcq_enqueue.
b8aa1682 1236 */
58eb9381 1237 futex_nto1_wake(&relay_conn_queue.futex);
03e43155
MD
1238 } else if (revents & (LPOLLERR | LPOLLHUP | LPOLLRDHUP)) {
1239 ERR("socket poll error");
1240 goto error;
1241 } else {
1242 ERR("Unexpected poll events %u for sock %d", revents, pollfd);
1243 goto error;
b8aa1682
JD
1244 }
1245 }
1246 }
1247
095a4ae5 1248exit:
b8aa1682
JD
1249error:
1250error_poll_add:
9b5e0863 1251error_testpoint:
ba9cf8e1 1252 (void) fd_tracker_util_poll_clean(the_fd_tracker, &events);
b8aa1682 1253error_create_poll:
095a4ae5 1254 if (data_sock->fd >= 0) {
40212d87
JG
1255 int data_sock_fd = data_sock->fd;
1256
1257 ret = fd_tracker_close_unsuspendable_fd(the_fd_tracker,
1258 &data_sock_fd, 1, close_sock,
1259 data_sock);
b8aa1682 1260 if (ret) {
40212d87 1261 PERROR("Failed to close the data listener socket file descriptor");
b8aa1682 1262 }
40212d87 1263 data_sock->fd = -1;
b8aa1682 1264 }
095a4ae5
MD
1265 lttcomm_destroy_sock(data_sock);
1266error_sock_relay:
1267 if (control_sock->fd >= 0) {
40212d87
JG
1268 int control_sock_fd = control_sock->fd;
1269
1270 ret = fd_tracker_close_unsuspendable_fd(the_fd_tracker,
1271 &control_sock_fd, 1, close_sock,
1272 control_sock);
b8aa1682 1273 if (ret) {
40212d87 1274 PERROR("Failed to close the control listener socket file descriptor");
b8aa1682 1275 }
40212d87 1276 control_sock->fd = -1;
b8aa1682 1277 }
095a4ae5
MD
1278 lttcomm_destroy_sock(control_sock);
1279error_sock_control:
1280 if (err) {
f385ae0a
MD
1281 health_error();
1282 ERR("Health error occurred in %s", __func__);
095a4ae5 1283 }
55706a7d 1284 health_unregister(health_relayd);
8fba2b8d 1285 rcu_unregister_thread();
b8aa1682 1286 DBG("Relay listener thread cleanup complete");
b4aacfdc 1287 lttng_relay_stop_threads();
b8aa1682
JD
1288 return NULL;
1289}
1290
1291/*
1292 * This thread manages the dispatching of the requests to worker threads
1293 */
f46376a1 1294static void *relay_thread_dispatcher(void *data __attribute__((unused)))
b8aa1682 1295{
6cd525e8
MD
1296 int err = -1;
1297 ssize_t ret;
8bdee6e2 1298 struct cds_wfcq_node *node;
58eb9381 1299 struct relay_connection *new_conn = NULL;
b8aa1682
JD
1300
1301 DBG("[thread] Relay dispatcher started");
1302
55706a7d
MD
1303 health_register(health_relayd, HEALTH_RELAYD_TYPE_DISPATCHER);
1304
9b5e0863
MD
1305 if (testpoint(relayd_thread_dispatcher)) {
1306 goto error_testpoint;
1307 }
1308
f385ae0a
MD
1309 health_code_update();
1310
0ed3b1a8 1311 for (;;) {
f385ae0a
MD
1312 health_code_update();
1313
b8aa1682 1314 /* Atomically prepare the queue futex */
58eb9381 1315 futex_nto1_prepare(&relay_conn_queue.futex);
b8aa1682 1316
0ed3b1a8
MD
1317 if (CMM_LOAD_SHARED(dispatch_thread_exit)) {
1318 break;
1319 }
1320
b8aa1682 1321 do {
f385ae0a
MD
1322 health_code_update();
1323
b8aa1682 1324 /* Dequeue commands */
8bdee6e2
SM
1325 node = cds_wfcq_dequeue_blocking(&relay_conn_queue.head,
1326 &relay_conn_queue.tail);
b8aa1682
JD
1327 if (node == NULL) {
1328 DBG("Woken up but nothing in the relay command queue");
1329 /* Continue thread execution */
1330 break;
1331 }
0114db0e 1332 new_conn = lttng::utils::container_of(node, &relay_connection::qnode);
b8aa1682 1333
58eb9381 1334 DBG("Dispatching request waiting on sock %d", new_conn->sock->fd);
b8aa1682
JD
1335
1336 /*
7591bab1
MD
1337 * Inform worker thread of the new request. This
1338 * call is blocking so we can be assured that
1339 * the data will be read at some point in time
1340 * or wait to the end of the world :)
b8aa1682 1341 */
58eb9381
DG
1342 ret = lttng_write(relay_conn_pipe[1], &new_conn, sizeof(new_conn));
1343 if (ret < 0) {
1344 PERROR("write connection pipe");
7591bab1 1345 connection_put(new_conn);
b8aa1682
JD
1346 goto error;
1347 }
1348 } while (node != NULL);
1349
1350 /* Futex wait on queue. Blocking call on futex() */
f385ae0a 1351 health_poll_entry();
58eb9381 1352 futex_nto1_wait(&relay_conn_queue.futex);
f385ae0a 1353 health_poll_exit();
b8aa1682
JD
1354 }
1355
f385ae0a
MD
1356 /* Normal exit, no error */
1357 err = 0;
1358
b8aa1682 1359error:
9b5e0863 1360error_testpoint:
f385ae0a
MD
1361 if (err) {
1362 health_error();
1363 ERR("Health error occurred in %s", __func__);
1364 }
55706a7d 1365 health_unregister(health_relayd);
b8aa1682 1366 DBG("Dispatch thread dying");
b4aacfdc 1367 lttng_relay_stop_threads();
b8aa1682
JD
1368 return NULL;
1369}
1370
298a25ca
JG
1371static bool session_streams_have_index(const struct relay_session *session)
1372{
1373 return session->minor >= 4 && !session->snapshot;
1374}
1375
c5b6f4f0
DG
1376/*
1377 * Handle the RELAYD_CREATE_SESSION command.
1378 *
1379 * On success, send back the session id or else return a negative value.
1380 */
f46376a1
MJ
1381static int relay_create_session(
1382 const struct lttcomm_relayd_hdr *recv_hdr __attribute__((unused)),
5312a3ed
JG
1383 struct relay_connection *conn,
1384 const struct lttng_buffer_view *payload)
c5b6f4f0 1385{
5312a3ed
JG
1386 int ret = 0;
1387 ssize_t send_ret;
4c6885d2 1388 struct relay_session *session = NULL;
ecd1a12f 1389 struct lttcomm_relayd_create_session_reply_2_11 reply = {};
1e791a74
JG
1390 char session_name[LTTNG_NAME_MAX] = {};
1391 char hostname[LTTNG_HOST_NAME_MAX] = {};
7591bab1
MD
1392 uint32_t live_timer = 0;
1393 bool snapshot = false;
46ef2188 1394 bool session_name_contains_creation_timestamp = false;
23c8ff50 1395 /* Left nil for peers < 2.11. */
6fa5fe7c 1396 char base_path[LTTNG_PATH_MAX] = {};
23c8ff50 1397 lttng_uuid sessiond_uuid = {};
1e791a74
JG
1398 LTTNG_OPTIONAL(uint64_t) id_sessiond = {};
1399 LTTNG_OPTIONAL(uint64_t) current_chunk_id = {};
db1da059 1400 LTTNG_OPTIONAL(time_t) creation_time = {};
ecd1a12f
MD
1401 struct lttng_dynamic_buffer reply_payload;
1402
1403 lttng_dynamic_buffer_init(&reply_payload);
c5b6f4f0 1404
f86f6389
JR
1405 if (conn->minor < 4) {
1406 /* From 2.1 to 2.3 */
1407 ret = 0;
1408 } else if (conn->minor >= 4 && conn->minor < 11) {
1409 /* From 2.4 to 2.10 */
5312a3ed 1410 ret = cmd_create_session_2_4(payload, session_name,
7591bab1 1411 hostname, &live_timer, &snapshot);
f86f6389 1412 } else {
84fa4db5 1413 bool has_current_chunk;
db1da059
JG
1414 uint64_t current_chunk_id_value;
1415 time_t creation_time_value;
1416 uint64_t id_sessiond_value;
84fa4db5 1417
f86f6389 1418 /* From 2.11 to ... */
db1da059 1419 ret = cmd_create_session_2_11(payload, session_name, hostname,
6fa5fe7c 1420 base_path, &live_timer, &snapshot, &id_sessiond_value,
db1da059 1421 sessiond_uuid, &has_current_chunk,
46ef2188
MD
1422 &current_chunk_id_value, &creation_time_value,
1423 &session_name_contains_creation_timestamp);
23c8ff50
JG
1424 if (lttng_uuid_is_nil(sessiond_uuid)) {
1425 /* The nil UUID is reserved for pre-2.11 clients. */
1426 ERR("Illegal nil UUID announced by peer in create session command");
1427 ret = -1;
1428 goto send_reply;
1429 }
db1da059
JG
1430 LTTNG_OPTIONAL_SET(&id_sessiond, id_sessiond_value);
1431 LTTNG_OPTIONAL_SET(&creation_time, creation_time_value);
1432 if (has_current_chunk) {
1433 LTTNG_OPTIONAL_SET(&current_chunk_id,
1434 current_chunk_id_value);
1435 }
7591bab1 1436 }
f86f6389 1437
7591bab1
MD
1438 if (ret < 0) {
1439 goto send_reply;
d3e2ba59
JD
1440 }
1441
6fa5fe7c 1442 session = session_create(session_name, hostname, base_path, live_timer,
1e791a74
JG
1443 snapshot, sessiond_uuid,
1444 id_sessiond.is_set ? &id_sessiond.value : NULL,
1445 current_chunk_id.is_set ? &current_chunk_id.value : NULL,
db1da059 1446 creation_time.is_set ? &creation_time.value : NULL,
46ef2188
MD
1447 conn->major, conn->minor,
1448 session_name_contains_creation_timestamp);
7591bab1
MD
1449 if (!session) {
1450 ret = -1;
1451 goto send_reply;
1452 }
a0377dfe 1453 LTTNG_ASSERT(!conn->session);
7591bab1 1454 conn->session = session;
c5b6f4f0
DG
1455 DBG("Created session %" PRIu64, session->id);
1456
ecd1a12f 1457 reply.generic.session_id = htobe64(session->id);
7591bab1
MD
1458
1459send_reply:
c5b6f4f0 1460 if (ret < 0) {
ecd1a12f 1461 reply.generic.ret_code = htobe32(LTTNG_ERR_FATAL);
c5b6f4f0 1462 } else {
ecd1a12f 1463 reply.generic.ret_code = htobe32(LTTNG_OK);
c5b6f4f0
DG
1464 }
1465
ecd1a12f
MD
1466 if (conn->minor < 11) {
1467 /* From 2.1 to 2.10 */
1468 ret = lttng_dynamic_buffer_append(&reply_payload,
1469 &reply.generic, sizeof(reply.generic));
1470 if (ret) {
1471 ERR("Failed to append \"create session\" command reply header to payload buffer");
1472 ret = -1;
1473 goto end;
1474 }
1475 } else {
1476 const uint32_t output_path_length =
8d382dd4 1477 session ? strlen(session->output_path) + 1 : 0;
ecd1a12f
MD
1478
1479 reply.output_path_length = htobe32(output_path_length);
8d382dd4
JG
1480 ret = lttng_dynamic_buffer_append(
1481 &reply_payload, &reply, sizeof(reply));
ecd1a12f
MD
1482 if (ret) {
1483 ERR("Failed to append \"create session\" command reply header to payload buffer");
1484 goto end;
1485 }
1486
8d382dd4
JG
1487 if (output_path_length) {
1488 ret = lttng_dynamic_buffer_append(&reply_payload,
1489 session->output_path,
1490 output_path_length);
1491 if (ret) {
1492 ERR("Failed to append \"create session\" command reply path to payload buffer");
1493 goto end;
1494 }
ecd1a12f
MD
1495 }
1496 }
1497
1498 send_ret = conn->sock->ops->sendmsg(conn->sock, reply_payload.data,
1499 reply_payload.size, 0);
1500 if (send_ret < (ssize_t) reply_payload.size) {
1501 ERR("Failed to send \"create session\" command reply of %zu bytes (ret = %zd)",
1502 reply_payload.size, send_ret);
5312a3ed 1503 ret = -1;
c5b6f4f0 1504 }
ecd1a12f 1505end:
4c6885d2
JG
1506 if (ret < 0 && session) {
1507 session_put(session);
1508 }
ecd1a12f 1509 lttng_dynamic_buffer_reset(&reply_payload);
c5b6f4f0
DG
1510 return ret;
1511}
1512
a4baae1b
JD
1513/*
1514 * When we have received all the streams and the metadata for a channel,
1515 * we make them visible to the viewer threads.
1516 */
7591bab1 1517static void publish_connection_local_streams(struct relay_connection *conn)
a4baae1b 1518{
7591bab1
MD
1519 struct relay_stream *stream;
1520 struct relay_session *session = conn->session;
a4baae1b 1521
7591bab1
MD
1522 /*
1523 * We publish all streams belonging to a session atomically wrt
1524 * session lock.
1525 */
1526 pthread_mutex_lock(&session->lock);
1527 rcu_read_lock();
1528 cds_list_for_each_entry_rcu(stream, &session->recv_list,
1529 recv_node) {
1530 stream_publish(stream);
a4baae1b 1531 }
7591bab1 1532 rcu_read_unlock();
a4baae1b 1533
7591bab1
MD
1534 /*
1535 * Inform the viewer that there are new streams in the session.
1536 */
1537 if (session->viewer_attached) {
1538 uatomic_set(&session->new_streams, 1);
1539 }
1540 pthread_mutex_unlock(&session->lock);
a4baae1b
JD
1541}
1542
348a81dc
JG
1543static int conform_channel_path(char *channel_path)
1544{
1545 int ret = 0;
1546
1547 if (strstr("../", channel_path)) {
1548 ERR("Refusing channel path as it walks up the path hierarchy: \"%s\"",
1549 channel_path);
1550 ret = -1;
1551 goto end;
1552 }
1553
1554 if (*channel_path == '/') {
1555 const size_t len = strlen(channel_path);
1556
1557 /*
1558 * Channel paths from peers prior to 2.11 are expressed as an
1559 * absolute path that is, in reality, relative to the relay
1560 * daemon's output directory. Remove the leading slash so it
1561 * is correctly interpreted as a relative path later on.
1562 *
1563 * len (and not len - 1) is used to copy the trailing NULL.
1564 */
1565 bcopy(channel_path + 1, channel_path, len);
1566 }
1567end:
1568 return ret;
1569}
1570
b8aa1682
JD
1571/*
1572 * relay_add_stream: allocate a new stream for a session
1573 */
f46376a1
MJ
1574static int relay_add_stream(
1575 const struct lttcomm_relayd_hdr *recv_hdr __attribute__((unused)),
5312a3ed
JG
1576 struct relay_connection *conn,
1577 const struct lttng_buffer_view *payload)
b8aa1682 1578{
7591bab1
MD
1579 int ret;
1580 ssize_t send_ret;
58eb9381 1581 struct relay_session *session = conn->session;
b8aa1682
JD
1582 struct relay_stream *stream = NULL;
1583 struct lttcomm_relayd_status_stream reply;
4030a636 1584 struct ctf_trace *trace = NULL;
7591bab1
MD
1585 uint64_t stream_handle = -1ULL;
1586 char *path_name = NULL, *channel_name = NULL;
1587 uint64_t tracefile_size = 0, tracefile_count = 0;
348a81dc 1588 LTTNG_OPTIONAL(uint64_t) stream_chunk_id = {};
b8aa1682 1589
5312a3ed 1590 if (!session || !conn->version_check_done) {
b8aa1682
JD
1591 ERR("Trying to add a stream before version check");
1592 ret = -1;
1593 goto end_no_session;
1594 }
1595
2f21a469
JR
1596 if (session->minor == 1) {
1597 /* For 2.1 */
5312a3ed 1598 ret = cmd_recv_stream_2_1(payload, &path_name,
7591bab1 1599 &channel_name);
2f21a469
JR
1600 } else if (session->minor > 1 && session->minor < 11) {
1601 /* From 2.2 to 2.10 */
5312a3ed 1602 ret = cmd_recv_stream_2_2(payload, &path_name,
7591bab1 1603 &channel_name, &tracefile_size, &tracefile_count);
2f21a469
JR
1604 } else {
1605 /* From 2.11 to ... */
1606 ret = cmd_recv_stream_2_11(payload, &path_name,
0b50e4b3
JG
1607 &channel_name, &tracefile_size, &tracefile_count,
1608 &stream_chunk_id.value);
1609 stream_chunk_id.is_set = true;
0f907de1 1610 }
2f21a469 1611
0f907de1 1612 if (ret < 0) {
7591bab1 1613 goto send_reply;
b8aa1682
JD
1614 }
1615
348a81dc
JG
1616 if (conform_channel_path(path_name)) {
1617 goto send_reply;
1618 }
1619
2a635488
JR
1620 /*
1621 * Backward compatibility for --group-output-by-session.
1622 * Prior to lttng 2.11, the complete path is passed by the stream.
1623 * Starting at 2.11, lttng-relayd uses chunk. When dealing with producer
1624 * >=2.11 the chunk is responsible for the output path. When dealing
1625 * with producer < 2.11 the chunk output_path is the root output path
1626 * and the stream carries the complete path (path_name).
1627 * To support --group-output-by-session with older producer (<2.11), we
1628 * need to craft the path based on the stream path.
1629 */
1630 if (opt_group_output_by == RELAYD_GROUP_OUTPUT_BY_SESSION) {
1631 if (conn->minor < 4) {
1632 /*
1633 * From 2.1 to 2.3, the session_name is not passed on
1634 * the RELAYD_CREATE_SESSION command. The session name
1635 * is necessary to detect the presence of a base_path
1636 * inside the stream path. Without it we cannot perform
1637 * a valid group-output-by-session transformation.
1638 */
1639 WARN("Unable to perform a --group-by-session transformation for session %" PRIu64
1640 " for stream with path \"%s\" as it is produced by a peer using a protocol older than v2.4",
1641 session->id, path_name);
1642 } else if (conn->minor >= 4 && conn->minor < 11) {
1643 char *group_by_session_path_name;
1644
a0377dfe 1645 LTTNG_ASSERT(session->session_name[0] != '\0');
2a635488
JR
1646
1647 group_by_session_path_name =
1648 backward_compat_group_by_session(
1649 path_name,
d2cb4a90
JG
1650 session->session_name,
1651 session->creation_time.value);
2a635488
JR
1652 if (!group_by_session_path_name) {
1653 ERR("Failed to apply group by session to stream of session %" PRIu64,
1654 session->id);
1655 goto send_reply;
1656 }
1657
1658 DBG("Transformed session path from \"%s\" to \"%s\" to honor per-session name grouping",
1659 path_name, group_by_session_path_name);
1660
1661 free(path_name);
1662 path_name = group_by_session_path_name;
1663 }
1664 }
1665
7591bab1 1666 trace = ctf_trace_get_by_path_or_create(session, path_name);
2a174661 1667 if (!trace) {
7591bab1 1668 goto send_reply;
2a174661 1669 }
2a174661 1670
2a635488 1671 /* This stream here has one reference on the trace. */
7591bab1
MD
1672 pthread_mutex_lock(&last_relay_stream_id_lock);
1673 stream_handle = ++last_relay_stream_id;
1674 pthread_mutex_unlock(&last_relay_stream_id_lock);
d3e2ba59 1675
7591bab1
MD
1676 /* We pass ownership of path_name and channel_name. */
1677 stream = stream_create(trace, stream_handle, path_name,
348a81dc 1678 channel_name, tracefile_size, tracefile_count);
7591bab1
MD
1679 path_name = NULL;
1680 channel_name = NULL;
a4baae1b 1681
2a174661 1682 /*
7591bab1
MD
1683 * Streams are the owners of their trace. Reference to trace is
1684 * kept within stream_create().
2a174661 1685 */
7591bab1 1686 ctf_trace_put(trace);
d3e2ba59 1687
7591bab1 1688send_reply:
53efb85a 1689 memset(&reply, 0, sizeof(reply));
7591bab1
MD
1690 reply.handle = htobe64(stream_handle);
1691 if (!stream) {
f73fabfd 1692 reply.ret_code = htobe32(LTTNG_ERR_UNK);
b8aa1682 1693 } else {
f73fabfd 1694 reply.ret_code = htobe32(LTTNG_OK);
b8aa1682 1695 }
5af40280 1696
58eb9381 1697 send_ret = conn->sock->ops->sendmsg(conn->sock, &reply,
b8aa1682 1698 sizeof(struct lttcomm_relayd_status_stream), 0);
5312a3ed
JG
1699 if (send_ret < (ssize_t) sizeof(reply)) {
1700 ERR("Failed to send \"add stream\" command reply (ret = %zd)",
1701 send_ret);
1702 ret = -1;
b8aa1682
JD
1703 }
1704
1705end_no_session:
7591bab1
MD
1706 free(path_name);
1707 free(channel_name);
0f907de1 1708 return ret;
b8aa1682
JD
1709}
1710
173af62f
DG
1711/*
1712 * relay_close_stream: close a specific stream
1713 */
f46376a1
MJ
1714static int relay_close_stream(
1715 const struct lttcomm_relayd_hdr *recv_hdr __attribute__((unused)),
5312a3ed
JG
1716 struct relay_connection *conn,
1717 const struct lttng_buffer_view *payload)
173af62f 1718{
5312a3ed
JG
1719 int ret;
1720 ssize_t send_ret;
58eb9381 1721 struct relay_session *session = conn->session;
173af62f
DG
1722 struct lttcomm_relayd_close_stream stream_info;
1723 struct lttcomm_relayd_generic_reply reply;
1724 struct relay_stream *stream;
173af62f
DG
1725
1726 DBG("Close stream received");
1727
5312a3ed 1728 if (!session || !conn->version_check_done) {
173af62f
DG
1729 ERR("Trying to close a stream before version check");
1730 ret = -1;
1731 goto end_no_session;
1732 }
1733
5312a3ed
JG
1734 if (payload->size < sizeof(stream_info)) {
1735 ERR("Unexpected payload size in \"relay_close_stream\": expected >= %zu bytes, got %zu bytes",
1736 sizeof(stream_info), payload->size);
173af62f
DG
1737 ret = -1;
1738 goto end_no_session;
1739 }
5312a3ed
JG
1740 memcpy(&stream_info, payload->data, sizeof(stream_info));
1741 stream_info.stream_id = be64toh(stream_info.stream_id);
1742 stream_info.last_net_seq_num = be64toh(stream_info.last_net_seq_num);
173af62f 1743
5312a3ed 1744 stream = stream_get_by_id(stream_info.stream_id);
173af62f
DG
1745 if (!stream) {
1746 ret = -1;
7591bab1 1747 goto end;
173af62f 1748 }
77f7bd85
MD
1749
1750 /*
1751 * Set last_net_seq_num before the close flag. Required by data
1752 * pending check.
1753 */
7591bab1 1754 pthread_mutex_lock(&stream->lock);
5312a3ed 1755 stream->last_net_seq_num = stream_info.last_net_seq_num;
77f7bd85
MD
1756 pthread_mutex_unlock(&stream->lock);
1757
bda7c7b9
JG
1758 /*
1759 * This is one of the conditions which may trigger a stream close
1760 * with the others being:
1761 * 1) A close command is received for a stream
1762 * 2) The control connection owning the stream is closed
1763 * 3) We have received all of the stream's data _after_ a close
1764 * request.
1765 */
1766 try_stream_close(stream);
7591bab1 1767 stream_put(stream);
5312a3ed 1768 ret = 0;
173af62f 1769
7591bab1 1770end:
53efb85a 1771 memset(&reply, 0, sizeof(reply));
173af62f 1772 if (ret < 0) {
f73fabfd 1773 reply.ret_code = htobe32(LTTNG_ERR_UNK);
173af62f 1774 } else {
f73fabfd 1775 reply.ret_code = htobe32(LTTNG_OK);
173af62f 1776 }
58eb9381 1777 send_ret = conn->sock->ops->sendmsg(conn->sock, &reply,
173af62f 1778 sizeof(struct lttcomm_relayd_generic_reply), 0);
5312a3ed
JG
1779 if (send_ret < (ssize_t) sizeof(reply)) {
1780 ERR("Failed to send \"close stream\" command reply (ret = %zd)",
1781 send_ret);
1782 ret = -1;
173af62f
DG
1783 }
1784
1785end_no_session:
1786 return ret;
1787}
1788
93ec662e
JD
1789/*
1790 * relay_reset_metadata: reset a metadata stream
1791 */
1792static
f46376a1
MJ
1793int relay_reset_metadata(
1794 const struct lttcomm_relayd_hdr *recv_hdr __attribute__((unused)),
5312a3ed
JG
1795 struct relay_connection *conn,
1796 const struct lttng_buffer_view *payload)
93ec662e 1797{
5312a3ed
JG
1798 int ret;
1799 ssize_t send_ret;
93ec662e
JD
1800 struct relay_session *session = conn->session;
1801 struct lttcomm_relayd_reset_metadata stream_info;
1802 struct lttcomm_relayd_generic_reply reply;
1803 struct relay_stream *stream;
1804
1805 DBG("Reset metadata received");
1806
5312a3ed 1807 if (!session || !conn->version_check_done) {
93ec662e
JD
1808 ERR("Trying to reset a metadata stream before version check");
1809 ret = -1;
1810 goto end_no_session;
1811 }
1812
5312a3ed
JG
1813 if (payload->size < sizeof(stream_info)) {
1814 ERR("Unexpected payload size in \"relay_reset_metadata\": expected >= %zu bytes, got %zu bytes",
1815 sizeof(stream_info), payload->size);
93ec662e
JD
1816 ret = -1;
1817 goto end_no_session;
1818 }
5312a3ed
JG
1819 memcpy(&stream_info, payload->data, sizeof(stream_info));
1820 stream_info.stream_id = be64toh(stream_info.stream_id);
1821 stream_info.version = be64toh(stream_info.version);
1822
1823 DBG("Update metadata to version %" PRIu64, stream_info.version);
93ec662e
JD
1824
1825 /* Unsupported for live sessions for now. */
1826 if (session->live_timer != 0) {
1827 ret = -1;
1828 goto end;
1829 }
1830
5312a3ed 1831 stream = stream_get_by_id(stream_info.stream_id);
93ec662e
JD
1832 if (!stream) {
1833 ret = -1;
1834 goto end;
1835 }
1836 pthread_mutex_lock(&stream->lock);
1837 if (!stream->is_metadata) {
1838 ret = -1;
1839 goto end_unlock;
1840 }
1841
c35f9726 1842 ret = stream_reset_file(stream);
93ec662e 1843 if (ret < 0) {
c35f9726
JG
1844 ERR("Failed to reset metadata stream %" PRIu64
1845 ": stream_path = %s, channel = %s",
1846 stream->stream_handle, stream->path_name,
1847 stream->channel_name);
93ec662e
JD
1848 goto end_unlock;
1849 }
93ec662e
JD
1850end_unlock:
1851 pthread_mutex_unlock(&stream->lock);
1852 stream_put(stream);
1853
1854end:
1855 memset(&reply, 0, sizeof(reply));
1856 if (ret < 0) {
1857 reply.ret_code = htobe32(LTTNG_ERR_UNK);
1858 } else {
1859 reply.ret_code = htobe32(LTTNG_OK);
1860 }
1861 send_ret = conn->sock->ops->sendmsg(conn->sock, &reply,
1862 sizeof(struct lttcomm_relayd_generic_reply), 0);
5312a3ed
JG
1863 if (send_ret < (ssize_t) sizeof(reply)) {
1864 ERR("Failed to send \"reset metadata\" command reply (ret = %zd)",
1865 send_ret);
1866 ret = -1;
93ec662e
JD
1867 }
1868
1869end_no_session:
1870 return ret;
1871}
1872
b8aa1682
JD
1873/*
1874 * relay_unknown_command: send -1 if received unknown command
1875 */
7591bab1 1876static void relay_unknown_command(struct relay_connection *conn)
b8aa1682
JD
1877{
1878 struct lttcomm_relayd_generic_reply reply;
5312a3ed 1879 ssize_t send_ret;
b8aa1682 1880
53efb85a 1881 memset(&reply, 0, sizeof(reply));
f73fabfd 1882 reply.ret_code = htobe32(LTTNG_ERR_UNK);
5312a3ed
JG
1883 send_ret = conn->sock->ops->sendmsg(conn->sock, &reply, sizeof(reply), 0);
1884 if (send_ret < sizeof(reply)) {
1885 ERR("Failed to send \"unknown command\" command reply (ret = %zd)", send_ret);
b8aa1682
JD
1886 }
1887}
1888
1889/*
1890 * relay_start: send an acknowledgment to the client to tell if we are
1891 * ready to receive data. We are ready if a session is established.
1892 */
f46376a1
MJ
1893static int relay_start(
1894 const struct lttcomm_relayd_hdr *recv_hdr __attribute__((unused)),
5312a3ed 1895 struct relay_connection *conn,
f46376a1 1896 const struct lttng_buffer_view *payload __attribute__((unused)))
b8aa1682 1897{
5312a3ed
JG
1898 int ret = 0;
1899 ssize_t send_ret;
b8aa1682 1900 struct lttcomm_relayd_generic_reply reply;
58eb9381 1901 struct relay_session *session = conn->session;
b8aa1682
JD
1902
1903 if (!session) {
1904 DBG("Trying to start the streaming without a session established");
f73fabfd 1905 ret = htobe32(LTTNG_ERR_UNK);
b8aa1682
JD
1906 }
1907
53efb85a 1908 memset(&reply, 0, sizeof(reply));
5312a3ed
JG
1909 reply.ret_code = htobe32(LTTNG_OK);
1910 send_ret = conn->sock->ops->sendmsg(conn->sock, &reply,
1911 sizeof(reply), 0);
1912 if (send_ret < (ssize_t) sizeof(reply)) {
1913 ERR("Failed to send \"relay_start\" command reply (ret = %zd)",
1914 send_ret);
1915 ret = -1;
b8aa1682
JD
1916 }
1917
1918 return ret;
1919}
1920
b8aa1682 1921/*
7591bab1 1922 * relay_recv_metadata: receive the metadata for the session.
b8aa1682 1923 */
5312a3ed
JG
1924static int relay_recv_metadata(const struct lttcomm_relayd_hdr *recv_hdr,
1925 struct relay_connection *conn,
1926 const struct lttng_buffer_view *payload)
b8aa1682 1927{
32d1569c 1928 int ret = 0;
58eb9381 1929 struct relay_session *session = conn->session;
5312a3ed 1930 struct lttcomm_relayd_metadata_payload metadata_payload_header;
b8aa1682 1931 struct relay_stream *metadata_stream;
5312a3ed 1932 uint64_t metadata_payload_size;
c35f9726 1933 struct lttng_buffer_view packet_view;
b8aa1682
JD
1934
1935 if (!session) {
1936 ERR("Metadata sent before version check");
1937 ret = -1;
1938 goto end;
1939 }
1940
5312a3ed 1941 if (recv_hdr->data_size < sizeof(struct lttcomm_relayd_metadata_payload)) {
f6416125
MD
1942 ERR("Incorrect data size");
1943 ret = -1;
1944 goto end;
1945 }
5312a3ed
JG
1946 metadata_payload_size = recv_hdr->data_size -
1947 sizeof(struct lttcomm_relayd_metadata_payload);
f6416125 1948
5312a3ed
JG
1949 memcpy(&metadata_payload_header, payload->data,
1950 sizeof(metadata_payload_header));
1951 metadata_payload_header.stream_id = be64toh(
1952 metadata_payload_header.stream_id);
1953 metadata_payload_header.padding_size = be32toh(
1954 metadata_payload_header.padding_size);
9d1bbf21 1955
5312a3ed 1956 metadata_stream = stream_get_by_id(metadata_payload_header.stream_id);
b8aa1682
JD
1957 if (!metadata_stream) {
1958 ret = -1;
7591bab1 1959 goto end;
b8aa1682
JD
1960 }
1961
c35f9726
JG
1962 packet_view = lttng_buffer_view_from_view(payload,
1963 sizeof(metadata_payload_header), metadata_payload_size);
3e6e0df2 1964 if (!lttng_buffer_view_is_valid(&packet_view)) {
c35f9726 1965 ERR("Invalid metadata packet length announced by header");
b8aa1682 1966 ret = -1;
7591bab1 1967 goto end_put;
b8aa1682 1968 }
1d4dfdef 1969
c35f9726
JG
1970 pthread_mutex_lock(&metadata_stream->lock);
1971 ret = stream_write(metadata_stream, &packet_view,
5312a3ed 1972 metadata_payload_header.padding_size);
c35f9726
JG
1973 pthread_mutex_unlock(&metadata_stream->lock);
1974 if (ret){
5312a3ed 1975 ret = -1;
7591bab1 1976 goto end_put;
1d4dfdef 1977 }
7591bab1 1978end_put:
7591bab1 1979 stream_put(metadata_stream);
b8aa1682
JD
1980end:
1981 return ret;
1982}
1983
1984/*
1985 * relay_send_version: send relayd version number
1986 */
f46376a1
MJ
1987static int relay_send_version(
1988 const struct lttcomm_relayd_hdr *recv_hdr __attribute__((unused)),
5312a3ed
JG
1989 struct relay_connection *conn,
1990 const struct lttng_buffer_view *payload)
b8aa1682 1991{
7f51dcba 1992 int ret;
5312a3ed 1993 ssize_t send_ret;
092b6259 1994 struct lttcomm_relayd_version reply, msg;
87cb6359 1995 bool compatible = true;
b8aa1682 1996
5312a3ed 1997 conn->version_check_done = true;
b8aa1682 1998
092b6259 1999 /* Get version from the other side. */
5312a3ed
JG
2000 if (payload->size < sizeof(msg)) {
2001 ERR("Unexpected payload size in \"relay_send_version\": expected >= %zu bytes, got %zu bytes",
2002 sizeof(msg), payload->size);
092b6259 2003 ret = -1;
092b6259
DG
2004 goto end;
2005 }
2006
5312a3ed
JG
2007 memcpy(&msg, payload->data, sizeof(msg));
2008 msg.major = be32toh(msg.major);
2009 msg.minor = be32toh(msg.minor);
2010
53efb85a 2011 memset(&reply, 0, sizeof(reply));
d83a952c
MD
2012 reply.major = RELAYD_VERSION_COMM_MAJOR;
2013 reply.minor = RELAYD_VERSION_COMM_MINOR;
d4519fa3
JD
2014
2015 /* Major versions must be the same */
5312a3ed 2016 if (reply.major != msg.major) {
6151a90f 2017 DBG("Incompatible major versions (%u vs %u), deleting session",
5312a3ed 2018 reply.major, msg.major);
87cb6359 2019 compatible = false;
d4519fa3
JD
2020 }
2021
58eb9381 2022 conn->major = reply.major;
0f907de1 2023 /* We adapt to the lowest compatible version */
5312a3ed 2024 if (reply.minor <= msg.minor) {
58eb9381 2025 conn->minor = reply.minor;
0f907de1 2026 } else {
5312a3ed 2027 conn->minor = msg.minor;
0f907de1
JD
2028 }
2029
6151a90f
JD
2030 reply.major = htobe32(reply.major);
2031 reply.minor = htobe32(reply.minor);
5312a3ed
JG
2032 send_ret = conn->sock->ops->sendmsg(conn->sock, &reply,
2033 sizeof(reply), 0);
2034 if (send_ret < (ssize_t) sizeof(reply)) {
2035 ERR("Failed to send \"send version\" command reply (ret = %zd)",
2036 send_ret);
2037 ret = -1;
2038 goto end;
2039 } else {
2040 ret = 0;
6151a90f
JD
2041 }
2042
87cb6359
JD
2043 if (!compatible) {
2044 ret = -1;
2045 goto end;
2046 }
2047
58eb9381
DG
2048 DBG("Version check done using protocol %u.%u", conn->major,
2049 conn->minor);
b8aa1682
JD
2050
2051end:
2052 return ret;
2053}
2054
c8f59ee5 2055/*
6d805429 2056 * Check for data pending for a given stream id from the session daemon.
c8f59ee5 2057 */
f46376a1
MJ
2058static int relay_data_pending(
2059 const struct lttcomm_relayd_hdr *recv_hdr __attribute__((unused)),
5312a3ed
JG
2060 struct relay_connection *conn,
2061 const struct lttng_buffer_view *payload)
c8f59ee5 2062{
58eb9381 2063 struct relay_session *session = conn->session;
6d805429 2064 struct lttcomm_relayd_data_pending msg;
c8f59ee5
DG
2065 struct lttcomm_relayd_generic_reply reply;
2066 struct relay_stream *stream;
5312a3ed 2067 ssize_t send_ret;
c8f59ee5 2068 int ret;
298a25ca 2069 uint64_t stream_seq;
c8f59ee5 2070
6d805429 2071 DBG("Data pending command received");
c8f59ee5 2072
5312a3ed 2073 if (!session || !conn->version_check_done) {
c8f59ee5
DG
2074 ERR("Trying to check for data before version check");
2075 ret = -1;
2076 goto end_no_session;
2077 }
2078
5312a3ed
JG
2079 if (payload->size < sizeof(msg)) {
2080 ERR("Unexpected payload size in \"relay_data_pending\": expected >= %zu bytes, got %zu bytes",
2081 sizeof(msg), payload->size);
c8f59ee5
DG
2082 ret = -1;
2083 goto end_no_session;
2084 }
5312a3ed
JG
2085 memcpy(&msg, payload->data, sizeof(msg));
2086 msg.stream_id = be64toh(msg.stream_id);
2087 msg.last_net_seq_num = be64toh(msg.last_net_seq_num);
c8f59ee5 2088
5312a3ed 2089 stream = stream_get_by_id(msg.stream_id);
de91f48a 2090 if (stream == NULL) {
c8f59ee5 2091 ret = -1;
7591bab1 2092 goto end;
c8f59ee5
DG
2093 }
2094
7591bab1
MD
2095 pthread_mutex_lock(&stream->lock);
2096
298a25ca
JG
2097 if (session_streams_have_index(session)) {
2098 /*
2099 * Ensure that both the index and stream data have been
2100 * flushed up to the requested point.
2101 */
ac497a37 2102 stream_seq = std::min(stream->prev_data_seq, stream->prev_index_seq);
298a25ca 2103 } else {
a8f9f353 2104 stream_seq = stream->prev_data_seq;
298a25ca 2105 }
a8f9f353 2106 DBG("Data pending for stream id %" PRIu64 ": prev_data_seq %" PRIu64
298a25ca
JG
2107 ", prev_index_seq %" PRIu64
2108 ", and last_seq %" PRIu64, msg.stream_id,
a8f9f353 2109 stream->prev_data_seq, stream->prev_index_seq,
298a25ca 2110 msg.last_net_seq_num);
c8f59ee5 2111
33832e64 2112 /* Avoid wrapping issue */
298a25ca 2113 if (((int64_t) (stream_seq - msg.last_net_seq_num)) >= 0) {
6d805429 2114 /* Data has in fact been written and is NOT pending */
c8f59ee5 2115 ret = 0;
6d805429
DG
2116 } else {
2117 /* Data still being streamed thus pending */
2118 ret = 1;
c8f59ee5
DG
2119 }
2120
7591bab1
MD
2121 stream->data_pending_check_done = true;
2122 pthread_mutex_unlock(&stream->lock);
f7079f67 2123
7591bab1
MD
2124 stream_put(stream);
2125end:
c8f59ee5 2126
53efb85a 2127 memset(&reply, 0, sizeof(reply));
c8f59ee5 2128 reply.ret_code = htobe32(ret);
5312a3ed
JG
2129 send_ret = conn->sock->ops->sendmsg(conn->sock, &reply, sizeof(reply), 0);
2130 if (send_ret < (ssize_t) sizeof(reply)) {
2131 ERR("Failed to send \"data pending\" command reply (ret = %zd)",
2132 send_ret);
2133 ret = -1;
c8f59ee5
DG
2134 }
2135
2136end_no_session:
2137 return ret;
2138}
2139
2140/*
2141 * Wait for the control socket to reach a quiescent state.
2142 *
7591bab1
MD
2143 * Note that for now, when receiving this command from the session
2144 * daemon, this means that every subsequent commands or data received on
2145 * the control socket has been handled. So, this is why we simply return
2146 * OK here.
c8f59ee5 2147 */
f46376a1
MJ
2148static int relay_quiescent_control(
2149 const struct lttcomm_relayd_hdr *recv_hdr __attribute__((unused)),
5312a3ed
JG
2150 struct relay_connection *conn,
2151 const struct lttng_buffer_view *payload)
c8f59ee5
DG
2152{
2153 int ret;
5312a3ed 2154 ssize_t send_ret;
ad7051c0 2155 struct relay_stream *stream;
ad7051c0 2156 struct lttcomm_relayd_quiescent_control msg;
c8f59ee5
DG
2157 struct lttcomm_relayd_generic_reply reply;
2158
2159 DBG("Checking quiescent state on control socket");
2160
5312a3ed 2161 if (!conn->session || !conn->version_check_done) {
ad7051c0
DG
2162 ERR("Trying to check for data before version check");
2163 ret = -1;
2164 goto end_no_session;
2165 }
2166
5312a3ed
JG
2167 if (payload->size < sizeof(msg)) {
2168 ERR("Unexpected payload size in \"relay_quiescent_control\": expected >= %zu bytes, got %zu bytes",
2169 sizeof(msg), payload->size);
ad7051c0
DG
2170 ret = -1;
2171 goto end_no_session;
2172 }
5312a3ed
JG
2173 memcpy(&msg, payload->data, sizeof(msg));
2174 msg.stream_id = be64toh(msg.stream_id);
ad7051c0 2175
5312a3ed 2176 stream = stream_get_by_id(msg.stream_id);
7591bab1
MD
2177 if (!stream) {
2178 goto reply;
2179 }
2180 pthread_mutex_lock(&stream->lock);
2181 stream->data_pending_check_done = true;
2182 pthread_mutex_unlock(&stream->lock);
5312a3ed
JG
2183
2184 DBG("Relay quiescent control pending flag set to %" PRIu64, msg.stream_id);
7591bab1
MD
2185 stream_put(stream);
2186reply:
53efb85a 2187 memset(&reply, 0, sizeof(reply));
c8f59ee5 2188 reply.ret_code = htobe32(LTTNG_OK);
5312a3ed
JG
2189 send_ret = conn->sock->ops->sendmsg(conn->sock, &reply, sizeof(reply), 0);
2190 if (send_ret < (ssize_t) sizeof(reply)) {
2191 ERR("Failed to send \"quiescent control\" command reply (ret = %zd)",
2192 send_ret);
2193 ret = -1;
2194 } else {
2195 ret = 0;
c8f59ee5
DG
2196 }
2197
ad7051c0 2198end_no_session:
c8f59ee5
DG
2199 return ret;
2200}
2201
f7079f67 2202/*
7591bab1
MD
2203 * Initialize a data pending command. This means that a consumer is about
2204 * to ask for data pending for each stream it holds. Simply iterate over
2205 * all streams of a session and set the data_pending_check_done flag.
f7079f67
DG
2206 *
2207 * This command returns to the client a LTTNG_OK code.
2208 */
5312a3ed
JG
2209static int relay_begin_data_pending(const struct lttcomm_relayd_hdr *recv_hdr,
2210 struct relay_connection *conn,
2211 const struct lttng_buffer_view *payload)
f7079f67
DG
2212{
2213 int ret;
5312a3ed 2214 ssize_t send_ret;
f7079f67
DG
2215 struct lttng_ht_iter iter;
2216 struct lttcomm_relayd_begin_data_pending msg;
2217 struct lttcomm_relayd_generic_reply reply;
2218 struct relay_stream *stream;
f7079f67 2219
a0377dfe
FD
2220 LTTNG_ASSERT(recv_hdr);
2221 LTTNG_ASSERT(conn);
f7079f67
DG
2222
2223 DBG("Init streams for data pending");
2224
5312a3ed 2225 if (!conn->session || !conn->version_check_done) {
f7079f67
DG
2226 ERR("Trying to check for data before version check");
2227 ret = -1;
2228 goto end_no_session;
2229 }
2230
5312a3ed
JG
2231 if (payload->size < sizeof(msg)) {
2232 ERR("Unexpected payload size in \"relay_begin_data_pending\": expected >= %zu bytes, got %zu bytes",
2233 sizeof(msg), payload->size);
f7079f67
DG
2234 ret = -1;
2235 goto end_no_session;
2236 }
5312a3ed
JG
2237 memcpy(&msg, payload->data, sizeof(msg));
2238 msg.session_id = be64toh(msg.session_id);
f7079f67
DG
2239
2240 /*
7591bab1
MD
2241 * Iterate over all streams to set the begin data pending flag.
2242 * For now, the streams are indexed by stream handle so we have
2243 * to iterate over all streams to find the one associated with
2244 * the right session_id.
f7079f67
DG
2245 */
2246 rcu_read_lock();
d3e2ba59 2247 cds_lfht_for_each_entry(relay_streams_ht->ht, &iter.iter, stream,
2a174661 2248 node.node) {
7591bab1
MD
2249 if (!stream_get(stream)) {
2250 continue;
2251 }
5312a3ed 2252 if (stream->trace->session->id == msg.session_id) {
7591bab1
MD
2253 pthread_mutex_lock(&stream->lock);
2254 stream->data_pending_check_done = false;
2255 pthread_mutex_unlock(&stream->lock);
f7079f67
DG
2256 DBG("Set begin data pending flag to stream %" PRIu64,
2257 stream->stream_handle);
2258 }
7591bab1 2259 stream_put(stream);
f7079f67
DG
2260 }
2261 rcu_read_unlock();
2262
53efb85a 2263 memset(&reply, 0, sizeof(reply));
f7079f67
DG
2264 /* All good, send back reply. */
2265 reply.ret_code = htobe32(LTTNG_OK);
2266
5312a3ed
JG
2267 send_ret = conn->sock->ops->sendmsg(conn->sock, &reply, sizeof(reply), 0);
2268 if (send_ret < (ssize_t) sizeof(reply)) {
2269 ERR("Failed to send \"begin data pending\" command reply (ret = %zd)",
2270 send_ret);
2271 ret = -1;
2272 } else {
2273 ret = 0;
f7079f67
DG
2274 }
2275
2276end_no_session:
2277 return ret;
2278}
2279
2280/*
7591bab1
MD
2281 * End data pending command. This will check, for a given session id, if
2282 * each stream associated with it has its data_pending_check_done flag
2283 * set. If not, this means that the client lost track of the stream but
2284 * the data is still being streamed on our side. In this case, we inform
2285 * the client that data is in flight.
f7079f67
DG
2286 *
2287 * Return to the client if there is data in flight or not with a ret_code.
2288 */
f46376a1
MJ
2289static int relay_end_data_pending(
2290 const struct lttcomm_relayd_hdr *recv_hdr __attribute__((unused)),
5312a3ed
JG
2291 struct relay_connection *conn,
2292 const struct lttng_buffer_view *payload)
f7079f67
DG
2293{
2294 int ret;
5312a3ed 2295 ssize_t send_ret;
f7079f67
DG
2296 struct lttng_ht_iter iter;
2297 struct lttcomm_relayd_end_data_pending msg;
2298 struct lttcomm_relayd_generic_reply reply;
2299 struct relay_stream *stream;
f7079f67
DG
2300 uint32_t is_data_inflight = 0;
2301
f7079f67
DG
2302 DBG("End data pending command");
2303
5312a3ed 2304 if (!conn->session || !conn->version_check_done) {
f7079f67
DG
2305 ERR("Trying to check for data before version check");
2306 ret = -1;
2307 goto end_no_session;
2308 }
2309
5312a3ed
JG
2310 if (payload->size < sizeof(msg)) {
2311 ERR("Unexpected payload size in \"relay_end_data_pending\": expected >= %zu bytes, got %zu bytes",
2312 sizeof(msg), payload->size);
f7079f67
DG
2313 ret = -1;
2314 goto end_no_session;
2315 }
5312a3ed
JG
2316 memcpy(&msg, payload->data, sizeof(msg));
2317 msg.session_id = be64toh(msg.session_id);
f7079f67 2318
7591bab1
MD
2319 /*
2320 * Iterate over all streams to see if the begin data pending
2321 * flag is set.
2322 */
f7079f67 2323 rcu_read_lock();
d3e2ba59 2324 cds_lfht_for_each_entry(relay_streams_ht->ht, &iter.iter, stream,
2a174661 2325 node.node) {
7591bab1
MD
2326 if (!stream_get(stream)) {
2327 continue;
2328 }
5312a3ed 2329 if (stream->trace->session->id != msg.session_id) {
7591bab1
MD
2330 stream_put(stream);
2331 continue;
2332 }
2333 pthread_mutex_lock(&stream->lock);
2334 if (!stream->data_pending_check_done) {
298a25ca
JG
2335 uint64_t stream_seq;
2336
2337 if (session_streams_have_index(conn->session)) {
2338 /*
2339 * Ensure that both the index and stream data have been
2340 * flushed up to the requested point.
2341 */
ac497a37 2342 stream_seq = std::min(stream->prev_data_seq, stream->prev_index_seq);
298a25ca 2343 } else {
a8f9f353 2344 stream_seq = stream->prev_data_seq;
298a25ca
JG
2345 }
2346 if (!stream->closed || !(((int64_t) (stream_seq - stream->last_net_seq_num)) >= 0)) {
7591bab1
MD
2347 is_data_inflight = 1;
2348 DBG("Data is still in flight for stream %" PRIu64,
2349 stream->stream_handle);
2350 pthread_mutex_unlock(&stream->lock);
2351 stream_put(stream);
2352 break;
2353 }
f7079f67 2354 }
7591bab1
MD
2355 pthread_mutex_unlock(&stream->lock);
2356 stream_put(stream);
f7079f67
DG
2357 }
2358 rcu_read_unlock();
2359
53efb85a 2360 memset(&reply, 0, sizeof(reply));
f7079f67
DG
2361 /* All good, send back reply. */
2362 reply.ret_code = htobe32(is_data_inflight);
2363
5312a3ed
JG
2364 send_ret = conn->sock->ops->sendmsg(conn->sock, &reply, sizeof(reply), 0);
2365 if (send_ret < (ssize_t) sizeof(reply)) {
2366 ERR("Failed to send \"end data pending\" command reply (ret = %zd)",
2367 send_ret);
2368 ret = -1;
2369 } else {
2370 ret = 0;
f7079f67
DG
2371 }
2372
2373end_no_session:
2374 return ret;
2375}
2376
1c20f0e2
JD
2377/*
2378 * Receive an index for a specific stream.
2379 *
2380 * Return 0 on success else a negative value.
2381 */
f46376a1
MJ
2382static int relay_recv_index(
2383 const struct lttcomm_relayd_hdr *recv_hdr __attribute__((unused)),
5312a3ed
JG
2384 struct relay_connection *conn,
2385 const struct lttng_buffer_view *payload)
1c20f0e2 2386{
5312a3ed
JG
2387 int ret;
2388 ssize_t send_ret;
58eb9381 2389 struct relay_session *session = conn->session;
1c20f0e2 2390 struct lttcomm_relayd_index index_info;
1c20f0e2
JD
2391 struct lttcomm_relayd_generic_reply reply;
2392 struct relay_stream *stream;
f8f3885c 2393 size_t msg_len;
1c20f0e2 2394
a0377dfe 2395 LTTNG_ASSERT(conn);
1c20f0e2
JD
2396
2397 DBG("Relay receiving index");
2398
5312a3ed 2399 if (!session || !conn->version_check_done) {
1c20f0e2
JD
2400 ERR("Trying to close a stream before version check");
2401 ret = -1;
2402 goto end_no_session;
2403 }
2404
f8f3885c
MD
2405 msg_len = lttcomm_relayd_index_len(
2406 lttng_to_index_major(conn->major, conn->minor),
2407 lttng_to_index_minor(conn->major, conn->minor));
5312a3ed
JG
2408 if (payload->size < msg_len) {
2409 ERR("Unexpected payload size in \"relay_recv_index\": expected >= %zu bytes, got %zu bytes",
2410 msg_len, payload->size);
1c20f0e2
JD
2411 ret = -1;
2412 goto end_no_session;
2413 }
5312a3ed
JG
2414 memcpy(&index_info, payload->data, msg_len);
2415 index_info.relay_stream_id = be64toh(index_info.relay_stream_id);
2416 index_info.net_seq_num = be64toh(index_info.net_seq_num);
2417 index_info.packet_size = be64toh(index_info.packet_size);
2418 index_info.content_size = be64toh(index_info.content_size);
2419 index_info.timestamp_begin = be64toh(index_info.timestamp_begin);
2420 index_info.timestamp_end = be64toh(index_info.timestamp_end);
2421 index_info.events_discarded = be64toh(index_info.events_discarded);
2422 index_info.stream_id = be64toh(index_info.stream_id);
81df238b
JR
2423
2424 if (conn->minor >= 8) {
2425 index_info.stream_instance_id =
2426 be64toh(index_info.stream_instance_id);
2427 index_info.packet_seq_num = be64toh(index_info.packet_seq_num);
0f83d1cc
MD
2428 } else {
2429 index_info.stream_instance_id = -1ULL;
2430 index_info.packet_seq_num = -1ULL;
81df238b 2431 }
5312a3ed
JG
2432
2433 stream = stream_get_by_id(index_info.relay_stream_id);
1c20f0e2 2434 if (!stream) {
7591bab1 2435 ERR("stream_get_by_id not found");
1c20f0e2 2436 ret = -1;
7591bab1 2437 goto end;
1c20f0e2 2438 }
d3e2ba59 2439
c35f9726
JG
2440 pthread_mutex_lock(&stream->lock);
2441 ret = stream_add_index(stream, &index_info);
2442 pthread_mutex_unlock(&stream->lock);
2443 if (ret) {
7591bab1
MD
2444 goto end_stream_put;
2445 }
1c20f0e2 2446
7591bab1 2447end_stream_put:
7591bab1 2448 stream_put(stream);
7591bab1 2449end:
53efb85a 2450 memset(&reply, 0, sizeof(reply));
1c20f0e2
JD
2451 if (ret < 0) {
2452 reply.ret_code = htobe32(LTTNG_ERR_UNK);
2453 } else {
2454 reply.ret_code = htobe32(LTTNG_OK);
2455 }
58eb9381 2456 send_ret = conn->sock->ops->sendmsg(conn->sock, &reply, sizeof(reply), 0);
5312a3ed
JG
2457 if (send_ret < (ssize_t) sizeof(reply)) {
2458 ERR("Failed to send \"recv index\" command reply (ret = %zd)", send_ret);
2459 ret = -1;
1c20f0e2
JD
2460 }
2461
2462end_no_session:
2463 return ret;
2464}
2465
a4baae1b
JD
2466/*
2467 * Receive the streams_sent message.
2468 *
2469 * Return 0 on success else a negative value.
2470 */
f46376a1
MJ
2471static int relay_streams_sent(
2472 const struct lttcomm_relayd_hdr *recv_hdr __attribute__((unused)),
5312a3ed 2473 struct relay_connection *conn,
f46376a1 2474 const struct lttng_buffer_view *payload __attribute__((unused)))
a4baae1b 2475{
5312a3ed
JG
2476 int ret;
2477 ssize_t send_ret;
a4baae1b
JD
2478 struct lttcomm_relayd_generic_reply reply;
2479
a0377dfe 2480 LTTNG_ASSERT(conn);
a4baae1b
JD
2481
2482 DBG("Relay receiving streams_sent");
2483
5312a3ed 2484 if (!conn->session || !conn->version_check_done) {
a4baae1b
JD
2485 ERR("Trying to close a stream before version check");
2486 ret = -1;
2487 goto end_no_session;
2488 }
2489
2490 /*
7591bab1
MD
2491 * Publish every pending stream in the connection recv list which are
2492 * now ready to be used by the viewer.
4a9daf17 2493 */
7591bab1 2494 publish_connection_local_streams(conn);
4a9daf17 2495
53efb85a 2496 memset(&reply, 0, sizeof(reply));
a4baae1b 2497 reply.ret_code = htobe32(LTTNG_OK);
58eb9381 2498 send_ret = conn->sock->ops->sendmsg(conn->sock, &reply, sizeof(reply), 0);
5312a3ed
JG
2499 if (send_ret < (ssize_t) sizeof(reply)) {
2500 ERR("Failed to send \"streams sent\" command reply (ret = %zd)",
2501 send_ret);
2502 ret = -1;
a4baae1b
JD
2503 } else {
2504 /* Success. */
2505 ret = 0;
2506 }
2507
2508end_no_session:
2509 return ret;
2510}
2511
ce9dbd47
JG
2512static ssize_t relay_unpack_rotate_streams_header(
2513 const struct lttng_buffer_view *payload,
2514 struct lttcomm_relayd_rotate_streams *_rotate_streams)
2515{
2516 struct lttcomm_relayd_rotate_streams rotate_streams;
2517 /*
2518 * Set to the smallest version (packed) of `lttcomm_relayd_rotate_streams`.
2519 * This is the smallest version of this structure, but it can be larger;
2520 * this variable is updated once the proper size of the structure is known.
2521 *
2522 * See comment at the declaration of this structure for more information.
2523 */
2524 ssize_t header_len = sizeof(struct lttcomm_relayd_rotate_streams_packed);
2525 size_t expected_payload_size_no_padding,
2526 expected_payload_size_3_bytes_padding,
2527 expected_payload_size_7_bytes_padding;
2528
2529 if (payload->size < header_len) {
2530 ERR("Unexpected payload size in \"relay_rotate_session_stream\": expected >= %zu bytes, got %zu bytes",
2531 header_len, payload->size);
2532 goto error;
2533 }
2534
2535 /*
2536 * Some versions incorrectly omitted the LTTNG_PACKED annotation on the
2537 * `new_chunk_id` optional field of struct lttcomm_relayd_rotate_streams.
2538 *
2539 * We start by "unpacking" `stream_count` to figure out the padding length
2540 * emited by our peer.
2541 */
11bcbf89
JG
2542 {
2543 decltype(rotate_streams.stream_count) stream_count;
2544
2545 memcpy(&stream_count, payload->data, sizeof(stream_count));
2546 rotate_streams.stream_count = be32toh(stream_count);
2547 }
2548
2549 rotate_streams.new_chunk_id = LTTNG_OPTIONAL_INIT_UNSET;
ce9dbd47
JG
2550
2551 /*
2552 * Payload size expected given the possible padding lengths in
2553 * `struct lttcomm_relayd_rotate_streams`.
2554 */
2555 expected_payload_size_no_padding = (rotate_streams.stream_count *
2556 sizeof(*rotate_streams.rotation_positions)) +
2557 sizeof(lttcomm_relayd_rotate_streams_packed);
2558 expected_payload_size_3_bytes_padding = (rotate_streams.stream_count *
2559 sizeof(*rotate_streams.rotation_positions)) +
2560 sizeof(lttcomm_relayd_rotate_streams_3_bytes_padding);
2561 expected_payload_size_7_bytes_padding = (rotate_streams.stream_count *
2562 sizeof(*rotate_streams.rotation_positions)) +
2563 sizeof(lttcomm_relayd_rotate_streams_7_bytes_padding);
2564
2565 if (payload->size == expected_payload_size_no_padding) {
2566 struct lttcomm_relayd_rotate_streams_packed packed_rotate_streams;
2567
2568 /*
2569 * This handles cases where someone might build with
2570 * -fpack-struct or any other toolchain that wouldn't produce
2571 * padding to align `value`.
2572 */
2573 DBG("Received `struct lttcomm_relayd_rotate_streams` with no padding");
2574
2575 header_len = sizeof(packed_rotate_streams);
2576 memcpy(&packed_rotate_streams, payload->data, header_len);
2577
2578 /* Unpack the packed structure to the natively-packed version. */
11bcbf89
JG
2579 _rotate_streams->new_chunk_id = (typeof(_rotate_streams->new_chunk_id)){
2580 .is_set = !!packed_rotate_streams.new_chunk_id.is_set,
2581 .value = be64toh(packed_rotate_streams.new_chunk_id.value),
ce9dbd47 2582 };
11bcbf89 2583 _rotate_streams->stream_count = be32toh(packed_rotate_streams.stream_count);
ce9dbd47
JG
2584 } else if (payload->size == expected_payload_size_3_bytes_padding) {
2585 struct lttcomm_relayd_rotate_streams_3_bytes_padding padded_rotate_streams;
2586
2587 DBG("Received `struct lttcomm_relayd_rotate_streams` with 3 bytes of padding (4-byte aligned peer)");
2588
2589 header_len = sizeof(padded_rotate_streams);
2590 memcpy(&padded_rotate_streams, payload->data, header_len);
2591
2592 /* Unpack the 3-byte padded structure to the natively-packed version. */
11bcbf89
JG
2593 _rotate_streams->new_chunk_id = (typeof(_rotate_streams->new_chunk_id)){
2594 .is_set = !!padded_rotate_streams.new_chunk_id.is_set,
2595 .value = be64toh(padded_rotate_streams.new_chunk_id.value),
ce9dbd47 2596 };
11bcbf89 2597 _rotate_streams->stream_count = be32toh(padded_rotate_streams.stream_count);
ce9dbd47
JG
2598 } else if (payload->size == expected_payload_size_7_bytes_padding) {
2599 struct lttcomm_relayd_rotate_streams_7_bytes_padding padded_rotate_streams;
2600
2601 DBG("Received `struct lttcomm_relayd_rotate_streams` with 7 bytes of padding (8-byte aligned peer)");
2602
2603 header_len = sizeof(padded_rotate_streams);
2604 memcpy(&padded_rotate_streams, payload->data, header_len);
2605
2606 /* Unpack the 7-byte padded structure to the natively-packed version. */
11bcbf89
JG
2607 _rotate_streams->new_chunk_id = (typeof(_rotate_streams->new_chunk_id)){
2608 .is_set = !!padded_rotate_streams.new_chunk_id.is_set,
2609 .value = be64toh(padded_rotate_streams.new_chunk_id.value),
ce9dbd47 2610 };
11bcbf89 2611 _rotate_streams->stream_count = be32toh(padded_rotate_streams.stream_count);
ce9dbd47
JG
2612
2613 header_len = sizeof(padded_rotate_streams);
2614 } else {
2615 ERR("Unexpected payload size in \"relay_rotate_session_stream\": expected %zu, %zu or %zu bytes, got %zu bytes",
2616 expected_payload_size_no_padding,
2617 expected_payload_size_3_bytes_padding,
2618 expected_payload_size_7_bytes_padding,
2619 payload->size);
2620 goto error;
2621 }
2622
2623 return header_len;
2624error:
2625 return -1;
2626}
2627
d3ecc550 2628/*
c35f9726
JG
2629 * relay_rotate_session_stream: rotate a stream to a new tracefile for the
2630 * session rotation feature (not the tracefile rotation feature).
d3ecc550 2631 */
c35f9726 2632static int relay_rotate_session_streams(
f46376a1 2633 const struct lttcomm_relayd_hdr *recv_hdr __attribute__((unused)),
5312a3ed
JG
2634 struct relay_connection *conn,
2635 const struct lttng_buffer_view *payload)
d3ecc550 2636{
30b9d5ab 2637 int ret = 0;
c35f9726 2638 uint32_t i;
5312a3ed 2639 ssize_t send_ret;
c35f9726 2640 enum lttng_error_code reply_code = LTTNG_ERR_UNK;
d3ecc550 2641 struct relay_session *session = conn->session;
c35f9726
JG
2642 struct lttcomm_relayd_rotate_streams rotate_streams;
2643 struct lttcomm_relayd_generic_reply reply = {};
2644 struct relay_stream *stream = NULL;
c35f9726
JG
2645 struct lttng_trace_chunk *next_trace_chunk = NULL;
2646 struct lttng_buffer_view stream_positions;
70626904
JG
2647 char chunk_id_buf[MAX_INT_DEC_LEN(uint64_t)];
2648 const char *chunk_id_str = "none";
ce9dbd47 2649 ssize_t header_len;
d3ecc550 2650
d3ecc550
JD
2651 if (!session || !conn->version_check_done) {
2652 ERR("Trying to rotate a stream before version check");
2653 ret = -1;
2654 goto end_no_reply;
2655 }
2656
2657 if (session->major == 2 && session->minor < 11) {
2658 ERR("Unsupported feature before 2.11");
2659 ret = -1;
2660 goto end_no_reply;
2661 }
2662
ce9dbd47
JG
2663 header_len = relay_unpack_rotate_streams_header(payload, &rotate_streams);
2664 if (header_len < 0) {
d3ecc550
JD
2665 ret = -1;
2666 goto end_no_reply;
2667 }
2668
c35f9726
JG
2669 if (rotate_streams.new_chunk_id.is_set) {
2670 /*
2671 * Retrieve the trace chunk the stream must transition to. As
2672 * per the protocol, this chunk should have been created
2673 * before this command is received.
2674 */
2675 next_trace_chunk = sessiond_trace_chunk_registry_get_chunk(
2676 sessiond_trace_chunk_registry,
c5c79321
JG
2677 session->sessiond_uuid,
2678 conn->session->id_sessiond.is_set ?
2679 conn->session->id_sessiond.value :
2680 conn->session->id,
c35f9726
JG
2681 rotate_streams.new_chunk_id.value);
2682 if (!next_trace_chunk) {
c70636a7 2683 char uuid_str[LTTNG_UUID_STR_LEN];
c35f9726
JG
2684
2685 lttng_uuid_to_str(session->sessiond_uuid, uuid_str);
2686 ERR("Unknown next trace chunk in ROTATE_STREAMS command: sessiond_uuid = {%s}, session_id = %" PRIu64
2687 ", trace_chunk_id = %" PRIu64,
2688 uuid_str, session->id,
2689 rotate_streams.new_chunk_id.value);
2690 reply_code = LTTNG_ERR_INVALID_PROTOCOL;
2691 ret = -1;
2692 goto end;
2693 }
70626904
JG
2694
2695 ret = snprintf(chunk_id_buf, sizeof(chunk_id_buf), "%" PRIu64,
2696 rotate_streams.new_chunk_id.value);
2697 if (ret < 0 || ret >= sizeof(chunk_id_buf)) {
2698 chunk_id_str = "formatting error";
2699 } else {
2700 chunk_id_str = chunk_id_buf;
2701 }
d3ecc550
JD
2702 }
2703
70626904
JG
2704 DBG("Rotate %" PRIu32 " streams of session \"%s\" to chunk \"%s\"",
2705 rotate_streams.stream_count, session->session_name,
2706 chunk_id_str);
2707
c35f9726 2708 stream_positions = lttng_buffer_view_from_view(payload,
ce9dbd47 2709 header_len, -1);
c35f9726
JG
2710 if (!stream_positions.data ||
2711 stream_positions.size <
2712 (rotate_streams.stream_count *
2713 sizeof(struct lttcomm_relayd_stream_rotation_position))) {
2714 reply_code = LTTNG_ERR_INVALID_PROTOCOL;
d3ecc550 2715 ret = -1;
5312a3ed 2716 goto end;
d3ecc550
JD
2717 }
2718
c35f9726
JG
2719 for (i = 0; i < rotate_streams.stream_count; i++) {
2720 struct lttcomm_relayd_stream_rotation_position *position_comm =
2721 &((typeof(position_comm)) stream_positions.data)[i];
2722 const struct lttcomm_relayd_stream_rotation_position pos = {
2723 .stream_id = be64toh(position_comm->stream_id),
2724 .rotate_at_seq_num = be64toh(
2725 position_comm->rotate_at_seq_num),
2726 };
5312a3ed 2727
c35f9726
JG
2728 stream = stream_get_by_id(pos.stream_id);
2729 if (!stream) {
2730 reply_code = LTTNG_ERR_INVALID;
2731 ret = -1;
2732 goto end;
c6db3843
JG
2733 }
2734
c35f9726
JG
2735 pthread_mutex_lock(&stream->lock);
2736 ret = stream_set_pending_rotation(stream, next_trace_chunk,
2737 pos.rotate_at_seq_num);
2738 pthread_mutex_unlock(&stream->lock);
2739 if (ret) {
2740 reply_code = LTTNG_ERR_FILE_CREATION_ERROR;
2741 goto end;
c6db3843 2742 }
c35f9726
JG
2743
2744 stream_put(stream);
2745 stream = NULL;
d3ecc550
JD
2746 }
2747
c35f9726 2748 reply_code = LTTNG_OK;
eaeb64a9 2749 ret = 0;
d3ecc550 2750end:
c35f9726
JG
2751 if (stream) {
2752 stream_put(stream);
d3ecc550 2753 }
c35f9726
JG
2754
2755 reply.ret_code = htobe32((uint32_t) reply_code);
d3ecc550
JD
2756 send_ret = conn->sock->ops->sendmsg(conn->sock, &reply,
2757 sizeof(struct lttcomm_relayd_generic_reply), 0);
5312a3ed
JG
2758 if (send_ret < (ssize_t) sizeof(reply)) {
2759 ERR("Failed to send \"rotate session stream\" command reply (ret = %zd)",
2760 send_ret);
2761 ret = -1;
d3ecc550 2762 }
d3ecc550 2763end_no_reply:
c35f9726 2764 lttng_trace_chunk_put(next_trace_chunk);
d3ecc550
JD
2765 return ret;
2766}
2767
e5add6d0
JG
2768/*
2769 * relay_create_trace_chunk: create a new trace chunk
2770 */
f46376a1
MJ
2771static int relay_create_trace_chunk(
2772 const struct lttcomm_relayd_hdr *recv_hdr __attribute__((unused)),
e5add6d0
JG
2773 struct relay_connection *conn,
2774 const struct lttng_buffer_view *payload)
2775{
2776 int ret = 0;
2777 ssize_t send_ret;
2778 struct relay_session *session = conn->session;
2779 struct lttcomm_relayd_create_trace_chunk *msg;
2780 struct lttcomm_relayd_generic_reply reply = {};
2781 struct lttng_buffer_view header_view;
e5add6d0
JG
2782 struct lttng_trace_chunk *chunk = NULL, *published_chunk = NULL;
2783 enum lttng_error_code reply_code = LTTNG_OK;
2784 enum lttng_trace_chunk_status chunk_status;
a7ceb342 2785 const char *new_path;
e5add6d0
JG
2786
2787 if (!session || !conn->version_check_done) {
2788 ERR("Trying to create a trace chunk before version check");
2789 ret = -1;
2790 goto end_no_reply;
2791 }
2792
2793 if (session->major == 2 && session->minor < 11) {
2794 ERR("Chunk creation command is unsupported before 2.11");
2795 ret = -1;
2796 goto end_no_reply;
2797 }
2798
2799 header_view = lttng_buffer_view_from_view(payload, 0, sizeof(*msg));
3e6e0df2 2800 if (!lttng_buffer_view_is_valid(&header_view)) {
e5add6d0
JG
2801 ERR("Failed to receive payload of chunk creation command");
2802 ret = -1;
2803 goto end_no_reply;
2804 }
2805
2806 /* Convert to host endianness. */
2807 msg = (typeof(msg)) header_view.data;
2808 msg->chunk_id = be64toh(msg->chunk_id);
2809 msg->creation_timestamp = be64toh(msg->creation_timestamp);
2810 msg->override_name_length = be32toh(msg->override_name_length);
2811
8cd15f6a
MD
2812 pthread_mutex_lock(&conn->session->lock);
2813 session->ongoing_rotation = true;
a7ceb342
MD
2814 if (session->current_trace_chunk &&
2815 !lttng_trace_chunk_get_name_overridden(session->current_trace_chunk)) {
2816 chunk_status = lttng_trace_chunk_rename_path(session->current_trace_chunk,
2817 DEFAULT_CHUNK_TMP_OLD_DIRECTORY);
2818 if (chunk_status != LTTNG_TRACE_CHUNK_STATUS_OK) {
2819 ERR("Failed to rename old chunk");
2820 ret = -1;
2821 reply_code = LTTNG_ERR_UNK;
2822 goto end;
2823 }
2824 }
a7ceb342
MD
2825 if (!session->current_trace_chunk) {
2826 if (!session->has_rotated) {
2827 new_path = "";
2828 } else {
2829 new_path = NULL;
2830 }
2831 } else {
2832 new_path = DEFAULT_CHUNK_TMP_NEW_DIRECTORY;
2833 }
e5add6d0 2834 chunk = lttng_trace_chunk_create(
a7ceb342 2835 msg->chunk_id, msg->creation_timestamp, new_path);
e5add6d0
JG
2836 if (!chunk) {
2837 ERR("Failed to create trace chunk in trace chunk creation command");
2838 ret = -1;
2839 reply_code = LTTNG_ERR_NOMEM;
2840 goto end;
2841 }
7145f5e9 2842 lttng_trace_chunk_set_fd_tracker(chunk, the_fd_tracker);
e5add6d0
JG
2843
2844 if (msg->override_name_length) {
2845 const char *name;
3e6e0df2
JG
2846 const struct lttng_buffer_view chunk_name_view =
2847 lttng_buffer_view_from_view(payload,
2848 sizeof(*msg),
2849 msg->override_name_length);
2850
2851 if (!lttng_buffer_view_is_valid(&chunk_name_view)) {
2852 ERR("Invalid payload of chunk creation command (protocol error): buffer too short for expected name length");
2853 ret = -1;
2854 reply_code = LTTNG_ERR_INVALID;
2855 goto end;
2856 }
e5add6d0 2857
e5add6d0 2858 name = chunk_name_view.data;
3e6e0df2
JG
2859 if (name[msg->override_name_length - 1]) {
2860 ERR("Invalid payload of chunk creation command (protocol error): name is not null-terminated");
e5add6d0
JG
2861 ret = -1;
2862 reply_code = LTTNG_ERR_INVALID;
2863 goto end;
2864 }
2865
2866 chunk_status = lttng_trace_chunk_override_name(
2867 chunk, chunk_name_view.data);
2868 switch (chunk_status) {
2869 case LTTNG_TRACE_CHUNK_STATUS_OK:
2870 break;
2871 case LTTNG_TRACE_CHUNK_STATUS_INVALID_ARGUMENT:
2872 ERR("Failed to set the name of new trace chunk in trace chunk creation command (invalid name)");
2873 reply_code = LTTNG_ERR_INVALID;
2874 ret = -1;
2875 goto end;
2876 default:
2877 ERR("Failed to set the name of new trace chunk in trace chunk creation command (unknown error)");
2878 reply_code = LTTNG_ERR_UNK;
2879 ret = -1;
2880 goto end;
2881 }
2882 }
2883
e5add6d0
JG
2884 chunk_status = lttng_trace_chunk_set_credentials_current_user(chunk);
2885 if (chunk_status != LTTNG_TRACE_CHUNK_STATUS_OK) {
2886 reply_code = LTTNG_ERR_UNK;
2887 ret = -1;
2888 goto end;
2889 }
2890
a0377dfe 2891 LTTNG_ASSERT(conn->session->output_directory);
7ceefac4
JG
2892 chunk_status = lttng_trace_chunk_set_as_owner(chunk,
2893 conn->session->output_directory);
e5add6d0
JG
2894 if (chunk_status != LTTNG_TRACE_CHUNK_STATUS_OK) {
2895 reply_code = LTTNG_ERR_UNK;
2896 ret = -1;
2897 goto end;
2898 }
2899
2900 published_chunk = sessiond_trace_chunk_registry_publish_chunk(
2901 sessiond_trace_chunk_registry,
2902 conn->session->sessiond_uuid,
c5c79321
JG
2903 conn->session->id_sessiond.is_set ?
2904 conn->session->id_sessiond.value :
2905 conn->session->id,
e5add6d0
JG
2906 chunk);
2907 if (!published_chunk) {
c70636a7 2908 char uuid_str[LTTNG_UUID_STR_LEN];
e5add6d0
JG
2909
2910 lttng_uuid_to_str(conn->session->sessiond_uuid, uuid_str);
2911 ERR("Failed to publish chunk: sessiond_uuid = %s, session_id = %" PRIu64 ", chunk_id = %" PRIu64,
2912 uuid_str,
2913 conn->session->id,
2914 msg->chunk_id);
2915 ret = -1;
2916 reply_code = LTTNG_ERR_NOMEM;
2917 goto end;
2918 }
2919
62bad3bf
JG
2920 if (conn->session->pending_closure_trace_chunk) {
2921 /*
2922 * Invalid; this means a second create_trace_chunk command was
2923 * received before a close_trace_chunk.
2924 */
2925 ERR("Invalid trace chunk close command received; a trace chunk is already waiting for a trace chunk close command");
2926 reply_code = LTTNG_ERR_INVALID_PROTOCOL;
2927 ret = -1;
8cd15f6a 2928 goto end;
62bad3bf
JG
2929 }
2930 conn->session->pending_closure_trace_chunk =
2931 conn->session->current_trace_chunk;
e5add6d0 2932 conn->session->current_trace_chunk = published_chunk;
e5add6d0 2933 published_chunk = NULL;
a7ceb342
MD
2934 if (!conn->session->pending_closure_trace_chunk) {
2935 session->ongoing_rotation = false;
2936 }
e5add6d0 2937end:
8cd15f6a 2938 pthread_mutex_unlock(&conn->session->lock);
e5add6d0
JG
2939 reply.ret_code = htobe32((uint32_t) reply_code);
2940 send_ret = conn->sock->ops->sendmsg(conn->sock,
2941 &reply,
2942 sizeof(struct lttcomm_relayd_generic_reply),
2943 0);
2944 if (send_ret < (ssize_t) sizeof(reply)) {
2945 ERR("Failed to send \"create trace chunk\" command reply (ret = %zd)",
2946 send_ret);
2947 ret = -1;
2948 }
2949end_no_reply:
2950 lttng_trace_chunk_put(chunk);
2951 lttng_trace_chunk_put(published_chunk);
e5add6d0
JG
2952 return ret;
2953}
2954
bbc4768c
JG
2955/*
2956 * relay_close_trace_chunk: close a trace chunk
2957 */
f46376a1
MJ
2958static int relay_close_trace_chunk(
2959 const struct lttcomm_relayd_hdr *recv_hdr __attribute__((unused)),
bbc4768c
JG
2960 struct relay_connection *conn,
2961 const struct lttng_buffer_view *payload)
2962{
9898f786 2963 int ret = 0, buf_ret;
bbc4768c
JG
2964 ssize_t send_ret;
2965 struct relay_session *session = conn->session;
2966 struct lttcomm_relayd_close_trace_chunk *msg;
ecd1a12f 2967 struct lttcomm_relayd_close_trace_chunk_reply reply = {};
bbc4768c
JG
2968 struct lttng_buffer_view header_view;
2969 struct lttng_trace_chunk *chunk = NULL;
2970 enum lttng_error_code reply_code = LTTNG_OK;
2971 enum lttng_trace_chunk_status chunk_status;
2972 uint64_t chunk_id;
c35f9726 2973 LTTNG_OPTIONAL(enum lttng_trace_chunk_command_type) close_command = {};
bbc4768c 2974 time_t close_timestamp;
ecd1a12f
MD
2975 char closed_trace_chunk_path[LTTNG_PATH_MAX];
2976 size_t path_length = 0;
2977 const char *chunk_name = NULL;
2978 struct lttng_dynamic_buffer reply_payload;
a7ceb342 2979 const char *new_path;
ecd1a12f
MD
2980
2981 lttng_dynamic_buffer_init(&reply_payload);
bbc4768c
JG
2982
2983 if (!session || !conn->version_check_done) {
2984 ERR("Trying to close a trace chunk before version check");
2985 ret = -1;
2986 goto end_no_reply;
2987 }
2988
2989 if (session->major == 2 && session->minor < 11) {
2990 ERR("Chunk close command is unsupported before 2.11");
2991 ret = -1;
2992 goto end_no_reply;
2993 }
2994
2995 header_view = lttng_buffer_view_from_view(payload, 0, sizeof(*msg));
3e6e0df2 2996 if (!lttng_buffer_view_is_valid(&header_view)) {
bbc4768c
JG
2997 ERR("Failed to receive payload of chunk close command");
2998 ret = -1;
2999 goto end_no_reply;
3000 }
3001
3002 /* Convert to host endianness. */
3003 msg = (typeof(msg)) header_view.data;
3004 chunk_id = be64toh(msg->chunk_id);
3005 close_timestamp = (time_t) be64toh(msg->close_timestamp);
ac497a37
SM
3006 close_command.value = (lttng_trace_chunk_command_type) be32toh(msg->close_command.value);
3007 close_command.is_set = msg->close_command.is_set;
bbc4768c
JG
3008
3009 chunk = sessiond_trace_chunk_registry_get_chunk(
3010 sessiond_trace_chunk_registry,
3011 conn->session->sessiond_uuid,
c5c79321
JG
3012 conn->session->id_sessiond.is_set ?
3013 conn->session->id_sessiond.value :
3014 conn->session->id,
bbc4768c
JG
3015 chunk_id);
3016 if (!chunk) {
c70636a7 3017 char uuid_str[LTTNG_UUID_STR_LEN];
bbc4768c
JG
3018
3019 lttng_uuid_to_str(conn->session->sessiond_uuid, uuid_str);
3020 ERR("Failed to find chunk to close: sessiond_uuid = %s, session_id = %" PRIu64 ", chunk_id = %" PRIu64,
3021 uuid_str,
3022 conn->session->id,
3023 msg->chunk_id);
3024 ret = -1;
3025 reply_code = LTTNG_ERR_NOMEM;
3026 goto end;
3027 }
3028
62bad3bf 3029 pthread_mutex_lock(&session->lock);
f77a6ec2
MD
3030 if (close_command.is_set &&
3031 close_command.value == LTTNG_TRACE_CHUNK_COMMAND_TYPE_DELETE) {
3032 /*
3033 * Clear command. It is a protocol error to ask for a
3034 * clear on a relay which does not allow it. Querying
3035 * the configuration allows figuring out whether
3036 * clearing is allowed before doing the clear.
3037 */
3038 if (!opt_allow_clear) {
3039 ret = -1;
3040 reply_code = LTTNG_ERR_INVALID_PROTOCOL;
3041 goto end_unlock_session;
3042 }
3043 }
62bad3bf
JG
3044 if (session->pending_closure_trace_chunk &&
3045 session->pending_closure_trace_chunk != chunk) {
3046 ERR("Trace chunk close command for session \"%s\" does not target the trace chunk pending closure",
3047 session->session_name);
3048 reply_code = LTTNG_ERR_INVALID_PROTOCOL;
3049 ret = -1;
3050 goto end_unlock_session;
3051 }
3052
a7ceb342
MD
3053 if (session->current_trace_chunk && session->current_trace_chunk != chunk &&
3054 !lttng_trace_chunk_get_name_overridden(session->current_trace_chunk)) {
3055 if (close_command.is_set &&
3056 close_command.value == LTTNG_TRACE_CHUNK_COMMAND_TYPE_DELETE &&
3057 !session->has_rotated) {
3058 /* New chunk stays in session output directory. */
3059 new_path = "";
3060 } else {
3061 /* Use chunk name for new chunk. */
3062 new_path = NULL;
3063 }
3064 /* Rename new chunk path. */
3065 chunk_status = lttng_trace_chunk_rename_path(session->current_trace_chunk,
3066 new_path);
3067 if (chunk_status != LTTNG_TRACE_CHUNK_STATUS_OK) {
3068 ret = -1;
88188199 3069 goto end_unlock_session;
a7ceb342
MD
3070 }
3071 session->ongoing_rotation = false;
3072 }
3073 if ((!close_command.is_set ||
3074 close_command.value == LTTNG_TRACE_CHUNK_COMMAND_TYPE_NO_OPERATION) &&
3075 !lttng_trace_chunk_get_name_overridden(chunk)) {
3076 const char *old_path;
3077
3078 if (!session->has_rotated) {
3079 old_path = "";
3080 } else {
3081 old_path = NULL;
3082 }
3083 /* We need to move back the .tmp_old_chunk to its rightful place. */
3084 chunk_status = lttng_trace_chunk_rename_path(chunk, old_path);
3085 if (chunk_status != LTTNG_TRACE_CHUNK_STATUS_OK) {
3086 ret = -1;
88188199 3087 goto end_unlock_session;
a7ceb342
MD
3088 }
3089 }
bbc4768c
JG
3090 chunk_status = lttng_trace_chunk_set_close_timestamp(
3091 chunk, close_timestamp);
3092 if (chunk_status != LTTNG_TRACE_CHUNK_STATUS_OK) {
3093 ERR("Failed to set trace chunk close timestamp");
3094 ret = -1;
3095 reply_code = LTTNG_ERR_UNK;
62bad3bf 3096 goto end_unlock_session;
bbc4768c
JG
3097 }
3098
3099 if (close_command.is_set) {
3100 chunk_status = lttng_trace_chunk_set_close_command(
3101 chunk, close_command.value);
3102 if (chunk_status != LTTNG_TRACE_CHUNK_STATUS_OK) {
3103 ret = -1;
3104 reply_code = LTTNG_ERR_INVALID;
62bad3bf 3105 goto end_unlock_session;
bbc4768c
JG
3106 }
3107 }
ecd1a12f
MD
3108 chunk_status = lttng_trace_chunk_get_name(chunk, &chunk_name, NULL);
3109 if (chunk_status != LTTNG_TRACE_CHUNK_STATUS_OK) {
3110 ERR("Failed to get chunk name");
3111 ret = -1;
3112 reply_code = LTTNG_ERR_UNK;
3113 goto end_unlock_session;
3114 }
3115 if (!session->has_rotated && !session->snapshot) {
3116 ret = lttng_strncpy(closed_trace_chunk_path,
3117 session->output_path,
3118 sizeof(closed_trace_chunk_path));
3119 if (ret) {
3120 ERR("Failed to send trace chunk path: path length of %zu bytes exceeds the maximal allowed length of %zu bytes",
3121 strlen(session->output_path),
3122 sizeof(closed_trace_chunk_path));
3123 reply_code = LTTNG_ERR_NOMEM;
3124 ret = -1;
3125 goto end_unlock_session;
3126 }
3127 } else {
3128 if (session->snapshot) {
3129 ret = snprintf(closed_trace_chunk_path,
3130 sizeof(closed_trace_chunk_path),
3131 "%s/%s", session->output_path,
3132 chunk_name);
3133 } else {
3134 ret = snprintf(closed_trace_chunk_path,
3135 sizeof(closed_trace_chunk_path),
3136 "%s/" DEFAULT_ARCHIVED_TRACE_CHUNKS_DIRECTORY
3137 "/%s",
3138 session->output_path, chunk_name);
3139 }
3140 if (ret < 0 || ret == sizeof(closed_trace_chunk_path)) {
3141 ERR("Failed to format closed trace chunk resulting path");
3142 reply_code = ret < 0 ? LTTNG_ERR_UNK : LTTNG_ERR_NOMEM;
3143 ret = -1;
3144 goto end_unlock_session;
3145 }
3146 }
489ea154
MD
3147 if (close_command.is_set &&
3148 close_command.value == LTTNG_TRACE_CHUNK_COMMAND_TYPE_MOVE_TO_COMPLETED) {
3149 session->has_rotated = true;
3150 }
ecd1a12f
MD
3151 DBG("Reply chunk path on close: %s", closed_trace_chunk_path);
3152 path_length = strlen(closed_trace_chunk_path) + 1;
3153 if (path_length > UINT32_MAX) {
3154 ERR("Closed trace chunk path exceeds the maximal length allowed by the protocol");
3155 ret = -1;
3156 reply_code = LTTNG_ERR_INVALID_PROTOCOL;
3157 goto end_unlock_session;
3158 }
bbc4768c 3159
c35f9726
JG
3160 if (session->current_trace_chunk == chunk) {
3161 /*
3162 * After a trace chunk close command, no new streams
3163 * referencing the chunk may be created. Hence, on the
3164 * event that no new trace chunk have been created for
3165 * the session, the reference to the current trace chunk
3166 * is released in order to allow it to be reclaimed when
3167 * the last stream releases its reference to it.
3168 */
3169 lttng_trace_chunk_put(session->current_trace_chunk);
3170 session->current_trace_chunk = NULL;
3171 }
62bad3bf
JG
3172 lttng_trace_chunk_put(session->pending_closure_trace_chunk);
3173 session->pending_closure_trace_chunk = NULL;
3174end_unlock_session:
c35f9726
JG
3175 pthread_mutex_unlock(&session->lock);
3176
bbc4768c 3177end:
ecd1a12f
MD
3178 reply.generic.ret_code = htobe32((uint32_t) reply_code);
3179 reply.path_length = htobe32((uint32_t) path_length);
9898f786 3180 buf_ret = lttng_dynamic_buffer_append(
ecd1a12f 3181 &reply_payload, &reply, sizeof(reply));
9898f786 3182 if (buf_ret) {
ecd1a12f
MD
3183 ERR("Failed to append \"close trace chunk\" command reply header to payload buffer");
3184 goto end_no_reply;
3185 }
3186
3187 if (reply_code == LTTNG_OK) {
9898f786 3188 buf_ret = lttng_dynamic_buffer_append(&reply_payload,
ecd1a12f 3189 closed_trace_chunk_path, path_length);
9898f786 3190 if (buf_ret) {
ecd1a12f
MD
3191 ERR("Failed to append \"close trace chunk\" command reply path to payload buffer");
3192 goto end_no_reply;
3193 }
3194 }
3195
bbc4768c 3196 send_ret = conn->sock->ops->sendmsg(conn->sock,
ecd1a12f
MD
3197 reply_payload.data,
3198 reply_payload.size,
bbc4768c 3199 0);
ecd1a12f
MD
3200 if (send_ret < reply_payload.size) {
3201 ERR("Failed to send \"close trace chunk\" command reply of %zu bytes (ret = %zd)",
3202 reply_payload.size, send_ret);
bbc4768c 3203 ret = -1;
ecd1a12f 3204 goto end_no_reply;
bbc4768c
JG
3205 }
3206end_no_reply:
3207 lttng_trace_chunk_put(chunk);
ecd1a12f 3208 lttng_dynamic_buffer_reset(&reply_payload);
bbc4768c
JG
3209 return ret;
3210}
3211
c35f9726
JG
3212/*
3213 * relay_trace_chunk_exists: check if a trace chunk exists
3214 */
f46376a1
MJ
3215static int relay_trace_chunk_exists(
3216 const struct lttcomm_relayd_hdr *recv_hdr __attribute__((unused)),
c35f9726
JG
3217 struct relay_connection *conn,
3218 const struct lttng_buffer_view *payload)
3219{
3220 int ret = 0;
3221 ssize_t send_ret;
3222 struct relay_session *session = conn->session;
3223 struct lttcomm_relayd_trace_chunk_exists *msg;
3224 struct lttcomm_relayd_trace_chunk_exists_reply reply = {};
3225 struct lttng_buffer_view header_view;
c35f9726 3226 uint64_t chunk_id;
6b584c2e 3227 bool chunk_exists;
c35f9726
JG
3228
3229 if (!session || !conn->version_check_done) {
0f1b1d25 3230 ERR("Trying to check for the presence of a trace chunk before version check");
c35f9726
JG
3231 ret = -1;
3232 goto end_no_reply;
3233 }
3234
3235 if (session->major == 2 && session->minor < 11) {
8a82be4c 3236 ERR("Chunk exists command is unsupported before 2.11");
c35f9726
JG
3237 ret = -1;
3238 goto end_no_reply;
3239 }
3240
3241 header_view = lttng_buffer_view_from_view(payload, 0, sizeof(*msg));
3e6e0df2 3242 if (!lttng_buffer_view_is_valid(&header_view)) {
8a82be4c 3243 ERR("Failed to receive payload of chunk exists command");
c35f9726
JG
3244 ret = -1;
3245 goto end_no_reply;
3246 }
3247
3248 /* Convert to host endianness. */
3249 msg = (typeof(msg)) header_view.data;
3250 chunk_id = be64toh(msg->chunk_id);
3251
6b584c2e 3252 ret = sessiond_trace_chunk_registry_chunk_exists(
c35f9726
JG
3253 sessiond_trace_chunk_registry,
3254 conn->session->sessiond_uuid,
3255 conn->session->id,
6b584c2e
JG
3256 chunk_id, &chunk_exists);
3257 /*
3258 * If ret is not 0, send the reply and report the error to the caller.
3259 * It is a protocol (or internal) error and the session/connection
3260 * should be torn down.
3261 */
ac497a37
SM
3262 reply.generic.ret_code = htobe32((uint32_t) (ret == 0 ? LTTNG_OK : LTTNG_ERR_INVALID_PROTOCOL));
3263 reply.trace_chunk_exists = ret == 0 ? chunk_exists : 0;
3264
6b584c2e
JG
3265 send_ret = conn->sock->ops->sendmsg(
3266 conn->sock, &reply, sizeof(reply), 0);
c35f9726
JG
3267 if (send_ret < (ssize_t) sizeof(reply)) {
3268 ERR("Failed to send \"create trace chunk\" command reply (ret = %zd)",
3269 send_ret);
3270 ret = -1;
3271 }
3272end_no_reply:
c35f9726
JG
3273 return ret;
3274}
3275
8614e600
MD
3276/*
3277 * relay_get_configuration: query whether feature is available
3278 */
f46376a1
MJ
3279static int relay_get_configuration(
3280 const struct lttcomm_relayd_hdr *recv_hdr __attribute__((unused)),
8614e600
MD
3281 struct relay_connection *conn,
3282 const struct lttng_buffer_view *payload)
3283{
3284 int ret = 0;
3285 ssize_t send_ret;
3286 struct lttcomm_relayd_get_configuration *msg;
3287 struct lttcomm_relayd_get_configuration_reply reply = {};
3288 struct lttng_buffer_view header_view;
3289 uint64_t query_flags = 0;
3290 uint64_t result_flags = 0;
3291
3292 header_view = lttng_buffer_view_from_view(payload, 0, sizeof(*msg));
3e6e0df2 3293 if (!lttng_buffer_view_is_valid(&header_view)) {
8614e600
MD
3294 ERR("Failed to receive payload of chunk close command");
3295 ret = -1;
3296 goto end_no_reply;
3297 }
3298
3299 /* Convert to host endianness. */
3300 msg = (typeof(msg)) header_view.data;
3301 query_flags = be64toh(msg->query_flags);
3302
3303 if (query_flags) {
3304 ret = LTTNG_ERR_INVALID_PROTOCOL;
3305 goto reply;
3306 }
3307 if (opt_allow_clear) {
3308 result_flags |= LTTCOMM_RELAYD_CONFIGURATION_FLAG_CLEAR_ALLOWED;
3309 }
3310 ret = 0;
3311reply:
ac497a37
SM
3312 reply.generic.ret_code = htobe32((uint32_t) (ret == 0 ? LTTNG_OK : LTTNG_ERR_INVALID_PROTOCOL));
3313 reply.relayd_configuration_flags = htobe64(result_flags);
3314
8614e600
MD
3315 send_ret = conn->sock->ops->sendmsg(
3316 conn->sock, &reply, sizeof(reply), 0);
3317 if (send_ret < (ssize_t) sizeof(reply)) {
3318 ERR("Failed to send \"get configuration\" command reply (ret = %zd)",
3319 send_ret);
3320 ret = -1;
3321 }
3322end_no_reply:
3323 return ret;
3324}
3325
5312a3ed
JG
3326static int relay_process_control_command(struct relay_connection *conn,
3327 const struct lttcomm_relayd_hdr *header,
3328 const struct lttng_buffer_view *payload)
b8aa1682
JD
3329{
3330 int ret = 0;
3331
00e71031
FD
3332 DBG3("Processing \"%s\" command for socket %i",
3333 lttcomm_relayd_command_str((lttcomm_relayd_command) header->cmd),
3334 conn->sock->fd);
5312a3ed 3335 switch (header->cmd) {
b8aa1682 3336 case RELAYD_CREATE_SESSION:
5312a3ed 3337 ret = relay_create_session(header, conn, payload);
b8aa1682 3338 break;
b8aa1682 3339 case RELAYD_ADD_STREAM:
5312a3ed 3340 ret = relay_add_stream(header, conn, payload);
b8aa1682
JD
3341 break;
3342 case RELAYD_START_DATA:
5312a3ed 3343 ret = relay_start(header, conn, payload);
b8aa1682
JD
3344 break;
3345 case RELAYD_SEND_METADATA:
5312a3ed 3346 ret = relay_recv_metadata(header, conn, payload);
b8aa1682
JD
3347 break;
3348 case RELAYD_VERSION:
5312a3ed 3349 ret = relay_send_version(header, conn, payload);
b8aa1682 3350 break;
173af62f 3351 case RELAYD_CLOSE_STREAM:
5312a3ed 3352 ret = relay_close_stream(header, conn, payload);
173af62f 3353 break;
6d805429 3354 case RELAYD_DATA_PENDING:
5312a3ed 3355 ret = relay_data_pending(header, conn, payload);
c8f59ee5
DG
3356 break;
3357 case RELAYD_QUIESCENT_CONTROL:
5312a3ed 3358 ret = relay_quiescent_control(header, conn, payload);
c8f59ee5 3359 break;
f7079f67 3360 case RELAYD_BEGIN_DATA_PENDING:
5312a3ed 3361 ret = relay_begin_data_pending(header, conn, payload);
f7079f67
DG
3362 break;
3363 case RELAYD_END_DATA_PENDING:
5312a3ed 3364 ret = relay_end_data_pending(header, conn, payload);
f7079f67 3365 break;
1c20f0e2 3366 case RELAYD_SEND_INDEX:
5312a3ed 3367 ret = relay_recv_index(header, conn, payload);
1c20f0e2 3368 break;
a4baae1b 3369 case RELAYD_STREAMS_SENT:
5312a3ed 3370 ret = relay_streams_sent(header, conn, payload);
a4baae1b 3371 break;
93ec662e 3372 case RELAYD_RESET_METADATA:
5312a3ed 3373 ret = relay_reset_metadata(header, conn, payload);
93ec662e 3374 break;
c35f9726 3375 case RELAYD_ROTATE_STREAMS:
c35f9726 3376 ret = relay_rotate_session_streams(header, conn, payload);
d3ecc550 3377 break;
e5add6d0 3378 case RELAYD_CREATE_TRACE_CHUNK:
e5add6d0
JG
3379 ret = relay_create_trace_chunk(header, conn, payload);
3380 break;
bbc4768c 3381 case RELAYD_CLOSE_TRACE_CHUNK:
bbc4768c
JG
3382 ret = relay_close_trace_chunk(header, conn, payload);
3383 break;
c35f9726 3384 case RELAYD_TRACE_CHUNK_EXISTS:
c35f9726
JG
3385 ret = relay_trace_chunk_exists(header, conn, payload);
3386 break;
8614e600 3387 case RELAYD_GET_CONFIGURATION:
8614e600
MD
3388 ret = relay_get_configuration(header, conn, payload);
3389 break;
b8aa1682
JD
3390 case RELAYD_UPDATE_SYNC_INFO:
3391 default:
5312a3ed 3392 ERR("Received unknown command (%u)", header->cmd);
58eb9381 3393 relay_unknown_command(conn);
b8aa1682
JD
3394 ret = -1;
3395 goto end;
3396 }
3397
3398end:
3399 return ret;
3400}
3401
5569b118
JG
3402static enum relay_connection_status relay_process_control_receive_payload(
3403 struct relay_connection *conn)
5312a3ed
JG
3404{
3405 int ret = 0;
5569b118 3406 enum relay_connection_status status = RELAY_CONNECTION_STATUS_OK;
5312a3ed
JG
3407 struct lttng_dynamic_buffer *reception_buffer =
3408 &conn->protocol.ctrl.reception_buffer;
3409 struct ctrl_connection_state_receive_payload *state =
3410 &conn->protocol.ctrl.state.receive_payload;
3411 struct lttng_buffer_view payload_view;
3412
3413 if (state->left_to_receive == 0) {
3414 /* Short-circuit for payload-less commands. */
3415 goto reception_complete;
3416 }
3417
3418 ret = conn->sock->ops->recvmsg(conn->sock,
3419 reception_buffer->data + state->received,
3420 state->left_to_receive, MSG_DONTWAIT);
3421 if (ret < 0) {
942003e5
MJ
3422 DIAGNOSTIC_PUSH
3423 DIAGNOSTIC_IGNORE_LOGICAL_OP
5569b118 3424 if (errno != EAGAIN && errno != EWOULDBLOCK) {
942003e5 3425 DIAGNOSTIC_POP
5569b118
JG
3426 PERROR("Unable to receive command payload on sock %d",
3427 conn->sock->fd);
3428 status = RELAY_CONNECTION_STATUS_ERROR;
3429 }
5312a3ed
JG
3430 goto end;
3431 } else if (ret == 0) {
3432 DBG("Socket %d performed an orderly shutdown (received EOF)", conn->sock->fd);
5569b118 3433 status = RELAY_CONNECTION_STATUS_CLOSED;
5312a3ed
JG
3434 goto end;
3435 }
3436
a0377dfe
FD
3437 LTTNG_ASSERT(ret > 0);
3438 LTTNG_ASSERT(ret <= state->left_to_receive);
5312a3ed
JG
3439
3440 state->left_to_receive -= ret;
3441 state->received += ret;
3442
3443 if (state->left_to_receive > 0) {
3444 /*
3445 * Can't transition to the protocol's next state, wait to
3446 * receive the rest of the header.
3447 */
3448 DBG3("Partial reception of control connection protocol payload (received %" PRIu64 " bytes, %" PRIu64 " bytes left to receive, fd = %i)",
3449 state->received, state->left_to_receive,
3450 conn->sock->fd);
5312a3ed
JG
3451 goto end;
3452 }
3453
3454reception_complete:
3455 DBG("Done receiving control command payload: fd = %i, payload size = %" PRIu64 " bytes",
3456 conn->sock->fd, state->received);
3457 /*
3458 * The payload required to process the command has been received.
3459 * A view to the reception buffer is forwarded to the various
3460 * commands and the state of the control is reset on success.
3461 *
3462 * Commands are responsible for sending their reply to the peer.
3463 */
3464 payload_view = lttng_buffer_view_from_dynamic_buffer(reception_buffer,
3465 0, -1);
3466 ret = relay_process_control_command(conn,
3467 &state->header, &payload_view);
3468 if (ret < 0) {
5569b118 3469 status = RELAY_CONNECTION_STATUS_ERROR;
5312a3ed
JG
3470 goto end;
3471 }
3472
3473 ret = connection_reset_protocol_state(conn);
5569b118
JG
3474 if (ret) {
3475 status = RELAY_CONNECTION_STATUS_ERROR;
3476 }
5312a3ed 3477end:
5569b118 3478 return status;
5312a3ed
JG
3479}
3480
5569b118
JG
3481static enum relay_connection_status relay_process_control_receive_header(
3482 struct relay_connection *conn)
5312a3ed
JG
3483{
3484 int ret = 0;
5569b118 3485 enum relay_connection_status status = RELAY_CONNECTION_STATUS_OK;
5312a3ed
JG
3486 struct lttcomm_relayd_hdr header;
3487 struct lttng_dynamic_buffer *reception_buffer =
3488 &conn->protocol.ctrl.reception_buffer;
3489 struct ctrl_connection_state_receive_header *state =
3490 &conn->protocol.ctrl.state.receive_header;
3491
a0377dfe 3492 LTTNG_ASSERT(state->left_to_receive != 0);
5312a3ed
JG
3493
3494 ret = conn->sock->ops->recvmsg(conn->sock,
3495 reception_buffer->data + state->received,
3496 state->left_to_receive, MSG_DONTWAIT);
3497 if (ret < 0) {
942003e5
MJ
3498 DIAGNOSTIC_PUSH
3499 DIAGNOSTIC_IGNORE_LOGICAL_OP
5569b118 3500 if (errno != EAGAIN && errno != EWOULDBLOCK) {
942003e5 3501 DIAGNOSTIC_POP
5569b118
JG
3502 PERROR("Unable to receive control command header on sock %d",
3503 conn->sock->fd);
3504 status = RELAY_CONNECTION_STATUS_ERROR;
3505 }
5312a3ed
JG
3506 goto end;
3507 } else if (ret == 0) {
3508 DBG("Socket %d performed an orderly shutdown (received EOF)", conn->sock->fd);
5569b118 3509 status = RELAY_CONNECTION_STATUS_CLOSED;
5312a3ed
JG
3510 goto end;
3511 }
3512
a0377dfe
FD
3513 LTTNG_ASSERT(ret > 0);
3514 LTTNG_ASSERT(ret <= state->left_to_receive);
5312a3ed
JG
3515
3516 state->left_to_receive -= ret;
3517 state->received += ret;
3518
3519 if (state->left_to_receive > 0) {
3520 /*
3521 * Can't transition to the protocol's next state, wait to
3522 * receive the rest of the header.
3523 */
3524 DBG3("Partial reception of control connection protocol header (received %" PRIu64 " bytes, %" PRIu64 " bytes left to receive, fd = %i)",
3525 state->received, state->left_to_receive,
3526 conn->sock->fd);
5312a3ed
JG
3527 goto end;
3528 }
3529
3530 /* Transition to next state: receiving the command's payload. */
3531 conn->protocol.ctrl.state_id =
3532 CTRL_CONNECTION_STATE_RECEIVE_PAYLOAD;
3533 memcpy(&header, reception_buffer->data, sizeof(header));
3534 header.circuit_id = be64toh(header.circuit_id);
3535 header.data_size = be64toh(header.data_size);
3536 header.cmd = be32toh(header.cmd);
3537 header.cmd_version = be32toh(header.cmd_version);
3538 memcpy(&conn->protocol.ctrl.state.receive_payload.header,
3539 &header, sizeof(header));
3540
00e71031
FD
3541 DBG("Done receiving control command header: fd = %i, cmd = %s, cmd_version = %" PRIu32 ", payload size = %" PRIu64 " bytes",
3542 conn->sock->fd, lttcomm_relayd_command_str((enum lttcomm_relayd_command) header.cmd),
3543 header.cmd_version, header.data_size);
5312a3ed 3544
715e6fb1 3545 if (header.data_size > DEFAULT_NETWORK_RELAYD_CTRL_MAX_PAYLOAD_SIZE) {
5312a3ed
JG
3546 ERR("Command header indicates a payload (%" PRIu64 " bytes) that exceeds the maximal payload size allowed on a control connection.",
3547 header.data_size);
5569b118 3548 status = RELAY_CONNECTION_STATUS_ERROR;
5312a3ed
JG
3549 goto end;
3550 }
3551
3552 conn->protocol.ctrl.state.receive_payload.left_to_receive =
3553 header.data_size;
3554 conn->protocol.ctrl.state.receive_payload.received = 0;
3555 ret = lttng_dynamic_buffer_set_size(reception_buffer,
3556 header.data_size);
3557 if (ret) {
5569b118 3558 status = RELAY_CONNECTION_STATUS_ERROR;
5312a3ed
JG
3559 goto end;
3560 }
3561
3562 if (header.data_size == 0) {
3563 /*
3564 * Manually invoke the next state as the poll loop
3565 * will not wake-up to allow us to proceed further.
3566 */
5569b118 3567 status = relay_process_control_receive_payload(conn);
5312a3ed
JG
3568 }
3569end:
5569b118 3570 return status;
5312a3ed
JG
3571}
3572
3573/*
3574 * Process the commands received on the control socket
3575 */
5569b118
JG
3576static enum relay_connection_status relay_process_control(
3577 struct relay_connection *conn)
5312a3ed 3578{
5569b118 3579 enum relay_connection_status status;
5312a3ed
JG
3580
3581 switch (conn->protocol.ctrl.state_id) {
3582 case CTRL_CONNECTION_STATE_RECEIVE_HEADER:
5569b118 3583 status = relay_process_control_receive_header(conn);
5312a3ed
JG
3584 break;
3585 case CTRL_CONNECTION_STATE_RECEIVE_PAYLOAD:
5569b118 3586 status = relay_process_control_receive_payload(conn);
5312a3ed
JG
3587 break;
3588 default:
3589 ERR("Unknown control connection protocol state encountered.");
3590 abort();
3591 }
3592
5569b118 3593 return status;
5312a3ed
JG
3594}
3595
5569b118
JG
3596static enum relay_connection_status relay_process_data_receive_header(
3597 struct relay_connection *conn)
b8aa1682 3598{
5312a3ed 3599 int ret;
5569b118 3600 enum relay_connection_status status = RELAY_CONNECTION_STATUS_OK;
5312a3ed
JG
3601 struct data_connection_state_receive_header *state =
3602 &conn->protocol.data.state.receive_header;
3603 struct lttcomm_relayd_data_hdr header;
b8aa1682 3604 struct relay_stream *stream;
5312a3ed 3605
a0377dfe 3606 LTTNG_ASSERT(state->left_to_receive != 0);
5312a3ed
JG
3607
3608 ret = conn->sock->ops->recvmsg(conn->sock,
3609 state->header_reception_buffer + state->received,
3610 state->left_to_receive, MSG_DONTWAIT);
3611 if (ret < 0) {
942003e5
MJ
3612 DIAGNOSTIC_PUSH
3613 DIAGNOSTIC_IGNORE_LOGICAL_OP
5569b118 3614 if (errno != EAGAIN && errno != EWOULDBLOCK) {
942003e5 3615 DIAGNOSTIC_POP
5569b118
JG
3616 PERROR("Unable to receive data header on sock %d", conn->sock->fd);
3617 status = RELAY_CONNECTION_STATUS_ERROR;
3618 }
5312a3ed
JG
3619 goto end;
3620 } else if (ret == 0) {
3621 /* Orderly shutdown. Not necessary to print an error. */
3622 DBG("Socket %d performed an orderly shutdown (received EOF)", conn->sock->fd);
5569b118 3623 status = RELAY_CONNECTION_STATUS_CLOSED;
b8aa1682
JD
3624 goto end;
3625 }
3626
a0377dfe
FD
3627 LTTNG_ASSERT(ret > 0);
3628 LTTNG_ASSERT(ret <= state->left_to_receive);
5312a3ed
JG
3629
3630 state->left_to_receive -= ret;
3631 state->received += ret;
3632
3633 if (state->left_to_receive > 0) {
3634 /*
3635 * Can't transition to the protocol's next state, wait to
3636 * receive the rest of the header.
3637 */
3638 DBG3("Partial reception of data connection header (received %" PRIu64 " bytes, %" PRIu64 " bytes left to receive, fd = %i)",
3639 state->received, state->left_to_receive,
3640 conn->sock->fd);
7591bab1 3641 goto end;
b8aa1682 3642 }
b8aa1682 3643
5312a3ed
JG
3644 /* Transition to next state: receiving the payload. */
3645 conn->protocol.data.state_id = DATA_CONNECTION_STATE_RECEIVE_PAYLOAD;
173af62f 3646
5312a3ed
JG
3647 memcpy(&header, state->header_reception_buffer, sizeof(header));
3648 header.circuit_id = be64toh(header.circuit_id);
3649 header.stream_id = be64toh(header.stream_id);
3650 header.data_size = be32toh(header.data_size);
3651 header.net_seq_num = be64toh(header.net_seq_num);
3652 header.padding_size = be32toh(header.padding_size);
3653 memcpy(&conn->protocol.data.state.receive_payload.header, &header, sizeof(header));
3654
3655 conn->protocol.data.state.receive_payload.left_to_receive =
3656 header.data_size;
3657 conn->protocol.data.state.receive_payload.received = 0;
3658 conn->protocol.data.state.receive_payload.rotate_index = false;
3659
3660 DBG("Received data connection header on fd %i: circuit_id = %" PRIu64 ", stream_id = %" PRIu64 ", data_size = %" PRIu32 ", net_seq_num = %" PRIu64 ", padding_size = %" PRIu32,
3661 conn->sock->fd, header.circuit_id,
3662 header.stream_id, header.data_size,
3663 header.net_seq_num, header.padding_size);
3664
3665 stream = stream_get_by_id(header.stream_id);
3666 if (!stream) {
3667 DBG("relay_process_data_receive_payload: Cannot find stream %" PRIu64,
3668 header.stream_id);
5569b118
JG
3669 /* Protocol error. */
3670 status = RELAY_CONNECTION_STATUS_ERROR;
5312a3ed
JG
3671 goto end;
3672 }
b8aa1682 3673
7591bab1 3674 pthread_mutex_lock(&stream->lock);
c35f9726
JG
3675 /* Prepare stream for the reception of a new packet. */
3676 ret = stream_init_packet(stream, header.data_size,
3677 &conn->protocol.data.state.receive_payload.rotate_index);
3678 pthread_mutex_unlock(&stream->lock);
3679 if (ret) {
3680 ERR("Failed to rotate stream output file");
3681 status = RELAY_CONNECTION_STATUS_ERROR;
3682 goto end_stream_unlock;
1c20f0e2
JD
3683 }
3684
5312a3ed 3685end_stream_unlock:
5312a3ed
JG
3686 stream_put(stream);
3687end:
5569b118 3688 return status;
5312a3ed
JG
3689}
3690
5569b118
JG
3691static enum relay_connection_status relay_process_data_receive_payload(
3692 struct relay_connection *conn)
5312a3ed
JG
3693{
3694 int ret;
5569b118 3695 enum relay_connection_status status = RELAY_CONNECTION_STATUS_OK;
5312a3ed
JG
3696 struct relay_stream *stream;
3697 struct data_connection_state_receive_payload *state =
3698 &conn->protocol.data.state.receive_payload;
3699 const size_t chunk_size = RECV_DATA_BUFFER_SIZE;
3700 char data_buffer[chunk_size];
3701 bool partial_recv = false;
3702 bool new_stream = false, close_requested = false, index_flushed = false;
3703 uint64_t left_to_receive = state->left_to_receive;
3704 struct relay_session *session;
3705
fd0f1e3e
JR
3706 DBG3("Receiving data for stream id %" PRIu64 " seqnum %" PRIu64 ", %" PRIu64" bytes received, %" PRIu64 " bytes left to receive",
3707 state->header.stream_id, state->header.net_seq_num,
3708 state->received, left_to_receive);
3709
5312a3ed
JG
3710 stream = stream_get_by_id(state->header.stream_id);
3711 if (!stream) {
5569b118 3712 /* Protocol error. */
fd0f1e3e 3713 ERR("relay_process_data_receive_payload: cannot find stream %" PRIu64,
5312a3ed 3714 state->header.stream_id);
5569b118 3715 status = RELAY_CONNECTION_STATUS_ERROR;
5312a3ed 3716 goto end;
1c20f0e2
JD
3717 }
3718
5312a3ed
JG
3719 pthread_mutex_lock(&stream->lock);
3720 session = stream->trace->session;
fd0f1e3e
JR
3721 if (!conn->session) {
3722 ret = connection_set_session(conn, session);
3723 if (ret) {
3724 status = RELAY_CONNECTION_STATUS_ERROR;
3725 goto end_stream_unlock;
3726 }
3727 }
5312a3ed
JG
3728
3729 /*
3730 * The size of the "chunk" received on any iteration is bounded by:
3731 * - the data left to receive,
3732 * - the data immediately available on the socket,
3733 * - the on-stack data buffer
3734 */
3735 while (left_to_receive > 0 && !partial_recv) {
ff2aa8f0 3736 size_t recv_size = std::min<uint64_t>(left_to_receive, chunk_size);
c35f9726 3737 struct lttng_buffer_view packet_chunk;
5312a3ed
JG
3738
3739 ret = conn->sock->ops->recvmsg(conn->sock, data_buffer,
3740 recv_size, MSG_DONTWAIT);
3741 if (ret < 0) {
942003e5
MJ
3742 DIAGNOSTIC_PUSH
3743 DIAGNOSTIC_IGNORE_LOGICAL_OP
5569b118 3744 if (errno != EAGAIN && errno != EWOULDBLOCK) {
942003e5 3745 DIAGNOSTIC_POP
5569b118
JG
3746 PERROR("Socket %d error", conn->sock->fd);
3747 status = RELAY_CONNECTION_STATUS_ERROR;
3748 }
0848dba7 3749 goto end_stream_unlock;
5312a3ed
JG
3750 } else if (ret == 0) {
3751 /* No more data ready to be consumed on socket. */
3752 DBG3("No more data ready for consumption on data socket of stream id %" PRIu64,
3753 state->header.stream_id);
5569b118 3754 status = RELAY_CONNECTION_STATUS_CLOSED;
5312a3ed
JG
3755 break;
3756 } else if (ret < (int) recv_size) {
3757 /*
3758 * All the data available on the socket has been
3759 * consumed.
3760 */
3761 partial_recv = true;
c35f9726 3762 recv_size = ret;
0848dba7
MD
3763 }
3764
c35f9726
JG
3765 packet_chunk = lttng_buffer_view_init(data_buffer,
3766 0, recv_size);
a0377dfe 3767 LTTNG_ASSERT(packet_chunk.data);
5312a3ed 3768
c35f9726
JG
3769 ret = stream_write(stream, &packet_chunk, 0);
3770 if (ret) {
0848dba7 3771 ERR("Relay error writing data to file");
5569b118 3772 status = RELAY_CONNECTION_STATUS_ERROR;
0848dba7
MD
3773 goto end_stream_unlock;
3774 }
3775
5312a3ed
JG
3776 left_to_receive -= recv_size;
3777 state->received += recv_size;
3778 state->left_to_receive = left_to_receive;
5312a3ed
JG
3779 }
3780
3781 if (state->left_to_receive > 0) {
3782 /*
3783 * Did not receive all the data expected, wait for more data to
3784 * become available on the socket.
3785 */
3786 DBG3("Partial receive on data connection of stream id %" PRIu64 ", %" PRIu64 " bytes received, %" PRIu64 " bytes left to receive",
3787 state->header.stream_id, state->received,
3788 state->left_to_receive);
5312a3ed 3789 goto end_stream_unlock;
0848dba7 3790 }
5ab7344e 3791
c35f9726
JG
3792 ret = stream_write(stream, NULL, state->header.padding_size);
3793 if (ret) {
5569b118 3794 status = RELAY_CONNECTION_STATUS_ERROR;
7591bab1 3795 goto end_stream_unlock;
1d4dfdef 3796 }
5312a3ed 3797
298a25ca 3798 if (session_streams_have_index(session)) {
c35f9726
JG
3799 ret = stream_update_index(stream, state->header.net_seq_num,
3800 state->rotate_index, &index_flushed,
3801 state->header.data_size + state->header.padding_size);
5312a3ed 3802 if (ret < 0) {
c35f9726 3803 ERR("Failed to update index: stream %" PRIu64 " net_seq_num %" PRIu64 " ret %d",
5312a3ed
JG
3804 stream->stream_handle,
3805 state->header.net_seq_num, ret);
5569b118 3806 status = RELAY_CONNECTION_STATUS_ERROR;
5312a3ed
JG
3807 goto end_stream_unlock;
3808 }
3809 }
3810
a8f9f353 3811 if (stream->prev_data_seq == -1ULL) {
c0bae11d
MD
3812 new_stream = true;
3813 }
3814
c35f9726
JG
3815 ret = stream_complete_packet(stream, state->header.data_size +
3816 state->header.padding_size, state->header.net_seq_num,
3817 index_flushed);
3818 if (ret) {
3819 status = RELAY_CONNECTION_STATUS_ERROR;
3820 goto end_stream_unlock;
3821 }
5312a3ed
JG
3822
3823 /*
3824 * Resetting the protocol state (to RECEIVE_HEADER) will trash the
3825 * contents of *state which are aliased (union) to the same location as
3826 * the new state. Don't use it beyond this point.
3827 */
3828 connection_reset_protocol_state(conn);
3829 state = NULL;
173af62f 3830
7591bab1 3831end_stream_unlock:
bda7c7b9 3832 close_requested = stream->close_requested;
7591bab1 3833 pthread_mutex_unlock(&stream->lock);
5312a3ed 3834 if (close_requested && left_to_receive == 0) {
bda7c7b9
JG
3835 try_stream_close(stream);
3836 }
3837
c0bae11d
MD
3838 if (new_stream) {
3839 pthread_mutex_lock(&session->lock);
3840 uatomic_set(&session->new_streams, 1);
3841 pthread_mutex_unlock(&session->lock);
3842 }
5312a3ed 3843
7591bab1 3844 stream_put(stream);
b8aa1682 3845end:
5569b118 3846 return status;
b8aa1682
JD
3847}
3848
5312a3ed
JG
3849/*
3850 * relay_process_data: Process the data received on the data socket
3851 */
5569b118
JG
3852static enum relay_connection_status relay_process_data(
3853 struct relay_connection *conn)
5312a3ed 3854{
5569b118 3855 enum relay_connection_status status;
5312a3ed
JG
3856
3857 switch (conn->protocol.data.state_id) {
3858 case DATA_CONNECTION_STATE_RECEIVE_HEADER:
5569b118 3859 status = relay_process_data_receive_header(conn);
5312a3ed
JG
3860 break;
3861 case DATA_CONNECTION_STATE_RECEIVE_PAYLOAD:
5569b118 3862 status = relay_process_data_receive_payload(conn);
5312a3ed
JG
3863 break;
3864 default:
3865 ERR("Unexpected data connection communication state.");
3866 abort();
3867 }
3868
5569b118 3869 return status;
5312a3ed
JG
3870}
3871
7591bab1 3872static void cleanup_connection_pollfd(struct lttng_poll_event *events, int pollfd)
b8aa1682
JD
3873{
3874 int ret;
3875
58eb9381 3876 (void) lttng_poll_del(events, pollfd);
b8aa1682 3877
f355467e
JG
3878 ret = fd_tracker_close_unsuspendable_fd(the_fd_tracker, &pollfd, 1,
3879 fd_tracker_util_close_fd, NULL);
b8aa1682
JD
3880 if (ret < 0) {
3881 ERR("Closing pollfd %d", pollfd);
3882 }
3883}
3884
7591bab1
MD
3885static void relay_thread_close_connection(struct lttng_poll_event *events,
3886 int pollfd, struct relay_connection *conn)
9d1bbf21 3887{
7591bab1 3888 const char *type_str;
2a174661 3889
7591bab1
MD
3890 switch (conn->type) {
3891 case RELAY_DATA:
3892 type_str = "Data";
3893 break;
3894 case RELAY_CONTROL:
3895 type_str = "Control";
3896 break;
3897 case RELAY_VIEWER_COMMAND:
3898 type_str = "Viewer Command";
3899 break;
3900 case RELAY_VIEWER_NOTIFICATION:
3901 type_str = "Viewer Notification";
3902 break;
3903 default:
3904 type_str = "Unknown";
9d1bbf21 3905 }
7591bab1
MD
3906 cleanup_connection_pollfd(events, pollfd);
3907 connection_put(conn);
3908 DBG("%s connection closed with %d", type_str, pollfd);
b8aa1682
JD
3909}
3910
3911/*
3912 * This thread does the actual work
3913 */
f46376a1 3914static void *relay_thread_worker(void *data __attribute__((unused)))
b8aa1682 3915{
beaad64c
DG
3916 int ret, err = -1, last_seen_data_fd = -1;
3917 uint32_t nb_fd;
b8aa1682
JD
3918 struct lttng_poll_event events;
3919 struct lttng_ht *relay_connections_ht;
b8aa1682 3920 struct lttng_ht_iter iter;
90e7d72f 3921 struct relay_connection *destroy_conn = NULL;
b8aa1682
JD
3922
3923 DBG("[thread] Relay worker started");
3924
9d1bbf21
MD
3925 rcu_register_thread();
3926
55706a7d
MD
3927 health_register(health_relayd, HEALTH_RELAYD_TYPE_WORKER);
3928
9b5e0863
MD
3929 if (testpoint(relayd_thread_worker)) {
3930 goto error_testpoint;
3931 }
3932
f385ae0a
MD
3933 health_code_update();
3934
b8aa1682
JD
3935 /* table of connections indexed on socket */
3936 relay_connections_ht = lttng_ht_new(0, LTTNG_HT_TYPE_ULONG);
095a4ae5
MD
3937 if (!relay_connections_ht) {
3938 goto relay_connections_ht_error;
3939 }
b8aa1682 3940
e32a0864 3941 ret = create_named_thread_poll_set(&events, 2, "Worker thread epoll");
b8aa1682
JD
3942 if (ret < 0) {
3943 goto error_poll_create;
3944 }
3945
58eb9381 3946 ret = lttng_poll_add(&events, relay_conn_pipe[0], LPOLLIN | LPOLLRDHUP);
b8aa1682
JD
3947 if (ret < 0) {
3948 goto error;
3949 }
3950
beaad64c 3951restart:
b8aa1682 3952 while (1) {
beaad64c
DG
3953 int idx = -1, i, seen_control = 0, last_notdel_data_fd = -1;
3954
f385ae0a
MD
3955 health_code_update();
3956
b8aa1682 3957 /* Infinite blocking call, waiting for transmission */
87c1611d 3958 DBG3("Relayd worker thread polling...");
f385ae0a 3959 health_poll_entry();
b8aa1682 3960 ret = lttng_poll_wait(&events, -1);
f385ae0a 3961 health_poll_exit();
b8aa1682
JD
3962 if (ret < 0) {
3963 /*
3964 * Restart interrupted system call.
3965 */
3966 if (errno == EINTR) {
3967 goto restart;
3968 }
3969 goto error;
3970 }
3971
0d9c5d77
DG
3972 nb_fd = ret;
3973
beaad64c 3974 /*
7591bab1
MD
3975 * Process control. The control connection is
3976 * prioritized so we don't starve it with high
3977 * throughput tracing data on the data connection.
beaad64c 3978 */
b8aa1682
JD
3979 for (i = 0; i < nb_fd; i++) {
3980 /* Fetch once the poll data */
beaad64c
DG
3981 uint32_t revents = LTTNG_POLL_GETEV(&events, i);
3982 int pollfd = LTTNG_POLL_GETFD(&events, i);
b8aa1682 3983
f385ae0a
MD
3984 health_code_update();
3985
b8aa1682
JD
3986 /* Thread quit pipe has been closed. Killing thread. */
3987 ret = check_thread_quit_pipe(pollfd, revents);
3988 if (ret) {
095a4ae5
MD
3989 err = 0;
3990 goto exit;
b8aa1682
JD
3991 }
3992
58eb9381
DG
3993 /* Inspect the relay conn pipe for new connection */
3994 if (pollfd == relay_conn_pipe[0]) {
03e43155 3995 if (revents & LPOLLIN) {
90e7d72f
JG
3996 struct relay_connection *conn;
3997
58eb9381 3998 ret = lttng_read(relay_conn_pipe[0], &conn, sizeof(conn));
b8aa1682
JD
3999 if (ret < 0) {
4000 goto error;
4001 }
73039936
FD
4002 ret = lttng_poll_add(&events,
4003 conn->sock->fd,
58eb9381 4004 LPOLLIN | LPOLLRDHUP);
73039936
FD
4005 if (ret) {
4006 ERR("Failed to add new connection file descriptor to poll set");
4007 goto error;
4008 }
7591bab1 4009 connection_ht_add(relay_connections_ht, conn);
58eb9381 4010 DBG("Connection socket %d added", conn->sock->fd);
03e43155
MD
4011 } else if (revents & (LPOLLERR | LPOLLHUP | LPOLLRDHUP)) {
4012 ERR("Relay connection pipe error");
4013 goto error;
4014 } else {
4015 ERR("Unexpected poll events %u for sock %d", revents, pollfd);
4016 goto error;
b8aa1682 4017 }
58eb9381 4018 } else {
90e7d72f
JG
4019 struct relay_connection *ctrl_conn;
4020
7591bab1 4021 ctrl_conn = connection_get_by_sock(relay_connections_ht, pollfd);
58eb9381 4022 /* If not found, there is a synchronization issue. */
a0377dfe 4023 LTTNG_ASSERT(ctrl_conn);
58eb9381 4024
03e43155
MD
4025 if (ctrl_conn->type == RELAY_DATA) {
4026 if (revents & LPOLLIN) {
beaad64c
DG
4027 /*
4028 * Flag the last seen data fd not deleted. It will be
4029 * used as the last seen fd if any fd gets deleted in
4030 * this first loop.
4031 */
4032 last_notdel_data_fd = pollfd;
4033 }
03e43155
MD
4034 goto put_ctrl_connection;
4035 }
a0377dfe 4036 LTTNG_ASSERT(ctrl_conn->type == RELAY_CONTROL);
03e43155
MD
4037
4038 if (revents & LPOLLIN) {
5569b118
JG
4039 enum relay_connection_status status;
4040
4041 status = relay_process_control(ctrl_conn);
4042 if (status != RELAY_CONNECTION_STATUS_OK) {
fd0f1e3e
JR
4043 /*
4044 * On socket error flag the session as aborted to force
4045 * the cleanup of its stream otherwise it can leak
4046 * during the lifetime of the relayd.
4047 *
4048 * This prevents situations in which streams can be
4049 * left opened because an index was received, the
4050 * control connection is closed, and the data
4051 * connection is closed (uncleanly) before the packet's
4052 * data provided.
4053 *
4054 * Since the control connection encountered an error,
4055 * it is okay to be conservative and close the
4056 * session right now as we can't rely on the protocol
4057 * being respected anymore.
4058 */
4059 if (status == RELAY_CONNECTION_STATUS_ERROR) {
4060 session_abort(ctrl_conn->session);
4061 }
4062
5569b118 4063 /* Clear the connection on error or close. */
5312a3ed
JG
4064 relay_thread_close_connection(&events,
4065 pollfd,
03e43155 4066 ctrl_conn);
03e43155 4067 }
5312a3ed 4068 seen_control = 1;
03e43155
MD
4069 } else if (revents & (LPOLLERR | LPOLLHUP | LPOLLRDHUP)) {
4070 relay_thread_close_connection(&events,
4071 pollfd, ctrl_conn);
4072 if (last_seen_data_fd == pollfd) {
4073 last_seen_data_fd = last_notdel_data_fd;
4074 }
58eb9381 4075 } else {
03e43155
MD
4076 ERR("Unexpected poll events %u for control sock %d",
4077 revents, pollfd);
4078 connection_put(ctrl_conn);
4079 goto error;
beaad64c 4080 }
03e43155 4081 put_ctrl_connection:
7591bab1 4082 connection_put(ctrl_conn);
beaad64c
DG
4083 }
4084 }
4085
4086 /*
4087 * The last loop handled a control request, go back to poll to make
4088 * sure we prioritise the control socket.
4089 */
4090 if (seen_control) {
4091 continue;
4092 }
4093
4094 if (last_seen_data_fd >= 0) {
4095 for (i = 0; i < nb_fd; i++) {
4096 int pollfd = LTTNG_POLL_GETFD(&events, i);
f385ae0a
MD
4097
4098 health_code_update();
4099
beaad64c
DG
4100 if (last_seen_data_fd == pollfd) {
4101 idx = i;
4102 break;
4103 }
4104 }
4105 }
4106
4107 /* Process data connection. */
4108 for (i = idx + 1; i < nb_fd; i++) {
4109 /* Fetch the poll data. */
4110 uint32_t revents = LTTNG_POLL_GETEV(&events, i);
4111 int pollfd = LTTNG_POLL_GETFD(&events, i);
90e7d72f 4112 struct relay_connection *data_conn;
beaad64c 4113
f385ae0a
MD
4114 health_code_update();
4115
fd20dac9
MD
4116 if (!revents) {
4117 /* No activity for this FD (poll implementation). */
4118 continue;
4119 }
4120
beaad64c 4121 /* Skip the command pipe. It's handled in the first loop. */
58eb9381 4122 if (pollfd == relay_conn_pipe[0]) {
beaad64c
DG
4123 continue;
4124 }
4125
7591bab1 4126 data_conn = connection_get_by_sock(relay_connections_ht, pollfd);
90e7d72f 4127 if (!data_conn) {
fd20dac9 4128 /* Skip it. Might be removed before. */
fd20dac9
MD
4129 continue;
4130 }
03e43155
MD
4131 if (data_conn->type == RELAY_CONTROL) {
4132 goto put_data_connection;
4133 }
a0377dfe 4134 LTTNG_ASSERT(data_conn->type == RELAY_DATA);
fd20dac9
MD
4135
4136 if (revents & LPOLLIN) {
5569b118
JG
4137 enum relay_connection_status status;
4138
4139 status = relay_process_data(data_conn);
4140 /* Connection closed or error. */
4141 if (status != RELAY_CONNECTION_STATUS_OK) {
fd0f1e3e
JR
4142 /*
4143 * On socket error flag the session as aborted to force
4144 * the cleanup of its stream otherwise it can leak
4145 * during the lifetime of the relayd.
4146 *
4147 * This prevents situations in which streams can be
4148 * left opened because an index was received, the
4149 * control connection is closed, and the data
4150 * connection is closed (uncleanly) before the packet's
4151 * data provided.
4152 *
4153 * Since the data connection encountered an error,
4154 * it is okay to be conservative and close the
4155 * session right now as we can't rely on the protocol
4156 * being respected anymore.
4157 */
4158 if (status == RELAY_CONNECTION_STATUS_ERROR) {
4159 session_abort(data_conn->session);
4160 }
7591bab1 4161 relay_thread_close_connection(&events, pollfd,
03e43155 4162 data_conn);
fd20dac9
MD
4163 /*
4164 * Every goto restart call sets the last seen fd where
4165 * here we don't really care since we gracefully
4166 * continue the loop after the connection is deleted.
4167 */
4168 } else {
4169 /* Keep last seen port. */
4170 last_seen_data_fd = pollfd;
7591bab1 4171 connection_put(data_conn);
fd20dac9 4172 goto restart;
b8aa1682 4173 }
03e43155
MD
4174 } else if (revents & (LPOLLERR | LPOLLHUP | LPOLLRDHUP)) {
4175 relay_thread_close_connection(&events, pollfd,
4176 data_conn);
4177 } else {
4178 ERR("Unknown poll events %u for data sock %d",
4179 revents, pollfd);
b8aa1682 4180 }
03e43155 4181 put_data_connection:
7591bab1 4182 connection_put(data_conn);
b8aa1682 4183 }
beaad64c 4184 last_seen_data_fd = -1;
b8aa1682
JD
4185 }
4186
f385ae0a
MD
4187 /* Normal exit, no error */
4188 ret = 0;
4189
095a4ae5 4190exit:
b8aa1682 4191error:
71efa8ef 4192 /* Cleanup remaining connection object. */
9d1bbf21 4193 rcu_read_lock();
90e7d72f
JG
4194 cds_lfht_for_each_entry(relay_connections_ht->ht, &iter.iter,
4195 destroy_conn,
58eb9381 4196 sock_n.node) {
f385ae0a 4197 health_code_update();
98ba050e 4198
fd0f1e3e 4199 session_abort(destroy_conn->session);
98ba050e 4200
7591bab1
MD
4201 /*
4202 * No need to grab another ref, because we own
4203 * destroy_conn.
4204 */
4205 relay_thread_close_connection(&events, destroy_conn->sock->fd,
4206 destroy_conn);
b8aa1682 4207 }
94d49140 4208 rcu_read_unlock();
7591bab1 4209
e32a0864 4210 (void) fd_tracker_util_poll_clean(the_fd_tracker, &events);
7d2f7452 4211error_poll_create:
b8aa1682 4212 lttng_ht_destroy(relay_connections_ht);
095a4ae5 4213relay_connections_ht_error:
58eb9381 4214 /* Close relay conn pipes */
726b2396
JG
4215 (void) fd_tracker_util_pipe_close(the_fd_tracker,
4216 relay_conn_pipe);
095a4ae5
MD
4217 if (err) {
4218 DBG("Thread exited with error");
4219 }
b8aa1682 4220 DBG("Worker thread cleanup complete");
9b5e0863 4221error_testpoint:
f385ae0a
MD
4222 if (err) {
4223 health_error();
4224 ERR("Health error occurred in %s", __func__);
4225 }
4226 health_unregister(health_relayd);
9d1bbf21 4227 rcu_unregister_thread();
b4aacfdc 4228 lttng_relay_stop_threads();
b8aa1682
JD
4229 return NULL;
4230}
4231
4232/*
4233 * Create the relay command pipe to wake thread_manage_apps.
4234 * Closed in cleanup().
4235 */
58eb9381 4236static int create_relay_conn_pipe(void)
b8aa1682 4237{
726b2396
JG
4238 return fd_tracker_util_pipe_open_cloexec(the_fd_tracker,
4239 "Relayd connection pipe", relay_conn_pipe);
b8aa1682
JD
4240}
4241
f46376a1 4242static int stdio_open(void *data __attribute__((unused)), int *fds)
9c256b01
JG
4243{
4244 fds[0] = fileno(stdout);
4245 fds[1] = fileno(stderr);
4246 return 0;
4247}
4248
9c256b01
JG
4249static int track_stdio(void)
4250{
4251 int fds[2];
4252 const char *names[] = { "stdout", "stderr" };
4253
4254 return fd_tracker_open_unsuspendable_fd(the_fd_tracker, fds,
4255 names, 2, stdio_open, NULL);
4256}
4257
b8aa1682
JD
4258/*
4259 * main
4260 */
4261int main(int argc, char **argv)
4262{
00e3b7f1 4263 bool thread_is_rcu_registered = false;
178a0557 4264 int ret = 0, retval = 0;
b8aa1682 4265 void *status;
f7c3ffd7 4266 char *unlinked_file_directory_path = NULL, *output_path = NULL;
b8aa1682 4267
2a10de3b
JR
4268 /* Parse environment variables */
4269 ret = parse_env_options();
4270 if (ret) {
4271 retval = -1;
4272 goto exit_options;
4273 }
4274
4275 /*
4276 * Parse arguments.
4277 * Command line arguments overwrite environment.
4278 */
b8aa1682 4279 progname = argv[0];
178a0557
MD
4280 if (set_options(argc, argv)) {
4281 retval = -1;
4282 goto exit_options;
b8aa1682
JD
4283 }
4284
178a0557
MD
4285 if (set_signal_handler()) {
4286 retval = -1;
4287 goto exit_options;
b8aa1682
JD
4288 }
4289
a3bc3918
JR
4290 relayd_config_log();
4291
4292 if (opt_print_version) {
4293 print_version();
4294 retval = 0;
4295 goto exit_options;
4296 }
4297
c0407718
JG
4298 ret = fclose(stdin);
4299 if (ret) {
4300 PERROR("Failed to close stdin");
4301 goto exit_options;
4302 }
4303
35ab25e5
MD
4304 DBG("Clear command %s", opt_allow_clear ? "allowed" : "disallowed");
4305
4d513a50
DG
4306 /* Try to create directory if -o, --output is specified. */
4307 if (opt_output_path) {
994fa64f
DG
4308 if (*opt_output_path != '/') {
4309 ERR("Please specify an absolute path for -o, --output PATH");
178a0557
MD
4310 retval = -1;
4311 goto exit_options;
994fa64f
DG
4312 }
4313
d77dded2
JG
4314 ret = utils_mkdir_recursive(opt_output_path, S_IRWXU | S_IRWXG,
4315 -1, -1);
4d513a50
DG
4316 if (ret < 0) {
4317 ERR("Unable to create %s", opt_output_path);
178a0557
MD
4318 retval = -1;
4319 goto exit_options;
4d513a50
DG
4320 }
4321 }
4322
b8aa1682 4323 /* Daemonize */
b5218ffb 4324 if (opt_daemon || opt_background) {
3fd27398
MD
4325 ret = lttng_daemonize(&child_ppid, &recv_child_signal,
4326 !opt_background);
b8aa1682 4327 if (ret < 0) {
178a0557
MD
4328 retval = -1;
4329 goto exit_options;
b8aa1682 4330 }
3fd27398
MD
4331 }
4332
ce9ee1fb
JR
4333 if (opt_working_directory) {
4334 ret = utils_change_working_directory(opt_working_directory);
4335 if (ret) {
4336 /* All errors are already logged. */
4337 goto exit_options;
4338 }
4339 }
4340
23c8ff50
JG
4341 sessiond_trace_chunk_registry = sessiond_trace_chunk_registry_create();
4342 if (!sessiond_trace_chunk_registry) {
4343 ERR("Failed to initialize session daemon trace chunk registry");
4344 retval = -1;
794e2e5f 4345 goto exit_options;
23c8ff50
JG
4346 }
4347
00e3b7f1
JG
4348 /*
4349 * The RCU thread registration (and use, through the fd-tracker's
4350 * creation) is done after the daemonization to allow us to not
4351 * deal with liburcu's fork() management as the call RCU needs to
4352 * be restored.
4353 */
4354 rcu_register_thread();
4355 thread_is_rcu_registered = true;
4356
f7c3ffd7
JG
4357 output_path = create_output_path("");
4358 if (!output_path) {
4359 ERR("Failed to get output path");
4360 retval = -1;
4361 goto exit_options;
4362 }
4363 ret = asprintf(&unlinked_file_directory_path, "%s/%s", output_path,
4364 DEFAULT_UNLINKED_FILES_DIRECTORY);
4365 free(output_path);
4366 if (ret < 0) {
4367 ERR("Failed to format unlinked file directory path");
4368 retval = -1;
4369 goto exit_options;
4370 }
4371 the_fd_tracker = fd_tracker_create(
4372 unlinked_file_directory_path, lttng_opt_fd_pool_size);
4373 free(unlinked_file_directory_path);
00e3b7f1
JG
4374 if (!the_fd_tracker) {
4375 retval = -1;
4376 goto exit_options;
4377 }
4378
9c256b01
JG
4379 ret = track_stdio();
4380 if (ret) {
4381 retval = -1;
4382 goto exit_options;
4383 }
4384
178a0557
MD
4385 /* Initialize thread health monitoring */
4386 health_relayd = health_app_create(NR_HEALTH_RELAYD_TYPES);
4387 if (!health_relayd) {
4388 PERROR("health_app_create error");
4389 retval = -1;
794e2e5f 4390 goto exit_options;
178a0557
MD
4391 }
4392
3fd27398 4393 /* Create thread quit pipe */
178a0557
MD
4394 if (init_thread_quit_pipe()) {
4395 retval = -1;
794e2e5f 4396 goto exit_options;
b8aa1682
JD
4397 }
4398
b8aa1682 4399 /* Setup the thread apps communication pipe. */
178a0557
MD
4400 if (create_relay_conn_pipe()) {
4401 retval = -1;
794e2e5f 4402 goto exit_options;
b8aa1682
JD
4403 }
4404
4405 /* Init relay command queue. */
8bdee6e2 4406 cds_wfcq_init(&relay_conn_queue.head, &relay_conn_queue.tail);
b8aa1682 4407
554831e7
MD
4408 /* Initialize communication library */
4409 lttcomm_init();
87e45c13 4410 lttcomm_inet_init();
554831e7 4411
d3e2ba59 4412 /* tables of sessions indexed by session ID */
7591bab1
MD
4413 sessions_ht = lttng_ht_new(0, LTTNG_HT_TYPE_U64);
4414 if (!sessions_ht) {
178a0557 4415 retval = -1;
794e2e5f 4416 goto exit_options;
d3e2ba59
JD
4417 }
4418
4419 /* tables of streams indexed by stream ID */
2a174661 4420 relay_streams_ht = lttng_ht_new(0, LTTNG_HT_TYPE_U64);
d3e2ba59 4421 if (!relay_streams_ht) {
178a0557 4422 retval = -1;
794e2e5f 4423 goto exit_options;
d3e2ba59
JD
4424 }
4425
4426 /* tables of streams indexed by stream ID */
92c6ca54
DG
4427 viewer_streams_ht = lttng_ht_new(0, LTTNG_HT_TYPE_U64);
4428 if (!viewer_streams_ht) {
178a0557 4429 retval = -1;
794e2e5f 4430 goto exit_options;
55706a7d
MD
4431 }
4432
bcee2b96 4433 ret = init_health_quit_pipe();
178a0557
MD
4434 if (ret) {
4435 retval = -1;
794e2e5f 4436 goto exit_options;
65931c8b
MD
4437 }
4438
4439 /* Create thread to manage the client socket */
1a1a34b4 4440 ret = pthread_create(&health_thread, default_pthread_attr(),
19708280 4441 thread_manage_health_relayd, (void *) NULL);
178a0557
MD
4442 if (ret) {
4443 errno = ret;
65931c8b 4444 PERROR("pthread_create health");
178a0557 4445 retval = -1;
794e2e5f 4446 goto exit_options;
65931c8b
MD
4447 }
4448
b8aa1682 4449 /* Setup the dispatcher thread */
1a1a34b4 4450 ret = pthread_create(&dispatcher_thread, default_pthread_attr(),
b8aa1682 4451 relay_thread_dispatcher, (void *) NULL);
178a0557
MD
4452 if (ret) {
4453 errno = ret;
b8aa1682 4454 PERROR("pthread_create dispatcher");
178a0557
MD
4455 retval = -1;
4456 goto exit_dispatcher_thread;
b8aa1682
JD
4457 }
4458
4459 /* Setup the worker thread */
1a1a34b4 4460 ret = pthread_create(&worker_thread, default_pthread_attr(),
7591bab1 4461 relay_thread_worker, NULL);
178a0557
MD
4462 if (ret) {
4463 errno = ret;
b8aa1682 4464 PERROR("pthread_create worker");
178a0557
MD
4465 retval = -1;
4466 goto exit_worker_thread;
b8aa1682
JD
4467 }
4468
4469 /* Setup the listener thread */
1a1a34b4 4470 ret = pthread_create(&listener_thread, default_pthread_attr(),
b8aa1682 4471 relay_thread_listener, (void *) NULL);
178a0557
MD
4472 if (ret) {
4473 errno = ret;
b8aa1682 4474 PERROR("pthread_create listener");
178a0557
MD
4475 retval = -1;
4476 goto exit_listener_thread;
b8aa1682
JD
4477 }
4478
7591bab1 4479 ret = relayd_live_create(live_uri);
178a0557 4480 if (ret) {
d3e2ba59 4481 ERR("Starting live viewer threads");
178a0557 4482 retval = -1;
50138f51 4483 goto exit_live;
d3e2ba59
JD
4484 }
4485
178a0557
MD
4486 /*
4487 * This is where we start awaiting program completion (e.g. through
4488 * signal that asks threads to teardown).
4489 */
4490
4491 ret = relayd_live_join();
4492 if (ret) {
4493 retval = -1;
4494 }
50138f51 4495exit_live:
178a0557 4496
b8aa1682 4497 ret = pthread_join(listener_thread, &status);
178a0557
MD
4498 if (ret) {
4499 errno = ret;
4500 PERROR("pthread_join listener_thread");
4501 retval = -1;
b8aa1682
JD
4502 }
4503
178a0557 4504exit_listener_thread:
b8aa1682 4505 ret = pthread_join(worker_thread, &status);
178a0557
MD
4506 if (ret) {
4507 errno = ret;
4508 PERROR("pthread_join worker_thread");
4509 retval = -1;
b8aa1682
JD
4510 }
4511
178a0557 4512exit_worker_thread:
b8aa1682 4513 ret = pthread_join(dispatcher_thread, &status);
178a0557
MD
4514 if (ret) {
4515 errno = ret;
4516 PERROR("pthread_join dispatcher_thread");
4517 retval = -1;
b8aa1682 4518 }
178a0557 4519exit_dispatcher_thread:
42415026 4520
65931c8b 4521 ret = pthread_join(health_thread, &status);
178a0557
MD
4522 if (ret) {
4523 errno = ret;
4524 PERROR("pthread_join health_thread");
4525 retval = -1;
65931c8b 4526 }
178a0557 4527exit_options:
4d62fbf8
MD
4528 /*
4529 * Wait for all pending call_rcu work to complete before tearing
4530 * down data structures. call_rcu worker may be trying to
4531 * perform lookups in those structures.
4532 */
4533 rcu_barrier();
7591bab1
MD
4534 relayd_cleanup();
4535
4536 /* Ensure all prior call_rcu are done. */
4537 rcu_barrier();
d3e2ba59 4538
00e3b7f1
JG
4539 if (thread_is_rcu_registered) {
4540 rcu_unregister_thread();
4541 }
4542
178a0557 4543 if (!retval) {
b8aa1682 4544 exit(EXIT_SUCCESS);
178a0557
MD
4545 } else {
4546 exit(EXIT_FAILURE);
b8aa1682 4547 }
b8aa1682 4548}
This page took 0.348653 seconds and 4 git commands to generate.