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