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