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