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