2ce9bf048bdd17e0c0402a7ef9ac467683885392
[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 _GNU_SOURCE
22 #define _LGPL_SOURCE
23 #include <getopt.h>
24 #include <grp.h>
25 #include <limits.h>
26 #include <pthread.h>
27 #include <signal.h>
28 #include <stdio.h>
29 #include <stdlib.h>
30 #include <string.h>
31 #include <sys/mman.h>
32 #include <sys/mount.h>
33 #include <sys/resource.h>
34 #include <sys/socket.h>
35 #include <sys/stat.h>
36 #include <sys/types.h>
37 #include <sys/wait.h>
38 #include <inttypes.h>
39 #include <urcu/futex.h>
40 #include <urcu/uatomic.h>
41 #include <unistd.h>
42 #include <fcntl.h>
43 #include <config.h>
44
45 #include <lttng/lttng.h>
46 #include <common/common.h>
47 #include <common/compat/poll.h>
48 #include <common/compat/socket.h>
49 #include <common/compat/endian.h>
50 #include <common/compat/getenv.h>
51 #include <common/defaults.h>
52 #include <common/daemonize.h>
53 #include <common/futex.h>
54 #include <common/sessiond-comm/sessiond-comm.h>
55 #include <common/sessiond-comm/inet.h>
56 #include <common/sessiond-comm/relayd.h>
57 #include <common/uri.h>
58 #include <common/utils.h>
59 #include <common/config/config.h>
60 #include <urcu/rculist.h>
61
62 #include "cmd.h"
63 #include "ctf-trace.h"
64 #include "index.h"
65 #include "utils.h"
66 #include "lttng-relayd.h"
67 #include "live.h"
68 #include "health-relayd.h"
69 #include "testpoint.h"
70 #include "viewer-stream.h"
71 #include "session.h"
72 #include "stream.h"
73 #include "connection.h"
74 #include "tracefile-array.h"
75
76 /* command line options */
77 char *opt_output_path;
78 static int opt_daemon, opt_background;
79
80 /*
81 * We need to wait for listener and live listener threads, as well as
82 * health check thread, before being ready to signal readiness.
83 */
84 #define NR_LTTNG_RELAY_READY 3
85 static int lttng_relay_ready = NR_LTTNG_RELAY_READY;
86 static int recv_child_signal; /* Set to 1 when a SIGUSR1 signal is received. */
87 static pid_t child_ppid; /* Internal parent PID use with daemonize. */
88
89 static struct lttng_uri *control_uri;
90 static struct lttng_uri *data_uri;
91 static struct lttng_uri *live_uri;
92
93 const char *progname;
94
95 const char *tracing_group_name = DEFAULT_TRACING_GROUP;
96 static int tracing_group_name_override;
97
98 const char * const config_section_name = "relayd";
99
100 /*
101 * Quit pipe for all threads. This permits a single cancellation point
102 * for all threads when receiving an event on the pipe.
103 */
104 int thread_quit_pipe[2] = { -1, -1 };
105
106 /*
107 * This pipe is used to inform the worker thread that a command is queued and
108 * ready to be processed.
109 */
110 static int relay_conn_pipe[2] = { -1, -1 };
111
112 /* Shared between threads */
113 static int dispatch_thread_exit;
114
115 static pthread_t listener_thread;
116 static pthread_t dispatcher_thread;
117 static pthread_t worker_thread;
118 static pthread_t health_thread;
119
120 /*
121 * last_relay_stream_id_lock protects last_relay_stream_id increment
122 * atomicity on 32-bit architectures.
123 */
124 static pthread_mutex_t last_relay_stream_id_lock = PTHREAD_MUTEX_INITIALIZER;
125 static uint64_t last_relay_stream_id;
126
127 /*
128 * Relay command queue.
129 *
130 * The relay_thread_listener and relay_thread_dispatcher communicate with this
131 * queue.
132 */
133 static struct relay_conn_queue relay_conn_queue;
134
135 /* buffer allocated at startup, used to store the trace data */
136 static char *data_buffer;
137 static unsigned int data_buffer_size;
138
139 /* Global relay stream hash table. */
140 struct lttng_ht *relay_streams_ht;
141
142 /* Global relay viewer stream hash table. */
143 struct lttng_ht *viewer_streams_ht;
144
145 /* Global relay sessions hash table. */
146 struct lttng_ht *sessions_ht;
147
148 /* Relayd health monitoring */
149 struct health_app *health_relayd;
150
151 static struct option long_options[] = {
152 { "control-port", 1, 0, 'C', },
153 { "data-port", 1, 0, 'D', },
154 { "live-port", 1, 0, 'L', },
155 { "daemonize", 0, 0, 'd', },
156 { "background", 0, 0, 'b', },
157 { "group", 1, 0, 'g', },
158 { "help", 0, 0, 'h', },
159 { "output", 1, 0, 'o', },
160 { "verbose", 0, 0, 'v', },
161 { "config", 1, 0, 'f' },
162 { NULL, 0, 0, 0, },
163 };
164
165 static const char *config_ignore_options[] = { "help", "config" };
166
167 /*
168 * usage function on stderr
169 */
170 static void usage(void)
171 {
172 fprintf(stderr, "Usage: %s OPTIONS\n\nOptions:\n", progname);
173 fprintf(stderr, " -h, --help Display this usage.\n");
174 fprintf(stderr, " -d, --daemonize Start as a daemon.\n");
175 fprintf(stderr, " -b, --background Start as a daemon, keeping console open.\n");
176 fprintf(stderr, " -C, --control-port URL Control port listening.\n");
177 fprintf(stderr, " -D, --data-port URL Data port listening.\n");
178 fprintf(stderr, " -L, --live-port URL Live view port listening.\n");
179 fprintf(stderr, " -o, --output PATH Output path for traces. Must use an absolute path.\n");
180 fprintf(stderr, " -v, --verbose Verbose mode. Activate DBG() macro.\n");
181 fprintf(stderr, " -g, --group NAME Specify the tracing group name. (default: tracing)\n");
182 fprintf(stderr, " -f --config Load daemon configuration file\n");
183 }
184
185 /*
186 * Take an option from the getopt output and set it in the right variable to be
187 * used later.
188 *
189 * Return 0 on success else a negative value.
190 */
191 static int set_option(int opt, const char *arg, const char *optname)
192 {
193 int ret;
194
195 switch (opt) {
196 case 0:
197 fprintf(stderr, "option %s", optname);
198 if (arg) {
199 fprintf(stderr, " with arg %s\n", arg);
200 }
201 break;
202 case 'C':
203 if (lttng_is_setuid_setgid()) {
204 WARN("Getting '%s' argument from setuid/setgid binary refused for security reasons.",
205 "-C, --control-port");
206 } else {
207 ret = uri_parse(arg, &control_uri);
208 if (ret < 0) {
209 ERR("Invalid control URI specified");
210 goto end;
211 }
212 if (control_uri->port == 0) {
213 control_uri->port = DEFAULT_NETWORK_CONTROL_PORT;
214 }
215 }
216 break;
217 case 'D':
218 if (lttng_is_setuid_setgid()) {
219 WARN("Getting '%s' argument from setuid/setgid binary refused for security reasons.",
220 "-D, -data-port");
221 } else {
222 ret = uri_parse(arg, &data_uri);
223 if (ret < 0) {
224 ERR("Invalid data URI specified");
225 goto end;
226 }
227 if (data_uri->port == 0) {
228 data_uri->port = DEFAULT_NETWORK_DATA_PORT;
229 }
230 }
231 break;
232 case 'L':
233 if (lttng_is_setuid_setgid()) {
234 WARN("Getting '%s' argument from setuid/setgid binary refused for security reasons.",
235 "-L, -live-port");
236 } else {
237 ret = uri_parse(arg, &live_uri);
238 if (ret < 0) {
239 ERR("Invalid live URI specified");
240 goto end;
241 }
242 if (live_uri->port == 0) {
243 live_uri->port = DEFAULT_NETWORK_VIEWER_PORT;
244 }
245 }
246 break;
247 case 'd':
248 opt_daemon = 1;
249 break;
250 case 'b':
251 opt_background = 1;
252 break;
253 case 'g':
254 if (lttng_is_setuid_setgid()) {
255 WARN("Getting '%s' argument from setuid/setgid binary refused for security reasons.",
256 "-g, --group");
257 } else {
258 tracing_group_name = strdup(arg);
259 if (tracing_group_name == NULL) {
260 ret = -errno;
261 PERROR("strdup");
262 goto end;
263 }
264 tracing_group_name_override = 1;
265 }
266 break;
267 case 'h':
268 usage();
269 exit(EXIT_FAILURE);
270 case 'o':
271 if (lttng_is_setuid_setgid()) {
272 WARN("Getting '%s' argument from setuid/setgid binary refused for security reasons.",
273 "-o, --output");
274 } else {
275 ret = asprintf(&opt_output_path, "%s", arg);
276 if (ret < 0) {
277 ret = -errno;
278 PERROR("asprintf opt_output_path");
279 goto end;
280 }
281 }
282 break;
283 case 'v':
284 /* Verbose level can increase using multiple -v */
285 if (arg) {
286 lttng_opt_verbose = config_parse_value(arg);
287 } else {
288 /* Only 3 level of verbosity (-vvv). */
289 if (lttng_opt_verbose < 3) {
290 lttng_opt_verbose += 1;
291 }
292 }
293 break;
294 default:
295 /* Unknown option or other error.
296 * Error is printed by getopt, just return */
297 ret = -1;
298 goto end;
299 }
300
301 /* All good. */
302 ret = 0;
303
304 end:
305 return ret;
306 }
307
308 /*
309 * config_entry_handler_cb used to handle options read from a config file.
310 * See config_entry_handler_cb comment in common/config/config.h for the
311 * return value conventions.
312 */
313 static int config_entry_handler(const struct config_entry *entry, void *unused)
314 {
315 int ret = 0, i;
316
317 if (!entry || !entry->name || !entry->value) {
318 ret = -EINVAL;
319 goto end;
320 }
321
322 /* Check if the option is to be ignored */
323 for (i = 0; i < sizeof(config_ignore_options) / sizeof(char *); i++) {
324 if (!strcmp(entry->name, config_ignore_options[i])) {
325 goto end;
326 }
327 }
328
329 for (i = 0; i < (sizeof(long_options) / sizeof(struct option)) - 1; i++) {
330 /* Ignore if entry name is not fully matched. */
331 if (strcmp(entry->name, long_options[i].name)) {
332 continue;
333 }
334
335 /*
336 * If the option takes no argument on the command line,
337 * we have to check if the value is "true". We support
338 * non-zero numeric values, true, on and yes.
339 */
340 if (!long_options[i].has_arg) {
341 ret = config_parse_value(entry->value);
342 if (ret <= 0) {
343 if (ret) {
344 WARN("Invalid configuration value \"%s\" for option %s",
345 entry->value, entry->name);
346 }
347 /* False, skip boolean config option. */
348 goto end;
349 }
350 }
351
352 ret = set_option(long_options[i].val, entry->value, entry->name);
353 goto end;
354 }
355
356 WARN("Unrecognized option \"%s\" in daemon configuration file.",
357 entry->name);
358
359 end:
360 return ret;
361 }
362
363 static int set_options(int argc, char **argv)
364 {
365 int c, ret = 0, option_index = 0, retval = 0;
366 int orig_optopt = optopt, orig_optind = optind;
367 char *default_address, *optstring;
368 const char *config_path = NULL;
369
370 optstring = utils_generate_optstring(long_options,
371 sizeof(long_options) / sizeof(struct option));
372 if (!optstring) {
373 retval = -ENOMEM;
374 goto exit;
375 }
376
377 /* Check for the --config option */
378
379 while ((c = getopt_long(argc, argv, optstring, long_options,
380 &option_index)) != -1) {
381 if (c == '?') {
382 retval = -EINVAL;
383 goto exit;
384 } else if (c != 'f') {
385 continue;
386 }
387
388 if (lttng_is_setuid_setgid()) {
389 WARN("Getting '%s' argument from setuid/setgid binary refused for security reasons.",
390 "-f, --config");
391 } else {
392 config_path = utils_expand_path(optarg);
393 if (!config_path) {
394 ERR("Failed to resolve path: %s", optarg);
395 }
396 }
397 }
398
399 ret = config_get_section_entries(config_path, config_section_name,
400 config_entry_handler, NULL);
401 if (ret) {
402 if (ret > 0) {
403 ERR("Invalid configuration option at line %i", ret);
404 }
405 retval = -1;
406 goto exit;
407 }
408
409 /* Reset getopt's global state */
410 optopt = orig_optopt;
411 optind = orig_optind;
412 while (1) {
413 c = getopt_long(argc, argv, optstring, long_options, &option_index);
414 if (c == -1) {
415 break;
416 }
417
418 ret = set_option(c, optarg, long_options[option_index].name);
419 if (ret < 0) {
420 retval = -1;
421 goto exit;
422 }
423 }
424
425 /* assign default values */
426 if (control_uri == NULL) {
427 ret = asprintf(&default_address,
428 "tcp://" DEFAULT_NETWORK_CONTROL_BIND_ADDRESS ":%d",
429 DEFAULT_NETWORK_CONTROL_PORT);
430 if (ret < 0) {
431 PERROR("asprintf default data address");
432 retval = -1;
433 goto exit;
434 }
435
436 ret = uri_parse(default_address, &control_uri);
437 free(default_address);
438 if (ret < 0) {
439 ERR("Invalid control URI specified");
440 retval = -1;
441 goto exit;
442 }
443 }
444 if (data_uri == NULL) {
445 ret = asprintf(&default_address,
446 "tcp://" DEFAULT_NETWORK_DATA_BIND_ADDRESS ":%d",
447 DEFAULT_NETWORK_DATA_PORT);
448 if (ret < 0) {
449 PERROR("asprintf default data address");
450 retval = -1;
451 goto exit;
452 }
453
454 ret = uri_parse(default_address, &data_uri);
455 free(default_address);
456 if (ret < 0) {
457 ERR("Invalid data URI specified");
458 retval = -1;
459 goto exit;
460 }
461 }
462 if (live_uri == NULL) {
463 ret = asprintf(&default_address,
464 "tcp://" DEFAULT_NETWORK_VIEWER_BIND_ADDRESS ":%d",
465 DEFAULT_NETWORK_VIEWER_PORT);
466 if (ret < 0) {
467 PERROR("asprintf default viewer control address");
468 retval = -1;
469 goto exit;
470 }
471
472 ret = uri_parse(default_address, &live_uri);
473 free(default_address);
474 if (ret < 0) {
475 ERR("Invalid viewer control URI specified");
476 retval = -1;
477 goto exit;
478 }
479 }
480
481 exit:
482 free(optstring);
483 return retval;
484 }
485
486 static void print_global_objects(void)
487 {
488 rcu_register_thread();
489
490 print_viewer_streams();
491 print_relay_streams();
492 print_sessions();
493
494 rcu_unregister_thread();
495 }
496
497 /*
498 * Cleanup the daemon
499 */
500 static void relayd_cleanup(void)
501 {
502 print_global_objects();
503
504 DBG("Cleaning up");
505
506 if (viewer_streams_ht)
507 lttng_ht_destroy(viewer_streams_ht);
508 if (relay_streams_ht)
509 lttng_ht_destroy(relay_streams_ht);
510 if (sessions_ht)
511 lttng_ht_destroy(sessions_ht);
512
513 /* free the dynamically allocated opt_output_path */
514 free(opt_output_path);
515
516 /* Close thread quit pipes */
517 utils_close_pipe(thread_quit_pipe);
518
519 uri_free(control_uri);
520 uri_free(data_uri);
521 /* Live URI is freed in the live thread. */
522
523 if (tracing_group_name_override) {
524 free((void *) tracing_group_name);
525 }
526 }
527
528 /*
529 * Write to writable pipe used to notify a thread.
530 */
531 static int notify_thread_pipe(int wpipe)
532 {
533 ssize_t ret;
534
535 ret = lttng_write(wpipe, "!", 1);
536 if (ret < 1) {
537 PERROR("write poll pipe");
538 goto end;
539 }
540 ret = 0;
541 end:
542 return ret;
543 }
544
545 static int notify_health_quit_pipe(int *pipe)
546 {
547 ssize_t ret;
548
549 ret = lttng_write(pipe[1], "4", 1);
550 if (ret < 1) {
551 PERROR("write relay health quit");
552 goto end;
553 }
554 ret = 0;
555 end:
556 return ret;
557 }
558
559 /*
560 * Stop all relayd and relayd-live threads.
561 */
562 int lttng_relay_stop_threads(void)
563 {
564 int retval = 0;
565
566 /* Stopping all threads */
567 DBG("Terminating all threads");
568 if (notify_thread_pipe(thread_quit_pipe[1])) {
569 ERR("write error on thread quit pipe");
570 retval = -1;
571 }
572
573 if (notify_health_quit_pipe(health_quit_pipe)) {
574 ERR("write error on health quit pipe");
575 }
576
577 /* Dispatch thread */
578 CMM_STORE_SHARED(dispatch_thread_exit, 1);
579 futex_nto1_wake(&relay_conn_queue.futex);
580
581 if (relayd_live_stop()) {
582 ERR("Error stopping live threads");
583 retval = -1;
584 }
585 return retval;
586 }
587
588 /*
589 * Signal handler for the daemon
590 *
591 * Simply stop all worker threads, leaving main() return gracefully after
592 * joining all threads and calling cleanup().
593 */
594 static void sighandler(int sig)
595 {
596 switch (sig) {
597 case SIGPIPE:
598 DBG("SIGPIPE caught");
599 return;
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_handler = sighandler;
636 sa.sa_mask = sigset;
637 sa.sa_flags = 0;
638 if ((ret = sigaction(SIGTERM, &sa, NULL)) < 0) {
639 PERROR("sigaction");
640 return ret;
641 }
642
643 if ((ret = sigaction(SIGINT, &sa, NULL)) < 0) {
644 PERROR("sigaction");
645 return ret;
646 }
647
648 if ((ret = sigaction(SIGPIPE, &sa, NULL)) < 0) {
649 PERROR("sigaction");
650 return ret;
651 }
652
653 if ((ret = sigaction(SIGUSR1, &sa, NULL)) < 0) {
654 PERROR("sigaction");
655 return ret;
656 }
657
658 DBG("Signal handler set for SIGTERM, SIGUSR1, SIGPIPE and SIGINT");
659
660 return ret;
661 }
662
663 void lttng_relay_notify_ready(void)
664 {
665 /* Notify the parent of the fork() process that we are ready. */
666 if (opt_daemon || opt_background) {
667 if (uatomic_sub_return(&lttng_relay_ready, 1) == 0) {
668 kill(child_ppid, SIGUSR1);
669 }
670 }
671 }
672
673 /*
674 * Init thread quit pipe.
675 *
676 * Return -1 on error or 0 if all pipes are created.
677 */
678 static int init_thread_quit_pipe(void)
679 {
680 int ret;
681
682 ret = utils_create_pipe_cloexec(thread_quit_pipe);
683
684 return ret;
685 }
686
687 /*
688 * Create a poll set with O_CLOEXEC and add the thread quit pipe to the set.
689 */
690 static int create_thread_poll_set(struct lttng_poll_event *events, int size)
691 {
692 int ret;
693
694 if (events == NULL || size == 0) {
695 ret = -1;
696 goto error;
697 }
698
699 ret = lttng_poll_create(events, size, LTTNG_CLOEXEC);
700 if (ret < 0) {
701 goto error;
702 }
703
704 /* Add quit pipe */
705 ret = lttng_poll_add(events, thread_quit_pipe[0], LPOLLIN | LPOLLERR);
706 if (ret < 0) {
707 goto error;
708 }
709
710 return 0;
711
712 error:
713 return ret;
714 }
715
716 /*
717 * Check if the thread quit pipe was triggered.
718 *
719 * Return 1 if it was triggered else 0;
720 */
721 static int check_thread_quit_pipe(int fd, uint32_t events)
722 {
723 if (fd == thread_quit_pipe[0] && (events & LPOLLIN)) {
724 return 1;
725 }
726
727 return 0;
728 }
729
730 /*
731 * Create and init socket from uri.
732 */
733 static struct lttcomm_sock *relay_socket_create(struct lttng_uri *uri)
734 {
735 int ret;
736 struct lttcomm_sock *sock = NULL;
737
738 sock = lttcomm_alloc_sock_from_uri(uri);
739 if (sock == NULL) {
740 ERR("Allocating socket");
741 goto error;
742 }
743
744 ret = lttcomm_create_sock(sock);
745 if (ret < 0) {
746 goto error;
747 }
748 DBG("Listening on sock %d", sock->fd);
749
750 ret = sock->ops->bind(sock);
751 if (ret < 0) {
752 goto error;
753 }
754
755 ret = sock->ops->listen(sock, -1);
756 if (ret < 0) {
757 goto error;
758
759 }
760
761 return sock;
762
763 error:
764 if (sock) {
765 lttcomm_destroy_sock(sock);
766 }
767 return NULL;
768 }
769
770 /*
771 * This thread manages the listening for new connections on the network
772 */
773 static void *relay_thread_listener(void *data)
774 {
775 int i, ret, pollfd, err = -1;
776 uint32_t revents, nb_fd;
777 struct lttng_poll_event events;
778 struct lttcomm_sock *control_sock, *data_sock;
779
780 DBG("[thread] Relay listener started");
781
782 health_register(health_relayd, HEALTH_RELAYD_TYPE_LISTENER);
783
784 health_code_update();
785
786 control_sock = relay_socket_create(control_uri);
787 if (!control_sock) {
788 goto error_sock_control;
789 }
790
791 data_sock = relay_socket_create(data_uri);
792 if (!data_sock) {
793 goto error_sock_relay;
794 }
795
796 /*
797 * Pass 3 as size here for the thread quit pipe, control and
798 * data socket.
799 */
800 ret = create_thread_poll_set(&events, 3);
801 if (ret < 0) {
802 goto error_create_poll;
803 }
804
805 /* Add the control socket */
806 ret = lttng_poll_add(&events, control_sock->fd, LPOLLIN | LPOLLRDHUP);
807 if (ret < 0) {
808 goto error_poll_add;
809 }
810
811 /* Add the data socket */
812 ret = lttng_poll_add(&events, data_sock->fd, LPOLLIN | LPOLLRDHUP);
813 if (ret < 0) {
814 goto error_poll_add;
815 }
816
817 lttng_relay_notify_ready();
818
819 if (testpoint(relayd_thread_listener)) {
820 goto error_testpoint;
821 }
822
823 while (1) {
824 health_code_update();
825
826 DBG("Listener accepting connections");
827
828 restart:
829 health_poll_entry();
830 ret = lttng_poll_wait(&events, -1);
831 health_poll_exit();
832 if (ret < 0) {
833 /*
834 * Restart interrupted system call.
835 */
836 if (errno == EINTR) {
837 goto restart;
838 }
839 goto error;
840 }
841
842 nb_fd = ret;
843
844 DBG("Relay new connection received");
845 for (i = 0; i < nb_fd; i++) {
846 health_code_update();
847
848 /* Fetch once the poll data */
849 revents = LTTNG_POLL_GETEV(&events, i);
850 pollfd = LTTNG_POLL_GETFD(&events, i);
851
852 if (!revents) {
853 /*
854 * No activity for this FD (poll
855 * implementation).
856 */
857 continue;
858 }
859
860 /* Thread quit pipe has been closed. Killing thread. */
861 ret = check_thread_quit_pipe(pollfd, revents);
862 if (ret) {
863 err = 0;
864 goto exit;
865 }
866
867 if (revents & (LPOLLERR | LPOLLHUP | LPOLLRDHUP)) {
868 ERR("socket poll error");
869 goto error;
870 } else if (revents & LPOLLIN) {
871 /*
872 * A new connection is requested, therefore a
873 * sessiond/consumerd connection is allocated in
874 * this thread, enqueued to a global queue and
875 * dequeued (and freed) in the worker thread.
876 */
877 int val = 1;
878 struct relay_connection *new_conn;
879 struct lttcomm_sock *newsock;
880 enum connection_type type;
881
882 if (pollfd == data_sock->fd) {
883 type = RELAY_DATA;
884 newsock = data_sock->ops->accept(data_sock);
885 DBG("Relay data connection accepted, socket %d",
886 newsock->fd);
887 } else {
888 assert(pollfd == control_sock->fd);
889 type = RELAY_CONTROL;
890 newsock = control_sock->ops->accept(control_sock);
891 DBG("Relay control connection accepted, socket %d",
892 newsock->fd);
893 }
894 if (!newsock) {
895 PERROR("accepting sock");
896 goto error;
897 }
898
899 ret = setsockopt(newsock->fd, SOL_SOCKET, SO_REUSEADDR, &val,
900 sizeof(val));
901 if (ret < 0) {
902 PERROR("setsockopt inet");
903 lttcomm_destroy_sock(newsock);
904 goto error;
905 }
906 new_conn = connection_create(newsock, type);
907 if (!new_conn) {
908 lttcomm_destroy_sock(newsock);
909 goto error;
910 }
911
912 /* Enqueue request for the dispatcher thread. */
913 cds_wfcq_enqueue(&relay_conn_queue.head, &relay_conn_queue.tail,
914 &new_conn->qnode);
915
916 /*
917 * Wake the dispatch queue futex.
918 * Implicit memory barrier with the
919 * exchange in cds_wfcq_enqueue.
920 */
921 futex_nto1_wake(&relay_conn_queue.futex);
922 }
923 }
924 }
925
926 exit:
927 error:
928 error_poll_add:
929 error_testpoint:
930 lttng_poll_clean(&events);
931 error_create_poll:
932 if (data_sock->fd >= 0) {
933 ret = data_sock->ops->close(data_sock);
934 if (ret) {
935 PERROR("close");
936 }
937 }
938 lttcomm_destroy_sock(data_sock);
939 error_sock_relay:
940 if (control_sock->fd >= 0) {
941 ret = control_sock->ops->close(control_sock);
942 if (ret) {
943 PERROR("close");
944 }
945 }
946 lttcomm_destroy_sock(control_sock);
947 error_sock_control:
948 if (err) {
949 health_error();
950 ERR("Health error occurred in %s", __func__);
951 }
952 health_unregister(health_relayd);
953 DBG("Relay listener thread cleanup complete");
954 lttng_relay_stop_threads();
955 return NULL;
956 }
957
958 /*
959 * This thread manages the dispatching of the requests to worker threads
960 */
961 static void *relay_thread_dispatcher(void *data)
962 {
963 int err = -1;
964 ssize_t ret;
965 struct cds_wfcq_node *node;
966 struct relay_connection *new_conn = NULL;
967
968 DBG("[thread] Relay dispatcher started");
969
970 health_register(health_relayd, HEALTH_RELAYD_TYPE_DISPATCHER);
971
972 if (testpoint(relayd_thread_dispatcher)) {
973 goto error_testpoint;
974 }
975
976 health_code_update();
977
978 while (!CMM_LOAD_SHARED(dispatch_thread_exit)) {
979 health_code_update();
980
981 /* Atomically prepare the queue futex */
982 futex_nto1_prepare(&relay_conn_queue.futex);
983
984 do {
985 health_code_update();
986
987 /* Dequeue commands */
988 node = cds_wfcq_dequeue_blocking(&relay_conn_queue.head,
989 &relay_conn_queue.tail);
990 if (node == NULL) {
991 DBG("Woken up but nothing in the relay command queue");
992 /* Continue thread execution */
993 break;
994 }
995 new_conn = caa_container_of(node, struct relay_connection, qnode);
996
997 DBG("Dispatching request waiting on sock %d", new_conn->sock->fd);
998
999 /*
1000 * Inform worker thread of the new request. This
1001 * call is blocking so we can be assured that
1002 * the data will be read at some point in time
1003 * or wait to the end of the world :)
1004 */
1005 ret = lttng_write(relay_conn_pipe[1], &new_conn, sizeof(new_conn));
1006 if (ret < 0) {
1007 PERROR("write connection pipe");
1008 connection_put(new_conn);
1009 goto error;
1010 }
1011 } while (node != NULL);
1012
1013 /* Futex wait on queue. Blocking call on futex() */
1014 health_poll_entry();
1015 futex_nto1_wait(&relay_conn_queue.futex);
1016 health_poll_exit();
1017 }
1018
1019 /* Normal exit, no error */
1020 err = 0;
1021
1022 error:
1023 error_testpoint:
1024 if (err) {
1025 health_error();
1026 ERR("Health error occurred in %s", __func__);
1027 }
1028 health_unregister(health_relayd);
1029 DBG("Dispatch thread dying");
1030 lttng_relay_stop_threads();
1031 return NULL;
1032 }
1033
1034 /*
1035 * Set index data from the control port to a given index object.
1036 */
1037 static int set_index_control_data(struct relay_index *index,
1038 struct lttcomm_relayd_index *data)
1039 {
1040 struct ctf_packet_index index_data;
1041
1042 /*
1043 * The index on disk is encoded in big endian, so we don't need
1044 * to convert the data received on the network. The data_offset
1045 * value is NEVER modified here and is updated by the data
1046 * thread.
1047 */
1048 index_data.packet_size = data->packet_size;
1049 index_data.content_size = data->content_size;
1050 index_data.timestamp_begin = data->timestamp_begin;
1051 index_data.timestamp_end = data->timestamp_end;
1052 index_data.events_discarded = data->events_discarded;
1053 index_data.stream_id = data->stream_id;
1054 return relay_index_set_data(index, &index_data);
1055 }
1056
1057 /*
1058 * Handle the RELAYD_CREATE_SESSION command.
1059 *
1060 * On success, send back the session id or else return a negative value.
1061 */
1062 static int relay_create_session(struct lttcomm_relayd_hdr *recv_hdr,
1063 struct relay_connection *conn)
1064 {
1065 int ret = 0, send_ret;
1066 struct relay_session *session;
1067 struct lttcomm_relayd_status_session reply;
1068 char session_name[NAME_MAX];
1069 char hostname[HOST_NAME_MAX];
1070 uint32_t live_timer = 0;
1071 bool snapshot = false;
1072
1073 memset(session_name, 0, NAME_MAX);
1074 memset(hostname, 0, HOST_NAME_MAX);
1075
1076 memset(&reply, 0, sizeof(reply));
1077
1078 switch (conn->minor) {
1079 case 1:
1080 case 2:
1081 case 3:
1082 break;
1083 case 4: /* LTTng sessiond 2.4 */
1084 default:
1085 ret = cmd_create_session_2_4(conn, session_name,
1086 hostname, &live_timer, &snapshot);
1087 }
1088 if (ret < 0) {
1089 goto send_reply;
1090 }
1091
1092 session = session_create(session_name, hostname, live_timer,
1093 snapshot, conn->major, conn->minor);
1094 if (!session) {
1095 ret = -1;
1096 goto send_reply;
1097 }
1098 assert(!conn->session);
1099 conn->session = session;
1100 DBG("Created session %" PRIu64, session->id);
1101
1102 reply.session_id = htobe64(session->id);
1103
1104 send_reply:
1105 if (ret < 0) {
1106 reply.ret_code = htobe32(LTTNG_ERR_FATAL);
1107 } else {
1108 reply.ret_code = htobe32(LTTNG_OK);
1109 }
1110
1111 send_ret = conn->sock->ops->sendmsg(conn->sock, &reply, sizeof(reply), 0);
1112 if (send_ret < 0) {
1113 ERR("Relayd sending session id");
1114 ret = send_ret;
1115 }
1116
1117 return ret;
1118 }
1119
1120 /*
1121 * When we have received all the streams and the metadata for a channel,
1122 * we make them visible to the viewer threads.
1123 */
1124 static void publish_connection_local_streams(struct relay_connection *conn)
1125 {
1126 struct relay_stream *stream;
1127 struct relay_session *session = conn->session;
1128
1129 /*
1130 * We publish all streams belonging to a session atomically wrt
1131 * session lock.
1132 */
1133 pthread_mutex_lock(&session->lock);
1134 rcu_read_lock();
1135 cds_list_for_each_entry_rcu(stream, &session->recv_list,
1136 recv_node) {
1137 stream_publish(stream);
1138 }
1139 rcu_read_unlock();
1140
1141 /*
1142 * Inform the viewer that there are new streams in the session.
1143 */
1144 if (session->viewer_attached) {
1145 uatomic_set(&session->new_streams, 1);
1146 }
1147 pthread_mutex_unlock(&session->lock);
1148 }
1149
1150 /*
1151 * relay_add_stream: allocate a new stream for a session
1152 */
1153 static int relay_add_stream(struct lttcomm_relayd_hdr *recv_hdr,
1154 struct relay_connection *conn)
1155 {
1156 int ret;
1157 ssize_t send_ret;
1158 struct relay_session *session = conn->session;
1159 struct relay_stream *stream = NULL;
1160 struct lttcomm_relayd_status_stream reply;
1161 struct ctf_trace *trace = NULL;
1162 uint64_t stream_handle = -1ULL;
1163 char *path_name = NULL, *channel_name = NULL;
1164 uint64_t tracefile_size = 0, tracefile_count = 0;
1165
1166 if (!session || conn->version_check_done == 0) {
1167 ERR("Trying to add a stream before version check");
1168 ret = -1;
1169 goto end_no_session;
1170 }
1171
1172 switch (session->minor) {
1173 case 1: /* LTTng sessiond 2.1. Allocates path_name and channel_name. */
1174 ret = cmd_recv_stream_2_1(conn, &path_name,
1175 &channel_name);
1176 break;
1177 case 2: /* LTTng sessiond 2.2. Allocates path_name and channel_name. */
1178 default:
1179 ret = cmd_recv_stream_2_2(conn, &path_name,
1180 &channel_name, &tracefile_size, &tracefile_count);
1181 break;
1182 }
1183 if (ret < 0) {
1184 goto send_reply;
1185 }
1186
1187 trace = ctf_trace_get_by_path_or_create(session, path_name);
1188 if (!trace) {
1189 goto send_reply;
1190 }
1191 /* This stream here has one reference on the trace. */
1192
1193 pthread_mutex_lock(&last_relay_stream_id_lock);
1194 stream_handle = ++last_relay_stream_id;
1195 pthread_mutex_unlock(&last_relay_stream_id_lock);
1196
1197 /* We pass ownership of path_name and channel_name. */
1198 stream = stream_create(trace, stream_handle, path_name,
1199 channel_name, tracefile_size, tracefile_count);
1200 path_name = NULL;
1201 channel_name = NULL;
1202
1203 /*
1204 * Streams are the owners of their trace. Reference to trace is
1205 * kept within stream_create().
1206 */
1207 ctf_trace_put(trace);
1208
1209 send_reply:
1210 memset(&reply, 0, sizeof(reply));
1211 reply.handle = htobe64(stream_handle);
1212 if (!stream) {
1213 reply.ret_code = htobe32(LTTNG_ERR_UNK);
1214 } else {
1215 reply.ret_code = htobe32(LTTNG_OK);
1216 }
1217
1218 send_ret = conn->sock->ops->sendmsg(conn->sock, &reply,
1219 sizeof(struct lttcomm_relayd_status_stream), 0);
1220 if (send_ret < 0) {
1221 ERR("Relay sending stream id");
1222 ret = (int) send_ret;
1223 }
1224
1225 end_no_session:
1226 free(path_name);
1227 free(channel_name);
1228 return ret;
1229 }
1230
1231 /*
1232 * relay_close_stream: close a specific stream
1233 */
1234 static int relay_close_stream(struct lttcomm_relayd_hdr *recv_hdr,
1235 struct relay_connection *conn)
1236 {
1237 int ret, send_ret;
1238 struct relay_session *session = conn->session;
1239 struct lttcomm_relayd_close_stream stream_info;
1240 struct lttcomm_relayd_generic_reply reply;
1241 struct relay_stream *stream;
1242
1243 DBG("Close stream received");
1244
1245 if (!session || conn->version_check_done == 0) {
1246 ERR("Trying to close a stream before version check");
1247 ret = -1;
1248 goto end_no_session;
1249 }
1250
1251 ret = conn->sock->ops->recvmsg(conn->sock, &stream_info,
1252 sizeof(struct lttcomm_relayd_close_stream), 0);
1253 if (ret < sizeof(struct lttcomm_relayd_close_stream)) {
1254 if (ret == 0) {
1255 /* Orderly shutdown. Not necessary to print an error. */
1256 DBG("Socket %d did an orderly shutdown", conn->sock->fd);
1257 } else {
1258 ERR("Relay didn't receive valid add_stream struct size : %d", ret);
1259 }
1260 ret = -1;
1261 goto end_no_session;
1262 }
1263
1264 stream = stream_get_by_id(be64toh(stream_info.stream_id));
1265 if (!stream) {
1266 ret = -1;
1267 goto end;
1268 }
1269
1270 /*
1271 * Set last_net_seq_num before the close flag. Required by data
1272 * pending check.
1273 */
1274 pthread_mutex_lock(&stream->lock);
1275 stream->last_net_seq_num = be64toh(stream_info.last_net_seq_num);
1276 pthread_mutex_unlock(&stream->lock);
1277
1278 /*
1279 * This is one of the conditions which may trigger a stream close
1280 * with the others being:
1281 * 1) A close command is received for a stream
1282 * 2) The control connection owning the stream is closed
1283 * 3) We have received all of the stream's data _after_ a close
1284 * request.
1285 */
1286 try_stream_close(stream);
1287 if (stream->is_metadata) {
1288 struct relay_viewer_stream *vstream;
1289
1290 vstream = viewer_stream_get_by_id(stream->stream_handle);
1291 if (vstream) {
1292 if (vstream->metadata_sent == stream->metadata_received) {
1293 /*
1294 * Since all the metadata has been sent to the
1295 * viewer and that we have a request to close
1296 * its stream, we can safely teardown the
1297 * corresponding metadata viewer stream.
1298 */
1299 viewer_stream_put(vstream);
1300 }
1301 /* Put local reference. */
1302 viewer_stream_put(vstream);
1303 }
1304 }
1305 stream_put(stream);
1306
1307 end:
1308 memset(&reply, 0, sizeof(reply));
1309 if (ret < 0) {
1310 reply.ret_code = htobe32(LTTNG_ERR_UNK);
1311 } else {
1312 reply.ret_code = htobe32(LTTNG_OK);
1313 }
1314 send_ret = conn->sock->ops->sendmsg(conn->sock, &reply,
1315 sizeof(struct lttcomm_relayd_generic_reply), 0);
1316 if (send_ret < 0) {
1317 ERR("Relay sending stream id");
1318 ret = send_ret;
1319 }
1320
1321 end_no_session:
1322 return ret;
1323 }
1324
1325 /*
1326 * relay_unknown_command: send -1 if received unknown command
1327 */
1328 static void relay_unknown_command(struct relay_connection *conn)
1329 {
1330 struct lttcomm_relayd_generic_reply reply;
1331 int ret;
1332
1333 memset(&reply, 0, sizeof(reply));
1334 reply.ret_code = htobe32(LTTNG_ERR_UNK);
1335 ret = conn->sock->ops->sendmsg(conn->sock, &reply,
1336 sizeof(struct lttcomm_relayd_generic_reply), 0);
1337 if (ret < 0) {
1338 ERR("Relay sending unknown command");
1339 }
1340 }
1341
1342 /*
1343 * relay_start: send an acknowledgment to the client to tell if we are
1344 * ready to receive data. We are ready if a session is established.
1345 */
1346 static int relay_start(struct lttcomm_relayd_hdr *recv_hdr,
1347 struct relay_connection *conn)
1348 {
1349 int ret = htobe32(LTTNG_OK);
1350 struct lttcomm_relayd_generic_reply reply;
1351 struct relay_session *session = conn->session;
1352
1353 if (!session) {
1354 DBG("Trying to start the streaming without a session established");
1355 ret = htobe32(LTTNG_ERR_UNK);
1356 }
1357
1358 memset(&reply, 0, sizeof(reply));
1359 reply.ret_code = ret;
1360 ret = conn->sock->ops->sendmsg(conn->sock, &reply,
1361 sizeof(struct lttcomm_relayd_generic_reply), 0);
1362 if (ret < 0) {
1363 ERR("Relay sending start ack");
1364 }
1365
1366 return ret;
1367 }
1368
1369 /*
1370 * Append padding to the file pointed by the file descriptor fd.
1371 */
1372 static int write_padding_to_file(int fd, uint32_t size)
1373 {
1374 ssize_t ret = 0;
1375 char *zeros;
1376
1377 if (size == 0) {
1378 goto end;
1379 }
1380
1381 zeros = zmalloc(size);
1382 if (zeros == NULL) {
1383 PERROR("zmalloc zeros for padding");
1384 ret = -1;
1385 goto end;
1386 }
1387
1388 ret = lttng_write(fd, zeros, size);
1389 if (ret < size) {
1390 PERROR("write padding to file");
1391 }
1392
1393 free(zeros);
1394
1395 end:
1396 return ret;
1397 }
1398
1399 /*
1400 * relay_recv_metadata: receive the metadata for the session.
1401 */
1402 static int relay_recv_metadata(struct lttcomm_relayd_hdr *recv_hdr,
1403 struct relay_connection *conn)
1404 {
1405 int ret = 0;
1406 ssize_t size_ret;
1407 struct relay_session *session = conn->session;
1408 struct lttcomm_relayd_metadata_payload *metadata_struct;
1409 struct relay_stream *metadata_stream;
1410 uint64_t data_size, payload_size;
1411
1412 if (!session) {
1413 ERR("Metadata sent before version check");
1414 ret = -1;
1415 goto end;
1416 }
1417
1418 data_size = payload_size = be64toh(recv_hdr->data_size);
1419 if (data_size < sizeof(struct lttcomm_relayd_metadata_payload)) {
1420 ERR("Incorrect data size");
1421 ret = -1;
1422 goto end;
1423 }
1424 payload_size -= sizeof(struct lttcomm_relayd_metadata_payload);
1425
1426 if (data_buffer_size < data_size) {
1427 /* In case the realloc fails, we can free the memory */
1428 char *tmp_data_ptr;
1429
1430 tmp_data_ptr = realloc(data_buffer, data_size);
1431 if (!tmp_data_ptr) {
1432 ERR("Allocating data buffer");
1433 free(data_buffer);
1434 ret = -1;
1435 goto end;
1436 }
1437 data_buffer = tmp_data_ptr;
1438 data_buffer_size = data_size;
1439 }
1440 memset(data_buffer, 0, data_size);
1441 DBG2("Relay receiving metadata, waiting for %" PRIu64 " bytes", data_size);
1442 size_ret = conn->sock->ops->recvmsg(conn->sock, data_buffer, data_size, 0);
1443 if (size_ret < 0 || size_ret != data_size) {
1444 if (size_ret == 0) {
1445 /* Orderly shutdown. Not necessary to print an error. */
1446 DBG("Socket %d did an orderly shutdown", conn->sock->fd);
1447 } else {
1448 ERR("Relay didn't receive the whole metadata");
1449 }
1450 ret = -1;
1451 goto end;
1452 }
1453 metadata_struct = (struct lttcomm_relayd_metadata_payload *) data_buffer;
1454
1455 metadata_stream = stream_get_by_id(be64toh(metadata_struct->stream_id));
1456 if (!metadata_stream) {
1457 ret = -1;
1458 goto end;
1459 }
1460
1461 pthread_mutex_lock(&metadata_stream->lock);
1462
1463 size_ret = lttng_write(metadata_stream->stream_fd->fd, metadata_struct->payload,
1464 payload_size);
1465 if (size_ret < payload_size) {
1466 ERR("Relay error writing metadata on file");
1467 ret = -1;
1468 goto end_put;
1469 }
1470
1471 size_ret = write_padding_to_file(metadata_stream->stream_fd->fd,
1472 be32toh(metadata_struct->padding_size));
1473 if (size_ret < 0) {
1474 goto end_put;
1475 }
1476
1477 metadata_stream->metadata_received +=
1478 payload_size + be32toh(metadata_struct->padding_size);
1479 DBG2("Relay metadata written. Updated metadata_received %" PRIu64,
1480 metadata_stream->metadata_received);
1481
1482 end_put:
1483 pthread_mutex_unlock(&metadata_stream->lock);
1484 stream_put(metadata_stream);
1485 end:
1486 return ret;
1487 }
1488
1489 /*
1490 * relay_send_version: send relayd version number
1491 */
1492 static int relay_send_version(struct lttcomm_relayd_hdr *recv_hdr,
1493 struct relay_connection *conn)
1494 {
1495 int ret;
1496 struct lttcomm_relayd_version reply, msg;
1497
1498 conn->version_check_done = 1;
1499
1500 /* Get version from the other side. */
1501 ret = conn->sock->ops->recvmsg(conn->sock, &msg, sizeof(msg), 0);
1502 if (ret < 0 || ret != sizeof(msg)) {
1503 if (ret == 0) {
1504 /* Orderly shutdown. Not necessary to print an error. */
1505 DBG("Socket %d did an orderly shutdown", conn->sock->fd);
1506 } else {
1507 ERR("Relay failed to receive the version values.");
1508 }
1509 ret = -1;
1510 goto end;
1511 }
1512
1513 memset(&reply, 0, sizeof(reply));
1514 reply.major = RELAYD_VERSION_COMM_MAJOR;
1515 reply.minor = RELAYD_VERSION_COMM_MINOR;
1516
1517 /* Major versions must be the same */
1518 if (reply.major != be32toh(msg.major)) {
1519 DBG("Incompatible major versions (%u vs %u), deleting session",
1520 reply.major, be32toh(msg.major));
1521 connection_put(conn);
1522 ret = 0;
1523 goto end;
1524 }
1525
1526 conn->major = reply.major;
1527 /* We adapt to the lowest compatible version */
1528 if (reply.minor <= be32toh(msg.minor)) {
1529 conn->minor = reply.minor;
1530 } else {
1531 conn->minor = be32toh(msg.minor);
1532 }
1533
1534 reply.major = htobe32(reply.major);
1535 reply.minor = htobe32(reply.minor);
1536 ret = conn->sock->ops->sendmsg(conn->sock, &reply,
1537 sizeof(struct lttcomm_relayd_version), 0);
1538 if (ret < 0) {
1539 ERR("Relay sending version");
1540 }
1541
1542 DBG("Version check done using protocol %u.%u", conn->major,
1543 conn->minor);
1544
1545 end:
1546 return ret;
1547 }
1548
1549 /*
1550 * Check for data pending for a given stream id from the session daemon.
1551 */
1552 static int relay_data_pending(struct lttcomm_relayd_hdr *recv_hdr,
1553 struct relay_connection *conn)
1554 {
1555 struct relay_session *session = conn->session;
1556 struct lttcomm_relayd_data_pending msg;
1557 struct lttcomm_relayd_generic_reply reply;
1558 struct relay_stream *stream;
1559 int ret;
1560 uint64_t last_net_seq_num, stream_id;
1561
1562 DBG("Data pending command received");
1563
1564 if (!session || conn->version_check_done == 0) {
1565 ERR("Trying to check for data before version check");
1566 ret = -1;
1567 goto end_no_session;
1568 }
1569
1570 ret = conn->sock->ops->recvmsg(conn->sock, &msg, sizeof(msg), 0);
1571 if (ret < sizeof(msg)) {
1572 if (ret == 0) {
1573 /* Orderly shutdown. Not necessary to print an error. */
1574 DBG("Socket %d did an orderly shutdown", conn->sock->fd);
1575 } else {
1576 ERR("Relay didn't receive valid data_pending struct size : %d",
1577 ret);
1578 }
1579 ret = -1;
1580 goto end_no_session;
1581 }
1582
1583 stream_id = be64toh(msg.stream_id);
1584 last_net_seq_num = be64toh(msg.last_net_seq_num);
1585
1586 stream = stream_get_by_id(stream_id);
1587 if (stream == NULL) {
1588 ret = -1;
1589 goto end;
1590 }
1591
1592 pthread_mutex_lock(&stream->lock);
1593
1594 DBG("Data pending for stream id %" PRIu64 " prev_seq %" PRIu64
1595 " and last_seq %" PRIu64, stream_id, stream->prev_seq,
1596 last_net_seq_num);
1597
1598 /* Avoid wrapping issue */
1599 if (((int64_t) (stream->prev_seq - last_net_seq_num)) >= 0) {
1600 /* Data has in fact been written and is NOT pending */
1601 ret = 0;
1602 } else {
1603 /* Data still being streamed thus pending */
1604 ret = 1;
1605 }
1606
1607 stream->data_pending_check_done = true;
1608 pthread_mutex_unlock(&stream->lock);
1609
1610 stream_put(stream);
1611 end:
1612
1613 memset(&reply, 0, sizeof(reply));
1614 reply.ret_code = htobe32(ret);
1615 ret = conn->sock->ops->sendmsg(conn->sock, &reply, sizeof(reply), 0);
1616 if (ret < 0) {
1617 ERR("Relay data pending ret code failed");
1618 }
1619
1620 end_no_session:
1621 return ret;
1622 }
1623
1624 /*
1625 * Wait for the control socket to reach a quiescent state.
1626 *
1627 * Note that for now, when receiving this command from the session
1628 * daemon, this means that every subsequent commands or data received on
1629 * the control socket has been handled. So, this is why we simply return
1630 * OK here.
1631 */
1632 static int relay_quiescent_control(struct lttcomm_relayd_hdr *recv_hdr,
1633 struct relay_connection *conn)
1634 {
1635 int ret;
1636 uint64_t stream_id;
1637 struct relay_stream *stream;
1638 struct lttcomm_relayd_quiescent_control msg;
1639 struct lttcomm_relayd_generic_reply reply;
1640
1641 DBG("Checking quiescent state on control socket");
1642
1643 if (!conn->session || conn->version_check_done == 0) {
1644 ERR("Trying to check for data before version check");
1645 ret = -1;
1646 goto end_no_session;
1647 }
1648
1649 ret = conn->sock->ops->recvmsg(conn->sock, &msg, sizeof(msg), 0);
1650 if (ret < sizeof(msg)) {
1651 if (ret == 0) {
1652 /* Orderly shutdown. Not necessary to print an error. */
1653 DBG("Socket %d did an orderly shutdown", conn->sock->fd);
1654 } else {
1655 ERR("Relay didn't receive valid begin data_pending struct size: %d",
1656 ret);
1657 }
1658 ret = -1;
1659 goto end_no_session;
1660 }
1661
1662 stream_id = be64toh(msg.stream_id);
1663 stream = stream_get_by_id(stream_id);
1664 if (!stream) {
1665 goto reply;
1666 }
1667 pthread_mutex_lock(&stream->lock);
1668 stream->data_pending_check_done = true;
1669 pthread_mutex_unlock(&stream->lock);
1670 DBG("Relay quiescent control pending flag set to %" PRIu64, stream_id);
1671 stream_put(stream);
1672 reply:
1673 memset(&reply, 0, sizeof(reply));
1674 reply.ret_code = htobe32(LTTNG_OK);
1675 ret = conn->sock->ops->sendmsg(conn->sock, &reply, sizeof(reply), 0);
1676 if (ret < 0) {
1677 ERR("Relay data quiescent control ret code failed");
1678 }
1679
1680 end_no_session:
1681 return ret;
1682 }
1683
1684 /*
1685 * Initialize a data pending command. This means that a consumer is about
1686 * to ask for data pending for each stream it holds. Simply iterate over
1687 * all streams of a session and set the data_pending_check_done flag.
1688 *
1689 * This command returns to the client a LTTNG_OK code.
1690 */
1691 static int relay_begin_data_pending(struct lttcomm_relayd_hdr *recv_hdr,
1692 struct relay_connection *conn)
1693 {
1694 int ret;
1695 struct lttng_ht_iter iter;
1696 struct lttcomm_relayd_begin_data_pending msg;
1697 struct lttcomm_relayd_generic_reply reply;
1698 struct relay_stream *stream;
1699 uint64_t session_id;
1700
1701 assert(recv_hdr);
1702 assert(conn);
1703
1704 DBG("Init streams for data pending");
1705
1706 if (!conn->session || conn->version_check_done == 0) {
1707 ERR("Trying to check for data before version check");
1708 ret = -1;
1709 goto end_no_session;
1710 }
1711
1712 ret = conn->sock->ops->recvmsg(conn->sock, &msg, sizeof(msg), 0);
1713 if (ret < sizeof(msg)) {
1714 if (ret == 0) {
1715 /* Orderly shutdown. Not necessary to print an error. */
1716 DBG("Socket %d did an orderly shutdown", conn->sock->fd);
1717 } else {
1718 ERR("Relay didn't receive valid begin data_pending struct size: %d",
1719 ret);
1720 }
1721 ret = -1;
1722 goto end_no_session;
1723 }
1724
1725 session_id = be64toh(msg.session_id);
1726
1727 /*
1728 * Iterate over all streams to set the begin data pending flag.
1729 * For now, the streams are indexed by stream handle so we have
1730 * to iterate over all streams to find the one associated with
1731 * the right session_id.
1732 */
1733 rcu_read_lock();
1734 cds_lfht_for_each_entry(relay_streams_ht->ht, &iter.iter, stream,
1735 node.node) {
1736 if (!stream_get(stream)) {
1737 continue;
1738 }
1739 if (stream->trace->session->id == session_id) {
1740 pthread_mutex_lock(&stream->lock);
1741 stream->data_pending_check_done = false;
1742 pthread_mutex_unlock(&stream->lock);
1743 DBG("Set begin data pending flag to stream %" PRIu64,
1744 stream->stream_handle);
1745 }
1746 stream_put(stream);
1747 }
1748 rcu_read_unlock();
1749
1750 memset(&reply, 0, sizeof(reply));
1751 /* All good, send back reply. */
1752 reply.ret_code = htobe32(LTTNG_OK);
1753
1754 ret = conn->sock->ops->sendmsg(conn->sock, &reply, sizeof(reply), 0);
1755 if (ret < 0) {
1756 ERR("Relay begin data pending send reply failed");
1757 }
1758
1759 end_no_session:
1760 return ret;
1761 }
1762
1763 /*
1764 * End data pending command. This will check, for a given session id, if
1765 * each stream associated with it has its data_pending_check_done flag
1766 * set. If not, this means that the client lost track of the stream but
1767 * the data is still being streamed on our side. In this case, we inform
1768 * the client that data is in flight.
1769 *
1770 * Return to the client if there is data in flight or not with a ret_code.
1771 */
1772 static int relay_end_data_pending(struct lttcomm_relayd_hdr *recv_hdr,
1773 struct relay_connection *conn)
1774 {
1775 int ret;
1776 struct lttng_ht_iter iter;
1777 struct lttcomm_relayd_end_data_pending msg;
1778 struct lttcomm_relayd_generic_reply reply;
1779 struct relay_stream *stream;
1780 uint64_t session_id;
1781 uint32_t is_data_inflight = 0;
1782
1783 DBG("End data pending command");
1784
1785 if (!conn->session || conn->version_check_done == 0) {
1786 ERR("Trying to check for data before version check");
1787 ret = -1;
1788 goto end_no_session;
1789 }
1790
1791 ret = conn->sock->ops->recvmsg(conn->sock, &msg, sizeof(msg), 0);
1792 if (ret < sizeof(msg)) {
1793 if (ret == 0) {
1794 /* Orderly shutdown. Not necessary to print an error. */
1795 DBG("Socket %d did an orderly shutdown", conn->sock->fd);
1796 } else {
1797 ERR("Relay didn't receive valid end data_pending struct size: %d",
1798 ret);
1799 }
1800 ret = -1;
1801 goto end_no_session;
1802 }
1803
1804 session_id = be64toh(msg.session_id);
1805
1806 /*
1807 * Iterate over all streams to see if the begin data pending
1808 * flag is set.
1809 */
1810 rcu_read_lock();
1811 cds_lfht_for_each_entry(relay_streams_ht->ht, &iter.iter, stream,
1812 node.node) {
1813 if (!stream_get(stream)) {
1814 continue;
1815 }
1816 if (stream->trace->session->id != session_id) {
1817 stream_put(stream);
1818 continue;
1819 }
1820 pthread_mutex_lock(&stream->lock);
1821 if (!stream->data_pending_check_done) {
1822 if (!stream->closed || !(((int64_t) (stream->prev_seq - stream->last_net_seq_num)) >= 0)) {
1823 is_data_inflight = 1;
1824 DBG("Data is still in flight for stream %" PRIu64,
1825 stream->stream_handle);
1826 pthread_mutex_unlock(&stream->lock);
1827 stream_put(stream);
1828 break;
1829 }
1830 }
1831 pthread_mutex_unlock(&stream->lock);
1832 stream_put(stream);
1833 }
1834 rcu_read_unlock();
1835
1836 memset(&reply, 0, sizeof(reply));
1837 /* All good, send back reply. */
1838 reply.ret_code = htobe32(is_data_inflight);
1839
1840 ret = conn->sock->ops->sendmsg(conn->sock, &reply, sizeof(reply), 0);
1841 if (ret < 0) {
1842 ERR("Relay end data pending send reply failed");
1843 }
1844
1845 end_no_session:
1846 return ret;
1847 }
1848
1849 /*
1850 * Receive an index for a specific stream.
1851 *
1852 * Return 0 on success else a negative value.
1853 */
1854 static int relay_recv_index(struct lttcomm_relayd_hdr *recv_hdr,
1855 struct relay_connection *conn)
1856 {
1857 int ret, send_ret;
1858 struct relay_session *session = conn->session;
1859 struct lttcomm_relayd_index index_info;
1860 struct relay_index *index;
1861 struct lttcomm_relayd_generic_reply reply;
1862 struct relay_stream *stream;
1863 uint64_t net_seq_num;
1864
1865 assert(conn);
1866
1867 DBG("Relay receiving index");
1868
1869 if (!session || conn->version_check_done == 0) {
1870 ERR("Trying to close a stream before version check");
1871 ret = -1;
1872 goto end_no_session;
1873 }
1874
1875 ret = conn->sock->ops->recvmsg(conn->sock, &index_info,
1876 sizeof(index_info), 0);
1877 if (ret < sizeof(index_info)) {
1878 if (ret == 0) {
1879 /* Orderly shutdown. Not necessary to print an error. */
1880 DBG("Socket %d did an orderly shutdown", conn->sock->fd);
1881 } else {
1882 ERR("Relay didn't receive valid index struct size : %d", ret);
1883 }
1884 ret = -1;
1885 goto end_no_session;
1886 }
1887
1888 net_seq_num = be64toh(index_info.net_seq_num);
1889
1890 stream = stream_get_by_id(be64toh(index_info.relay_stream_id));
1891 if (!stream) {
1892 ERR("stream_get_by_id not found");
1893 ret = -1;
1894 goto end;
1895 }
1896 pthread_mutex_lock(&stream->lock);
1897
1898 /* Live beacon handling */
1899 if (index_info.packet_size == 0) {
1900 DBG("Received live beacon for stream %" PRIu64,
1901 stream->stream_handle);
1902
1903 /*
1904 * Only flag a stream inactive when it has already
1905 * received data and no indexes are in flight.
1906 */
1907 if (stream->index_received_seqcount > 0
1908 && stream->indexes_in_flight == 0) {
1909 stream->beacon_ts_end =
1910 be64toh(index_info.timestamp_end);
1911 }
1912 ret = 0;
1913 goto end_stream_put;
1914 } else {
1915 stream->beacon_ts_end = -1ULL;
1916 }
1917
1918 if (stream->ctf_stream_id == -1ULL) {
1919 stream->ctf_stream_id = be64toh(index_info.stream_id);
1920 }
1921 index = relay_index_get_by_id_or_create(stream, net_seq_num);
1922 if (!index) {
1923 ret = -1;
1924 ERR("relay_index_get_by_id_or_create index NULL");
1925 goto end_stream_put;
1926 }
1927 if (set_index_control_data(index, &index_info)) {
1928 ERR("set_index_control_data error");
1929 relay_index_put(index);
1930 ret = -1;
1931 goto end_stream_put;
1932 }
1933 ret = relay_index_try_flush(index);
1934 if (ret == 0) {
1935 tracefile_array_commit_seq(stream->tfa);
1936 stream->index_received_seqcount++;
1937 } else if (ret > 0) {
1938 /* no flush. */
1939 ret = 0;
1940 } else {
1941 ERR("relay_index_try_flush error %d", ret);
1942 relay_index_put(index);
1943 ret = -1;
1944 }
1945
1946 end_stream_put:
1947 pthread_mutex_unlock(&stream->lock);
1948 stream_put(stream);
1949
1950 end:
1951
1952 memset(&reply, 0, sizeof(reply));
1953 if (ret < 0) {
1954 reply.ret_code = htobe32(LTTNG_ERR_UNK);
1955 } else {
1956 reply.ret_code = htobe32(LTTNG_OK);
1957 }
1958 send_ret = conn->sock->ops->sendmsg(conn->sock, &reply, sizeof(reply), 0);
1959 if (send_ret < 0) {
1960 ERR("Relay sending close index id reply");
1961 ret = send_ret;
1962 }
1963
1964 end_no_session:
1965 return ret;
1966 }
1967
1968 /*
1969 * Receive the streams_sent message.
1970 *
1971 * Return 0 on success else a negative value.
1972 */
1973 static int relay_streams_sent(struct lttcomm_relayd_hdr *recv_hdr,
1974 struct relay_connection *conn)
1975 {
1976 int ret, send_ret;
1977 struct lttcomm_relayd_generic_reply reply;
1978
1979 assert(conn);
1980
1981 DBG("Relay receiving streams_sent");
1982
1983 if (!conn->session || conn->version_check_done == 0) {
1984 ERR("Trying to close a stream before version check");
1985 ret = -1;
1986 goto end_no_session;
1987 }
1988
1989 /*
1990 * Publish every pending stream in the connection recv list which are
1991 * now ready to be used by the viewer.
1992 */
1993 publish_connection_local_streams(conn);
1994
1995 memset(&reply, 0, sizeof(reply));
1996 reply.ret_code = htobe32(LTTNG_OK);
1997 send_ret = conn->sock->ops->sendmsg(conn->sock, &reply, sizeof(reply), 0);
1998 if (send_ret < 0) {
1999 ERR("Relay sending sent_stream reply");
2000 ret = send_ret;
2001 } else {
2002 /* Success. */
2003 ret = 0;
2004 }
2005
2006 end_no_session:
2007 return ret;
2008 }
2009
2010 /*
2011 * Process the commands received on the control socket
2012 */
2013 static int relay_process_control(struct lttcomm_relayd_hdr *recv_hdr,
2014 struct relay_connection *conn)
2015 {
2016 int ret = 0;
2017
2018 switch (be32toh(recv_hdr->cmd)) {
2019 case RELAYD_CREATE_SESSION:
2020 ret = relay_create_session(recv_hdr, conn);
2021 break;
2022 case RELAYD_ADD_STREAM:
2023 ret = relay_add_stream(recv_hdr, conn);
2024 break;
2025 case RELAYD_START_DATA:
2026 ret = relay_start(recv_hdr, conn);
2027 break;
2028 case RELAYD_SEND_METADATA:
2029 ret = relay_recv_metadata(recv_hdr, conn);
2030 break;
2031 case RELAYD_VERSION:
2032 ret = relay_send_version(recv_hdr, conn);
2033 break;
2034 case RELAYD_CLOSE_STREAM:
2035 ret = relay_close_stream(recv_hdr, conn);
2036 break;
2037 case RELAYD_DATA_PENDING:
2038 ret = relay_data_pending(recv_hdr, conn);
2039 break;
2040 case RELAYD_QUIESCENT_CONTROL:
2041 ret = relay_quiescent_control(recv_hdr, conn);
2042 break;
2043 case RELAYD_BEGIN_DATA_PENDING:
2044 ret = relay_begin_data_pending(recv_hdr, conn);
2045 break;
2046 case RELAYD_END_DATA_PENDING:
2047 ret = relay_end_data_pending(recv_hdr, conn);
2048 break;
2049 case RELAYD_SEND_INDEX:
2050 ret = relay_recv_index(recv_hdr, conn);
2051 break;
2052 case RELAYD_STREAMS_SENT:
2053 ret = relay_streams_sent(recv_hdr, conn);
2054 break;
2055 case RELAYD_UPDATE_SYNC_INFO:
2056 default:
2057 ERR("Received unknown command (%u)", be32toh(recv_hdr->cmd));
2058 relay_unknown_command(conn);
2059 ret = -1;
2060 goto end;
2061 }
2062
2063 end:
2064 return ret;
2065 }
2066
2067 /*
2068 * Handle index for a data stream.
2069 *
2070 * Called with the stream lock held.
2071 *
2072 * Return 0 on success else a negative value.
2073 */
2074 static int handle_index_data(struct relay_stream *stream, uint64_t net_seq_num,
2075 int rotate_index)
2076 {
2077 int ret = 0;
2078 uint64_t data_offset;
2079 struct relay_index *index;
2080
2081 /* Get data offset because we are about to update the index. */
2082 data_offset = htobe64(stream->tracefile_size_current);
2083
2084 DBG("handle_index_data: stream %" PRIu64 " data offset %" PRIu64,
2085 stream->stream_handle, stream->tracefile_size_current);
2086
2087 /*
2088 * Lookup for an existing index for that stream id/sequence
2089 * number. If it exists, the control thread has already received the
2090 * data for it, thus we need to write it to disk.
2091 */
2092 index = relay_index_get_by_id_or_create(stream, net_seq_num);
2093 if (!index) {
2094 ret = -1;
2095 goto end;
2096 }
2097
2098 if (rotate_index || !stream->index_fd) {
2099 int fd;
2100
2101 /* Put ref on previous index_fd. */
2102 if (stream->index_fd) {
2103 stream_fd_put(stream->index_fd);
2104 stream->index_fd = NULL;
2105 }
2106
2107 fd = index_create_file(stream->path_name, stream->channel_name,
2108 -1, -1, stream->tracefile_size,
2109 tracefile_array_get_file_index_head(stream->tfa));
2110 if (fd < 0) {
2111 ret = -1;
2112 /* Put self-ref for this index due to error. */
2113 relay_index_put(index);
2114 goto end;
2115 }
2116 stream->index_fd = stream_fd_create(fd);
2117 if (!stream->index_fd) {
2118 ret = -1;
2119 if (close(fd)) {
2120 PERROR("Error closing FD %d", fd);
2121 }
2122 /* Put self-ref for this index due to error. */
2123 relay_index_put(index);
2124 /* Will put the local ref. */
2125 goto end;
2126 }
2127 }
2128
2129 if (relay_index_set_fd(index, stream->index_fd, data_offset)) {
2130 ret = -1;
2131 /* Put self-ref for this index due to error. */
2132 relay_index_put(index);
2133 goto end;
2134 }
2135
2136 ret = relay_index_try_flush(index);
2137 if (ret == 0) {
2138 tracefile_array_commit_seq(stream->tfa);
2139 stream->index_received_seqcount++;
2140 } else if (ret > 0) {
2141 /* No flush. */
2142 ret = 0;
2143 } else {
2144 /* Put self-ref for this index due to error. */
2145 relay_index_put(index);
2146 ret = -1;
2147 }
2148 end:
2149 return ret;
2150 }
2151
2152 /*
2153 * relay_process_data: Process the data received on the data socket
2154 */
2155 static int relay_process_data(struct relay_connection *conn)
2156 {
2157 int ret = 0, rotate_index = 0;
2158 ssize_t size_ret;
2159 struct relay_stream *stream;
2160 struct lttcomm_relayd_data_hdr data_hdr;
2161 uint64_t stream_id;
2162 uint64_t net_seq_num;
2163 uint32_t data_size;
2164 struct relay_session *session;
2165 bool new_stream = false, close_requested = false;
2166
2167 ret = conn->sock->ops->recvmsg(conn->sock, &data_hdr,
2168 sizeof(struct lttcomm_relayd_data_hdr), 0);
2169 if (ret <= 0) {
2170 if (ret == 0) {
2171 /* Orderly shutdown. Not necessary to print an error. */
2172 DBG("Socket %d did an orderly shutdown", conn->sock->fd);
2173 } else {
2174 ERR("Unable to receive data header on sock %d", conn->sock->fd);
2175 }
2176 ret = -1;
2177 goto end;
2178 }
2179
2180 stream_id = be64toh(data_hdr.stream_id);
2181 stream = stream_get_by_id(stream_id);
2182 if (!stream) {
2183 ret = -1;
2184 goto end;
2185 }
2186 session = stream->trace->session;
2187 data_size = be32toh(data_hdr.data_size);
2188 if (data_buffer_size < data_size) {
2189 char *tmp_data_ptr;
2190
2191 tmp_data_ptr = realloc(data_buffer, data_size);
2192 if (!tmp_data_ptr) {
2193 ERR("Allocating data buffer");
2194 free(data_buffer);
2195 ret = -1;
2196 goto end_stream_put;
2197 }
2198 data_buffer = tmp_data_ptr;
2199 data_buffer_size = data_size;
2200 }
2201 memset(data_buffer, 0, data_size);
2202
2203 net_seq_num = be64toh(data_hdr.net_seq_num);
2204
2205 DBG3("Receiving data of size %u for stream id %" PRIu64 " seqnum %" PRIu64,
2206 data_size, stream_id, net_seq_num);
2207 ret = conn->sock->ops->recvmsg(conn->sock, data_buffer, data_size, 0);
2208 if (ret <= 0) {
2209 if (ret == 0) {
2210 /* Orderly shutdown. Not necessary to print an error. */
2211 DBG("Socket %d did an orderly shutdown", conn->sock->fd);
2212 }
2213 ret = -1;
2214 goto end_stream_put;
2215 }
2216
2217 pthread_mutex_lock(&stream->lock);
2218
2219 /* Check if a rotation is needed. */
2220 if (stream->tracefile_size > 0 &&
2221 (stream->tracefile_size_current + data_size) >
2222 stream->tracefile_size) {
2223 uint64_t old_id, new_id;
2224
2225 old_id = tracefile_array_get_file_index_head(stream->tfa);
2226 tracefile_array_file_rotate(stream->tfa);
2227
2228 /* new_id is updated by utils_rotate_stream_file. */
2229 new_id = old_id;
2230
2231 ret = utils_rotate_stream_file(stream->path_name,
2232 stream->channel_name, stream->tracefile_size,
2233 stream->tracefile_count, -1,
2234 -1, stream->stream_fd->fd,
2235 &new_id, &stream->stream_fd->fd);
2236 if (ret < 0) {
2237 ERR("Rotating stream output file");
2238 goto end_stream_unlock;
2239 }
2240 /*
2241 * Reset current size because we just performed a stream
2242 * rotation.
2243 */
2244 stream->tracefile_size_current = 0;
2245 rotate_index = 1;
2246 }
2247
2248 /*
2249 * Index are handled in protocol version 2.4 and above. Also,
2250 * snapshot and index are NOT supported.
2251 */
2252 if (session->minor >= 4 && !session->snapshot) {
2253 ret = handle_index_data(stream, net_seq_num, rotate_index);
2254 if (ret < 0) {
2255 goto end_stream_unlock;
2256 }
2257 }
2258
2259 /* Write data to stream output fd. */
2260 size_ret = lttng_write(stream->stream_fd->fd, data_buffer, data_size);
2261 if (size_ret < data_size) {
2262 ERR("Relay error writing data to file");
2263 ret = -1;
2264 goto end_stream_unlock;
2265 }
2266
2267 DBG2("Relay wrote %zd bytes to tracefile for stream id %" PRIu64,
2268 size_ret, stream->stream_handle);
2269
2270 ret = write_padding_to_file(stream->stream_fd->fd,
2271 be32toh(data_hdr.padding_size));
2272 if (ret < 0) {
2273 goto end_stream_unlock;
2274 }
2275 stream->tracefile_size_current +=
2276 data_size + be32toh(data_hdr.padding_size);
2277 if (stream->prev_seq == -1ULL) {
2278 new_stream = true;
2279 }
2280
2281 stream->prev_seq = net_seq_num;
2282
2283 end_stream_unlock:
2284 close_requested = stream->close_requested;
2285 pthread_mutex_unlock(&stream->lock);
2286 if (close_requested) {
2287 try_stream_close(stream);
2288 }
2289
2290 if (new_stream) {
2291 pthread_mutex_lock(&session->lock);
2292 uatomic_set(&session->new_streams, 1);
2293 pthread_mutex_unlock(&session->lock);
2294 }
2295 end_stream_put:
2296 stream_put(stream);
2297 end:
2298 return ret;
2299 }
2300
2301 static void cleanup_connection_pollfd(struct lttng_poll_event *events, int pollfd)
2302 {
2303 int ret;
2304
2305 (void) lttng_poll_del(events, pollfd);
2306
2307 ret = close(pollfd);
2308 if (ret < 0) {
2309 ERR("Closing pollfd %d", pollfd);
2310 }
2311 }
2312
2313 static void relay_thread_close_connection(struct lttng_poll_event *events,
2314 int pollfd, struct relay_connection *conn)
2315 {
2316 const char *type_str;
2317
2318 switch (conn->type) {
2319 case RELAY_DATA:
2320 type_str = "Data";
2321 break;
2322 case RELAY_CONTROL:
2323 type_str = "Control";
2324 break;
2325 case RELAY_VIEWER_COMMAND:
2326 type_str = "Viewer Command";
2327 break;
2328 case RELAY_VIEWER_NOTIFICATION:
2329 type_str = "Viewer Notification";
2330 break;
2331 default:
2332 type_str = "Unknown";
2333 }
2334 cleanup_connection_pollfd(events, pollfd);
2335 connection_put(conn);
2336 DBG("%s connection closed with %d", type_str, pollfd);
2337 }
2338
2339 /*
2340 * This thread does the actual work
2341 */
2342 static void *relay_thread_worker(void *data)
2343 {
2344 int ret, err = -1, last_seen_data_fd = -1;
2345 uint32_t nb_fd;
2346 struct lttng_poll_event events;
2347 struct lttng_ht *relay_connections_ht;
2348 struct lttng_ht_iter iter;
2349 struct lttcomm_relayd_hdr recv_hdr;
2350 struct relay_connection *destroy_conn = NULL;
2351
2352 DBG("[thread] Relay worker started");
2353
2354 rcu_register_thread();
2355
2356 health_register(health_relayd, HEALTH_RELAYD_TYPE_WORKER);
2357
2358 if (testpoint(relayd_thread_worker)) {
2359 goto error_testpoint;
2360 }
2361
2362 health_code_update();
2363
2364 /* table of connections indexed on socket */
2365 relay_connections_ht = lttng_ht_new(0, LTTNG_HT_TYPE_ULONG);
2366 if (!relay_connections_ht) {
2367 goto relay_connections_ht_error;
2368 }
2369
2370 ret = create_thread_poll_set(&events, 2);
2371 if (ret < 0) {
2372 goto error_poll_create;
2373 }
2374
2375 ret = lttng_poll_add(&events, relay_conn_pipe[0], LPOLLIN | LPOLLRDHUP);
2376 if (ret < 0) {
2377 goto error;
2378 }
2379
2380 restart:
2381 while (1) {
2382 int idx = -1, i, seen_control = 0, last_notdel_data_fd = -1;
2383
2384 health_code_update();
2385
2386 /* Infinite blocking call, waiting for transmission */
2387 DBG3("Relayd worker thread polling...");
2388 health_poll_entry();
2389 ret = lttng_poll_wait(&events, -1);
2390 health_poll_exit();
2391 if (ret < 0) {
2392 /*
2393 * Restart interrupted system call.
2394 */
2395 if (errno == EINTR) {
2396 goto restart;
2397 }
2398 goto error;
2399 }
2400
2401 nb_fd = ret;
2402
2403 /*
2404 * Process control. The control connection is
2405 * prioritized so we don't starve it with high
2406 * throughput tracing data on the data connection.
2407 */
2408 for (i = 0; i < nb_fd; i++) {
2409 /* Fetch once the poll data */
2410 uint32_t revents = LTTNG_POLL_GETEV(&events, i);
2411 int pollfd = LTTNG_POLL_GETFD(&events, i);
2412
2413 health_code_update();
2414
2415 if (!revents) {
2416 /*
2417 * No activity for this FD (poll
2418 * implementation).
2419 */
2420 continue;
2421 }
2422
2423 /* Thread quit pipe has been closed. Killing thread. */
2424 ret = check_thread_quit_pipe(pollfd, revents);
2425 if (ret) {
2426 err = 0;
2427 goto exit;
2428 }
2429
2430 /* Inspect the relay conn pipe for new connection */
2431 if (pollfd == relay_conn_pipe[0]) {
2432 if (revents & (LPOLLERR | LPOLLHUP | LPOLLRDHUP)) {
2433 ERR("Relay connection pipe error");
2434 goto error;
2435 } else if (revents & LPOLLIN) {
2436 struct relay_connection *conn;
2437
2438 ret = lttng_read(relay_conn_pipe[0], &conn, sizeof(conn));
2439 if (ret < 0) {
2440 goto error;
2441 }
2442 lttng_poll_add(&events, conn->sock->fd,
2443 LPOLLIN | LPOLLRDHUP);
2444 connection_ht_add(relay_connections_ht, conn);
2445 DBG("Connection socket %d added", conn->sock->fd);
2446 }
2447 } else {
2448 struct relay_connection *ctrl_conn;
2449
2450 ctrl_conn = connection_get_by_sock(relay_connections_ht, pollfd);
2451 /* If not found, there is a synchronization issue. */
2452 assert(ctrl_conn);
2453
2454 if (revents & (LPOLLERR | LPOLLHUP | LPOLLRDHUP)) {
2455 relay_thread_close_connection(&events, pollfd, ctrl_conn);
2456 if (last_seen_data_fd == pollfd) {
2457 last_seen_data_fd = last_notdel_data_fd;
2458 }
2459 } else if (revents & LPOLLIN) {
2460 if (ctrl_conn->type == RELAY_CONTROL) {
2461 ret = ctrl_conn->sock->ops->recvmsg(ctrl_conn->sock, &recv_hdr,
2462 sizeof(recv_hdr), 0);
2463 if (ret <= 0) {
2464 /* Connection closed */
2465 relay_thread_close_connection(&events, pollfd,
2466 ctrl_conn);
2467 } else {
2468 ret = relay_process_control(&recv_hdr, ctrl_conn);
2469 if (ret < 0) {
2470 /* Clear the session on error. */
2471 relay_thread_close_connection(&events, pollfd,
2472 ctrl_conn);
2473 }
2474 seen_control = 1;
2475 }
2476 } else {
2477 /*
2478 * Flag the last seen data fd not deleted. It will be
2479 * used as the last seen fd if any fd gets deleted in
2480 * this first loop.
2481 */
2482 last_notdel_data_fd = pollfd;
2483 }
2484 } else {
2485 ERR("Unknown poll events %u for sock %d", revents, pollfd);
2486 }
2487 connection_put(ctrl_conn);
2488 }
2489 }
2490
2491 /*
2492 * The last loop handled a control request, go back to poll to make
2493 * sure we prioritise the control socket.
2494 */
2495 if (seen_control) {
2496 continue;
2497 }
2498
2499 if (last_seen_data_fd >= 0) {
2500 for (i = 0; i < nb_fd; i++) {
2501 int pollfd = LTTNG_POLL_GETFD(&events, i);
2502
2503 health_code_update();
2504
2505 if (last_seen_data_fd == pollfd) {
2506 idx = i;
2507 break;
2508 }
2509 }
2510 }
2511
2512 /* Process data connection. */
2513 for (i = idx + 1; i < nb_fd; i++) {
2514 /* Fetch the poll data. */
2515 uint32_t revents = LTTNG_POLL_GETEV(&events, i);
2516 int pollfd = LTTNG_POLL_GETFD(&events, i);
2517 struct relay_connection *data_conn;
2518
2519 health_code_update();
2520
2521 if (!revents) {
2522 /* No activity for this FD (poll implementation). */
2523 continue;
2524 }
2525
2526 /* Skip the command pipe. It's handled in the first loop. */
2527 if (pollfd == relay_conn_pipe[0]) {
2528 continue;
2529 }
2530
2531 data_conn = connection_get_by_sock(relay_connections_ht, pollfd);
2532 if (!data_conn) {
2533 /* Skip it. Might be removed before. */
2534 continue;
2535 }
2536
2537 if (revents & LPOLLIN) {
2538 if (data_conn->type != RELAY_DATA) {
2539 goto put_connection;
2540 }
2541
2542 ret = relay_process_data(data_conn);
2543 /* Connection closed */
2544 if (ret < 0) {
2545 relay_thread_close_connection(&events, pollfd,
2546 data_conn);
2547 /*
2548 * Every goto restart call sets the last seen fd where
2549 * here we don't really care since we gracefully
2550 * continue the loop after the connection is deleted.
2551 */
2552 } else {
2553 /* Keep last seen port. */
2554 last_seen_data_fd = pollfd;
2555 connection_put(data_conn);
2556 goto restart;
2557 }
2558 }
2559 put_connection:
2560 connection_put(data_conn);
2561 }
2562 last_seen_data_fd = -1;
2563 }
2564
2565 /* Normal exit, no error */
2566 ret = 0;
2567
2568 exit:
2569 error:
2570 /* Cleanup reamaining connection object. */
2571 rcu_read_lock();
2572 cds_lfht_for_each_entry(relay_connections_ht->ht, &iter.iter,
2573 destroy_conn,
2574 sock_n.node) {
2575 health_code_update();
2576 /*
2577 * No need to grab another ref, because we own
2578 * destroy_conn.
2579 */
2580 relay_thread_close_connection(&events, destroy_conn->sock->fd,
2581 destroy_conn);
2582 }
2583 rcu_read_unlock();
2584
2585 lttng_poll_clean(&events);
2586 error_poll_create:
2587 lttng_ht_destroy(relay_connections_ht);
2588 relay_connections_ht_error:
2589 /* Close relay conn pipes */
2590 utils_close_pipe(relay_conn_pipe);
2591 if (err) {
2592 DBG("Thread exited with error");
2593 }
2594 DBG("Worker thread cleanup complete");
2595 free(data_buffer);
2596 error_testpoint:
2597 if (err) {
2598 health_error();
2599 ERR("Health error occurred in %s", __func__);
2600 }
2601 health_unregister(health_relayd);
2602 rcu_unregister_thread();
2603 lttng_relay_stop_threads();
2604 return NULL;
2605 }
2606
2607 /*
2608 * Create the relay command pipe to wake thread_manage_apps.
2609 * Closed in cleanup().
2610 */
2611 static int create_relay_conn_pipe(void)
2612 {
2613 int ret;
2614
2615 ret = utils_create_pipe_cloexec(relay_conn_pipe);
2616
2617 return ret;
2618 }
2619
2620 /*
2621 * main
2622 */
2623 int main(int argc, char **argv)
2624 {
2625 int ret = 0, retval = 0;
2626 void *status;
2627
2628 /* Parse arguments */
2629 progname = argv[0];
2630 if (set_options(argc, argv)) {
2631 retval = -1;
2632 goto exit_options;
2633 }
2634
2635 if (set_signal_handler()) {
2636 retval = -1;
2637 goto exit_options;
2638 }
2639
2640 /* Try to create directory if -o, --output is specified. */
2641 if (opt_output_path) {
2642 if (*opt_output_path != '/') {
2643 ERR("Please specify an absolute path for -o, --output PATH");
2644 retval = -1;
2645 goto exit_options;
2646 }
2647
2648 ret = utils_mkdir_recursive(opt_output_path, S_IRWXU | S_IRWXG,
2649 -1, -1);
2650 if (ret < 0) {
2651 ERR("Unable to create %s", opt_output_path);
2652 retval = -1;
2653 goto exit_options;
2654 }
2655 }
2656
2657 /* Daemonize */
2658 if (opt_daemon || opt_background) {
2659 int i;
2660
2661 ret = lttng_daemonize(&child_ppid, &recv_child_signal,
2662 !opt_background);
2663 if (ret < 0) {
2664 retval = -1;
2665 goto exit_options;
2666 }
2667
2668 /*
2669 * We are in the child. Make sure all other file
2670 * descriptors are closed, in case we are called with
2671 * more opened file descriptors than the standard ones.
2672 */
2673 for (i = 3; i < sysconf(_SC_OPEN_MAX); i++) {
2674 (void) close(i);
2675 }
2676 }
2677
2678
2679 /* Initialize thread health monitoring */
2680 health_relayd = health_app_create(NR_HEALTH_RELAYD_TYPES);
2681 if (!health_relayd) {
2682 PERROR("health_app_create error");
2683 retval = -1;
2684 goto exit_health_app_create;
2685 }
2686
2687 /* Create thread quit pipe */
2688 if (init_thread_quit_pipe()) {
2689 retval = -1;
2690 goto exit_init_data;
2691 }
2692
2693 /* Check if daemon is UID = 0 */
2694 if (!getuid()) {
2695 if (control_uri->port < 1024 || data_uri->port < 1024 || live_uri->port < 1024) {
2696 ERR("Need to be root to use ports < 1024");
2697 retval = -1;
2698 goto exit_init_data;
2699 }
2700 }
2701
2702 /* Setup the thread apps communication pipe. */
2703 if (create_relay_conn_pipe()) {
2704 retval = -1;
2705 goto exit_init_data;
2706 }
2707
2708 /* Init relay command queue. */
2709 cds_wfcq_init(&relay_conn_queue.head, &relay_conn_queue.tail);
2710
2711 /* Set up max poll set size */
2712 if (lttng_poll_set_max_size()) {
2713 retval = -1;
2714 goto exit_init_data;
2715 }
2716
2717 /* Initialize communication library */
2718 lttcomm_init();
2719 lttcomm_inet_init();
2720
2721 /* tables of sessions indexed by session ID */
2722 sessions_ht = lttng_ht_new(0, LTTNG_HT_TYPE_U64);
2723 if (!sessions_ht) {
2724 retval = -1;
2725 goto exit_init_data;
2726 }
2727
2728 /* tables of streams indexed by stream ID */
2729 relay_streams_ht = lttng_ht_new(0, LTTNG_HT_TYPE_U64);
2730 if (!relay_streams_ht) {
2731 retval = -1;
2732 goto exit_init_data;
2733 }
2734
2735 /* tables of streams indexed by stream ID */
2736 viewer_streams_ht = lttng_ht_new(0, LTTNG_HT_TYPE_U64);
2737 if (!viewer_streams_ht) {
2738 retval = -1;
2739 goto exit_init_data;
2740 }
2741
2742 ret = utils_create_pipe(health_quit_pipe);
2743 if (ret) {
2744 retval = -1;
2745 goto exit_health_quit_pipe;
2746 }
2747
2748 /* Create thread to manage the client socket */
2749 ret = pthread_create(&health_thread, NULL,
2750 thread_manage_health, (void *) NULL);
2751 if (ret) {
2752 errno = ret;
2753 PERROR("pthread_create health");
2754 retval = -1;
2755 goto exit_health_thread;
2756 }
2757
2758 /* Setup the dispatcher thread */
2759 ret = pthread_create(&dispatcher_thread, NULL,
2760 relay_thread_dispatcher, (void *) NULL);
2761 if (ret) {
2762 errno = ret;
2763 PERROR("pthread_create dispatcher");
2764 retval = -1;
2765 goto exit_dispatcher_thread;
2766 }
2767
2768 /* Setup the worker thread */
2769 ret = pthread_create(&worker_thread, NULL,
2770 relay_thread_worker, NULL);
2771 if (ret) {
2772 errno = ret;
2773 PERROR("pthread_create worker");
2774 retval = -1;
2775 goto exit_worker_thread;
2776 }
2777
2778 /* Setup the listener thread */
2779 ret = pthread_create(&listener_thread, NULL,
2780 relay_thread_listener, (void *) NULL);
2781 if (ret) {
2782 errno = ret;
2783 PERROR("pthread_create listener");
2784 retval = -1;
2785 goto exit_listener_thread;
2786 }
2787
2788 ret = relayd_live_create(live_uri);
2789 if (ret) {
2790 ERR("Starting live viewer threads");
2791 retval = -1;
2792 goto exit_live;
2793 }
2794
2795 /*
2796 * This is where we start awaiting program completion (e.g. through
2797 * signal that asks threads to teardown).
2798 */
2799
2800 ret = relayd_live_join();
2801 if (ret) {
2802 retval = -1;
2803 }
2804 exit_live:
2805
2806 ret = pthread_join(listener_thread, &status);
2807 if (ret) {
2808 errno = ret;
2809 PERROR("pthread_join listener_thread");
2810 retval = -1;
2811 }
2812
2813 exit_listener_thread:
2814 ret = pthread_join(worker_thread, &status);
2815 if (ret) {
2816 errno = ret;
2817 PERROR("pthread_join worker_thread");
2818 retval = -1;
2819 }
2820
2821 exit_worker_thread:
2822 ret = pthread_join(dispatcher_thread, &status);
2823 if (ret) {
2824 errno = ret;
2825 PERROR("pthread_join dispatcher_thread");
2826 retval = -1;
2827 }
2828 exit_dispatcher_thread:
2829
2830 ret = pthread_join(health_thread, &status);
2831 if (ret) {
2832 errno = ret;
2833 PERROR("pthread_join health_thread");
2834 retval = -1;
2835 }
2836 exit_health_thread:
2837
2838 utils_close_pipe(health_quit_pipe);
2839 exit_health_quit_pipe:
2840
2841 exit_init_data:
2842 health_app_destroy(health_relayd);
2843 exit_health_app_create:
2844 exit_options:
2845 relayd_cleanup();
2846
2847 /* Ensure all prior call_rcu are done. */
2848 rcu_barrier();
2849
2850 if (!retval) {
2851 exit(EXIT_SUCCESS);
2852 } else {
2853 exit(EXIT_FAILURE);
2854 }
2855 }
This page took 0.1408 seconds and 3 git commands to generate.