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