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