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