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