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