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