Fix: compat poll: add missing empty revents checks
[lttng-tools.git] / src / bin / lttng-sessiond / main.c
1 /*
2 * Copyright (C) 2011 - David Goulet <david.goulet@polymtl.ca>
3 * Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
4 * 2013 - Jérémie Galarneau <jeremie.galarneau@efficios.com>
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,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 * GNU General Public License for 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 <paths.h>
25 #include <pthread.h>
26 #include <signal.h>
27 #include <stdio.h>
28 #include <stdlib.h>
29 #include <string.h>
30 #include <inttypes.h>
31 #include <sys/mman.h>
32 #include <sys/mount.h>
33 #include <sys/resource.h>
34 #include <sys/socket.h>
35 #include <sys/stat.h>
36 #include <sys/types.h>
37 #include <sys/wait.h>
38 #include <urcu/uatomic.h>
39 #include <unistd.h>
40 #include <config.h>
41
42 #include <common/common.h>
43 #include <common/compat/socket.h>
44 #include <common/defaults.h>
45 #include <common/kernel-consumer/kernel-consumer.h>
46 #include <common/futex.h>
47 #include <common/relayd/relayd.h>
48 #include <common/utils.h>
49 #include <common/daemonize.h>
50 #include <common/config/config.h>
51
52 #include "lttng-sessiond.h"
53 #include "buffer-registry.h"
54 #include "channel.h"
55 #include "cmd.h"
56 #include "consumer.h"
57 #include "context.h"
58 #include "event.h"
59 #include "kernel.h"
60 #include "kernel-consumer.h"
61 #include "modprobe.h"
62 #include "shm.h"
63 #include "ust-ctl.h"
64 #include "ust-consumer.h"
65 #include "utils.h"
66 #include "fd-limit.h"
67 #include "health-sessiond.h"
68 #include "testpoint.h"
69 #include "ust-thread.h"
70 #include "jul-thread.h"
71 #include "save.h"
72 #include "load-session-thread.h"
73
74 #define CONSUMERD_FILE "lttng-consumerd"
75
76 const char *progname;
77 static const char *tracing_group_name = DEFAULT_TRACING_GROUP;
78 static int tracing_group_name_override;
79 static char *opt_pidfile;
80 static int opt_sig_parent;
81 static int opt_verbose_consumer;
82 static int opt_daemon, opt_background;
83 static int opt_no_kernel;
84 static char *opt_load_session_path;
85 static pid_t ppid; /* Parent PID for --sig-parent option */
86 static pid_t child_ppid; /* Internal parent PID use with daemonize. */
87 static char *rundir;
88 static int lockfile_fd = -1;
89
90 /* Set to 1 when a SIGUSR1 signal is received. */
91 static int recv_child_signal;
92
93 /*
94 * Consumer daemon specific control data. Every value not initialized here is
95 * set to 0 by the static definition.
96 */
97 static struct consumer_data kconsumer_data = {
98 .type = LTTNG_CONSUMER_KERNEL,
99 .err_unix_sock_path = DEFAULT_KCONSUMERD_ERR_SOCK_PATH,
100 .cmd_unix_sock_path = DEFAULT_KCONSUMERD_CMD_SOCK_PATH,
101 .err_sock = -1,
102 .cmd_sock = -1,
103 .pid_mutex = PTHREAD_MUTEX_INITIALIZER,
104 .lock = PTHREAD_MUTEX_INITIALIZER,
105 .cond = PTHREAD_COND_INITIALIZER,
106 .cond_mutex = PTHREAD_MUTEX_INITIALIZER,
107 };
108 static struct consumer_data ustconsumer64_data = {
109 .type = LTTNG_CONSUMER64_UST,
110 .err_unix_sock_path = DEFAULT_USTCONSUMERD64_ERR_SOCK_PATH,
111 .cmd_unix_sock_path = DEFAULT_USTCONSUMERD64_CMD_SOCK_PATH,
112 .err_sock = -1,
113 .cmd_sock = -1,
114 .pid_mutex = PTHREAD_MUTEX_INITIALIZER,
115 .lock = PTHREAD_MUTEX_INITIALIZER,
116 .cond = PTHREAD_COND_INITIALIZER,
117 .cond_mutex = PTHREAD_MUTEX_INITIALIZER,
118 };
119 static struct consumer_data ustconsumer32_data = {
120 .type = LTTNG_CONSUMER32_UST,
121 .err_unix_sock_path = DEFAULT_USTCONSUMERD32_ERR_SOCK_PATH,
122 .cmd_unix_sock_path = DEFAULT_USTCONSUMERD32_CMD_SOCK_PATH,
123 .err_sock = -1,
124 .cmd_sock = -1,
125 .pid_mutex = PTHREAD_MUTEX_INITIALIZER,
126 .lock = PTHREAD_MUTEX_INITIALIZER,
127 .cond = PTHREAD_COND_INITIALIZER,
128 .cond_mutex = PTHREAD_MUTEX_INITIALIZER,
129 };
130
131 /* Command line options */
132 static const struct option long_options[] = {
133 { "client-sock", 1, 0, 'c' },
134 { "apps-sock", 1, 0, 'a' },
135 { "kconsumerd-cmd-sock", 1, 0, 'C' },
136 { "kconsumerd-err-sock", 1, 0, 'E' },
137 { "ustconsumerd32-cmd-sock", 1, 0, 'G' },
138 { "ustconsumerd32-err-sock", 1, 0, 'H' },
139 { "ustconsumerd64-cmd-sock", 1, 0, 'D' },
140 { "ustconsumerd64-err-sock", 1, 0, 'F' },
141 { "consumerd32-path", 1, 0, 'u' },
142 { "consumerd32-libdir", 1, 0, 'U' },
143 { "consumerd64-path", 1, 0, 't' },
144 { "consumerd64-libdir", 1, 0, 'T' },
145 { "daemonize", 0, 0, 'd' },
146 { "background", 0, 0, 'b' },
147 { "sig-parent", 0, 0, 'S' },
148 { "help", 0, 0, 'h' },
149 { "group", 1, 0, 'g' },
150 { "version", 0, 0, 'V' },
151 { "quiet", 0, 0, 'q' },
152 { "verbose", 0, 0, 'v' },
153 { "verbose-consumer", 0, 0, 'Z' },
154 { "no-kernel", 0, 0, 'N' },
155 { "pidfile", 1, 0, 'p' },
156 { "jul-tcp-port", 1, 0, 'J' },
157 { "config", 1, 0, 'f' },
158 { "load", 1, 0, 'l' },
159 { "kmod-probes", 1, 0, 'P' },
160 { NULL, 0, 0, 0 }
161 };
162
163 /* Command line options to ignore from configuration file */
164 static const char *config_ignore_options[] = { "help", "version", "config" };
165
166 /* Shared between threads */
167 static int dispatch_thread_exit;
168
169 /* Global application Unix socket path */
170 static char apps_unix_sock_path[PATH_MAX];
171 /* Global client Unix socket path */
172 static char client_unix_sock_path[PATH_MAX];
173 /* global wait shm path for UST */
174 static char wait_shm_path[PATH_MAX];
175 /* Global health check unix path */
176 static char health_unix_sock_path[PATH_MAX];
177
178 /* Sockets and FDs */
179 static int client_sock = -1;
180 static int apps_sock = -1;
181 int kernel_tracer_fd = -1;
182 static int kernel_poll_pipe[2] = { -1, -1 };
183
184 /*
185 * Quit pipe for all threads. This permits a single cancellation point
186 * for all threads when receiving an event on the pipe.
187 */
188 static int thread_quit_pipe[2] = { -1, -1 };
189
190 /*
191 * This pipe is used to inform the thread managing application communication
192 * that a command is queued and ready to be processed.
193 */
194 static int apps_cmd_pipe[2] = { -1, -1 };
195
196 int apps_cmd_notify_pipe[2] = { -1, -1 };
197
198 /* Pthread, Mutexes and Semaphores */
199 static pthread_t apps_thread;
200 static pthread_t apps_notify_thread;
201 static pthread_t reg_apps_thread;
202 static pthread_t client_thread;
203 static pthread_t kernel_thread;
204 static pthread_t dispatch_thread;
205 static pthread_t health_thread;
206 static pthread_t ht_cleanup_thread;
207 static pthread_t jul_reg_thread;
208 static pthread_t load_session_thread;
209
210 /*
211 * UST registration command queue. This queue is tied with a futex and uses a N
212 * wakers / 1 waiter implemented and detailed in futex.c/.h
213 *
214 * The thread_registration_apps and thread_dispatch_ust_registration uses this
215 * queue along with the wait/wake scheme. The thread_manage_apps receives down
216 * the line new application socket and monitors it for any I/O error or clean
217 * close that triggers an unregistration of the application.
218 */
219 static struct ust_cmd_queue ust_cmd_queue;
220
221 /*
222 * Pointer initialized before thread creation.
223 *
224 * This points to the tracing session list containing the session count and a
225 * mutex lock. The lock MUST be taken if you iterate over the list. The lock
226 * MUST NOT be taken if you call a public function in session.c.
227 *
228 * The lock is nested inside the structure: session_list_ptr->lock. Please use
229 * session_lock_list and session_unlock_list for lock acquisition.
230 */
231 static struct ltt_session_list *session_list_ptr;
232
233 int ust_consumerd64_fd = -1;
234 int ust_consumerd32_fd = -1;
235
236 static const char *consumerd32_bin = CONFIG_CONSUMERD32_BIN;
237 static const char *consumerd64_bin = CONFIG_CONSUMERD64_BIN;
238 static const char *consumerd32_libdir = CONFIG_CONSUMERD32_LIBDIR;
239 static const char *consumerd64_libdir = CONFIG_CONSUMERD64_LIBDIR;
240 static int consumerd32_bin_override;
241 static int consumerd64_bin_override;
242 static int consumerd32_libdir_override;
243 static int consumerd64_libdir_override;
244
245 static const char *module_proc_lttng = "/proc/lttng";
246
247 /*
248 * Consumer daemon state which is changed when spawning it, killing it or in
249 * case of a fatal error.
250 */
251 enum consumerd_state {
252 CONSUMER_STARTED = 1,
253 CONSUMER_STOPPED = 2,
254 CONSUMER_ERROR = 3,
255 };
256
257 /*
258 * This consumer daemon state is used to validate if a client command will be
259 * able to reach the consumer. If not, the client is informed. For instance,
260 * doing a "lttng start" when the consumer state is set to ERROR will return an
261 * error to the client.
262 *
263 * The following example shows a possible race condition of this scheme:
264 *
265 * consumer thread error happens
266 * client cmd arrives
267 * client cmd checks state -> still OK
268 * consumer thread exit, sets error
269 * client cmd try to talk to consumer
270 * ...
271 *
272 * However, since the consumer is a different daemon, we have no way of making
273 * sure the command will reach it safely even with this state flag. This is why
274 * we consider that up to the state validation during command processing, the
275 * command is safe. After that, we can not guarantee the correctness of the
276 * client request vis-a-vis the consumer.
277 */
278 static enum consumerd_state ust_consumerd_state;
279 static enum consumerd_state kernel_consumerd_state;
280
281 /*
282 * Socket timeout for receiving and sending in seconds.
283 */
284 static int app_socket_timeout;
285
286 /* Set in main() with the current page size. */
287 long page_size;
288
289 /* Application health monitoring */
290 struct health_app *health_sessiond;
291
292 /* JUL TCP port for registration. Used by the JUL thread. */
293 unsigned int jul_tcp_port = DEFAULT_JUL_TCP_PORT;
294
295 /* Am I root or not. */
296 int is_root; /* Set to 1 if the daemon is running as root */
297
298 const char * const config_section_name = "sessiond";
299
300 /* Load session thread information to operate. */
301 struct load_session_thread_data *load_info;
302
303 /*
304 * Whether sessiond is ready for commands/health check requests.
305 * NR_LTTNG_SESSIOND_READY must match the number of calls to
306 * sessiond_notify_ready().
307 */
308 #define NR_LTTNG_SESSIOND_READY 3
309 int lttng_sessiond_ready = NR_LTTNG_SESSIOND_READY;
310
311 /* Notify parents that we are ready for cmd and health check */
312 LTTNG_HIDDEN
313 void sessiond_notify_ready(void)
314 {
315 if (uatomic_sub_return(&lttng_sessiond_ready, 1) == 0) {
316 /*
317 * Notify parent pid that we are ready to accept command
318 * for client side. This ppid is the one from the
319 * external process that spawned us.
320 */
321 if (opt_sig_parent) {
322 kill(ppid, SIGUSR1);
323 }
324
325 /*
326 * Notify the parent of the fork() process that we are
327 * ready.
328 */
329 if (opt_daemon || opt_background) {
330 kill(child_ppid, SIGUSR1);
331 }
332 }
333 }
334
335 static
336 void setup_consumerd_path(void)
337 {
338 const char *bin, *libdir;
339
340 /*
341 * Allow INSTALL_BIN_PATH to be used as a target path for the
342 * native architecture size consumer if CONFIG_CONSUMER*_PATH
343 * has not been defined.
344 */
345 #if (CAA_BITS_PER_LONG == 32)
346 if (!consumerd32_bin[0]) {
347 consumerd32_bin = INSTALL_BIN_PATH "/" CONSUMERD_FILE;
348 }
349 if (!consumerd32_libdir[0]) {
350 consumerd32_libdir = INSTALL_LIB_PATH;
351 }
352 #elif (CAA_BITS_PER_LONG == 64)
353 if (!consumerd64_bin[0]) {
354 consumerd64_bin = INSTALL_BIN_PATH "/" CONSUMERD_FILE;
355 }
356 if (!consumerd64_libdir[0]) {
357 consumerd64_libdir = INSTALL_LIB_PATH;
358 }
359 #else
360 #error "Unknown bitness"
361 #endif
362
363 /*
364 * runtime env. var. overrides the build default.
365 */
366 bin = getenv("LTTNG_CONSUMERD32_BIN");
367 if (bin) {
368 consumerd32_bin = bin;
369 }
370 bin = getenv("LTTNG_CONSUMERD64_BIN");
371 if (bin) {
372 consumerd64_bin = bin;
373 }
374 libdir = getenv("LTTNG_CONSUMERD32_LIBDIR");
375 if (libdir) {
376 consumerd32_libdir = libdir;
377 }
378 libdir = getenv("LTTNG_CONSUMERD64_LIBDIR");
379 if (libdir) {
380 consumerd64_libdir = libdir;
381 }
382 }
383
384 /*
385 * Create a poll set with O_CLOEXEC and add the thread quit pipe to the set.
386 */
387 int sessiond_set_thread_pollset(struct lttng_poll_event *events, size_t size)
388 {
389 int ret;
390
391 assert(events);
392
393 ret = lttng_poll_create(events, size, LTTNG_CLOEXEC);
394 if (ret < 0) {
395 goto error;
396 }
397
398 /* Add quit pipe */
399 ret = lttng_poll_add(events, thread_quit_pipe[0], LPOLLIN | LPOLLERR);
400 if (ret < 0) {
401 goto error;
402 }
403
404 return 0;
405
406 error:
407 return ret;
408 }
409
410 /*
411 * Check if the thread quit pipe was triggered.
412 *
413 * Return 1 if it was triggered else 0;
414 */
415 int sessiond_check_thread_quit_pipe(int fd, uint32_t events)
416 {
417 if (fd == thread_quit_pipe[0] && (events & LPOLLIN)) {
418 return 1;
419 }
420
421 return 0;
422 }
423
424 /*
425 * Init thread quit pipe.
426 *
427 * Return -1 on error or 0 if all pipes are created.
428 */
429 static int init_thread_quit_pipe(void)
430 {
431 int ret, i;
432
433 ret = pipe(thread_quit_pipe);
434 if (ret < 0) {
435 PERROR("thread quit pipe");
436 goto error;
437 }
438
439 for (i = 0; i < 2; i++) {
440 ret = fcntl(thread_quit_pipe[i], F_SETFD, FD_CLOEXEC);
441 if (ret < 0) {
442 PERROR("fcntl");
443 goto error;
444 }
445 }
446
447 error:
448 return ret;
449 }
450
451 /*
452 * Stop all threads by closing the thread quit pipe.
453 */
454 static void stop_threads(void)
455 {
456 int ret;
457
458 /* Stopping all threads */
459 DBG("Terminating all threads");
460 ret = notify_thread_pipe(thread_quit_pipe[1]);
461 if (ret < 0) {
462 ERR("write error on thread quit pipe");
463 }
464
465 /* Dispatch thread */
466 CMM_STORE_SHARED(dispatch_thread_exit, 1);
467 futex_nto1_wake(&ust_cmd_queue.futex);
468 }
469
470 /*
471 * Close every consumer sockets.
472 */
473 static void close_consumer_sockets(void)
474 {
475 int ret;
476
477 if (kconsumer_data.err_sock >= 0) {
478 ret = close(kconsumer_data.err_sock);
479 if (ret < 0) {
480 PERROR("kernel consumer err_sock close");
481 }
482 }
483 if (ustconsumer32_data.err_sock >= 0) {
484 ret = close(ustconsumer32_data.err_sock);
485 if (ret < 0) {
486 PERROR("UST consumerd32 err_sock close");
487 }
488 }
489 if (ustconsumer64_data.err_sock >= 0) {
490 ret = close(ustconsumer64_data.err_sock);
491 if (ret < 0) {
492 PERROR("UST consumerd64 err_sock close");
493 }
494 }
495 if (kconsumer_data.cmd_sock >= 0) {
496 ret = close(kconsumer_data.cmd_sock);
497 if (ret < 0) {
498 PERROR("kernel consumer cmd_sock close");
499 }
500 }
501 if (ustconsumer32_data.cmd_sock >= 0) {
502 ret = close(ustconsumer32_data.cmd_sock);
503 if (ret < 0) {
504 PERROR("UST consumerd32 cmd_sock close");
505 }
506 }
507 if (ustconsumer64_data.cmd_sock >= 0) {
508 ret = close(ustconsumer64_data.cmd_sock);
509 if (ret < 0) {
510 PERROR("UST consumerd64 cmd_sock close");
511 }
512 }
513 }
514
515 /*
516 * Generate the full lock file path using the rundir.
517 *
518 * Return the snprintf() return value thus a negative value is an error.
519 */
520 static int generate_lock_file_path(char *path, size_t len)
521 {
522 int ret;
523
524 assert(path);
525 assert(rundir);
526
527 /* Build lockfile path from rundir. */
528 ret = snprintf(path, len, "%s/" DEFAULT_LTTNG_SESSIOND_LOCKFILE, rundir);
529 if (ret < 0) {
530 PERROR("snprintf lockfile path");
531 }
532
533 return ret;
534 }
535
536 /*
537 * Cleanup the daemon
538 */
539 static void cleanup(void)
540 {
541 int ret;
542 struct ltt_session *sess, *stmp;
543 char path[PATH_MAX];
544
545 DBG("Cleaning up");
546
547 /*
548 * Close the thread quit pipe. It has already done its job,
549 * since we are now called.
550 */
551 utils_close_pipe(thread_quit_pipe);
552
553 /*
554 * If opt_pidfile is undefined, the default file will be wiped when
555 * removing the rundir.
556 */
557 if (opt_pidfile) {
558 ret = remove(opt_pidfile);
559 if (ret < 0) {
560 PERROR("remove pidfile %s", opt_pidfile);
561 }
562 }
563
564 DBG("Removing sessiond and consumerd content of directory %s", rundir);
565
566 /* sessiond */
567 snprintf(path, PATH_MAX,
568 "%s/%s",
569 rundir, DEFAULT_LTTNG_SESSIOND_PIDFILE);
570 DBG("Removing %s", path);
571 (void) unlink(path);
572
573 snprintf(path, PATH_MAX, "%s/%s", rundir,
574 DEFAULT_LTTNG_SESSIOND_JULPORT_FILE);
575 DBG("Removing %s", path);
576 (void) unlink(path);
577
578 /* kconsumerd */
579 snprintf(path, PATH_MAX,
580 DEFAULT_KCONSUMERD_ERR_SOCK_PATH,
581 rundir);
582 DBG("Removing %s", path);
583 (void) unlink(path);
584
585 snprintf(path, PATH_MAX,
586 DEFAULT_KCONSUMERD_PATH,
587 rundir);
588 DBG("Removing directory %s", path);
589 (void) rmdir(path);
590
591 /* ust consumerd 32 */
592 snprintf(path, PATH_MAX,
593 DEFAULT_USTCONSUMERD32_ERR_SOCK_PATH,
594 rundir);
595 DBG("Removing %s", path);
596 (void) unlink(path);
597
598 snprintf(path, PATH_MAX,
599 DEFAULT_USTCONSUMERD32_PATH,
600 rundir);
601 DBG("Removing directory %s", path);
602 (void) rmdir(path);
603
604 /* ust consumerd 64 */
605 snprintf(path, PATH_MAX,
606 DEFAULT_USTCONSUMERD64_ERR_SOCK_PATH,
607 rundir);
608 DBG("Removing %s", path);
609 (void) unlink(path);
610
611 snprintf(path, PATH_MAX,
612 DEFAULT_USTCONSUMERD64_PATH,
613 rundir);
614 DBG("Removing directory %s", path);
615 (void) rmdir(path);
616
617 DBG("Cleaning up all sessions");
618
619 /* Destroy session list mutex */
620 if (session_list_ptr != NULL) {
621 pthread_mutex_destroy(&session_list_ptr->lock);
622
623 /* Cleanup ALL session */
624 cds_list_for_each_entry_safe(sess, stmp,
625 &session_list_ptr->head, list) {
626 cmd_destroy_session(sess, kernel_poll_pipe[1]);
627 }
628 }
629
630 DBG("Closing all UST sockets");
631 ust_app_clean_list();
632 buffer_reg_destroy_registries();
633
634 if (is_root && !opt_no_kernel) {
635 DBG2("Closing kernel fd");
636 if (kernel_tracer_fd >= 0) {
637 ret = close(kernel_tracer_fd);
638 if (ret) {
639 PERROR("close");
640 }
641 }
642 DBG("Unloading kernel modules");
643 modprobe_remove_lttng_all();
644 }
645
646 close_consumer_sockets();
647
648 /*
649 * If the override option is set, the pointer points to a *non* const thus
650 * freeing it even though the variable type is set to const.
651 */
652 if (tracing_group_name_override) {
653 free((void *) tracing_group_name);
654 }
655 if (consumerd32_bin_override) {
656 free((void *) consumerd32_bin);
657 }
658 if (consumerd64_bin_override) {
659 free((void *) consumerd64_bin);
660 }
661 if (consumerd32_libdir_override) {
662 free((void *) consumerd32_libdir);
663 }
664 if (consumerd64_libdir_override) {
665 free((void *) consumerd64_libdir);
666 }
667
668 if (opt_pidfile) {
669 free(opt_pidfile);
670 }
671
672 if (opt_load_session_path) {
673 free(opt_load_session_path);
674 }
675
676 if (load_info) {
677 load_session_destroy_data(load_info);
678 free(load_info);
679 }
680
681 /*
682 * Cleanup lock file by deleting it and finaly closing it which will
683 * release the file system lock.
684 */
685 if (lockfile_fd >= 0) {
686 char lockfile_path[PATH_MAX];
687
688 ret = generate_lock_file_path(lockfile_path, sizeof(lockfile_path));
689 if (ret > 0) {
690 ret = remove(lockfile_path);
691 if (ret < 0) {
692 PERROR("remove lock file");
693 }
694 ret = close(lockfile_fd);
695 if (ret < 0) {
696 PERROR("close lock file");
697 }
698 }
699 }
700
701 /*
702 * We do NOT rmdir rundir because there are other processes
703 * using it, for instance lttng-relayd, which can start in
704 * parallel with this teardown.
705 */
706
707 free(rundir);
708
709 /* <fun> */
710 DBG("%c[%d;%dm*** assert failed :-) *** ==> %c[%dm%c[%d;%dm"
711 "Matthew, BEET driven development works!%c[%dm",
712 27, 1, 31, 27, 0, 27, 1, 33, 27, 0);
713 /* </fun> */
714 }
715
716 /*
717 * Send data on a unix socket using the liblttsessiondcomm API.
718 *
719 * Return lttcomm error code.
720 */
721 static int send_unix_sock(int sock, void *buf, size_t len)
722 {
723 /* Check valid length */
724 if (len == 0) {
725 return -1;
726 }
727
728 return lttcomm_send_unix_sock(sock, buf, len);
729 }
730
731 /*
732 * Free memory of a command context structure.
733 */
734 static void clean_command_ctx(struct command_ctx **cmd_ctx)
735 {
736 DBG("Clean command context structure");
737 if (*cmd_ctx) {
738 if ((*cmd_ctx)->llm) {
739 free((*cmd_ctx)->llm);
740 }
741 if ((*cmd_ctx)->lsm) {
742 free((*cmd_ctx)->lsm);
743 }
744 free(*cmd_ctx);
745 *cmd_ctx = NULL;
746 }
747 }
748
749 /*
750 * Notify UST applications using the shm mmap futex.
751 */
752 static int notify_ust_apps(int active)
753 {
754 char *wait_shm_mmap;
755
756 DBG("Notifying applications of session daemon state: %d", active);
757
758 /* See shm.c for this call implying mmap, shm and futex calls */
759 wait_shm_mmap = shm_ust_get_mmap(wait_shm_path, is_root);
760 if (wait_shm_mmap == NULL) {
761 goto error;
762 }
763
764 /* Wake waiting process */
765 futex_wait_update((int32_t *) wait_shm_mmap, active);
766
767 /* Apps notified successfully */
768 return 0;
769
770 error:
771 return -1;
772 }
773
774 /*
775 * Setup the outgoing data buffer for the response (llm) by allocating the
776 * right amount of memory and copying the original information from the lsm
777 * structure.
778 *
779 * Return total size of the buffer pointed by buf.
780 */
781 static int setup_lttng_msg(struct command_ctx *cmd_ctx, size_t size)
782 {
783 int ret, buf_size;
784
785 buf_size = size;
786
787 cmd_ctx->llm = zmalloc(sizeof(struct lttcomm_lttng_msg) + buf_size);
788 if (cmd_ctx->llm == NULL) {
789 PERROR("zmalloc");
790 ret = -ENOMEM;
791 goto error;
792 }
793
794 /* Copy common data */
795 cmd_ctx->llm->cmd_type = cmd_ctx->lsm->cmd_type;
796 cmd_ctx->llm->pid = cmd_ctx->lsm->domain.attr.pid;
797
798 cmd_ctx->llm->data_size = size;
799 cmd_ctx->lttng_msg_size = sizeof(struct lttcomm_lttng_msg) + buf_size;
800
801 return buf_size;
802
803 error:
804 return ret;
805 }
806
807 /*
808 * Update the kernel poll set of all channel fd available over all tracing
809 * session. Add the wakeup pipe at the end of the set.
810 */
811 static int update_kernel_poll(struct lttng_poll_event *events)
812 {
813 int ret;
814 struct ltt_session *session;
815 struct ltt_kernel_channel *channel;
816
817 DBG("Updating kernel poll set");
818
819 session_lock_list();
820 cds_list_for_each_entry(session, &session_list_ptr->head, list) {
821 session_lock(session);
822 if (session->kernel_session == NULL) {
823 session_unlock(session);
824 continue;
825 }
826
827 cds_list_for_each_entry(channel,
828 &session->kernel_session->channel_list.head, list) {
829 /* Add channel fd to the kernel poll set */
830 ret = lttng_poll_add(events, channel->fd, LPOLLIN | LPOLLRDNORM);
831 if (ret < 0) {
832 session_unlock(session);
833 goto error;
834 }
835 DBG("Channel fd %d added to kernel set", channel->fd);
836 }
837 session_unlock(session);
838 }
839 session_unlock_list();
840
841 return 0;
842
843 error:
844 session_unlock_list();
845 return -1;
846 }
847
848 /*
849 * Find the channel fd from 'fd' over all tracing session. When found, check
850 * for new channel stream and send those stream fds to the kernel consumer.
851 *
852 * Useful for CPU hotplug feature.
853 */
854 static int update_kernel_stream(struct consumer_data *consumer_data, int fd)
855 {
856 int ret = 0;
857 struct ltt_session *session;
858 struct ltt_kernel_session *ksess;
859 struct ltt_kernel_channel *channel;
860
861 DBG("Updating kernel streams for channel fd %d", fd);
862
863 session_lock_list();
864 cds_list_for_each_entry(session, &session_list_ptr->head, list) {
865 session_lock(session);
866 if (session->kernel_session == NULL) {
867 session_unlock(session);
868 continue;
869 }
870 ksess = session->kernel_session;
871
872 cds_list_for_each_entry(channel, &ksess->channel_list.head, list) {
873 if (channel->fd == fd) {
874 DBG("Channel found, updating kernel streams");
875 ret = kernel_open_channel_stream(channel);
876 if (ret < 0) {
877 goto error;
878 }
879 /* Update the stream global counter */
880 ksess->stream_count_global += ret;
881
882 /*
883 * Have we already sent fds to the consumer? If yes, it means
884 * that tracing is started so it is safe to send our updated
885 * stream fds.
886 */
887 if (ksess->consumer_fds_sent == 1 && ksess->consumer != NULL) {
888 struct lttng_ht_iter iter;
889 struct consumer_socket *socket;
890
891 rcu_read_lock();
892 cds_lfht_for_each_entry(ksess->consumer->socks->ht,
893 &iter.iter, socket, node.node) {
894 pthread_mutex_lock(socket->lock);
895 ret = kernel_consumer_send_channel_stream(socket,
896 channel, ksess,
897 session->output_traces ? 1 : 0);
898 pthread_mutex_unlock(socket->lock);
899 if (ret < 0) {
900 rcu_read_unlock();
901 goto error;
902 }
903 }
904 rcu_read_unlock();
905 }
906 goto error;
907 }
908 }
909 session_unlock(session);
910 }
911 session_unlock_list();
912 return ret;
913
914 error:
915 session_unlock(session);
916 session_unlock_list();
917 return ret;
918 }
919
920 /*
921 * For each tracing session, update newly registered apps. The session list
922 * lock MUST be acquired before calling this.
923 */
924 static void update_ust_app(int app_sock)
925 {
926 struct ltt_session *sess, *stmp;
927
928 /* Consumer is in an ERROR state. Stop any application update. */
929 if (uatomic_read(&ust_consumerd_state) == CONSUMER_ERROR) {
930 /* Stop the update process since the consumer is dead. */
931 return;
932 }
933
934 /* For all tracing session(s) */
935 cds_list_for_each_entry_safe(sess, stmp, &session_list_ptr->head, list) {
936 session_lock(sess);
937 if (sess->ust_session) {
938 ust_app_global_update(sess->ust_session, app_sock);
939 }
940 session_unlock(sess);
941 }
942 }
943
944 /*
945 * This thread manage event coming from the kernel.
946 *
947 * Features supported in this thread:
948 * -) CPU Hotplug
949 */
950 static void *thread_manage_kernel(void *data)
951 {
952 int ret, i, pollfd, update_poll_flag = 1, err = -1;
953 uint32_t revents, nb_fd;
954 char tmp;
955 struct lttng_poll_event events;
956
957 DBG("[thread] Thread manage kernel started");
958
959 health_register(health_sessiond, HEALTH_SESSIOND_TYPE_KERNEL);
960
961 /*
962 * This first step of the while is to clean this structure which could free
963 * non NULL pointers so initialize it before the loop.
964 */
965 lttng_poll_init(&events);
966
967 if (testpoint(sessiond_thread_manage_kernel)) {
968 goto error_testpoint;
969 }
970
971 health_code_update();
972
973 if (testpoint(sessiond_thread_manage_kernel_before_loop)) {
974 goto error_testpoint;
975 }
976
977 while (1) {
978 health_code_update();
979
980 if (update_poll_flag == 1) {
981 /* Clean events object. We are about to populate it again. */
982 lttng_poll_clean(&events);
983
984 ret = sessiond_set_thread_pollset(&events, 2);
985 if (ret < 0) {
986 goto error_poll_create;
987 }
988
989 ret = lttng_poll_add(&events, kernel_poll_pipe[0], LPOLLIN);
990 if (ret < 0) {
991 goto error;
992 }
993
994 /* This will add the available kernel channel if any. */
995 ret = update_kernel_poll(&events);
996 if (ret < 0) {
997 goto error;
998 }
999 update_poll_flag = 0;
1000 }
1001
1002 DBG("Thread kernel polling on %d fds", LTTNG_POLL_GETNB(&events));
1003
1004 /* Poll infinite value of time */
1005 restart:
1006 health_poll_entry();
1007 ret = lttng_poll_wait(&events, -1);
1008 health_poll_exit();
1009 if (ret < 0) {
1010 /*
1011 * Restart interrupted system call.
1012 */
1013 if (errno == EINTR) {
1014 goto restart;
1015 }
1016 goto error;
1017 } else if (ret == 0) {
1018 /* Should not happen since timeout is infinite */
1019 ERR("Return value of poll is 0 with an infinite timeout.\n"
1020 "This should not have happened! Continuing...");
1021 continue;
1022 }
1023
1024 nb_fd = ret;
1025
1026 for (i = 0; i < nb_fd; i++) {
1027 /* Fetch once the poll data */
1028 revents = LTTNG_POLL_GETEV(&events, i);
1029 pollfd = LTTNG_POLL_GETFD(&events, i);
1030
1031 health_code_update();
1032
1033 if (!revents) {
1034 /* No activity for this FD (poll implementation). */
1035 continue;
1036 }
1037
1038 /* Thread quit pipe has been closed. Killing thread. */
1039 ret = sessiond_check_thread_quit_pipe(pollfd, revents);
1040 if (ret) {
1041 err = 0;
1042 goto exit;
1043 }
1044
1045 /* Check for data on kernel pipe */
1046 if (pollfd == kernel_poll_pipe[0] && (revents & LPOLLIN)) {
1047 (void) lttng_read(kernel_poll_pipe[0],
1048 &tmp, 1);
1049 /*
1050 * Ret value is useless here, if this pipe gets any actions an
1051 * update is required anyway.
1052 */
1053 update_poll_flag = 1;
1054 continue;
1055 } else {
1056 /*
1057 * New CPU detected by the kernel. Adding kernel stream to
1058 * kernel session and updating the kernel consumer
1059 */
1060 if (revents & LPOLLIN) {
1061 ret = update_kernel_stream(&kconsumer_data, pollfd);
1062 if (ret < 0) {
1063 continue;
1064 }
1065 break;
1066 /*
1067 * TODO: We might want to handle the LPOLLERR | LPOLLHUP
1068 * and unregister kernel stream at this point.
1069 */
1070 }
1071 }
1072 }
1073 }
1074
1075 exit:
1076 error:
1077 lttng_poll_clean(&events);
1078 error_poll_create:
1079 error_testpoint:
1080 utils_close_pipe(kernel_poll_pipe);
1081 kernel_poll_pipe[0] = kernel_poll_pipe[1] = -1;
1082 if (err) {
1083 health_error();
1084 ERR("Health error occurred in %s", __func__);
1085 WARN("Kernel thread died unexpectedly. "
1086 "Kernel tracing can continue but CPU hotplug is disabled.");
1087 }
1088 health_unregister(health_sessiond);
1089 DBG("Kernel thread dying");
1090 return NULL;
1091 }
1092
1093 /*
1094 * Signal pthread condition of the consumer data that the thread.
1095 */
1096 static void signal_consumer_condition(struct consumer_data *data, int state)
1097 {
1098 pthread_mutex_lock(&data->cond_mutex);
1099
1100 /*
1101 * The state is set before signaling. It can be any value, it's the waiter
1102 * job to correctly interpret this condition variable associated to the
1103 * consumer pthread_cond.
1104 *
1105 * A value of 0 means that the corresponding thread of the consumer data
1106 * was not started. 1 indicates that the thread has started and is ready
1107 * for action. A negative value means that there was an error during the
1108 * thread bootstrap.
1109 */
1110 data->consumer_thread_is_ready = state;
1111 (void) pthread_cond_signal(&data->cond);
1112
1113 pthread_mutex_unlock(&data->cond_mutex);
1114 }
1115
1116 /*
1117 * This thread manage the consumer error sent back to the session daemon.
1118 */
1119 static void *thread_manage_consumer(void *data)
1120 {
1121 int sock = -1, i, ret, pollfd, err = -1, should_quit = 0;
1122 uint32_t revents, nb_fd;
1123 enum lttcomm_return_code code;
1124 struct lttng_poll_event events;
1125 struct consumer_data *consumer_data = data;
1126
1127 DBG("[thread] Manage consumer started");
1128
1129 health_register(health_sessiond, HEALTH_SESSIOND_TYPE_CONSUMER);
1130
1131 health_code_update();
1132
1133 /*
1134 * Pass 3 as size here for the thread quit pipe, consumerd_err_sock and the
1135 * metadata_sock. Nothing more will be added to this poll set.
1136 */
1137 ret = sessiond_set_thread_pollset(&events, 3);
1138 if (ret < 0) {
1139 goto error_poll;
1140 }
1141
1142 /*
1143 * The error socket here is already in a listening state which was done
1144 * just before spawning this thread to avoid a race between the consumer
1145 * daemon exec trying to connect and the listen() call.
1146 */
1147 ret = lttng_poll_add(&events, consumer_data->err_sock, LPOLLIN | LPOLLRDHUP);
1148 if (ret < 0) {
1149 goto error;
1150 }
1151
1152 health_code_update();
1153
1154 /* Infinite blocking call, waiting for transmission */
1155 restart:
1156 health_poll_entry();
1157
1158 if (testpoint(sessiond_thread_manage_consumer)) {
1159 goto error;
1160 }
1161
1162 ret = lttng_poll_wait(&events, -1);
1163 health_poll_exit();
1164 if (ret < 0) {
1165 /*
1166 * Restart interrupted system call.
1167 */
1168 if (errno == EINTR) {
1169 goto restart;
1170 }
1171 goto error;
1172 }
1173
1174 nb_fd = ret;
1175
1176 for (i = 0; i < nb_fd; i++) {
1177 /* Fetch once the poll data */
1178 revents = LTTNG_POLL_GETEV(&events, i);
1179 pollfd = LTTNG_POLL_GETFD(&events, i);
1180
1181 health_code_update();
1182
1183 if (!revents) {
1184 /* No activity for this FD (poll implementation). */
1185 continue;
1186 }
1187
1188 /* Thread quit pipe has been closed. Killing thread. */
1189 ret = sessiond_check_thread_quit_pipe(pollfd, revents);
1190 if (ret) {
1191 err = 0;
1192 goto exit;
1193 }
1194
1195 /* Event on the registration socket */
1196 if (pollfd == consumer_data->err_sock) {
1197 if (revents & (LPOLLERR | LPOLLHUP | LPOLLRDHUP)) {
1198 ERR("consumer err socket poll error");
1199 goto error;
1200 }
1201 }
1202 }
1203
1204 sock = lttcomm_accept_unix_sock(consumer_data->err_sock);
1205 if (sock < 0) {
1206 goto error;
1207 }
1208
1209 /*
1210 * Set the CLOEXEC flag. Return code is useless because either way, the
1211 * show must go on.
1212 */
1213 (void) utils_set_fd_cloexec(sock);
1214
1215 health_code_update();
1216
1217 DBG2("Receiving code from consumer err_sock");
1218
1219 /* Getting status code from kconsumerd */
1220 ret = lttcomm_recv_unix_sock(sock, &code,
1221 sizeof(enum lttcomm_return_code));
1222 if (ret <= 0) {
1223 goto error;
1224 }
1225
1226 health_code_update();
1227 if (code == LTTCOMM_CONSUMERD_COMMAND_SOCK_READY) {
1228 /* Connect both socket, command and metadata. */
1229 consumer_data->cmd_sock =
1230 lttcomm_connect_unix_sock(consumer_data->cmd_unix_sock_path);
1231 consumer_data->metadata_fd =
1232 lttcomm_connect_unix_sock(consumer_data->cmd_unix_sock_path);
1233 if (consumer_data->cmd_sock < 0
1234 || consumer_data->metadata_fd < 0) {
1235 PERROR("consumer connect cmd socket");
1236 /* On error, signal condition and quit. */
1237 signal_consumer_condition(consumer_data, -1);
1238 goto error;
1239 }
1240 consumer_data->metadata_sock.fd_ptr = &consumer_data->metadata_fd;
1241 /* Create metadata socket lock. */
1242 consumer_data->metadata_sock.lock = zmalloc(sizeof(pthread_mutex_t));
1243 if (consumer_data->metadata_sock.lock == NULL) {
1244 PERROR("zmalloc pthread mutex");
1245 ret = -1;
1246 goto error;
1247 }
1248 pthread_mutex_init(consumer_data->metadata_sock.lock, NULL);
1249
1250 signal_consumer_condition(consumer_data, 1);
1251 DBG("Consumer command socket ready (fd: %d", consumer_data->cmd_sock);
1252 DBG("Consumer metadata socket ready (fd: %d)",
1253 consumer_data->metadata_fd);
1254 } else {
1255 ERR("consumer error when waiting for SOCK_READY : %s",
1256 lttcomm_get_readable_code(-code));
1257 goto error;
1258 }
1259
1260 /* Remove the consumerd error sock since we've established a connexion */
1261 ret = lttng_poll_del(&events, consumer_data->err_sock);
1262 if (ret < 0) {
1263 goto error;
1264 }
1265
1266 /* Add new accepted error socket. */
1267 ret = lttng_poll_add(&events, sock, LPOLLIN | LPOLLRDHUP);
1268 if (ret < 0) {
1269 goto error;
1270 }
1271
1272 /* Add metadata socket that is successfully connected. */
1273 ret = lttng_poll_add(&events, consumer_data->metadata_fd,
1274 LPOLLIN | LPOLLRDHUP);
1275 if (ret < 0) {
1276 goto error;
1277 }
1278
1279 health_code_update();
1280
1281 /* Infinite blocking call, waiting for transmission */
1282 restart_poll:
1283 while (1) {
1284 health_code_update();
1285
1286 /* Exit the thread because the thread quit pipe has been triggered. */
1287 if (should_quit) {
1288 /* Not a health error. */
1289 err = 0;
1290 goto exit;
1291 }
1292
1293 health_poll_entry();
1294 ret = lttng_poll_wait(&events, -1);
1295 health_poll_exit();
1296 if (ret < 0) {
1297 /*
1298 * Restart interrupted system call.
1299 */
1300 if (errno == EINTR) {
1301 goto restart_poll;
1302 }
1303 goto error;
1304 }
1305
1306 nb_fd = ret;
1307
1308 for (i = 0; i < nb_fd; i++) {
1309 /* Fetch once the poll data */
1310 revents = LTTNG_POLL_GETEV(&events, i);
1311 pollfd = LTTNG_POLL_GETFD(&events, i);
1312
1313 health_code_update();
1314
1315 if (!revents) {
1316 /* No activity for this FD (poll implementation). */
1317 continue;
1318 }
1319
1320 /*
1321 * Thread quit pipe has been triggered, flag that we should stop
1322 * but continue the current loop to handle potential data from
1323 * consumer.
1324 */
1325 should_quit = sessiond_check_thread_quit_pipe(pollfd, revents);
1326
1327 if (pollfd == sock) {
1328 /* Event on the consumerd socket */
1329 if (revents & (LPOLLERR | LPOLLHUP | LPOLLRDHUP)) {
1330 ERR("consumer err socket second poll error");
1331 goto error;
1332 }
1333 health_code_update();
1334 /* Wait for any kconsumerd error */
1335 ret = lttcomm_recv_unix_sock(sock, &code,
1336 sizeof(enum lttcomm_return_code));
1337 if (ret <= 0) {
1338 ERR("consumer closed the command socket");
1339 goto error;
1340 }
1341
1342 ERR("consumer return code : %s",
1343 lttcomm_get_readable_code(-code));
1344
1345 goto exit;
1346 } else if (pollfd == consumer_data->metadata_fd) {
1347 /* UST metadata requests */
1348 ret = ust_consumer_metadata_request(
1349 &consumer_data->metadata_sock);
1350 if (ret < 0) {
1351 ERR("Handling metadata request");
1352 goto error;
1353 }
1354 }
1355 /* No need for an else branch all FDs are tested prior. */
1356 }
1357 health_code_update();
1358 }
1359
1360 exit:
1361 error:
1362 /*
1363 * We lock here because we are about to close the sockets and some other
1364 * thread might be using them so get exclusive access which will abort all
1365 * other consumer command by other threads.
1366 */
1367 pthread_mutex_lock(&consumer_data->lock);
1368
1369 /* Immediately set the consumerd state to stopped */
1370 if (consumer_data->type == LTTNG_CONSUMER_KERNEL) {
1371 uatomic_set(&kernel_consumerd_state, CONSUMER_ERROR);
1372 } else if (consumer_data->type == LTTNG_CONSUMER64_UST ||
1373 consumer_data->type == LTTNG_CONSUMER32_UST) {
1374 uatomic_set(&ust_consumerd_state, CONSUMER_ERROR);
1375 } else {
1376 /* Code flow error... */
1377 assert(0);
1378 }
1379
1380 if (consumer_data->err_sock >= 0) {
1381 ret = close(consumer_data->err_sock);
1382 if (ret) {
1383 PERROR("close");
1384 }
1385 consumer_data->err_sock = -1;
1386 }
1387 if (consumer_data->cmd_sock >= 0) {
1388 ret = close(consumer_data->cmd_sock);
1389 if (ret) {
1390 PERROR("close");
1391 }
1392 consumer_data->cmd_sock = -1;
1393 }
1394 if (consumer_data->metadata_sock.fd_ptr &&
1395 *consumer_data->metadata_sock.fd_ptr >= 0) {
1396 ret = close(*consumer_data->metadata_sock.fd_ptr);
1397 if (ret) {
1398 PERROR("close");
1399 }
1400 }
1401 if (sock >= 0) {
1402 ret = close(sock);
1403 if (ret) {
1404 PERROR("close");
1405 }
1406 }
1407
1408 unlink(consumer_data->err_unix_sock_path);
1409 unlink(consumer_data->cmd_unix_sock_path);
1410 consumer_data->pid = 0;
1411 pthread_mutex_unlock(&consumer_data->lock);
1412
1413 /* Cleanup metadata socket mutex. */
1414 if (consumer_data->metadata_sock.lock) {
1415 pthread_mutex_destroy(consumer_data->metadata_sock.lock);
1416 free(consumer_data->metadata_sock.lock);
1417 }
1418 lttng_poll_clean(&events);
1419 error_poll:
1420 if (err) {
1421 health_error();
1422 ERR("Health error occurred in %s", __func__);
1423 }
1424 health_unregister(health_sessiond);
1425 DBG("consumer thread cleanup completed");
1426
1427 return NULL;
1428 }
1429
1430 /*
1431 * This thread manage application communication.
1432 */
1433 static void *thread_manage_apps(void *data)
1434 {
1435 int i, ret, pollfd, err = -1;
1436 ssize_t size_ret;
1437 uint32_t revents, nb_fd;
1438 struct lttng_poll_event events;
1439
1440 DBG("[thread] Manage application started");
1441
1442 rcu_register_thread();
1443 rcu_thread_online();
1444
1445 health_register(health_sessiond, HEALTH_SESSIOND_TYPE_APP_MANAGE);
1446
1447 if (testpoint(sessiond_thread_manage_apps)) {
1448 goto error_testpoint;
1449 }
1450
1451 health_code_update();
1452
1453 ret = sessiond_set_thread_pollset(&events, 2);
1454 if (ret < 0) {
1455 goto error_poll_create;
1456 }
1457
1458 ret = lttng_poll_add(&events, apps_cmd_pipe[0], LPOLLIN | LPOLLRDHUP);
1459 if (ret < 0) {
1460 goto error;
1461 }
1462
1463 if (testpoint(sessiond_thread_manage_apps_before_loop)) {
1464 goto error;
1465 }
1466
1467 health_code_update();
1468
1469 while (1) {
1470 DBG("Apps thread polling on %d fds", LTTNG_POLL_GETNB(&events));
1471
1472 /* Inifinite blocking call, waiting for transmission */
1473 restart:
1474 health_poll_entry();
1475 ret = lttng_poll_wait(&events, -1);
1476 health_poll_exit();
1477 if (ret < 0) {
1478 /*
1479 * Restart interrupted system call.
1480 */
1481 if (errno == EINTR) {
1482 goto restart;
1483 }
1484 goto error;
1485 }
1486
1487 nb_fd = ret;
1488
1489 for (i = 0; i < nb_fd; i++) {
1490 /* Fetch once the poll data */
1491 revents = LTTNG_POLL_GETEV(&events, i);
1492 pollfd = LTTNG_POLL_GETFD(&events, i);
1493
1494 health_code_update();
1495
1496 if (!revents) {
1497 /* No activity for this FD (poll implementation). */
1498 continue;
1499 }
1500
1501 /* Thread quit pipe has been closed. Killing thread. */
1502 ret = sessiond_check_thread_quit_pipe(pollfd, revents);
1503 if (ret) {
1504 err = 0;
1505 goto exit;
1506 }
1507
1508 /* Inspect the apps cmd pipe */
1509 if (pollfd == apps_cmd_pipe[0]) {
1510 if (revents & (LPOLLERR | LPOLLHUP | LPOLLRDHUP)) {
1511 ERR("Apps command pipe error");
1512 goto error;
1513 } else if (revents & LPOLLIN) {
1514 int sock;
1515
1516 /* Empty pipe */
1517 size_ret = lttng_read(apps_cmd_pipe[0], &sock, sizeof(sock));
1518 if (size_ret < sizeof(sock)) {
1519 PERROR("read apps cmd pipe");
1520 goto error;
1521 }
1522
1523 health_code_update();
1524
1525 /*
1526 * We only monitor the error events of the socket. This
1527 * thread does not handle any incoming data from UST
1528 * (POLLIN).
1529 */
1530 ret = lttng_poll_add(&events, sock,
1531 LPOLLERR | LPOLLHUP | LPOLLRDHUP);
1532 if (ret < 0) {
1533 goto error;
1534 }
1535
1536 DBG("Apps with sock %d added to poll set", sock);
1537 }
1538 } else {
1539 /*
1540 * At this point, we know that a registered application made
1541 * the event at poll_wait.
1542 */
1543 if (revents & (LPOLLERR | LPOLLHUP | LPOLLRDHUP)) {
1544 /* Removing from the poll set */
1545 ret = lttng_poll_del(&events, pollfd);
1546 if (ret < 0) {
1547 goto error;
1548 }
1549
1550 /* Socket closed on remote end. */
1551 ust_app_unregister(pollfd);
1552 }
1553 }
1554
1555 health_code_update();
1556 }
1557 }
1558
1559 exit:
1560 error:
1561 lttng_poll_clean(&events);
1562 error_poll_create:
1563 error_testpoint:
1564 utils_close_pipe(apps_cmd_pipe);
1565 apps_cmd_pipe[0] = apps_cmd_pipe[1] = -1;
1566
1567 /*
1568 * We don't clean the UST app hash table here since already registered
1569 * applications can still be controlled so let them be until the session
1570 * daemon dies or the applications stop.
1571 */
1572
1573 if (err) {
1574 health_error();
1575 ERR("Health error occurred in %s", __func__);
1576 }
1577 health_unregister(health_sessiond);
1578 DBG("Application communication apps thread cleanup complete");
1579 rcu_thread_offline();
1580 rcu_unregister_thread();
1581 return NULL;
1582 }
1583
1584 /*
1585 * Send a socket to a thread This is called from the dispatch UST registration
1586 * thread once all sockets are set for the application.
1587 *
1588 * The sock value can be invalid, we don't really care, the thread will handle
1589 * it and make the necessary cleanup if so.
1590 *
1591 * On success, return 0 else a negative value being the errno message of the
1592 * write().
1593 */
1594 static int send_socket_to_thread(int fd, int sock)
1595 {
1596 ssize_t ret;
1597
1598 /*
1599 * It's possible that the FD is set as invalid with -1 concurrently just
1600 * before calling this function being a shutdown state of the thread.
1601 */
1602 if (fd < 0) {
1603 ret = -EBADF;
1604 goto error;
1605 }
1606
1607 ret = lttng_write(fd, &sock, sizeof(sock));
1608 if (ret < sizeof(sock)) {
1609 PERROR("write apps pipe %d", fd);
1610 if (ret < 0) {
1611 ret = -errno;
1612 }
1613 goto error;
1614 }
1615
1616 /* All good. Don't send back the write positive ret value. */
1617 ret = 0;
1618 error:
1619 return (int) ret;
1620 }
1621
1622 /*
1623 * Sanitize the wait queue of the dispatch registration thread meaning removing
1624 * invalid nodes from it. This is to avoid memory leaks for the case the UST
1625 * notify socket is never received.
1626 */
1627 static void sanitize_wait_queue(struct ust_reg_wait_queue *wait_queue)
1628 {
1629 int ret, nb_fd = 0, i;
1630 unsigned int fd_added = 0;
1631 struct lttng_poll_event events;
1632 struct ust_reg_wait_node *wait_node = NULL, *tmp_wait_node;
1633
1634 assert(wait_queue);
1635
1636 lttng_poll_init(&events);
1637
1638 /* Just skip everything for an empty queue. */
1639 if (!wait_queue->count) {
1640 goto end;
1641 }
1642
1643 ret = lttng_poll_create(&events, wait_queue->count, LTTNG_CLOEXEC);
1644 if (ret < 0) {
1645 goto error_create;
1646 }
1647
1648 cds_list_for_each_entry_safe(wait_node, tmp_wait_node,
1649 &wait_queue->head, head) {
1650 assert(wait_node->app);
1651 ret = lttng_poll_add(&events, wait_node->app->sock,
1652 LPOLLHUP | LPOLLERR);
1653 if (ret < 0) {
1654 goto error;
1655 }
1656
1657 fd_added = 1;
1658 }
1659
1660 if (!fd_added) {
1661 goto end;
1662 }
1663
1664 /*
1665 * Poll but don't block so we can quickly identify the faulty events and
1666 * clean them afterwards from the wait queue.
1667 */
1668 ret = lttng_poll_wait(&events, 0);
1669 if (ret < 0) {
1670 goto error;
1671 }
1672 nb_fd = ret;
1673
1674 for (i = 0; i < nb_fd; i++) {
1675 /* Get faulty FD. */
1676 uint32_t revents = LTTNG_POLL_GETEV(&events, i);
1677 int pollfd = LTTNG_POLL_GETFD(&events, i);
1678
1679 if (!revents) {
1680 /* No activity for this FD (poll implementation). */
1681 continue;
1682 }
1683
1684 cds_list_for_each_entry_safe(wait_node, tmp_wait_node,
1685 &wait_queue->head, head) {
1686 if (pollfd == wait_node->app->sock &&
1687 (revents & (LPOLLHUP | LPOLLERR))) {
1688 cds_list_del(&wait_node->head);
1689 wait_queue->count--;
1690 ust_app_destroy(wait_node->app);
1691 free(wait_node);
1692 break;
1693 }
1694 }
1695 }
1696
1697 if (nb_fd > 0) {
1698 DBG("Wait queue sanitized, %d node were cleaned up", nb_fd);
1699 }
1700
1701 end:
1702 lttng_poll_clean(&events);
1703 return;
1704
1705 error:
1706 lttng_poll_clean(&events);
1707 error_create:
1708 ERR("Unable to sanitize wait queue");
1709 return;
1710 }
1711
1712 /*
1713 * Dispatch request from the registration threads to the application
1714 * communication thread.
1715 */
1716 static void *thread_dispatch_ust_registration(void *data)
1717 {
1718 int ret, err = -1;
1719 struct cds_wfq_node *node;
1720 struct ust_command *ust_cmd = NULL;
1721 struct ust_reg_wait_node *wait_node = NULL, *tmp_wait_node;
1722 struct ust_reg_wait_queue wait_queue = {
1723 .count = 0,
1724 };
1725
1726 health_register(health_sessiond, HEALTH_SESSIOND_TYPE_APP_REG_DISPATCH);
1727
1728 if (testpoint(sessiond_thread_app_reg_dispatch)) {
1729 goto error_testpoint;
1730 }
1731
1732 health_code_update();
1733
1734 CDS_INIT_LIST_HEAD(&wait_queue.head);
1735
1736 DBG("[thread] Dispatch UST command started");
1737
1738 while (!CMM_LOAD_SHARED(dispatch_thread_exit)) {
1739 health_code_update();
1740
1741 /* Atomically prepare the queue futex */
1742 futex_nto1_prepare(&ust_cmd_queue.futex);
1743
1744 do {
1745 struct ust_app *app = NULL;
1746 ust_cmd = NULL;
1747
1748 /*
1749 * Make sure we don't have node(s) that have hung up before receiving
1750 * the notify socket. This is to clean the list in order to avoid
1751 * memory leaks from notify socket that are never seen.
1752 */
1753 sanitize_wait_queue(&wait_queue);
1754
1755 health_code_update();
1756 /* Dequeue command for registration */
1757 node = cds_wfq_dequeue_blocking(&ust_cmd_queue.queue);
1758 if (node == NULL) {
1759 DBG("Woken up but nothing in the UST command queue");
1760 /* Continue thread execution */
1761 break;
1762 }
1763
1764 ust_cmd = caa_container_of(node, struct ust_command, node);
1765
1766 DBG("Dispatching UST registration pid:%d ppid:%d uid:%d"
1767 " gid:%d sock:%d name:%s (version %d.%d)",
1768 ust_cmd->reg_msg.pid, ust_cmd->reg_msg.ppid,
1769 ust_cmd->reg_msg.uid, ust_cmd->reg_msg.gid,
1770 ust_cmd->sock, ust_cmd->reg_msg.name,
1771 ust_cmd->reg_msg.major, ust_cmd->reg_msg.minor);
1772
1773 if (ust_cmd->reg_msg.type == USTCTL_SOCKET_CMD) {
1774 wait_node = zmalloc(sizeof(*wait_node));
1775 if (!wait_node) {
1776 PERROR("zmalloc wait_node dispatch");
1777 ret = close(ust_cmd->sock);
1778 if (ret < 0) {
1779 PERROR("close ust sock dispatch %d", ust_cmd->sock);
1780 }
1781 lttng_fd_put(LTTNG_FD_APPS, 1);
1782 free(ust_cmd);
1783 goto error;
1784 }
1785 CDS_INIT_LIST_HEAD(&wait_node->head);
1786
1787 /* Create application object if socket is CMD. */
1788 wait_node->app = ust_app_create(&ust_cmd->reg_msg,
1789 ust_cmd->sock);
1790 if (!wait_node->app) {
1791 ret = close(ust_cmd->sock);
1792 if (ret < 0) {
1793 PERROR("close ust sock dispatch %d", ust_cmd->sock);
1794 }
1795 lttng_fd_put(LTTNG_FD_APPS, 1);
1796 free(wait_node);
1797 free(ust_cmd);
1798 continue;
1799 }
1800 /*
1801 * Add application to the wait queue so we can set the notify
1802 * socket before putting this object in the global ht.
1803 */
1804 cds_list_add(&wait_node->head, &wait_queue.head);
1805 wait_queue.count++;
1806
1807 free(ust_cmd);
1808 /*
1809 * We have to continue here since we don't have the notify
1810 * socket and the application MUST be added to the hash table
1811 * only at that moment.
1812 */
1813 continue;
1814 } else {
1815 /*
1816 * Look for the application in the local wait queue and set the
1817 * notify socket if found.
1818 */
1819 cds_list_for_each_entry_safe(wait_node, tmp_wait_node,
1820 &wait_queue.head, head) {
1821 health_code_update();
1822 if (wait_node->app->pid == ust_cmd->reg_msg.pid) {
1823 wait_node->app->notify_sock = ust_cmd->sock;
1824 cds_list_del(&wait_node->head);
1825 wait_queue.count--;
1826 app = wait_node->app;
1827 free(wait_node);
1828 DBG3("UST app notify socket %d is set", ust_cmd->sock);
1829 break;
1830 }
1831 }
1832
1833 /*
1834 * With no application at this stage the received socket is
1835 * basically useless so close it before we free the cmd data
1836 * structure for good.
1837 */
1838 if (!app) {
1839 ret = close(ust_cmd->sock);
1840 if (ret < 0) {
1841 PERROR("close ust sock dispatch %d", ust_cmd->sock);
1842 }
1843 lttng_fd_put(LTTNG_FD_APPS, 1);
1844 }
1845 free(ust_cmd);
1846 }
1847
1848 if (app) {
1849 /*
1850 * @session_lock_list
1851 *
1852 * Lock the global session list so from the register up to the
1853 * registration done message, no thread can see the application
1854 * and change its state.
1855 */
1856 session_lock_list();
1857 rcu_read_lock();
1858
1859 /*
1860 * Add application to the global hash table. This needs to be
1861 * done before the update to the UST registry can locate the
1862 * application.
1863 */
1864 ust_app_add(app);
1865
1866 /* Set app version. This call will print an error if needed. */
1867 (void) ust_app_version(app);
1868
1869 /* Send notify socket through the notify pipe. */
1870 ret = send_socket_to_thread(apps_cmd_notify_pipe[1],
1871 app->notify_sock);
1872 if (ret < 0) {
1873 rcu_read_unlock();
1874 session_unlock_list();
1875 /*
1876 * No notify thread, stop the UST tracing. However, this is
1877 * not an internal error of the this thread thus setting
1878 * the health error code to a normal exit.
1879 */
1880 err = 0;
1881 goto error;
1882 }
1883
1884 /*
1885 * Update newly registered application with the tracing
1886 * registry info already enabled information.
1887 */
1888 update_ust_app(app->sock);
1889
1890 /*
1891 * Don't care about return value. Let the manage apps threads
1892 * handle app unregistration upon socket close.
1893 */
1894 (void) ust_app_register_done(app->sock);
1895
1896 /*
1897 * Even if the application socket has been closed, send the app
1898 * to the thread and unregistration will take place at that
1899 * place.
1900 */
1901 ret = send_socket_to_thread(apps_cmd_pipe[1], app->sock);
1902 if (ret < 0) {
1903 rcu_read_unlock();
1904 session_unlock_list();
1905 /*
1906 * No apps. thread, stop the UST tracing. However, this is
1907 * not an internal error of the this thread thus setting
1908 * the health error code to a normal exit.
1909 */
1910 err = 0;
1911 goto error;
1912 }
1913
1914 rcu_read_unlock();
1915 session_unlock_list();
1916 }
1917 } while (node != NULL);
1918
1919 health_poll_entry();
1920 /* Futex wait on queue. Blocking call on futex() */
1921 futex_nto1_wait(&ust_cmd_queue.futex);
1922 health_poll_exit();
1923 }
1924 /* Normal exit, no error */
1925 err = 0;
1926
1927 error:
1928 /* Clean up wait queue. */
1929 cds_list_for_each_entry_safe(wait_node, tmp_wait_node,
1930 &wait_queue.head, head) {
1931 cds_list_del(&wait_node->head);
1932 wait_queue.count--;
1933 free(wait_node);
1934 }
1935
1936 error_testpoint:
1937 DBG("Dispatch thread dying");
1938 if (err) {
1939 health_error();
1940 ERR("Health error occurred in %s", __func__);
1941 }
1942 health_unregister(health_sessiond);
1943 return NULL;
1944 }
1945
1946 /*
1947 * This thread manage application registration.
1948 */
1949 static void *thread_registration_apps(void *data)
1950 {
1951 int sock = -1, i, ret, pollfd, err = -1;
1952 uint32_t revents, nb_fd;
1953 struct lttng_poll_event events;
1954 /*
1955 * Get allocated in this thread, enqueued to a global queue, dequeued and
1956 * freed in the manage apps thread.
1957 */
1958 struct ust_command *ust_cmd = NULL;
1959
1960 DBG("[thread] Manage application registration started");
1961
1962 health_register(health_sessiond, HEALTH_SESSIOND_TYPE_APP_REG);
1963
1964 if (testpoint(sessiond_thread_registration_apps)) {
1965 goto error_testpoint;
1966 }
1967
1968 ret = lttcomm_listen_unix_sock(apps_sock);
1969 if (ret < 0) {
1970 goto error_listen;
1971 }
1972
1973 /*
1974 * Pass 2 as size here for the thread quit pipe and apps socket. Nothing
1975 * more will be added to this poll set.
1976 */
1977 ret = sessiond_set_thread_pollset(&events, 2);
1978 if (ret < 0) {
1979 goto error_create_poll;
1980 }
1981
1982 /* Add the application registration socket */
1983 ret = lttng_poll_add(&events, apps_sock, LPOLLIN | LPOLLRDHUP);
1984 if (ret < 0) {
1985 goto error_poll_add;
1986 }
1987
1988 /* Notify all applications to register */
1989 ret = notify_ust_apps(1);
1990 if (ret < 0) {
1991 ERR("Failed to notify applications or create the wait shared memory.\n"
1992 "Execution continues but there might be problem for already\n"
1993 "running applications that wishes to register.");
1994 }
1995
1996 while (1) {
1997 DBG("Accepting application registration");
1998
1999 /* Inifinite blocking call, waiting for transmission */
2000 restart:
2001 health_poll_entry();
2002 ret = lttng_poll_wait(&events, -1);
2003 health_poll_exit();
2004 if (ret < 0) {
2005 /*
2006 * Restart interrupted system call.
2007 */
2008 if (errno == EINTR) {
2009 goto restart;
2010 }
2011 goto error;
2012 }
2013
2014 nb_fd = ret;
2015
2016 for (i = 0; i < nb_fd; i++) {
2017 health_code_update();
2018
2019 /* Fetch once the poll data */
2020 revents = LTTNG_POLL_GETEV(&events, i);
2021 pollfd = LTTNG_POLL_GETFD(&events, i);
2022
2023 if (!revents) {
2024 /* No activity for this FD (poll implementation). */
2025 continue;
2026 }
2027
2028 /* Thread quit pipe has been closed. Killing thread. */
2029 ret = sessiond_check_thread_quit_pipe(pollfd, revents);
2030 if (ret) {
2031 err = 0;
2032 goto exit;
2033 }
2034
2035 /* Event on the registration socket */
2036 if (pollfd == apps_sock) {
2037 if (revents & (LPOLLERR | LPOLLHUP | LPOLLRDHUP)) {
2038 ERR("Register apps socket poll error");
2039 goto error;
2040 } else if (revents & LPOLLIN) {
2041 sock = lttcomm_accept_unix_sock(apps_sock);
2042 if (sock < 0) {
2043 goto error;
2044 }
2045
2046 /*
2047 * Set socket timeout for both receiving and ending.
2048 * app_socket_timeout is in seconds, whereas
2049 * lttcomm_setsockopt_rcv_timeout and
2050 * lttcomm_setsockopt_snd_timeout expect msec as
2051 * parameter.
2052 */
2053 (void) lttcomm_setsockopt_rcv_timeout(sock,
2054 app_socket_timeout * 1000);
2055 (void) lttcomm_setsockopt_snd_timeout(sock,
2056 app_socket_timeout * 1000);
2057
2058 /*
2059 * Set the CLOEXEC flag. Return code is useless because
2060 * either way, the show must go on.
2061 */
2062 (void) utils_set_fd_cloexec(sock);
2063
2064 /* Create UST registration command for enqueuing */
2065 ust_cmd = zmalloc(sizeof(struct ust_command));
2066 if (ust_cmd == NULL) {
2067 PERROR("ust command zmalloc");
2068 goto error;
2069 }
2070
2071 /*
2072 * Using message-based transmissions to ensure we don't
2073 * have to deal with partially received messages.
2074 */
2075 ret = lttng_fd_get(LTTNG_FD_APPS, 1);
2076 if (ret < 0) {
2077 ERR("Exhausted file descriptors allowed for applications.");
2078 free(ust_cmd);
2079 ret = close(sock);
2080 if (ret) {
2081 PERROR("close");
2082 }
2083 sock = -1;
2084 continue;
2085 }
2086
2087 health_code_update();
2088 ret = ust_app_recv_registration(sock, &ust_cmd->reg_msg);
2089 if (ret < 0) {
2090 free(ust_cmd);
2091 /* Close socket of the application. */
2092 ret = close(sock);
2093 if (ret) {
2094 PERROR("close");
2095 }
2096 lttng_fd_put(LTTNG_FD_APPS, 1);
2097 sock = -1;
2098 continue;
2099 }
2100 health_code_update();
2101
2102 ust_cmd->sock = sock;
2103 sock = -1;
2104
2105 DBG("UST registration received with pid:%d ppid:%d uid:%d"
2106 " gid:%d sock:%d name:%s (version %d.%d)",
2107 ust_cmd->reg_msg.pid, ust_cmd->reg_msg.ppid,
2108 ust_cmd->reg_msg.uid, ust_cmd->reg_msg.gid,
2109 ust_cmd->sock, ust_cmd->reg_msg.name,
2110 ust_cmd->reg_msg.major, ust_cmd->reg_msg.minor);
2111
2112 /*
2113 * Lock free enqueue the registration request. The red pill
2114 * has been taken! This apps will be part of the *system*.
2115 */
2116 cds_wfq_enqueue(&ust_cmd_queue.queue, &ust_cmd->node);
2117
2118 /*
2119 * Wake the registration queue futex. Implicit memory
2120 * barrier with the exchange in cds_wfq_enqueue.
2121 */
2122 futex_nto1_wake(&ust_cmd_queue.futex);
2123 }
2124 }
2125 }
2126 }
2127
2128 exit:
2129 error:
2130 /* Notify that the registration thread is gone */
2131 notify_ust_apps(0);
2132
2133 if (apps_sock >= 0) {
2134 ret = close(apps_sock);
2135 if (ret) {
2136 PERROR("close");
2137 }
2138 }
2139 if (sock >= 0) {
2140 ret = close(sock);
2141 if (ret) {
2142 PERROR("close");
2143 }
2144 lttng_fd_put(LTTNG_FD_APPS, 1);
2145 }
2146 unlink(apps_unix_sock_path);
2147
2148 error_poll_add:
2149 lttng_poll_clean(&events);
2150 error_listen:
2151 error_create_poll:
2152 error_testpoint:
2153 DBG("UST Registration thread cleanup complete");
2154 if (err) {
2155 health_error();
2156 ERR("Health error occurred in %s", __func__);
2157 }
2158 health_unregister(health_sessiond);
2159
2160 return NULL;
2161 }
2162
2163 /*
2164 * Start the thread_manage_consumer. This must be done after a lttng-consumerd
2165 * exec or it will fails.
2166 */
2167 static int spawn_consumer_thread(struct consumer_data *consumer_data)
2168 {
2169 int ret, clock_ret;
2170 struct timespec timeout;
2171
2172 /* Make sure we set the readiness flag to 0 because we are NOT ready */
2173 consumer_data->consumer_thread_is_ready = 0;
2174
2175 /* Setup pthread condition */
2176 ret = pthread_condattr_init(&consumer_data->condattr);
2177 if (ret != 0) {
2178 errno = ret;
2179 PERROR("pthread_condattr_init consumer data");
2180 goto error;
2181 }
2182
2183 /*
2184 * Set the monotonic clock in order to make sure we DO NOT jump in time
2185 * between the clock_gettime() call and the timedwait call. See bug #324
2186 * for a more details and how we noticed it.
2187 */
2188 ret = pthread_condattr_setclock(&consumer_data->condattr, CLOCK_MONOTONIC);
2189 if (ret != 0) {
2190 errno = ret;
2191 PERROR("pthread_condattr_setclock consumer data");
2192 goto error;
2193 }
2194
2195 ret = pthread_cond_init(&consumer_data->cond, &consumer_data->condattr);
2196 if (ret != 0) {
2197 errno = ret;
2198 PERROR("pthread_cond_init consumer data");
2199 goto error;
2200 }
2201
2202 ret = pthread_create(&consumer_data->thread, NULL, thread_manage_consumer,
2203 consumer_data);
2204 if (ret != 0) {
2205 PERROR("pthread_create consumer");
2206 ret = -1;
2207 goto error;
2208 }
2209
2210 /* We are about to wait on a pthread condition */
2211 pthread_mutex_lock(&consumer_data->cond_mutex);
2212
2213 /* Get time for sem_timedwait absolute timeout */
2214 clock_ret = clock_gettime(CLOCK_MONOTONIC, &timeout);
2215 /*
2216 * Set the timeout for the condition timed wait even if the clock gettime
2217 * call fails since we might loop on that call and we want to avoid to
2218 * increment the timeout too many times.
2219 */
2220 timeout.tv_sec += DEFAULT_SEM_WAIT_TIMEOUT;
2221
2222 /*
2223 * The following loop COULD be skipped in some conditions so this is why we
2224 * set ret to 0 in order to make sure at least one round of the loop is
2225 * done.
2226 */
2227 ret = 0;
2228
2229 /*
2230 * Loop until the condition is reached or when a timeout is reached. Note
2231 * that the pthread_cond_timedwait(P) man page specifies that EINTR can NOT
2232 * be returned but the pthread_cond(3), from the glibc-doc, says that it is
2233 * possible. This loop does not take any chances and works with both of
2234 * them.
2235 */
2236 while (!consumer_data->consumer_thread_is_ready && ret != ETIMEDOUT) {
2237 if (clock_ret < 0) {
2238 PERROR("clock_gettime spawn consumer");
2239 /* Infinite wait for the consumerd thread to be ready */
2240 ret = pthread_cond_wait(&consumer_data->cond,
2241 &consumer_data->cond_mutex);
2242 } else {
2243 ret = pthread_cond_timedwait(&consumer_data->cond,
2244 &consumer_data->cond_mutex, &timeout);
2245 }
2246 }
2247
2248 /* Release the pthread condition */
2249 pthread_mutex_unlock(&consumer_data->cond_mutex);
2250
2251 if (ret != 0) {
2252 errno = ret;
2253 if (ret == ETIMEDOUT) {
2254 int pth_ret;
2255
2256 /*
2257 * Call has timed out so we kill the kconsumerd_thread and return
2258 * an error.
2259 */
2260 ERR("Condition timed out. The consumer thread was never ready."
2261 " Killing it");
2262 pth_ret = pthread_cancel(consumer_data->thread);
2263 if (pth_ret < 0) {
2264 PERROR("pthread_cancel consumer thread");
2265 }
2266 } else {
2267 PERROR("pthread_cond_wait failed consumer thread");
2268 }
2269 /* Caller is expecting a negative value on failure. */
2270 ret = -1;
2271 goto error;
2272 }
2273
2274 pthread_mutex_lock(&consumer_data->pid_mutex);
2275 if (consumer_data->pid == 0) {
2276 ERR("Consumerd did not start");
2277 pthread_mutex_unlock(&consumer_data->pid_mutex);
2278 goto error;
2279 }
2280 pthread_mutex_unlock(&consumer_data->pid_mutex);
2281
2282 return 0;
2283
2284 error:
2285 return ret;
2286 }
2287
2288 /*
2289 * Join consumer thread
2290 */
2291 static int join_consumer_thread(struct consumer_data *consumer_data)
2292 {
2293 void *status;
2294
2295 /* Consumer pid must be a real one. */
2296 if (consumer_data->pid > 0) {
2297 int ret;
2298 ret = kill(consumer_data->pid, SIGTERM);
2299 if (ret) {
2300 ERR("Error killing consumer daemon");
2301 return ret;
2302 }
2303 return pthread_join(consumer_data->thread, &status);
2304 } else {
2305 return 0;
2306 }
2307 }
2308
2309 /*
2310 * Fork and exec a consumer daemon (consumerd).
2311 *
2312 * Return pid if successful else -1.
2313 */
2314 static pid_t spawn_consumerd(struct consumer_data *consumer_data)
2315 {
2316 int ret;
2317 pid_t pid;
2318 const char *consumer_to_use;
2319 const char *verbosity;
2320 struct stat st;
2321
2322 DBG("Spawning consumerd");
2323
2324 pid = fork();
2325 if (pid == 0) {
2326 /*
2327 * Exec consumerd.
2328 */
2329 if (opt_verbose_consumer) {
2330 verbosity = "--verbose";
2331 } else if (lttng_opt_quiet) {
2332 verbosity = "--quiet";
2333 } else {
2334 verbosity = "";
2335 }
2336
2337 switch (consumer_data->type) {
2338 case LTTNG_CONSUMER_KERNEL:
2339 /*
2340 * Find out which consumerd to execute. We will first try the
2341 * 64-bit path, then the sessiond's installation directory, and
2342 * fallback on the 32-bit one,
2343 */
2344 DBG3("Looking for a kernel consumer at these locations:");
2345 DBG3(" 1) %s", consumerd64_bin);
2346 DBG3(" 2) %s/%s", INSTALL_BIN_PATH, CONSUMERD_FILE);
2347 DBG3(" 3) %s", consumerd32_bin);
2348 if (stat(consumerd64_bin, &st) == 0) {
2349 DBG3("Found location #1");
2350 consumer_to_use = consumerd64_bin;
2351 } else if (stat(INSTALL_BIN_PATH "/" CONSUMERD_FILE, &st) == 0) {
2352 DBG3("Found location #2");
2353 consumer_to_use = INSTALL_BIN_PATH "/" CONSUMERD_FILE;
2354 } else if (stat(consumerd32_bin, &st) == 0) {
2355 DBG3("Found location #3");
2356 consumer_to_use = consumerd32_bin;
2357 } else {
2358 DBG("Could not find any valid consumerd executable");
2359 ret = -EINVAL;
2360 break;
2361 }
2362 DBG("Using kernel consumer at: %s", consumer_to_use);
2363 ret = execl(consumer_to_use,
2364 "lttng-consumerd", verbosity, "-k",
2365 "--consumerd-cmd-sock", consumer_data->cmd_unix_sock_path,
2366 "--consumerd-err-sock", consumer_data->err_unix_sock_path,
2367 "--group", tracing_group_name,
2368 NULL);
2369 break;
2370 case LTTNG_CONSUMER64_UST:
2371 {
2372 char *tmpnew = NULL;
2373
2374 if (consumerd64_libdir[0] != '\0') {
2375 char *tmp;
2376 size_t tmplen;
2377
2378 tmp = getenv("LD_LIBRARY_PATH");
2379 if (!tmp) {
2380 tmp = "";
2381 }
2382 tmplen = strlen("LD_LIBRARY_PATH=")
2383 + strlen(consumerd64_libdir) + 1 /* : */ + strlen(tmp);
2384 tmpnew = zmalloc(tmplen + 1 /* \0 */);
2385 if (!tmpnew) {
2386 ret = -ENOMEM;
2387 goto error;
2388 }
2389 strcpy(tmpnew, "LD_LIBRARY_PATH=");
2390 strcat(tmpnew, consumerd64_libdir);
2391 if (tmp[0] != '\0') {
2392 strcat(tmpnew, ":");
2393 strcat(tmpnew, tmp);
2394 }
2395 ret = putenv(tmpnew);
2396 if (ret) {
2397 ret = -errno;
2398 free(tmpnew);
2399 goto error;
2400 }
2401 }
2402 DBG("Using 64-bit UST consumer at: %s", consumerd64_bin);
2403 ret = execl(consumerd64_bin, "lttng-consumerd", verbosity, "-u",
2404 "--consumerd-cmd-sock", consumer_data->cmd_unix_sock_path,
2405 "--consumerd-err-sock", consumer_data->err_unix_sock_path,
2406 "--group", tracing_group_name,
2407 NULL);
2408 if (consumerd64_libdir[0] != '\0') {
2409 free(tmpnew);
2410 }
2411 break;
2412 }
2413 case LTTNG_CONSUMER32_UST:
2414 {
2415 char *tmpnew = NULL;
2416
2417 if (consumerd32_libdir[0] != '\0') {
2418 char *tmp;
2419 size_t tmplen;
2420
2421 tmp = getenv("LD_LIBRARY_PATH");
2422 if (!tmp) {
2423 tmp = "";
2424 }
2425 tmplen = strlen("LD_LIBRARY_PATH=")
2426 + strlen(consumerd32_libdir) + 1 /* : */ + strlen(tmp);
2427 tmpnew = zmalloc(tmplen + 1 /* \0 */);
2428 if (!tmpnew) {
2429 ret = -ENOMEM;
2430 goto error;
2431 }
2432 strcpy(tmpnew, "LD_LIBRARY_PATH=");
2433 strcat(tmpnew, consumerd32_libdir);
2434 if (tmp[0] != '\0') {
2435 strcat(tmpnew, ":");
2436 strcat(tmpnew, tmp);
2437 }
2438 ret = putenv(tmpnew);
2439 if (ret) {
2440 ret = -errno;
2441 free(tmpnew);
2442 goto error;
2443 }
2444 }
2445 DBG("Using 32-bit UST consumer at: %s", consumerd32_bin);
2446 ret = execl(consumerd32_bin, "lttng-consumerd", verbosity, "-u",
2447 "--consumerd-cmd-sock", consumer_data->cmd_unix_sock_path,
2448 "--consumerd-err-sock", consumer_data->err_unix_sock_path,
2449 "--group", tracing_group_name,
2450 NULL);
2451 if (consumerd32_libdir[0] != '\0') {
2452 free(tmpnew);
2453 }
2454 break;
2455 }
2456 default:
2457 PERROR("unknown consumer type");
2458 exit(EXIT_FAILURE);
2459 }
2460 if (errno != 0) {
2461 PERROR("Consumer execl()");
2462 }
2463 /* Reaching this point, we got a failure on our execl(). */
2464 exit(EXIT_FAILURE);
2465 } else if (pid > 0) {
2466 ret = pid;
2467 } else {
2468 PERROR("start consumer fork");
2469 ret = -errno;
2470 }
2471 error:
2472 return ret;
2473 }
2474
2475 /*
2476 * Spawn the consumerd daemon and session daemon thread.
2477 */
2478 static int start_consumerd(struct consumer_data *consumer_data)
2479 {
2480 int ret;
2481
2482 /*
2483 * Set the listen() state on the socket since there is a possible race
2484 * between the exec() of the consumer daemon and this call if place in the
2485 * consumer thread. See bug #366 for more details.
2486 */
2487 ret = lttcomm_listen_unix_sock(consumer_data->err_sock);
2488 if (ret < 0) {
2489 goto error;
2490 }
2491
2492 pthread_mutex_lock(&consumer_data->pid_mutex);
2493 if (consumer_data->pid != 0) {
2494 pthread_mutex_unlock(&consumer_data->pid_mutex);
2495 goto end;
2496 }
2497
2498 ret = spawn_consumerd(consumer_data);
2499 if (ret < 0) {
2500 ERR("Spawning consumerd failed");
2501 pthread_mutex_unlock(&consumer_data->pid_mutex);
2502 goto error;
2503 }
2504
2505 /* Setting up the consumer_data pid */
2506 consumer_data->pid = ret;
2507 DBG2("Consumer pid %d", consumer_data->pid);
2508 pthread_mutex_unlock(&consumer_data->pid_mutex);
2509
2510 DBG2("Spawning consumer control thread");
2511 ret = spawn_consumer_thread(consumer_data);
2512 if (ret < 0) {
2513 ERR("Fatal error spawning consumer control thread");
2514 goto error;
2515 }
2516
2517 end:
2518 return 0;
2519
2520 error:
2521 /* Cleanup already created sockets on error. */
2522 if (consumer_data->err_sock >= 0) {
2523 int err;
2524
2525 err = close(consumer_data->err_sock);
2526 if (err < 0) {
2527 PERROR("close consumer data error socket");
2528 }
2529 }
2530 return ret;
2531 }
2532
2533 /*
2534 * Setup necessary data for kernel tracer action.
2535 */
2536 static int init_kernel_tracer(void)
2537 {
2538 int ret;
2539
2540 /* Modprobe lttng kernel modules */
2541 ret = modprobe_lttng_control();
2542 if (ret < 0) {
2543 goto error;
2544 }
2545
2546 /* Open debugfs lttng */
2547 kernel_tracer_fd = open(module_proc_lttng, O_RDWR);
2548 if (kernel_tracer_fd < 0) {
2549 DBG("Failed to open %s", module_proc_lttng);
2550 ret = -1;
2551 goto error_open;
2552 }
2553
2554 /* Validate kernel version */
2555 ret = kernel_validate_version(kernel_tracer_fd);
2556 if (ret < 0) {
2557 goto error_version;
2558 }
2559
2560 ret = modprobe_lttng_data();
2561 if (ret < 0) {
2562 goto error_modules;
2563 }
2564
2565 DBG("Kernel tracer fd %d", kernel_tracer_fd);
2566 return 0;
2567
2568 error_version:
2569 modprobe_remove_lttng_control();
2570 ret = close(kernel_tracer_fd);
2571 if (ret) {
2572 PERROR("close");
2573 }
2574 kernel_tracer_fd = -1;
2575 return LTTNG_ERR_KERN_VERSION;
2576
2577 error_modules:
2578 ret = close(kernel_tracer_fd);
2579 if (ret) {
2580 PERROR("close");
2581 }
2582
2583 error_open:
2584 modprobe_remove_lttng_control();
2585
2586 error:
2587 WARN("No kernel tracer available");
2588 kernel_tracer_fd = -1;
2589 if (!is_root) {
2590 return LTTNG_ERR_NEED_ROOT_SESSIOND;
2591 } else {
2592 return LTTNG_ERR_KERN_NA;
2593 }
2594 }
2595
2596
2597 /*
2598 * Copy consumer output from the tracing session to the domain session. The
2599 * function also applies the right modification on a per domain basis for the
2600 * trace files destination directory.
2601 *
2602 * Should *NOT* be called with RCU read-side lock held.
2603 */
2604 static int copy_session_consumer(int domain, struct ltt_session *session)
2605 {
2606 int ret;
2607 const char *dir_name;
2608 struct consumer_output *consumer;
2609
2610 assert(session);
2611 assert(session->consumer);
2612
2613 switch (domain) {
2614 case LTTNG_DOMAIN_KERNEL:
2615 DBG3("Copying tracing session consumer output in kernel session");
2616 /*
2617 * XXX: We should audit the session creation and what this function
2618 * does "extra" in order to avoid a destroy since this function is used
2619 * in the domain session creation (kernel and ust) only. Same for UST
2620 * domain.
2621 */
2622 if (session->kernel_session->consumer) {
2623 consumer_destroy_output(session->kernel_session->consumer);
2624 }
2625 session->kernel_session->consumer =
2626 consumer_copy_output(session->consumer);
2627 /* Ease our life a bit for the next part */
2628 consumer = session->kernel_session->consumer;
2629 dir_name = DEFAULT_KERNEL_TRACE_DIR;
2630 break;
2631 case LTTNG_DOMAIN_JUL:
2632 case LTTNG_DOMAIN_UST:
2633 DBG3("Copying tracing session consumer output in UST session");
2634 if (session->ust_session->consumer) {
2635 consumer_destroy_output(session->ust_session->consumer);
2636 }
2637 session->ust_session->consumer =
2638 consumer_copy_output(session->consumer);
2639 /* Ease our life a bit for the next part */
2640 consumer = session->ust_session->consumer;
2641 dir_name = DEFAULT_UST_TRACE_DIR;
2642 break;
2643 default:
2644 ret = LTTNG_ERR_UNKNOWN_DOMAIN;
2645 goto error;
2646 }
2647
2648 /* Append correct directory to subdir */
2649 strncat(consumer->subdir, dir_name,
2650 sizeof(consumer->subdir) - strlen(consumer->subdir) - 1);
2651 DBG3("Copy session consumer subdir %s", consumer->subdir);
2652
2653 ret = LTTNG_OK;
2654
2655 error:
2656 return ret;
2657 }
2658
2659 /*
2660 * Create an UST session and add it to the session ust list.
2661 *
2662 * Should *NOT* be called with RCU read-side lock held.
2663 */
2664 static int create_ust_session(struct ltt_session *session,
2665 struct lttng_domain *domain)
2666 {
2667 int ret;
2668 struct ltt_ust_session *lus = NULL;
2669
2670 assert(session);
2671 assert(domain);
2672 assert(session->consumer);
2673
2674 switch (domain->type) {
2675 case LTTNG_DOMAIN_JUL:
2676 case LTTNG_DOMAIN_UST:
2677 break;
2678 default:
2679 ERR("Unknown UST domain on create session %d", domain->type);
2680 ret = LTTNG_ERR_UNKNOWN_DOMAIN;
2681 goto error;
2682 }
2683
2684 DBG("Creating UST session");
2685
2686 lus = trace_ust_create_session(session->id);
2687 if (lus == NULL) {
2688 ret = LTTNG_ERR_UST_SESS_FAIL;
2689 goto error;
2690 }
2691
2692 lus->uid = session->uid;
2693 lus->gid = session->gid;
2694 lus->output_traces = session->output_traces;
2695 lus->snapshot_mode = session->snapshot_mode;
2696 lus->live_timer_interval = session->live_timer;
2697 session->ust_session = lus;
2698
2699 /* Copy session output to the newly created UST session */
2700 ret = copy_session_consumer(domain->type, session);
2701 if (ret != LTTNG_OK) {
2702 goto error;
2703 }
2704
2705 return LTTNG_OK;
2706
2707 error:
2708 free(lus);
2709 session->ust_session = NULL;
2710 return ret;
2711 }
2712
2713 /*
2714 * Create a kernel tracer session then create the default channel.
2715 */
2716 static int create_kernel_session(struct ltt_session *session)
2717 {
2718 int ret;
2719
2720 DBG("Creating kernel session");
2721
2722 ret = kernel_create_session(session, kernel_tracer_fd);
2723 if (ret < 0) {
2724 ret = LTTNG_ERR_KERN_SESS_FAIL;
2725 goto error;
2726 }
2727
2728 /* Code flow safety */
2729 assert(session->kernel_session);
2730
2731 /* Copy session output to the newly created Kernel session */
2732 ret = copy_session_consumer(LTTNG_DOMAIN_KERNEL, session);
2733 if (ret != LTTNG_OK) {
2734 goto error;
2735 }
2736
2737 /* Create directory(ies) on local filesystem. */
2738 if (session->kernel_session->consumer->type == CONSUMER_DST_LOCAL &&
2739 strlen(session->kernel_session->consumer->dst.trace_path) > 0) {
2740 ret = run_as_mkdir_recursive(
2741 session->kernel_session->consumer->dst.trace_path,
2742 S_IRWXU | S_IRWXG, session->uid, session->gid);
2743 if (ret < 0) {
2744 if (ret != -EEXIST) {
2745 ERR("Trace directory creation error");
2746 goto error;
2747 }
2748 }
2749 }
2750
2751 session->kernel_session->uid = session->uid;
2752 session->kernel_session->gid = session->gid;
2753 session->kernel_session->output_traces = session->output_traces;
2754 session->kernel_session->snapshot_mode = session->snapshot_mode;
2755
2756 return LTTNG_OK;
2757
2758 error:
2759 trace_kernel_destroy_session(session->kernel_session);
2760 session->kernel_session = NULL;
2761 return ret;
2762 }
2763
2764 /*
2765 * Count number of session permitted by uid/gid.
2766 */
2767 static unsigned int lttng_sessions_count(uid_t uid, gid_t gid)
2768 {
2769 unsigned int i = 0;
2770 struct ltt_session *session;
2771
2772 DBG("Counting number of available session for UID %d GID %d",
2773 uid, gid);
2774 cds_list_for_each_entry(session, &session_list_ptr->head, list) {
2775 /*
2776 * Only list the sessions the user can control.
2777 */
2778 if (!session_access_ok(session, uid, gid)) {
2779 continue;
2780 }
2781 i++;
2782 }
2783 return i;
2784 }
2785
2786 /*
2787 * Process the command requested by the lttng client within the command
2788 * context structure. This function make sure that the return structure (llm)
2789 * is set and ready for transmission before returning.
2790 *
2791 * Return any error encountered or 0 for success.
2792 *
2793 * "sock" is only used for special-case var. len data.
2794 *
2795 * Should *NOT* be called with RCU read-side lock held.
2796 */
2797 static int process_client_msg(struct command_ctx *cmd_ctx, int sock,
2798 int *sock_error)
2799 {
2800 int ret = LTTNG_OK;
2801 int need_tracing_session = 1;
2802 int need_domain;
2803
2804 DBG("Processing client command %d", cmd_ctx->lsm->cmd_type);
2805
2806 *sock_error = 0;
2807
2808 switch (cmd_ctx->lsm->cmd_type) {
2809 case LTTNG_CREATE_SESSION:
2810 case LTTNG_CREATE_SESSION_SNAPSHOT:
2811 case LTTNG_CREATE_SESSION_LIVE:
2812 case LTTNG_DESTROY_SESSION:
2813 case LTTNG_LIST_SESSIONS:
2814 case LTTNG_LIST_DOMAINS:
2815 case LTTNG_START_TRACE:
2816 case LTTNG_STOP_TRACE:
2817 case LTTNG_DATA_PENDING:
2818 case LTTNG_SNAPSHOT_ADD_OUTPUT:
2819 case LTTNG_SNAPSHOT_DEL_OUTPUT:
2820 case LTTNG_SNAPSHOT_LIST_OUTPUT:
2821 case LTTNG_SNAPSHOT_RECORD:
2822 case LTTNG_SAVE_SESSION:
2823 need_domain = 0;
2824 break;
2825 default:
2826 need_domain = 1;
2827 }
2828
2829 if (opt_no_kernel && need_domain
2830 && cmd_ctx->lsm->domain.type == LTTNG_DOMAIN_KERNEL) {
2831 if (!is_root) {
2832 ret = LTTNG_ERR_NEED_ROOT_SESSIOND;
2833 } else {
2834 ret = LTTNG_ERR_KERN_NA;
2835 }
2836 goto error;
2837 }
2838
2839 /* Deny register consumer if we already have a spawned consumer. */
2840 if (cmd_ctx->lsm->cmd_type == LTTNG_REGISTER_CONSUMER) {
2841 pthread_mutex_lock(&kconsumer_data.pid_mutex);
2842 if (kconsumer_data.pid > 0) {
2843 ret = LTTNG_ERR_KERN_CONSUMER_FAIL;
2844 pthread_mutex_unlock(&kconsumer_data.pid_mutex);
2845 goto error;
2846 }
2847 pthread_mutex_unlock(&kconsumer_data.pid_mutex);
2848 }
2849
2850 /*
2851 * Check for command that don't needs to allocate a returned payload. We do
2852 * this here so we don't have to make the call for no payload at each
2853 * command.
2854 */
2855 switch(cmd_ctx->lsm->cmd_type) {
2856 case LTTNG_LIST_SESSIONS:
2857 case LTTNG_LIST_TRACEPOINTS:
2858 case LTTNG_LIST_TRACEPOINT_FIELDS:
2859 case LTTNG_LIST_DOMAINS:
2860 case LTTNG_LIST_CHANNELS:
2861 case LTTNG_LIST_EVENTS:
2862 break;
2863 default:
2864 /* Setup lttng message with no payload */
2865 ret = setup_lttng_msg(cmd_ctx, 0);
2866 if (ret < 0) {
2867 /* This label does not try to unlock the session */
2868 goto init_setup_error;
2869 }
2870 }
2871
2872 /* Commands that DO NOT need a session. */
2873 switch (cmd_ctx->lsm->cmd_type) {
2874 case LTTNG_CREATE_SESSION:
2875 case LTTNG_CREATE_SESSION_SNAPSHOT:
2876 case LTTNG_CREATE_SESSION_LIVE:
2877 case LTTNG_CALIBRATE:
2878 case LTTNG_LIST_SESSIONS:
2879 case LTTNG_LIST_TRACEPOINTS:
2880 case LTTNG_LIST_TRACEPOINT_FIELDS:
2881 case LTTNG_SAVE_SESSION:
2882 need_tracing_session = 0;
2883 break;
2884 default:
2885 DBG("Getting session %s by name", cmd_ctx->lsm->session.name);
2886 /*
2887 * We keep the session list lock across _all_ commands
2888 * for now, because the per-session lock does not
2889 * handle teardown properly.
2890 */
2891 session_lock_list();
2892 cmd_ctx->session = session_find_by_name(cmd_ctx->lsm->session.name);
2893 if (cmd_ctx->session == NULL) {
2894 ret = LTTNG_ERR_SESS_NOT_FOUND;
2895 goto error;
2896 } else {
2897 /* Acquire lock for the session */
2898 session_lock(cmd_ctx->session);
2899 }
2900 break;
2901 }
2902
2903 /*
2904 * Commands that need a valid session but should NOT create one if none
2905 * exists. Instead of creating one and destroying it when the command is
2906 * handled, process that right before so we save some round trip in useless
2907 * code path.
2908 */
2909 switch (cmd_ctx->lsm->cmd_type) {
2910 case LTTNG_DISABLE_CHANNEL:
2911 case LTTNG_DISABLE_EVENT:
2912 case LTTNG_DISABLE_ALL_EVENT:
2913 switch (cmd_ctx->lsm->domain.type) {
2914 case LTTNG_DOMAIN_KERNEL:
2915 if (!cmd_ctx->session->kernel_session) {
2916 ret = LTTNG_ERR_NO_CHANNEL;
2917 goto error;
2918 }
2919 break;
2920 case LTTNG_DOMAIN_JUL:
2921 case LTTNG_DOMAIN_UST:
2922 if (!cmd_ctx->session->ust_session) {
2923 ret = LTTNG_ERR_NO_CHANNEL;
2924 goto error;
2925 }
2926 break;
2927 default:
2928 ret = LTTNG_ERR_UNKNOWN_DOMAIN;
2929 goto error;
2930 }
2931 default:
2932 break;
2933 }
2934
2935 if (!need_domain) {
2936 goto skip_domain;
2937 }
2938
2939 /*
2940 * Check domain type for specific "pre-action".
2941 */
2942 switch (cmd_ctx->lsm->domain.type) {
2943 case LTTNG_DOMAIN_KERNEL:
2944 if (!is_root) {
2945 ret = LTTNG_ERR_NEED_ROOT_SESSIOND;
2946 goto error;
2947 }
2948
2949 /* Kernel tracer check */
2950 if (kernel_tracer_fd == -1) {
2951 /* Basically, load kernel tracer modules */
2952 ret = init_kernel_tracer();
2953 if (ret != 0) {
2954 goto error;
2955 }
2956 }
2957
2958 /* Consumer is in an ERROR state. Report back to client */
2959 if (uatomic_read(&kernel_consumerd_state) == CONSUMER_ERROR) {
2960 ret = LTTNG_ERR_NO_KERNCONSUMERD;
2961 goto error;
2962 }
2963
2964 /* Need a session for kernel command */
2965 if (need_tracing_session) {
2966 if (cmd_ctx->session->kernel_session == NULL) {
2967 ret = create_kernel_session(cmd_ctx->session);
2968 if (ret < 0) {
2969 ret = LTTNG_ERR_KERN_SESS_FAIL;
2970 goto error;
2971 }
2972 }
2973
2974 /* Start the kernel consumer daemon */
2975 pthread_mutex_lock(&kconsumer_data.pid_mutex);
2976 if (kconsumer_data.pid == 0 &&
2977 cmd_ctx->lsm->cmd_type != LTTNG_REGISTER_CONSUMER) {
2978 pthread_mutex_unlock(&kconsumer_data.pid_mutex);
2979 ret = start_consumerd(&kconsumer_data);
2980 if (ret < 0) {
2981 ret = LTTNG_ERR_KERN_CONSUMER_FAIL;
2982 goto error;
2983 }
2984 uatomic_set(&kernel_consumerd_state, CONSUMER_STARTED);
2985 } else {
2986 pthread_mutex_unlock(&kconsumer_data.pid_mutex);
2987 }
2988
2989 /*
2990 * The consumer was just spawned so we need to add the socket to
2991 * the consumer output of the session if exist.
2992 */
2993 ret = consumer_create_socket(&kconsumer_data,
2994 cmd_ctx->session->kernel_session->consumer);
2995 if (ret < 0) {
2996 goto error;
2997 }
2998 }
2999
3000 break;
3001 case LTTNG_DOMAIN_JUL:
3002 case LTTNG_DOMAIN_UST:
3003 {
3004 if (!ust_app_supported()) {
3005 ret = LTTNG_ERR_NO_UST;
3006 goto error;
3007 }
3008 /* Consumer is in an ERROR state. Report back to client */
3009 if (uatomic_read(&ust_consumerd_state) == CONSUMER_ERROR) {
3010 ret = LTTNG_ERR_NO_USTCONSUMERD;
3011 goto error;
3012 }
3013
3014 if (need_tracing_session) {
3015 /* Create UST session if none exist. */
3016 if (cmd_ctx->session->ust_session == NULL) {
3017 ret = create_ust_session(cmd_ctx->session,
3018 &cmd_ctx->lsm->domain);
3019 if (ret != LTTNG_OK) {
3020 goto error;
3021 }
3022 }
3023
3024 /* Start the UST consumer daemons */
3025 /* 64-bit */
3026 pthread_mutex_lock(&ustconsumer64_data.pid_mutex);
3027 if (consumerd64_bin[0] != '\0' &&
3028 ustconsumer64_data.pid == 0 &&
3029 cmd_ctx->lsm->cmd_type != LTTNG_REGISTER_CONSUMER) {
3030 pthread_mutex_unlock(&ustconsumer64_data.pid_mutex);
3031 ret = start_consumerd(&ustconsumer64_data);
3032 if (ret < 0) {
3033 ret = LTTNG_ERR_UST_CONSUMER64_FAIL;
3034 uatomic_set(&ust_consumerd64_fd, -EINVAL);
3035 goto error;
3036 }
3037
3038 uatomic_set(&ust_consumerd64_fd, ustconsumer64_data.cmd_sock);
3039 uatomic_set(&ust_consumerd_state, CONSUMER_STARTED);
3040 } else {
3041 pthread_mutex_unlock(&ustconsumer64_data.pid_mutex);
3042 }
3043
3044 /*
3045 * Setup socket for consumer 64 bit. No need for atomic access
3046 * since it was set above and can ONLY be set in this thread.
3047 */
3048 ret = consumer_create_socket(&ustconsumer64_data,
3049 cmd_ctx->session->ust_session->consumer);
3050 if (ret < 0) {
3051 goto error;
3052 }
3053
3054 /* 32-bit */
3055 pthread_mutex_lock(&ustconsumer32_data.pid_mutex);
3056 if (consumerd32_bin[0] != '\0' &&
3057 ustconsumer32_data.pid == 0 &&
3058 cmd_ctx->lsm->cmd_type != LTTNG_REGISTER_CONSUMER) {
3059 pthread_mutex_unlock(&ustconsumer32_data.pid_mutex);
3060 ret = start_consumerd(&ustconsumer32_data);
3061 if (ret < 0) {
3062 ret = LTTNG_ERR_UST_CONSUMER32_FAIL;
3063 uatomic_set(&ust_consumerd32_fd, -EINVAL);
3064 goto error;
3065 }
3066
3067 uatomic_set(&ust_consumerd32_fd, ustconsumer32_data.cmd_sock);
3068 uatomic_set(&ust_consumerd_state, CONSUMER_STARTED);
3069 } else {
3070 pthread_mutex_unlock(&ustconsumer32_data.pid_mutex);
3071 }
3072
3073 /*
3074 * Setup socket for consumer 64 bit. No need for atomic access
3075 * since it was set above and can ONLY be set in this thread.
3076 */
3077 ret = consumer_create_socket(&ustconsumer32_data,
3078 cmd_ctx->session->ust_session->consumer);
3079 if (ret < 0) {
3080 goto error;
3081 }
3082 }
3083 break;
3084 }
3085 default:
3086 break;
3087 }
3088 skip_domain:
3089
3090 /* Validate consumer daemon state when start/stop trace command */
3091 if (cmd_ctx->lsm->cmd_type == LTTNG_START_TRACE ||
3092 cmd_ctx->lsm->cmd_type == LTTNG_STOP_TRACE) {
3093 switch (cmd_ctx->lsm->domain.type) {
3094 case LTTNG_DOMAIN_JUL:
3095 case LTTNG_DOMAIN_UST:
3096 if (uatomic_read(&ust_consumerd_state) != CONSUMER_STARTED) {
3097 ret = LTTNG_ERR_NO_USTCONSUMERD;
3098 goto error;
3099 }
3100 break;
3101 case LTTNG_DOMAIN_KERNEL:
3102 if (uatomic_read(&kernel_consumerd_state) != CONSUMER_STARTED) {
3103 ret = LTTNG_ERR_NO_KERNCONSUMERD;
3104 goto error;
3105 }
3106 break;
3107 }
3108 }
3109
3110 /*
3111 * Check that the UID or GID match that of the tracing session.
3112 * The root user can interact with all sessions.
3113 */
3114 if (need_tracing_session) {
3115 if (!session_access_ok(cmd_ctx->session,
3116 LTTNG_SOCK_GET_UID_CRED(&cmd_ctx->creds),
3117 LTTNG_SOCK_GET_GID_CRED(&cmd_ctx->creds))) {
3118 ret = LTTNG_ERR_EPERM;
3119 goto error;
3120 }
3121 }
3122
3123 /*
3124 * Send relayd information to consumer as soon as we have a domain and a
3125 * session defined.
3126 */
3127 if (cmd_ctx->session && need_domain) {
3128 /*
3129 * Setup relayd if not done yet. If the relayd information was already
3130 * sent to the consumer, this call will gracefully return.
3131 */
3132 ret = cmd_setup_relayd(cmd_ctx->session);
3133 if (ret != LTTNG_OK) {
3134 goto error;
3135 }
3136 }
3137
3138 /* Process by command type */
3139 switch (cmd_ctx->lsm->cmd_type) {
3140 case LTTNG_ADD_CONTEXT:
3141 {
3142 ret = cmd_add_context(cmd_ctx->session, cmd_ctx->lsm->domain.type,
3143 cmd_ctx->lsm->u.context.channel_name,
3144 &cmd_ctx->lsm->u.context.ctx, kernel_poll_pipe[1]);
3145 break;
3146 }
3147 case LTTNG_DISABLE_CHANNEL:
3148 {
3149 ret = cmd_disable_channel(cmd_ctx->session, cmd_ctx->lsm->domain.type,
3150 cmd_ctx->lsm->u.disable.channel_name);
3151 break;
3152 }
3153 case LTTNG_DISABLE_EVENT:
3154 {
3155 ret = cmd_disable_event(cmd_ctx->session, cmd_ctx->lsm->domain.type,
3156 cmd_ctx->lsm->u.disable.channel_name,
3157 cmd_ctx->lsm->u.disable.name);
3158 break;
3159 }
3160 case LTTNG_DISABLE_ALL_EVENT:
3161 {
3162 DBG("Disabling all events");
3163
3164 ret = cmd_disable_event_all(cmd_ctx->session, cmd_ctx->lsm->domain.type,
3165 cmd_ctx->lsm->u.disable.channel_name);
3166 break;
3167 }
3168 case LTTNG_ENABLE_CHANNEL:
3169 {
3170 ret = cmd_enable_channel(cmd_ctx->session, &cmd_ctx->lsm->domain,
3171 &cmd_ctx->lsm->u.channel.chan, kernel_poll_pipe[1]);
3172 break;
3173 }
3174 case LTTNG_ENABLE_EVENT:
3175 {
3176 struct lttng_event_exclusion *exclusion = NULL;
3177 struct lttng_filter_bytecode *bytecode = NULL;
3178 char *filter_expression = NULL;
3179
3180 /* Handle exclusion events and receive it from the client. */
3181 if (cmd_ctx->lsm->u.enable.exclusion_count > 0) {
3182 size_t count = cmd_ctx->lsm->u.enable.exclusion_count;
3183
3184 exclusion = zmalloc(sizeof(struct lttng_event_exclusion) +
3185 (count * LTTNG_SYMBOL_NAME_LEN));
3186 if (!exclusion) {
3187 ret = LTTNG_ERR_EXCLUSION_NOMEM;
3188 goto error;
3189 }
3190
3191 DBG("Receiving var len exclusion event list from client ...");
3192 exclusion->count = count;
3193 ret = lttcomm_recv_unix_sock(sock, exclusion->names,
3194 count * LTTNG_SYMBOL_NAME_LEN);
3195 if (ret <= 0) {
3196 DBG("Nothing recv() from client var len data... continuing");
3197 *sock_error = 1;
3198 free(exclusion);
3199 ret = LTTNG_ERR_EXCLUSION_INVAL;
3200 goto error;
3201 }
3202 }
3203
3204 /* Get filter expression from client. */
3205 if (cmd_ctx->lsm->u.enable.expression_len > 0) {
3206 size_t expression_len =
3207 cmd_ctx->lsm->u.enable.expression_len;
3208
3209 if (expression_len > LTTNG_FILTER_MAX_LEN) {
3210 ret = LTTNG_ERR_FILTER_INVAL;
3211 free(exclusion);
3212 goto error;
3213 }
3214
3215 filter_expression = zmalloc(expression_len);
3216 if (!filter_expression) {
3217 free(exclusion);
3218 ret = LTTNG_ERR_FILTER_NOMEM;
3219 goto error;
3220 }
3221
3222 /* Receive var. len. data */
3223 DBG("Receiving var len filter's expression from client ...");
3224 ret = lttcomm_recv_unix_sock(sock, filter_expression,
3225 expression_len);
3226 if (ret <= 0) {
3227 DBG("Nothing recv() from client car len data... continuing");
3228 *sock_error = 1;
3229 free(filter_expression);
3230 free(exclusion);
3231 ret = LTTNG_ERR_FILTER_INVAL;
3232 goto error;
3233 }
3234 }
3235
3236 /* Handle filter and get bytecode from client. */
3237 if (cmd_ctx->lsm->u.enable.bytecode_len > 0) {
3238 size_t bytecode_len = cmd_ctx->lsm->u.enable.bytecode_len;
3239
3240 if (bytecode_len > LTTNG_FILTER_MAX_LEN) {
3241 ret = LTTNG_ERR_FILTER_INVAL;
3242 free(filter_expression);
3243 free(exclusion);
3244 goto error;
3245 }
3246
3247 bytecode = zmalloc(bytecode_len);
3248 if (!bytecode) {
3249 free(filter_expression);
3250 free(exclusion);
3251 ret = LTTNG_ERR_FILTER_NOMEM;
3252 goto error;
3253 }
3254
3255 /* Receive var. len. data */
3256 DBG("Receiving var len filter's bytecode from client ...");
3257 ret = lttcomm_recv_unix_sock(sock, bytecode, bytecode_len);
3258 if (ret <= 0) {
3259 DBG("Nothing recv() from client car len data... continuing");
3260 *sock_error = 1;
3261 free(filter_expression);
3262 free(bytecode);
3263 free(exclusion);
3264 ret = LTTNG_ERR_FILTER_INVAL;
3265 goto error;
3266 }
3267
3268 if ((bytecode->len + sizeof(*bytecode)) != bytecode_len) {
3269 free(filter_expression);
3270 free(bytecode);
3271 free(exclusion);
3272 ret = LTTNG_ERR_FILTER_INVAL;
3273 goto error;
3274 }
3275 }
3276
3277 ret = cmd_enable_event(cmd_ctx->session, &cmd_ctx->lsm->domain,
3278 cmd_ctx->lsm->u.enable.channel_name,
3279 &cmd_ctx->lsm->u.enable.event,
3280 filter_expression, bytecode, exclusion,
3281 kernel_poll_pipe[1]);
3282 break;
3283 }
3284 case LTTNG_ENABLE_ALL_EVENT:
3285 {
3286 DBG("Enabling all events");
3287
3288 ret = cmd_enable_event_all(cmd_ctx->session, &cmd_ctx->lsm->domain,
3289 cmd_ctx->lsm->u.enable.channel_name,
3290 cmd_ctx->lsm->u.enable.event.type, NULL, NULL,
3291 kernel_poll_pipe[1]);
3292 break;
3293 }
3294 case LTTNG_LIST_TRACEPOINTS:
3295 {
3296 struct lttng_event *events;
3297 ssize_t nb_events;
3298
3299 session_lock_list();
3300 nb_events = cmd_list_tracepoints(cmd_ctx->lsm->domain.type, &events);
3301 session_unlock_list();
3302 if (nb_events < 0) {
3303 /* Return value is a negative lttng_error_code. */
3304 ret = -nb_events;
3305 goto error;
3306 }
3307
3308 /*
3309 * Setup lttng message with payload size set to the event list size in
3310 * bytes and then copy list into the llm payload.
3311 */
3312 ret = setup_lttng_msg(cmd_ctx, sizeof(struct lttng_event) * nb_events);
3313 if (ret < 0) {
3314 free(events);
3315 goto setup_error;
3316 }
3317
3318 /* Copy event list into message payload */
3319 memcpy(cmd_ctx->llm->payload, events,
3320 sizeof(struct lttng_event) * nb_events);
3321
3322 free(events);
3323
3324 ret = LTTNG_OK;
3325 break;
3326 }
3327 case LTTNG_LIST_TRACEPOINT_FIELDS:
3328 {
3329 struct lttng_event_field *fields;
3330 ssize_t nb_fields;
3331
3332 session_lock_list();
3333 nb_fields = cmd_list_tracepoint_fields(cmd_ctx->lsm->domain.type,
3334 &fields);
3335 session_unlock_list();
3336 if (nb_fields < 0) {
3337 /* Return value is a negative lttng_error_code. */
3338 ret = -nb_fields;
3339 goto error;
3340 }
3341
3342 /*
3343 * Setup lttng message with payload size set to the event list size in
3344 * bytes and then copy list into the llm payload.
3345 */
3346 ret = setup_lttng_msg(cmd_ctx,
3347 sizeof(struct lttng_event_field) * nb_fields);
3348 if (ret < 0) {
3349 free(fields);
3350 goto setup_error;
3351 }
3352
3353 /* Copy event list into message payload */
3354 memcpy(cmd_ctx->llm->payload, fields,
3355 sizeof(struct lttng_event_field) * nb_fields);
3356
3357 free(fields);
3358
3359 ret = LTTNG_OK;
3360 break;
3361 }
3362 case LTTNG_SET_CONSUMER_URI:
3363 {
3364 size_t nb_uri, len;
3365 struct lttng_uri *uris;
3366
3367 nb_uri = cmd_ctx->lsm->u.uri.size;
3368 len = nb_uri * sizeof(struct lttng_uri);
3369
3370 if (nb_uri == 0) {
3371 ret = LTTNG_ERR_INVALID;
3372 goto error;
3373 }
3374
3375 uris = zmalloc(len);
3376 if (uris == NULL) {
3377 ret = LTTNG_ERR_FATAL;
3378 goto error;
3379 }
3380
3381 /* Receive variable len data */
3382 DBG("Receiving %zu URI(s) from client ...", nb_uri);
3383 ret = lttcomm_recv_unix_sock(sock, uris, len);
3384 if (ret <= 0) {
3385 DBG("No URIs received from client... continuing");
3386 *sock_error = 1;
3387 ret = LTTNG_ERR_SESSION_FAIL;
3388 free(uris);
3389 goto error;
3390 }
3391
3392 ret = cmd_set_consumer_uri(cmd_ctx->session, nb_uri, uris);
3393 free(uris);
3394 if (ret != LTTNG_OK) {
3395 goto error;
3396 }
3397
3398
3399 break;
3400 }
3401 case LTTNG_START_TRACE:
3402 {
3403 ret = cmd_start_trace(cmd_ctx->session);
3404 break;
3405 }
3406 case LTTNG_STOP_TRACE:
3407 {
3408 ret = cmd_stop_trace(cmd_ctx->session);
3409 break;
3410 }
3411 case LTTNG_CREATE_SESSION:
3412 {
3413 size_t nb_uri, len;
3414 struct lttng_uri *uris = NULL;
3415
3416 nb_uri = cmd_ctx->lsm->u.uri.size;
3417 len = nb_uri * sizeof(struct lttng_uri);
3418
3419 if (nb_uri > 0) {
3420 uris = zmalloc(len);
3421 if (uris == NULL) {
3422 ret = LTTNG_ERR_FATAL;
3423 goto error;
3424 }
3425
3426 /* Receive variable len data */
3427 DBG("Waiting for %zu URIs from client ...", nb_uri);
3428 ret = lttcomm_recv_unix_sock(sock, uris, len);
3429 if (ret <= 0) {
3430 DBG("No URIs received from client... continuing");
3431 *sock_error = 1;
3432 ret = LTTNG_ERR_SESSION_FAIL;
3433 free(uris);
3434 goto error;
3435 }
3436
3437 if (nb_uri == 1 && uris[0].dtype != LTTNG_DST_PATH) {
3438 DBG("Creating session with ONE network URI is a bad call");
3439 ret = LTTNG_ERR_SESSION_FAIL;
3440 free(uris);
3441 goto error;
3442 }
3443 }
3444
3445 ret = cmd_create_session_uri(cmd_ctx->lsm->session.name, uris, nb_uri,
3446 &cmd_ctx->creds, 0);
3447
3448 free(uris);
3449
3450 break;
3451 }
3452 case LTTNG_DESTROY_SESSION:
3453 {
3454 ret = cmd_destroy_session(cmd_ctx->session, kernel_poll_pipe[1]);
3455
3456 /* Set session to NULL so we do not unlock it after free. */
3457 cmd_ctx->session = NULL;
3458 break;
3459 }
3460 case LTTNG_LIST_DOMAINS:
3461 {
3462 ssize_t nb_dom;
3463 struct lttng_domain *domains;
3464
3465 nb_dom = cmd_list_domains(cmd_ctx->session, &domains);
3466 if (nb_dom < 0) {
3467 /* Return value is a negative lttng_error_code. */
3468 ret = -nb_dom;
3469 goto error;
3470 }
3471
3472 ret = setup_lttng_msg(cmd_ctx, nb_dom * sizeof(struct lttng_domain));
3473 if (ret < 0) {
3474 free(domains);
3475 goto setup_error;
3476 }
3477
3478 /* Copy event list into message payload */
3479 memcpy(cmd_ctx->llm->payload, domains,
3480 nb_dom * sizeof(struct lttng_domain));
3481
3482 free(domains);
3483
3484 ret = LTTNG_OK;
3485 break;
3486 }
3487 case LTTNG_LIST_CHANNELS:
3488 {
3489 int nb_chan;
3490 struct lttng_channel *channels = NULL;
3491
3492 nb_chan = cmd_list_channels(cmd_ctx->lsm->domain.type,
3493 cmd_ctx->session, &channels);
3494 if (nb_chan < 0) {
3495 /* Return value is a negative lttng_error_code. */
3496 ret = -nb_chan;
3497 goto error;
3498 }
3499
3500 ret = setup_lttng_msg(cmd_ctx, nb_chan * sizeof(struct lttng_channel));
3501 if (ret < 0) {
3502 free(channels);
3503 goto setup_error;
3504 }
3505
3506 /* Copy event list into message payload */
3507 memcpy(cmd_ctx->llm->payload, channels,
3508 nb_chan * sizeof(struct lttng_channel));
3509
3510 free(channels);
3511
3512 ret = LTTNG_OK;
3513 break;
3514 }
3515 case LTTNG_LIST_EVENTS:
3516 {
3517 ssize_t nb_event;
3518 struct lttng_event *events = NULL;
3519
3520 nb_event = cmd_list_events(cmd_ctx->lsm->domain.type, cmd_ctx->session,
3521 cmd_ctx->lsm->u.list.channel_name, &events);
3522 if (nb_event < 0) {
3523 /* Return value is a negative lttng_error_code. */
3524 ret = -nb_event;
3525 goto error;
3526 }
3527
3528 ret = setup_lttng_msg(cmd_ctx, nb_event * sizeof(struct lttng_event));
3529 if (ret < 0) {
3530 free(events);
3531 goto setup_error;
3532 }
3533
3534 /* Copy event list into message payload */
3535 memcpy(cmd_ctx->llm->payload, events,
3536 nb_event * sizeof(struct lttng_event));
3537
3538 free(events);
3539
3540 ret = LTTNG_OK;
3541 break;
3542 }
3543 case LTTNG_LIST_SESSIONS:
3544 {
3545 unsigned int nr_sessions;
3546
3547 session_lock_list();
3548 nr_sessions = lttng_sessions_count(
3549 LTTNG_SOCK_GET_UID_CRED(&cmd_ctx->creds),
3550 LTTNG_SOCK_GET_GID_CRED(&cmd_ctx->creds));
3551
3552 ret = setup_lttng_msg(cmd_ctx, sizeof(struct lttng_session) * nr_sessions);
3553 if (ret < 0) {
3554 session_unlock_list();
3555 goto setup_error;
3556 }
3557
3558 /* Filled the session array */
3559 cmd_list_lttng_sessions((struct lttng_session *)(cmd_ctx->llm->payload),
3560 LTTNG_SOCK_GET_UID_CRED(&cmd_ctx->creds),
3561 LTTNG_SOCK_GET_GID_CRED(&cmd_ctx->creds));
3562
3563 session_unlock_list();
3564
3565 ret = LTTNG_OK;
3566 break;
3567 }
3568 case LTTNG_CALIBRATE:
3569 {
3570 ret = cmd_calibrate(cmd_ctx->lsm->domain.type,
3571 &cmd_ctx->lsm->u.calibrate);
3572 break;
3573 }
3574 case LTTNG_REGISTER_CONSUMER:
3575 {
3576 struct consumer_data *cdata;
3577
3578 switch (cmd_ctx->lsm->domain.type) {
3579 case LTTNG_DOMAIN_KERNEL:
3580 cdata = &kconsumer_data;
3581 break;
3582 default:
3583 ret = LTTNG_ERR_UND;
3584 goto error;
3585 }
3586
3587 ret = cmd_register_consumer(cmd_ctx->session, cmd_ctx->lsm->domain.type,
3588 cmd_ctx->lsm->u.reg.path, cdata);
3589 break;
3590 }
3591 case LTTNG_DATA_PENDING:
3592 {
3593 ret = cmd_data_pending(cmd_ctx->session);
3594 break;
3595 }
3596 case LTTNG_SNAPSHOT_ADD_OUTPUT:
3597 {
3598 struct lttcomm_lttng_output_id reply;
3599
3600 ret = cmd_snapshot_add_output(cmd_ctx->session,
3601 &cmd_ctx->lsm->u.snapshot_output.output, &reply.id);
3602 if (ret != LTTNG_OK) {
3603 goto error;
3604 }
3605
3606 ret = setup_lttng_msg(cmd_ctx, sizeof(reply));
3607 if (ret < 0) {
3608 goto setup_error;
3609 }
3610
3611 /* Copy output list into message payload */
3612 memcpy(cmd_ctx->llm->payload, &reply, sizeof(reply));
3613 ret = LTTNG_OK;
3614 break;
3615 }
3616 case LTTNG_SNAPSHOT_DEL_OUTPUT:
3617 {
3618 ret = cmd_snapshot_del_output(cmd_ctx->session,
3619 &cmd_ctx->lsm->u.snapshot_output.output);
3620 break;
3621 }
3622 case LTTNG_SNAPSHOT_LIST_OUTPUT:
3623 {
3624 ssize_t nb_output;
3625 struct lttng_snapshot_output *outputs = NULL;
3626
3627 nb_output = cmd_snapshot_list_outputs(cmd_ctx->session, &outputs);
3628 if (nb_output < 0) {
3629 ret = -nb_output;
3630 goto error;
3631 }
3632
3633 ret = setup_lttng_msg(cmd_ctx,
3634 nb_output * sizeof(struct lttng_snapshot_output));
3635 if (ret < 0) {
3636 free(outputs);
3637 goto setup_error;
3638 }
3639
3640 if (outputs) {
3641 /* Copy output list into message payload */
3642 memcpy(cmd_ctx->llm->payload, outputs,
3643 nb_output * sizeof(struct lttng_snapshot_output));
3644 free(outputs);
3645 }
3646
3647 ret = LTTNG_OK;
3648 break;
3649 }
3650 case LTTNG_SNAPSHOT_RECORD:
3651 {
3652 ret = cmd_snapshot_record(cmd_ctx->session,
3653 &cmd_ctx->lsm->u.snapshot_record.output,
3654 cmd_ctx->lsm->u.snapshot_record.wait);
3655 break;
3656 }
3657 case LTTNG_CREATE_SESSION_SNAPSHOT:
3658 {
3659 size_t nb_uri, len;
3660 struct lttng_uri *uris = NULL;
3661
3662 nb_uri = cmd_ctx->lsm->u.uri.size;
3663 len = nb_uri * sizeof(struct lttng_uri);
3664
3665 if (nb_uri > 0) {
3666 uris = zmalloc(len);
3667 if (uris == NULL) {
3668 ret = LTTNG_ERR_FATAL;
3669 goto error;
3670 }
3671
3672 /* Receive variable len data */
3673 DBG("Waiting for %zu URIs from client ...", nb_uri);
3674 ret = lttcomm_recv_unix_sock(sock, uris, len);
3675 if (ret <= 0) {
3676 DBG("No URIs received from client... continuing");
3677 *sock_error = 1;
3678 ret = LTTNG_ERR_SESSION_FAIL;
3679 free(uris);
3680 goto error;
3681 }
3682
3683 if (nb_uri == 1 && uris[0].dtype != LTTNG_DST_PATH) {
3684 DBG("Creating session with ONE network URI is a bad call");
3685 ret = LTTNG_ERR_SESSION_FAIL;
3686 free(uris);
3687 goto error;
3688 }
3689 }
3690
3691 ret = cmd_create_session_snapshot(cmd_ctx->lsm->session.name, uris,
3692 nb_uri, &cmd_ctx->creds);
3693 free(uris);
3694 break;
3695 }
3696 case LTTNG_CREATE_SESSION_LIVE:
3697 {
3698 size_t nb_uri, len;
3699 struct lttng_uri *uris = NULL;
3700
3701 nb_uri = cmd_ctx->lsm->u.uri.size;
3702 len = nb_uri * sizeof(struct lttng_uri);
3703
3704 if (nb_uri > 0) {
3705 uris = zmalloc(len);
3706 if (uris == NULL) {
3707 ret = LTTNG_ERR_FATAL;
3708 goto error;
3709 }
3710
3711 /* Receive variable len data */
3712 DBG("Waiting for %zu URIs from client ...", nb_uri);
3713 ret = lttcomm_recv_unix_sock(sock, uris, len);
3714 if (ret <= 0) {
3715 DBG("No URIs received from client... continuing");
3716 *sock_error = 1;
3717 ret = LTTNG_ERR_SESSION_FAIL;
3718 free(uris);
3719 goto error;
3720 }
3721
3722 if (nb_uri == 1 && uris[0].dtype != LTTNG_DST_PATH) {
3723 DBG("Creating session with ONE network URI is a bad call");
3724 ret = LTTNG_ERR_SESSION_FAIL;
3725 free(uris);
3726 goto error;
3727 }
3728 }
3729
3730 ret = cmd_create_session_uri(cmd_ctx->lsm->session.name, uris,
3731 nb_uri, &cmd_ctx->creds, cmd_ctx->lsm->u.session_live.timer_interval);
3732 free(uris);
3733 break;
3734 }
3735 case LTTNG_SAVE_SESSION:
3736 {
3737 ret = cmd_save_sessions(&cmd_ctx->lsm->u.save_session.attr,
3738 &cmd_ctx->creds);
3739 break;
3740 }
3741 default:
3742 ret = LTTNG_ERR_UND;
3743 break;
3744 }
3745
3746 error:
3747 if (cmd_ctx->llm == NULL) {
3748 DBG("Missing llm structure. Allocating one.");
3749 if (setup_lttng_msg(cmd_ctx, 0) < 0) {
3750 goto setup_error;
3751 }
3752 }
3753 /* Set return code */
3754 cmd_ctx->llm->ret_code = ret;
3755 setup_error:
3756 if (cmd_ctx->session) {
3757 session_unlock(cmd_ctx->session);
3758 }
3759 if (need_tracing_session) {
3760 session_unlock_list();
3761 }
3762 init_setup_error:
3763 return ret;
3764 }
3765
3766 /*
3767 * Thread managing health check socket.
3768 */
3769 static void *thread_manage_health(void *data)
3770 {
3771 int sock = -1, new_sock = -1, ret, i, pollfd, err = -1;
3772 uint32_t revents, nb_fd;
3773 struct lttng_poll_event events;
3774 struct health_comm_msg msg;
3775 struct health_comm_reply reply;
3776
3777 DBG("[thread] Manage health check started");
3778
3779 rcu_register_thread();
3780
3781 /* We might hit an error path before this is created. */
3782 lttng_poll_init(&events);
3783
3784 /* Create unix socket */
3785 sock = lttcomm_create_unix_sock(health_unix_sock_path);
3786 if (sock < 0) {
3787 ERR("Unable to create health check Unix socket");
3788 ret = -1;
3789 goto error;
3790 }
3791
3792 if (is_root) {
3793 /* lttng health client socket path permissions */
3794 ret = chown(health_unix_sock_path, 0,
3795 utils_get_group_id(tracing_group_name));
3796 if (ret < 0) {
3797 ERR("Unable to set group on %s", health_unix_sock_path);
3798 PERROR("chown");
3799 ret = -1;
3800 goto error;
3801 }
3802
3803 ret = chmod(health_unix_sock_path,
3804 S_IRUSR | S_IWUSR | S_IRGRP | S_IWGRP);
3805 if (ret < 0) {
3806 ERR("Unable to set permissions on %s", health_unix_sock_path);
3807 PERROR("chmod");
3808 ret = -1;
3809 goto error;
3810 }
3811 }
3812
3813 /*
3814 * Set the CLOEXEC flag. Return code is useless because either way, the
3815 * show must go on.
3816 */
3817 (void) utils_set_fd_cloexec(sock);
3818
3819 ret = lttcomm_listen_unix_sock(sock);
3820 if (ret < 0) {
3821 goto error;
3822 }
3823
3824 /*
3825 * Pass 2 as size here for the thread quit pipe and client_sock. Nothing
3826 * more will be added to this poll set.
3827 */
3828 ret = sessiond_set_thread_pollset(&events, 2);
3829 if (ret < 0) {
3830 goto error;
3831 }
3832
3833 /* Add the application registration socket */
3834 ret = lttng_poll_add(&events, sock, LPOLLIN | LPOLLPRI);
3835 if (ret < 0) {
3836 goto error;
3837 }
3838
3839 sessiond_notify_ready();
3840
3841 while (1) {
3842 DBG("Health check ready");
3843
3844 /* Inifinite blocking call, waiting for transmission */
3845 restart:
3846 ret = lttng_poll_wait(&events, -1);
3847 if (ret < 0) {
3848 /*
3849 * Restart interrupted system call.
3850 */
3851 if (errno == EINTR) {
3852 goto restart;
3853 }
3854 goto error;
3855 }
3856
3857 nb_fd = ret;
3858
3859 for (i = 0; i < nb_fd; i++) {
3860 /* Fetch once the poll data */
3861 revents = LTTNG_POLL_GETEV(&events, i);
3862 pollfd = LTTNG_POLL_GETFD(&events, i);
3863
3864 if (!revents) {
3865 /* No activity for this FD (poll implementation). */
3866 continue;
3867 }
3868
3869 /* Thread quit pipe has been closed. Killing thread. */
3870 ret = sessiond_check_thread_quit_pipe(pollfd, revents);
3871 if (ret) {
3872 err = 0;
3873 goto exit;
3874 }
3875
3876 /* Event on the registration socket */
3877 if (pollfd == sock) {
3878 if (revents & (LPOLLERR | LPOLLHUP | LPOLLRDHUP)) {
3879 ERR("Health socket poll error");
3880 goto error;
3881 }
3882 }
3883 }
3884
3885 new_sock = lttcomm_accept_unix_sock(sock);
3886 if (new_sock < 0) {
3887 goto error;
3888 }
3889
3890 /*
3891 * Set the CLOEXEC flag. Return code is useless because either way, the
3892 * show must go on.
3893 */
3894 (void) utils_set_fd_cloexec(new_sock);
3895
3896 DBG("Receiving data from client for health...");
3897 ret = lttcomm_recv_unix_sock(new_sock, (void *)&msg, sizeof(msg));
3898 if (ret <= 0) {
3899 DBG("Nothing recv() from client... continuing");
3900 ret = close(new_sock);
3901 if (ret) {
3902 PERROR("close");
3903 }
3904 new_sock = -1;
3905 continue;
3906 }
3907
3908 rcu_thread_online();
3909
3910 memset(&reply, 0, sizeof(reply));
3911 for (i = 0; i < NR_HEALTH_SESSIOND_TYPES; i++) {
3912 /*
3913 * health_check_state returns 0 if health is
3914 * bad.
3915 */
3916 if (!health_check_state(health_sessiond, i)) {
3917 reply.ret_code |= 1ULL << i;
3918 }
3919 }
3920
3921 DBG2("Health check return value %" PRIx64, reply.ret_code);
3922
3923 ret = send_unix_sock(new_sock, (void *) &reply, sizeof(reply));
3924 if (ret < 0) {
3925 ERR("Failed to send health data back to client");
3926 }
3927
3928 /* End of transmission */
3929 ret = close(new_sock);
3930 if (ret) {
3931 PERROR("close");
3932 }
3933 new_sock = -1;
3934 }
3935
3936 exit:
3937 error:
3938 if (err) {
3939 ERR("Health error occurred in %s", __func__);
3940 }
3941 DBG("Health check thread dying");
3942 unlink(health_unix_sock_path);
3943 if (sock >= 0) {
3944 ret = close(sock);
3945 if (ret) {
3946 PERROR("close");
3947 }
3948 }
3949
3950 lttng_poll_clean(&events);
3951
3952 rcu_unregister_thread();
3953 return NULL;
3954 }
3955
3956 /*
3957 * This thread manage all clients request using the unix client socket for
3958 * communication.
3959 */
3960 static void *thread_manage_clients(void *data)
3961 {
3962 int sock = -1, ret, i, pollfd, err = -1;
3963 int sock_error;
3964 uint32_t revents, nb_fd;
3965 struct command_ctx *cmd_ctx = NULL;
3966 struct lttng_poll_event events;
3967
3968 DBG("[thread] Manage client started");
3969
3970 rcu_register_thread();
3971
3972 health_register(health_sessiond, HEALTH_SESSIOND_TYPE_CMD);
3973
3974 health_code_update();
3975
3976 ret = lttcomm_listen_unix_sock(client_sock);
3977 if (ret < 0) {
3978 goto error_listen;
3979 }
3980
3981 /*
3982 * Pass 2 as size here for the thread quit pipe and client_sock. Nothing
3983 * more will be added to this poll set.
3984 */
3985 ret = sessiond_set_thread_pollset(&events, 2);
3986 if (ret < 0) {
3987 goto error_create_poll;
3988 }
3989
3990 /* Add the application registration socket */
3991 ret = lttng_poll_add(&events, client_sock, LPOLLIN | LPOLLPRI);
3992 if (ret < 0) {
3993 goto error;
3994 }
3995
3996 sessiond_notify_ready();
3997 ret = sem_post(&load_info->message_thread_ready);
3998 if (ret) {
3999 PERROR("sem_post message_thread_ready");
4000 goto error;
4001 }
4002
4003 /* This testpoint is after we signal readiness to the parent. */
4004 if (testpoint(sessiond_thread_manage_clients)) {
4005 goto error;
4006 }
4007
4008 if (testpoint(sessiond_thread_manage_clients_before_loop)) {
4009 goto error;
4010 }
4011
4012 health_code_update();
4013
4014 while (1) {
4015 DBG("Accepting client command ...");
4016
4017 /* Inifinite blocking call, waiting for transmission */
4018 restart:
4019 health_poll_entry();
4020 ret = lttng_poll_wait(&events, -1);
4021 health_poll_exit();
4022 if (ret < 0) {
4023 /*
4024 * Restart interrupted system call.
4025 */
4026 if (errno == EINTR) {
4027 goto restart;
4028 }
4029 goto error;
4030 }
4031
4032 nb_fd = ret;
4033
4034 for (i = 0; i < nb_fd; i++) {
4035 /* Fetch once the poll data */
4036 revents = LTTNG_POLL_GETEV(&events, i);
4037 pollfd = LTTNG_POLL_GETFD(&events, i);
4038
4039 health_code_update();
4040
4041 if (!revents) {
4042 /* No activity for this FD (poll implementation). */
4043 continue;
4044 }
4045
4046 /* Thread quit pipe has been closed. Killing thread. */
4047 ret = sessiond_check_thread_quit_pipe(pollfd, revents);
4048 if (ret) {
4049 err = 0;
4050 goto exit;
4051 }
4052
4053 /* Event on the registration socket */
4054 if (pollfd == client_sock) {
4055 if (revents & (LPOLLERR | LPOLLHUP | LPOLLRDHUP)) {
4056 ERR("Client socket poll error");
4057 goto error;
4058 }
4059 }
4060 }
4061
4062 DBG("Wait for client response");
4063
4064 health_code_update();
4065
4066 sock = lttcomm_accept_unix_sock(client_sock);
4067 if (sock < 0) {
4068 goto error;
4069 }
4070
4071 /*
4072 * Set the CLOEXEC flag. Return code is useless because either way, the
4073 * show must go on.
4074 */
4075 (void) utils_set_fd_cloexec(sock);
4076
4077 /* Set socket option for credentials retrieval */
4078 ret = lttcomm_setsockopt_creds_unix_sock(sock);
4079 if (ret < 0) {
4080 goto error;
4081 }
4082
4083 /* Allocate context command to process the client request */
4084 cmd_ctx = zmalloc(sizeof(struct command_ctx));
4085 if (cmd_ctx == NULL) {
4086 PERROR("zmalloc cmd_ctx");
4087 goto error;
4088 }
4089
4090 /* Allocate data buffer for reception */
4091 cmd_ctx->lsm = zmalloc(sizeof(struct lttcomm_session_msg));
4092 if (cmd_ctx->lsm == NULL) {
4093 PERROR("zmalloc cmd_ctx->lsm");
4094 goto error;
4095 }
4096
4097 cmd_ctx->llm = NULL;
4098 cmd_ctx->session = NULL;
4099
4100 health_code_update();
4101
4102 /*
4103 * Data is received from the lttng client. The struct
4104 * lttcomm_session_msg (lsm) contains the command and data request of
4105 * the client.
4106 */
4107 DBG("Receiving data from client ...");
4108 ret = lttcomm_recv_creds_unix_sock(sock, cmd_ctx->lsm,
4109 sizeof(struct lttcomm_session_msg), &cmd_ctx->creds);
4110 if (ret <= 0) {
4111 DBG("Nothing recv() from client... continuing");
4112 ret = close(sock);
4113 if (ret) {
4114 PERROR("close");
4115 }
4116 sock = -1;
4117 clean_command_ctx(&cmd_ctx);
4118 continue;
4119 }
4120
4121 health_code_update();
4122
4123 // TODO: Validate cmd_ctx including sanity check for
4124 // security purpose.
4125
4126 rcu_thread_online();
4127 /*
4128 * This function dispatch the work to the kernel or userspace tracer
4129 * libs and fill the lttcomm_lttng_msg data structure of all the needed
4130 * informations for the client. The command context struct contains
4131 * everything this function may needs.
4132 */
4133 ret = process_client_msg(cmd_ctx, sock, &sock_error);
4134 rcu_thread_offline();
4135 if (ret < 0) {
4136 ret = close(sock);
4137 if (ret) {
4138 PERROR("close");
4139 }
4140 sock = -1;
4141 /*
4142 * TODO: Inform client somehow of the fatal error. At
4143 * this point, ret < 0 means that a zmalloc failed
4144 * (ENOMEM). Error detected but still accept
4145 * command, unless a socket error has been
4146 * detected.
4147 */
4148 clean_command_ctx(&cmd_ctx);
4149 continue;
4150 }
4151
4152 health_code_update();
4153
4154 DBG("Sending response (size: %d, retcode: %s)",
4155 cmd_ctx->lttng_msg_size,
4156 lttng_strerror(-cmd_ctx->llm->ret_code));
4157 ret = send_unix_sock(sock, cmd_ctx->llm, cmd_ctx->lttng_msg_size);
4158 if (ret < 0) {
4159 ERR("Failed to send data back to client");
4160 }
4161
4162 /* End of transmission */
4163 ret = close(sock);
4164 if (ret) {
4165 PERROR("close");
4166 }
4167 sock = -1;
4168
4169 clean_command_ctx(&cmd_ctx);
4170
4171 health_code_update();
4172 }
4173
4174 exit:
4175 error:
4176 if (sock >= 0) {
4177 ret = close(sock);
4178 if (ret) {
4179 PERROR("close");
4180 }
4181 }
4182
4183 lttng_poll_clean(&events);
4184 clean_command_ctx(&cmd_ctx);
4185
4186 error_listen:
4187 error_create_poll:
4188 unlink(client_unix_sock_path);
4189 if (client_sock >= 0) {
4190 ret = close(client_sock);
4191 if (ret) {
4192 PERROR("close");
4193 }
4194 }
4195
4196 if (err) {
4197 health_error();
4198 ERR("Health error occurred in %s", __func__);
4199 }
4200
4201 health_unregister(health_sessiond);
4202
4203 DBG("Client thread dying");
4204
4205 rcu_unregister_thread();
4206 return NULL;
4207 }
4208
4209
4210 /*
4211 * usage function on stderr
4212 */
4213 static void usage(void)
4214 {
4215 fprintf(stderr, "Usage: %s OPTIONS\n\nOptions:\n", progname);
4216 fprintf(stderr, " -h, --help Display this usage.\n");
4217 fprintf(stderr, " -c, --client-sock PATH Specify path for the client unix socket\n");
4218 fprintf(stderr, " -a, --apps-sock PATH Specify path for apps unix socket\n");
4219 fprintf(stderr, " --kconsumerd-err-sock PATH Specify path for the kernel consumer error socket\n");
4220 fprintf(stderr, " --kconsumerd-cmd-sock PATH Specify path for the kernel consumer command socket\n");
4221 fprintf(stderr, " --ustconsumerd32-err-sock PATH Specify path for the 32-bit UST consumer error socket\n");
4222 fprintf(stderr, " --ustconsumerd64-err-sock PATH Specify path for the 64-bit UST consumer error socket\n");
4223 fprintf(stderr, " --ustconsumerd32-cmd-sock PATH Specify path for the 32-bit UST consumer command socket\n");
4224 fprintf(stderr, " --ustconsumerd64-cmd-sock PATH Specify path for the 64-bit UST consumer command socket\n");
4225 fprintf(stderr, " --consumerd32-path PATH Specify path for the 32-bit UST consumer daemon binary\n");
4226 fprintf(stderr, " --consumerd32-libdir PATH Specify path for the 32-bit UST consumer daemon libraries\n");
4227 fprintf(stderr, " --consumerd64-path PATH Specify path for the 64-bit UST consumer daemon binary\n");
4228 fprintf(stderr, " --consumerd64-libdir PATH Specify path for the 64-bit UST consumer daemon libraries\n");
4229 fprintf(stderr, " -d, --daemonize Start as a daemon.\n");
4230 fprintf(stderr, " -b, --background Start as a daemon, keeping console open.\n");
4231 fprintf(stderr, " -g, --group NAME Specify the tracing group name. (default: tracing)\n");
4232 fprintf(stderr, " -V, --version Show version number.\n");
4233 fprintf(stderr, " -S, --sig-parent Send SIGUSR1 to parent pid to notify readiness.\n");
4234 fprintf(stderr, " -q, --quiet No output at all.\n");
4235 fprintf(stderr, " -v, --verbose Verbose mode. Activate DBG() macro.\n");
4236 fprintf(stderr, " -p, --pidfile FILE Write a pid to FILE name overriding the default value.\n");
4237 fprintf(stderr, " --verbose-consumer Verbose mode for consumer. Activate DBG() macro.\n");
4238 fprintf(stderr, " --no-kernel Disable kernel tracer\n");
4239 fprintf(stderr, " --jul-tcp-port JUL application registration TCP port\n");
4240 fprintf(stderr, " -f --config PATH Load daemon configuration file\n");
4241 fprintf(stderr, " -l --load PATH Load session configuration\n");
4242 fprintf(stderr, " --kmod-probes Specify kernel module probes to load\n");
4243 }
4244
4245 /*
4246 * Take an option from the getopt output and set it in the right variable to be
4247 * used later.
4248 *
4249 * Return 0 on success else a negative value.
4250 */
4251 static int set_option(int opt, const char *arg, const char *optname)
4252 {
4253 int ret = 0;
4254
4255 if (arg && arg[0] == '\0') {
4256 /*
4257 * This only happens if the value is read from daemon config
4258 * file. This means the option requires an argument and the
4259 * configuration file contains a line such as:
4260 * my_option =
4261 */
4262 ret = -EINVAL;
4263 goto end;
4264 }
4265
4266 switch (opt) {
4267 case 0:
4268 fprintf(stderr, "option %s", optname);
4269 if (arg) {
4270 fprintf(stderr, " with arg %s\n", arg);
4271 }
4272 break;
4273 case 'c':
4274 snprintf(client_unix_sock_path, PATH_MAX, "%s", arg);
4275 break;
4276 case 'a':
4277 snprintf(apps_unix_sock_path, PATH_MAX, "%s", arg);
4278 break;
4279 case 'd':
4280 opt_daemon = 1;
4281 break;
4282 case 'b':
4283 opt_background = 1;
4284 break;
4285 case 'g':
4286 /*
4287 * If the override option is set, the pointer points to a
4288 * *non* const thus freeing it even though the variable type is
4289 * set to const.
4290 */
4291 if (tracing_group_name_override) {
4292 free((void *) tracing_group_name);
4293 }
4294 tracing_group_name = strdup(arg);
4295 if (!tracing_group_name) {
4296 perror("strdup");
4297 ret = -ENOMEM;
4298 }
4299 tracing_group_name_override = 1;
4300 break;
4301 case 'h':
4302 usage();
4303 exit(EXIT_FAILURE);
4304 case 'V':
4305 fprintf(stdout, "%s\n", VERSION);
4306 exit(EXIT_SUCCESS);
4307 case 'S':
4308 opt_sig_parent = 1;
4309 break;
4310 case 'E':
4311 snprintf(kconsumer_data.err_unix_sock_path, PATH_MAX, "%s", arg);
4312 break;
4313 case 'C':
4314 snprintf(kconsumer_data.cmd_unix_sock_path, PATH_MAX, "%s", arg);
4315 break;
4316 case 'F':
4317 snprintf(ustconsumer64_data.err_unix_sock_path, PATH_MAX, "%s", arg);
4318 break;
4319 case 'D':
4320 snprintf(ustconsumer64_data.cmd_unix_sock_path, PATH_MAX, "%s", arg);
4321 break;
4322 case 'H':
4323 snprintf(ustconsumer32_data.err_unix_sock_path, PATH_MAX, "%s", arg);
4324 break;
4325 case 'G':
4326 snprintf(ustconsumer32_data.cmd_unix_sock_path, PATH_MAX, "%s", arg);
4327 break;
4328 case 'N':
4329 opt_no_kernel = 1;
4330 break;
4331 case 'q':
4332 lttng_opt_quiet = 1;
4333 break;
4334 case 'v':
4335 /* Verbose level can increase using multiple -v */
4336 if (arg) {
4337 /* Value obtained from config file */
4338 lttng_opt_verbose = config_parse_value(arg);
4339 } else {
4340 /* -v used on command line */
4341 lttng_opt_verbose++;
4342 }
4343 /* Clamp value to [0, 3] */
4344 lttng_opt_verbose = lttng_opt_verbose < 0 ? 0 :
4345 (lttng_opt_verbose <= 3 ? lttng_opt_verbose : 3);
4346 break;
4347 case 'Z':
4348 if (arg) {
4349 opt_verbose_consumer = config_parse_value(arg);
4350 } else {
4351 opt_verbose_consumer += 1;
4352 }
4353 break;
4354 case 'u':
4355 if (consumerd32_bin_override) {
4356 free((void *) consumerd32_bin);
4357 }
4358 consumerd32_bin = strdup(arg);
4359 if (!consumerd32_bin) {
4360 perror("strdup");
4361 ret = -ENOMEM;
4362 }
4363 consumerd32_bin_override = 1;
4364 break;
4365 case 'U':
4366 if (consumerd32_libdir_override) {
4367 free((void *) consumerd32_libdir);
4368 }
4369 consumerd32_libdir = strdup(arg);
4370 if (!consumerd32_libdir) {
4371 perror("strdup");
4372 ret = -ENOMEM;
4373 }
4374 consumerd32_libdir_override = 1;
4375 break;
4376 case 't':
4377 if (consumerd64_bin_override) {
4378 free((void *) consumerd64_bin);
4379 }
4380 consumerd64_bin = strdup(arg);
4381 if (!consumerd64_bin) {
4382 perror("strdup");
4383 ret = -ENOMEM;
4384 }
4385 consumerd64_bin_override = 1;
4386 break;
4387 case 'T':
4388 if (consumerd64_libdir_override) {
4389 free((void *) consumerd64_libdir);
4390 }
4391 consumerd64_libdir = strdup(arg);
4392 if (!consumerd64_libdir) {
4393 perror("strdup");
4394 ret = -ENOMEM;
4395 }
4396 consumerd64_libdir_override = 1;
4397 break;
4398 case 'p':
4399 free(opt_pidfile);
4400 opt_pidfile = strdup(arg);
4401 if (!opt_pidfile) {
4402 perror("strdup");
4403 ret = -ENOMEM;
4404 }
4405 break;
4406 case 'J': /* JUL TCP port. */
4407 {
4408 unsigned long v;
4409
4410 errno = 0;
4411 v = strtoul(arg, NULL, 0);
4412 if (errno != 0 || !isdigit(arg[0])) {
4413 ERR("Wrong value in --jul-tcp-port parameter: %s", arg);
4414 return -1;
4415 }
4416 if (v == 0 || v >= 65535) {
4417 ERR("Port overflow in --jul-tcp-port parameter: %s", arg);
4418 return -1;
4419 }
4420 jul_tcp_port = (uint32_t) v;
4421 DBG3("JUL TCP port set to non default: %u", jul_tcp_port);
4422 break;
4423 }
4424 case 'l':
4425 free(opt_load_session_path);
4426 opt_load_session_path = strdup(arg);
4427 if (!opt_load_session_path) {
4428 perror("strdup");
4429 ret = -ENOMEM;
4430 }
4431 break;
4432 case 'P': /* probe modules list */
4433 free(kmod_probes_list);
4434 kmod_probes_list = strdup(arg);
4435 if (!kmod_probes_list) {
4436 perror("strdup");
4437 ret = -ENOMEM;
4438 }
4439 break;
4440 case 'f':
4441 /* This is handled in set_options() thus silent break. */
4442 break;
4443 default:
4444 /* Unknown option or other error.
4445 * Error is printed by getopt, just return */
4446 ret = -1;
4447 }
4448
4449 end:
4450 if (ret == -EINVAL) {
4451 const char *opt_name = "unknown";
4452 int i;
4453
4454 for (i = 0; i < sizeof(long_options) / sizeof(struct option);
4455 i++) {
4456 if (opt == long_options[i].val) {
4457 opt_name = long_options[i].name;
4458 break;
4459 }
4460 }
4461
4462 WARN("Invalid argument provided for option \"%s\", using default value.",
4463 opt_name);
4464 }
4465
4466 return ret;
4467 }
4468
4469 /*
4470 * config_entry_handler_cb used to handle options read from a config file.
4471 * See config_entry_handler_cb comment in common/config/config.h for the
4472 * return value conventions.
4473 */
4474 static int config_entry_handler(const struct config_entry *entry, void *unused)
4475 {
4476 int ret = 0, i;
4477
4478 if (!entry || !entry->name || !entry->value) {
4479 ret = -EINVAL;
4480 goto end;
4481 }
4482
4483 /* Check if the option is to be ignored */
4484 for (i = 0; i < sizeof(config_ignore_options) / sizeof(char *); i++) {
4485 if (!strcmp(entry->name, config_ignore_options[i])) {
4486 goto end;
4487 }
4488 }
4489
4490 for (i = 0; i < (sizeof(long_options) / sizeof(struct option)) - 1;
4491 i++) {
4492
4493 /* Ignore if not fully matched. */
4494 if (strcmp(entry->name, long_options[i].name)) {
4495 continue;
4496 }
4497
4498 /*
4499 * If the option takes no argument on the command line, we have to
4500 * check if the value is "true". We support non-zero numeric values,
4501 * true, on and yes.
4502 */
4503 if (!long_options[i].has_arg) {
4504 ret = config_parse_value(entry->value);
4505 if (ret <= 0) {
4506 if (ret) {
4507 WARN("Invalid configuration value \"%s\" for option %s",
4508 entry->value, entry->name);
4509 }
4510 /* False, skip boolean config option. */
4511 goto end;
4512 }
4513 }
4514
4515 ret = set_option(long_options[i].val, entry->value, entry->name);
4516 goto end;
4517 }
4518
4519 WARN("Unrecognized option \"%s\" in daemon configuration file.", entry->name);
4520
4521 end:
4522 return ret;
4523 }
4524
4525 /*
4526 * daemon configuration loading and argument parsing
4527 */
4528 static int set_options(int argc, char **argv)
4529 {
4530 int ret = 0, c = 0, option_index = 0;
4531 int orig_optopt = optopt, orig_optind = optind;
4532 char *optstring;
4533 const char *config_path = NULL;
4534
4535 optstring = utils_generate_optstring(long_options,
4536 sizeof(long_options) / sizeof(struct option));
4537 if (!optstring) {
4538 ret = -ENOMEM;
4539 goto end;
4540 }
4541
4542 /* Check for the --config option */
4543 while ((c = getopt_long(argc, argv, optstring, long_options,
4544 &option_index)) != -1) {
4545 if (c == '?') {
4546 ret = -EINVAL;
4547 goto end;
4548 } else if (c != 'f') {
4549 /* if not equal to --config option. */
4550 continue;
4551 }
4552
4553 config_path = utils_expand_path(optarg);
4554 if (!config_path) {
4555 ERR("Failed to resolve path: %s", optarg);
4556 }
4557 }
4558
4559 ret = config_get_section_entries(config_path, config_section_name,
4560 config_entry_handler, NULL);
4561 if (ret) {
4562 if (ret > 0) {
4563 ERR("Invalid configuration option at line %i", ret);
4564 ret = -1;
4565 }
4566 goto end;
4567 }
4568
4569 /* Reset getopt's global state */
4570 optopt = orig_optopt;
4571 optind = orig_optind;
4572 while (1) {
4573 c = getopt_long(argc, argv, optstring, long_options, &option_index);
4574 if (c == -1) {
4575 break;
4576 }
4577
4578 ret = set_option(c, optarg, long_options[option_index].name);
4579 if (ret < 0) {
4580 break;
4581 }
4582 }
4583
4584 end:
4585 free(optstring);
4586 return ret;
4587 }
4588
4589 /*
4590 * Creates the two needed socket by the daemon.
4591 * apps_sock - The communication socket for all UST apps.
4592 * client_sock - The communication of the cli tool (lttng).
4593 */
4594 static int init_daemon_socket(void)
4595 {
4596 int ret = 0;
4597 mode_t old_umask;
4598
4599 old_umask = umask(0);
4600
4601 /* Create client tool unix socket */
4602 client_sock = lttcomm_create_unix_sock(client_unix_sock_path);
4603 if (client_sock < 0) {
4604 ERR("Create unix sock failed: %s", client_unix_sock_path);
4605 ret = -1;
4606 goto end;
4607 }
4608
4609 /* Set the cloexec flag */
4610 ret = utils_set_fd_cloexec(client_sock);
4611 if (ret < 0) {
4612 ERR("Unable to set CLOEXEC flag to the client Unix socket (fd: %d). "
4613 "Continuing but note that the consumer daemon will have a "
4614 "reference to this socket on exec()", client_sock);
4615 }
4616
4617 /* File permission MUST be 660 */
4618 ret = chmod(client_unix_sock_path, S_IRUSR | S_IWUSR | S_IRGRP | S_IWGRP);
4619 if (ret < 0) {
4620 ERR("Set file permissions failed: %s", client_unix_sock_path);
4621 PERROR("chmod");
4622 goto end;
4623 }
4624
4625 /* Create the application unix socket */
4626 apps_sock = lttcomm_create_unix_sock(apps_unix_sock_path);
4627 if (apps_sock < 0) {
4628 ERR("Create unix sock failed: %s", apps_unix_sock_path);
4629 ret = -1;
4630 goto end;
4631 }
4632
4633 /* Set the cloexec flag */
4634 ret = utils_set_fd_cloexec(apps_sock);
4635 if (ret < 0) {
4636 ERR("Unable to set CLOEXEC flag to the app Unix socket (fd: %d). "
4637 "Continuing but note that the consumer daemon will have a "
4638 "reference to this socket on exec()", apps_sock);
4639 }
4640
4641 /* File permission MUST be 666 */
4642 ret = chmod(apps_unix_sock_path,
4643 S_IRUSR | S_IWUSR | S_IRGRP | S_IWGRP | S_IROTH | S_IWOTH);
4644 if (ret < 0) {
4645 ERR("Set file permissions failed: %s", apps_unix_sock_path);
4646 PERROR("chmod");
4647 goto end;
4648 }
4649
4650 DBG3("Session daemon client socket %d and application socket %d created",
4651 client_sock, apps_sock);
4652
4653 end:
4654 umask(old_umask);
4655 return ret;
4656 }
4657
4658 /*
4659 * Check if the global socket is available, and if a daemon is answering at the
4660 * other side. If yes, error is returned.
4661 */
4662 static int check_existing_daemon(void)
4663 {
4664 /* Is there anybody out there ? */
4665 if (lttng_session_daemon_alive()) {
4666 return -EEXIST;
4667 }
4668
4669 return 0;
4670 }
4671
4672 /*
4673 * Set the tracing group gid onto the client socket.
4674 *
4675 * Race window between mkdir and chown is OK because we are going from more
4676 * permissive (root.root) to less permissive (root.tracing).
4677 */
4678 static int set_permissions(char *rundir)
4679 {
4680 int ret;
4681 gid_t gid;
4682
4683 gid = utils_get_group_id(tracing_group_name);
4684
4685 /* Set lttng run dir */
4686 ret = chown(rundir, 0, gid);
4687 if (ret < 0) {
4688 ERR("Unable to set group on %s", rundir);
4689 PERROR("chown");
4690 }
4691
4692 /*
4693 * Ensure all applications and tracing group can search the run
4694 * dir. Allow everyone to read the directory, since it does not
4695 * buy us anything to hide its content.
4696 */
4697 ret = chmod(rundir, S_IRWXU | S_IRGRP | S_IXGRP | S_IROTH | S_IXOTH);
4698 if (ret < 0) {
4699 ERR("Unable to set permissions on %s", rundir);
4700 PERROR("chmod");
4701 }
4702
4703 /* lttng client socket path */
4704 ret = chown(client_unix_sock_path, 0, gid);
4705 if (ret < 0) {
4706 ERR("Unable to set group on %s", client_unix_sock_path);
4707 PERROR("chown");
4708 }
4709
4710 /* kconsumer error socket path */
4711 ret = chown(kconsumer_data.err_unix_sock_path, 0, 0);
4712 if (ret < 0) {
4713 ERR("Unable to set group on %s", kconsumer_data.err_unix_sock_path);
4714 PERROR("chown");
4715 }
4716
4717 /* 64-bit ustconsumer error socket path */
4718 ret = chown(ustconsumer64_data.err_unix_sock_path, 0, 0);
4719 if (ret < 0) {
4720 ERR("Unable to set group on %s", ustconsumer64_data.err_unix_sock_path);
4721 PERROR("chown");
4722 }
4723
4724 /* 32-bit ustconsumer compat32 error socket path */
4725 ret = chown(ustconsumer32_data.err_unix_sock_path, 0, 0);
4726 if (ret < 0) {
4727 ERR("Unable to set group on %s", ustconsumer32_data.err_unix_sock_path);
4728 PERROR("chown");
4729 }
4730
4731 DBG("All permissions are set");
4732
4733 return ret;
4734 }
4735
4736 /*
4737 * Create the lttng run directory needed for all global sockets and pipe.
4738 */
4739 static int create_lttng_rundir(const char *rundir)
4740 {
4741 int ret;
4742
4743 DBG3("Creating LTTng run directory: %s", rundir);
4744
4745 ret = mkdir(rundir, S_IRWXU);
4746 if (ret < 0) {
4747 if (errno != EEXIST) {
4748 ERR("Unable to create %s", rundir);
4749 goto error;
4750 } else {
4751 ret = 0;
4752 }
4753 }
4754
4755 error:
4756 return ret;
4757 }
4758
4759 /*
4760 * Setup sockets and directory needed by the kconsumerd communication with the
4761 * session daemon.
4762 */
4763 static int set_consumer_sockets(struct consumer_data *consumer_data,
4764 const char *rundir)
4765 {
4766 int ret;
4767 char path[PATH_MAX];
4768
4769 switch (consumer_data->type) {
4770 case LTTNG_CONSUMER_KERNEL:
4771 snprintf(path, PATH_MAX, DEFAULT_KCONSUMERD_PATH, rundir);
4772 break;
4773 case LTTNG_CONSUMER64_UST:
4774 snprintf(path, PATH_MAX, DEFAULT_USTCONSUMERD64_PATH, rundir);
4775 break;
4776 case LTTNG_CONSUMER32_UST:
4777 snprintf(path, PATH_MAX, DEFAULT_USTCONSUMERD32_PATH, rundir);
4778 break;
4779 default:
4780 ERR("Consumer type unknown");
4781 ret = -EINVAL;
4782 goto error;
4783 }
4784
4785 DBG2("Creating consumer directory: %s", path);
4786
4787 ret = mkdir(path, S_IRWXU | S_IRGRP | S_IXGRP);
4788 if (ret < 0) {
4789 if (errno != EEXIST) {
4790 PERROR("mkdir");
4791 ERR("Failed to create %s", path);
4792 goto error;
4793 }
4794 ret = -1;
4795 }
4796 if (is_root) {
4797 ret = chown(path, 0, utils_get_group_id(tracing_group_name));
4798 if (ret < 0) {
4799 ERR("Unable to set group on %s", path);
4800 PERROR("chown");
4801 goto error;
4802 }
4803 }
4804
4805 /* Create the kconsumerd error unix socket */
4806 consumer_data->err_sock =
4807 lttcomm_create_unix_sock(consumer_data->err_unix_sock_path);
4808 if (consumer_data->err_sock < 0) {
4809 ERR("Create unix sock failed: %s", consumer_data->err_unix_sock_path);
4810 ret = -1;
4811 goto error;
4812 }
4813
4814 /*
4815 * Set the CLOEXEC flag. Return code is useless because either way, the
4816 * show must go on.
4817 */
4818 ret = utils_set_fd_cloexec(consumer_data->err_sock);
4819 if (ret < 0) {
4820 PERROR("utils_set_fd_cloexec");
4821 /* continue anyway */
4822 }
4823
4824 /* File permission MUST be 660 */
4825 ret = chmod(consumer_data->err_unix_sock_path,
4826 S_IRUSR | S_IWUSR | S_IRGRP | S_IWGRP);
4827 if (ret < 0) {
4828 ERR("Set file permissions failed: %s", consumer_data->err_unix_sock_path);
4829 PERROR("chmod");
4830 goto error;
4831 }
4832
4833 error:
4834 return ret;
4835 }
4836
4837 /*
4838 * Signal handler for the daemon
4839 *
4840 * Simply stop all worker threads, leaving main() return gracefully after
4841 * joining all threads and calling cleanup().
4842 */
4843 static void sighandler(int sig)
4844 {
4845 switch (sig) {
4846 case SIGPIPE:
4847 DBG("SIGPIPE caught");
4848 return;
4849 case SIGINT:
4850 DBG("SIGINT caught");
4851 stop_threads();
4852 break;
4853 case SIGTERM:
4854 DBG("SIGTERM caught");
4855 stop_threads();
4856 break;
4857 case SIGUSR1:
4858 CMM_STORE_SHARED(recv_child_signal, 1);
4859 break;
4860 default:
4861 break;
4862 }
4863 }
4864
4865 /*
4866 * Setup signal handler for :
4867 * SIGINT, SIGTERM, SIGPIPE
4868 */
4869 static int set_signal_handler(void)
4870 {
4871 int ret = 0;
4872 struct sigaction sa;
4873 sigset_t sigset;
4874
4875 if ((ret = sigemptyset(&sigset)) < 0) {
4876 PERROR("sigemptyset");
4877 return ret;
4878 }
4879
4880 sa.sa_handler = sighandler;
4881 sa.sa_mask = sigset;
4882 sa.sa_flags = 0;
4883 if ((ret = sigaction(SIGTERM, &sa, NULL)) < 0) {
4884 PERROR("sigaction");
4885 return ret;
4886 }
4887
4888 if ((ret = sigaction(SIGINT, &sa, NULL)) < 0) {
4889 PERROR("sigaction");
4890 return ret;
4891 }
4892
4893 if ((ret = sigaction(SIGPIPE, &sa, NULL)) < 0) {
4894 PERROR("sigaction");
4895 return ret;
4896 }
4897
4898 if ((ret = sigaction(SIGUSR1, &sa, NULL)) < 0) {
4899 PERROR("sigaction");
4900 return ret;
4901 }
4902
4903 DBG("Signal handler set for SIGTERM, SIGUSR1, SIGPIPE and SIGINT");
4904
4905 return ret;
4906 }
4907
4908 /*
4909 * Set open files limit to unlimited. This daemon can open a large number of
4910 * file descriptors in order to consumer multiple kernel traces.
4911 */
4912 static void set_ulimit(void)
4913 {
4914 int ret;
4915 struct rlimit lim;
4916
4917 /* The kernel does not allowed an infinite limit for open files */
4918 lim.rlim_cur = 65535;
4919 lim.rlim_max = 65535;
4920
4921 ret = setrlimit(RLIMIT_NOFILE, &lim);
4922 if (ret < 0) {
4923 PERROR("failed to set open files limit");
4924 }
4925 }
4926
4927 /*
4928 * Write pidfile using the rundir and opt_pidfile.
4929 */
4930 static void write_pidfile(void)
4931 {
4932 int ret;
4933 char pidfile_path[PATH_MAX];
4934
4935 assert(rundir);
4936
4937 if (opt_pidfile) {
4938 strncpy(pidfile_path, opt_pidfile, sizeof(pidfile_path));
4939 } else {
4940 /* Build pidfile path from rundir and opt_pidfile. */
4941 ret = snprintf(pidfile_path, sizeof(pidfile_path), "%s/"
4942 DEFAULT_LTTNG_SESSIOND_PIDFILE, rundir);
4943 if (ret < 0) {
4944 PERROR("snprintf pidfile path");
4945 goto error;
4946 }
4947 }
4948
4949 /*
4950 * Create pid file in rundir. Return value is of no importance. The
4951 * execution will continue even though we are not able to write the file.
4952 */
4953 (void) utils_create_pid_file(getpid(), pidfile_path);
4954
4955 error:
4956 return;
4957 }
4958
4959 /*
4960 * Create lockfile using the rundir and return its fd.
4961 */
4962 static int create_lockfile(void)
4963 {
4964 int ret;
4965 char lockfile_path[PATH_MAX];
4966
4967 ret = generate_lock_file_path(lockfile_path, sizeof(lockfile_path));
4968 if (ret < 0) {
4969 goto error;
4970 }
4971
4972 ret = utils_create_lock_file(lockfile_path);
4973 error:
4974 return ret;
4975 }
4976
4977 /*
4978 * Write JUL TCP port using the rundir.
4979 */
4980 static void write_julport(void)
4981 {
4982 int ret;
4983 char path[PATH_MAX];
4984
4985 assert(rundir);
4986
4987 ret = snprintf(path, sizeof(path), "%s/"
4988 DEFAULT_LTTNG_SESSIOND_JULPORT_FILE, rundir);
4989 if (ret < 0) {
4990 PERROR("snprintf julport path");
4991 goto error;
4992 }
4993
4994 /*
4995 * Create TCP JUL port file in rundir. Return value is of no importance.
4996 * The execution will continue even though we are not able to write the
4997 * file.
4998 */
4999 (void) utils_create_pid_file(jul_tcp_port, path);
5000
5001 error:
5002 return;
5003 }
5004
5005 /*
5006 * Start the load session thread and dettach from it so the main thread can
5007 * continue. This does not return a value since whatever the outcome, the main
5008 * thread will continue.
5009 */
5010 static void start_load_session_thread(void)
5011 {
5012 int ret;
5013
5014 /* Create session loading thread. */
5015 ret = pthread_create(&load_session_thread, NULL, thread_load_session,
5016 load_info);
5017 if (ret != 0) {
5018 PERROR("pthread_create load_session_thread");
5019 goto error_create;
5020 }
5021
5022 ret = pthread_detach(load_session_thread);
5023 if (ret != 0) {
5024 PERROR("pthread_detach load_session_thread");
5025 }
5026
5027 /* Everything went well so don't cleanup anything. */
5028
5029 error_create:
5030 /* The cleanup() function will destroy the load_info data. */
5031 return;
5032 }
5033
5034 /*
5035 * main
5036 */
5037 int main(int argc, char **argv)
5038 {
5039 int ret = 0;
5040 void *status;
5041 const char *home_path, *env_app_timeout;
5042
5043 init_kernel_workarounds();
5044
5045 rcu_register_thread();
5046
5047 if ((ret = set_signal_handler()) < 0) {
5048 goto error;
5049 }
5050
5051 setup_consumerd_path();
5052
5053 page_size = sysconf(_SC_PAGESIZE);
5054 if (page_size < 0) {
5055 PERROR("sysconf _SC_PAGESIZE");
5056 page_size = LONG_MAX;
5057 WARN("Fallback page size to %ld", page_size);
5058 }
5059
5060 /* Parse arguments and load the daemon configuration file */
5061 progname = argv[0];
5062 if ((ret = set_options(argc, argv)) < 0) {
5063 goto error;
5064 }
5065
5066 /* Daemonize */
5067 if (opt_daemon || opt_background) {
5068 int i;
5069
5070 ret = lttng_daemonize(&child_ppid, &recv_child_signal,
5071 !opt_background);
5072 if (ret < 0) {
5073 goto error;
5074 }
5075
5076 /*
5077 * We are in the child. Make sure all other file descriptors are
5078 * closed, in case we are called with more opened file descriptors than
5079 * the standard ones.
5080 */
5081 for (i = 3; i < sysconf(_SC_OPEN_MAX); i++) {
5082 (void) close(i);
5083 }
5084 }
5085
5086 /* Create thread quit pipe */
5087 if ((ret = init_thread_quit_pipe()) < 0) {
5088 goto error;
5089 }
5090
5091 /* Check if daemon is UID = 0 */
5092 is_root = !getuid();
5093
5094 if (is_root) {
5095 rundir = strdup(DEFAULT_LTTNG_RUNDIR);
5096 if (!rundir) {
5097 ret = -ENOMEM;
5098 goto error;
5099 }
5100
5101 /* Create global run dir with root access */
5102 ret = create_lttng_rundir(rundir);
5103 if (ret < 0) {
5104 goto error;
5105 }
5106
5107 if (strlen(apps_unix_sock_path) == 0) {
5108 snprintf(apps_unix_sock_path, PATH_MAX,
5109 DEFAULT_GLOBAL_APPS_UNIX_SOCK);
5110 }
5111
5112 if (strlen(client_unix_sock_path) == 0) {
5113 snprintf(client_unix_sock_path, PATH_MAX,
5114 DEFAULT_GLOBAL_CLIENT_UNIX_SOCK);
5115 }
5116
5117 /* Set global SHM for ust */
5118 if (strlen(wait_shm_path) == 0) {
5119 snprintf(wait_shm_path, PATH_MAX,
5120 DEFAULT_GLOBAL_APPS_WAIT_SHM_PATH);
5121 }
5122
5123 if (strlen(health_unix_sock_path) == 0) {
5124 snprintf(health_unix_sock_path, sizeof(health_unix_sock_path),
5125 DEFAULT_GLOBAL_HEALTH_UNIX_SOCK);
5126 }
5127
5128 /* Setup kernel consumerd path */
5129 snprintf(kconsumer_data.err_unix_sock_path, PATH_MAX,
5130 DEFAULT_KCONSUMERD_ERR_SOCK_PATH, rundir);
5131 snprintf(kconsumer_data.cmd_unix_sock_path, PATH_MAX,
5132 DEFAULT_KCONSUMERD_CMD_SOCK_PATH, rundir);
5133
5134 DBG2("Kernel consumer err path: %s",
5135 kconsumer_data.err_unix_sock_path);
5136 DBG2("Kernel consumer cmd path: %s",
5137 kconsumer_data.cmd_unix_sock_path);
5138 } else {
5139 home_path = utils_get_home_dir();
5140 if (home_path == NULL) {
5141 /* TODO: Add --socket PATH option */
5142 ERR("Can't get HOME directory for sockets creation.");
5143 ret = -EPERM;
5144 goto error;
5145 }
5146
5147 /*
5148 * Create rundir from home path. This will create something like
5149 * $HOME/.lttng
5150 */
5151 ret = asprintf(&rundir, DEFAULT_LTTNG_HOME_RUNDIR, home_path);
5152 if (ret < 0) {
5153 ret = -ENOMEM;
5154 goto error;
5155 }
5156
5157 ret = create_lttng_rundir(rundir);
5158 if (ret < 0) {
5159 goto error;
5160 }
5161
5162 if (strlen(apps_unix_sock_path) == 0) {
5163 snprintf(apps_unix_sock_path, PATH_MAX,
5164 DEFAULT_HOME_APPS_UNIX_SOCK, home_path);
5165 }
5166
5167 /* Set the cli tool unix socket path */
5168 if (strlen(client_unix_sock_path) == 0) {
5169 snprintf(client_unix_sock_path, PATH_MAX,
5170 DEFAULT_HOME_CLIENT_UNIX_SOCK, home_path);
5171 }
5172
5173 /* Set global SHM for ust */
5174 if (strlen(wait_shm_path) == 0) {
5175 snprintf(wait_shm_path, PATH_MAX,
5176 DEFAULT_HOME_APPS_WAIT_SHM_PATH, getuid());
5177 }
5178
5179 /* Set health check Unix path */
5180 if (strlen(health_unix_sock_path) == 0) {
5181 snprintf(health_unix_sock_path, sizeof(health_unix_sock_path),
5182 DEFAULT_HOME_HEALTH_UNIX_SOCK, home_path);
5183 }
5184 }
5185
5186 lockfile_fd = create_lockfile();
5187 if (lockfile_fd < 0) {
5188 goto error;
5189 }
5190
5191 /* Set consumer initial state */
5192 kernel_consumerd_state = CONSUMER_STOPPED;
5193 ust_consumerd_state = CONSUMER_STOPPED;
5194
5195 DBG("Client socket path %s", client_unix_sock_path);
5196 DBG("Application socket path %s", apps_unix_sock_path);
5197 DBG("Application wait path %s", wait_shm_path);
5198 DBG("LTTng run directory path: %s", rundir);
5199
5200 /* 32 bits consumerd path setup */
5201 snprintf(ustconsumer32_data.err_unix_sock_path, PATH_MAX,
5202 DEFAULT_USTCONSUMERD32_ERR_SOCK_PATH, rundir);
5203 snprintf(ustconsumer32_data.cmd_unix_sock_path, PATH_MAX,
5204 DEFAULT_USTCONSUMERD32_CMD_SOCK_PATH, rundir);
5205
5206 DBG2("UST consumer 32 bits err path: %s",
5207 ustconsumer32_data.err_unix_sock_path);
5208 DBG2("UST consumer 32 bits cmd path: %s",
5209 ustconsumer32_data.cmd_unix_sock_path);
5210
5211 /* 64 bits consumerd path setup */
5212 snprintf(ustconsumer64_data.err_unix_sock_path, PATH_MAX,
5213 DEFAULT_USTCONSUMERD64_ERR_SOCK_PATH, rundir);
5214 snprintf(ustconsumer64_data.cmd_unix_sock_path, PATH_MAX,
5215 DEFAULT_USTCONSUMERD64_CMD_SOCK_PATH, rundir);
5216
5217 DBG2("UST consumer 64 bits err path: %s",
5218 ustconsumer64_data.err_unix_sock_path);
5219 DBG2("UST consumer 64 bits cmd path: %s",
5220 ustconsumer64_data.cmd_unix_sock_path);
5221
5222 /*
5223 * See if daemon already exist.
5224 */
5225 if ((ret = check_existing_daemon()) < 0) {
5226 ERR("Already running daemon.\n");
5227 /*
5228 * We do not goto exit because we must not cleanup()
5229 * because a daemon is already running.
5230 */
5231 goto error;
5232 }
5233
5234 /*
5235 * Init UST app hash table. Alloc hash table before this point since
5236 * cleanup() can get called after that point.
5237 */
5238 ust_app_ht_alloc();
5239
5240 /* Initialize JUL domain subsystem. */
5241 if ((ret = jul_init()) < 0) {
5242 /* ENOMEM at this point. */
5243 goto error;
5244 }
5245
5246 /* After this point, we can safely call cleanup() with "goto exit" */
5247
5248 /*
5249 * These actions must be executed as root. We do that *after* setting up
5250 * the sockets path because we MUST make the check for another daemon using
5251 * those paths *before* trying to set the kernel consumer sockets and init
5252 * kernel tracer.
5253 */
5254 if (is_root) {
5255 ret = set_consumer_sockets(&kconsumer_data, rundir);
5256 if (ret < 0) {
5257 goto exit;
5258 }
5259
5260 /* Setup kernel tracer */
5261 if (!opt_no_kernel) {
5262 init_kernel_tracer();
5263 }
5264
5265 /* Set ulimit for open files */
5266 set_ulimit();
5267 }
5268 /* init lttng_fd tracking must be done after set_ulimit. */
5269 lttng_fd_init();
5270
5271 ret = set_consumer_sockets(&ustconsumer64_data, rundir);
5272 if (ret < 0) {
5273 goto exit;
5274 }
5275
5276 ret = set_consumer_sockets(&ustconsumer32_data, rundir);
5277 if (ret < 0) {
5278 goto exit;
5279 }
5280
5281 /* Setup the needed unix socket */
5282 if ((ret = init_daemon_socket()) < 0) {
5283 goto exit;
5284 }
5285
5286 /* Set credentials to socket */
5287 if (is_root && ((ret = set_permissions(rundir)) < 0)) {
5288 goto exit;
5289 }
5290
5291 /* Get parent pid if -S, --sig-parent is specified. */
5292 if (opt_sig_parent) {
5293 ppid = getppid();
5294 }
5295
5296 /* Setup the kernel pipe for waking up the kernel thread */
5297 if (is_root && !opt_no_kernel) {
5298 if ((ret = utils_create_pipe_cloexec(kernel_poll_pipe)) < 0) {
5299 goto exit;
5300 }
5301 }
5302
5303 /* Setup the thread ht_cleanup communication pipe. */
5304 if (utils_create_pipe_cloexec(ht_cleanup_pipe) < 0) {
5305 goto exit;
5306 }
5307
5308 /* Setup the thread apps communication pipe. */
5309 if ((ret = utils_create_pipe_cloexec(apps_cmd_pipe)) < 0) {
5310 goto exit;
5311 }
5312
5313 /* Setup the thread apps notify communication pipe. */
5314 if (utils_create_pipe_cloexec(apps_cmd_notify_pipe) < 0) {
5315 goto exit;
5316 }
5317
5318 /* Initialize global buffer per UID and PID registry. */
5319 buffer_reg_init_uid_registry();
5320 buffer_reg_init_pid_registry();
5321
5322 /* Init UST command queue. */
5323 cds_wfq_init(&ust_cmd_queue.queue);
5324
5325 /*
5326 * Get session list pointer. This pointer MUST NOT be free(). This list is
5327 * statically declared in session.c
5328 */
5329 session_list_ptr = session_get_list();
5330
5331 /* Set up max poll set size */
5332 lttng_poll_set_max_size();
5333
5334 cmd_init();
5335
5336 /* Check for the application socket timeout env variable. */
5337 env_app_timeout = getenv(DEFAULT_APP_SOCKET_TIMEOUT_ENV);
5338 if (env_app_timeout) {
5339 app_socket_timeout = atoi(env_app_timeout);
5340 } else {
5341 app_socket_timeout = DEFAULT_APP_SOCKET_RW_TIMEOUT;
5342 }
5343
5344 write_pidfile();
5345 write_julport();
5346
5347 /* Initialize communication library */
5348 lttcomm_init();
5349 /* This is to get the TCP timeout value. */
5350 lttcomm_inet_init();
5351
5352 if (load_session_init_data(&load_info) < 0) {
5353 goto exit;
5354 }
5355 load_info->path = opt_load_session_path;
5356
5357 /*
5358 * Initialize the health check subsystem. This call should set the
5359 * appropriate time values.
5360 */
5361 health_sessiond = health_app_create(NR_HEALTH_SESSIOND_TYPES);
5362 if (!health_sessiond) {
5363 PERROR("health_app_create error");
5364 goto exit_health_sessiond_cleanup;
5365 }
5366
5367 /* Create thread to clean up RCU hash tables */
5368 ret = pthread_create(&ht_cleanup_thread, NULL,
5369 thread_ht_cleanup, (void *) NULL);
5370 if (ret != 0) {
5371 PERROR("pthread_create ht_cleanup");
5372 goto exit_ht_cleanup;
5373 }
5374
5375 /* Create health-check thread */
5376 ret = pthread_create(&health_thread, NULL,
5377 thread_manage_health, (void *) NULL);
5378 if (ret != 0) {
5379 PERROR("pthread_create health");
5380 goto exit_health;
5381 }
5382
5383 /* Create thread to manage the client socket */
5384 ret = pthread_create(&client_thread, NULL,
5385 thread_manage_clients, (void *) NULL);
5386 if (ret != 0) {
5387 PERROR("pthread_create clients");
5388 goto exit_client;
5389 }
5390
5391 /* Create thread to dispatch registration */
5392 ret = pthread_create(&dispatch_thread, NULL,
5393 thread_dispatch_ust_registration, (void *) NULL);
5394 if (ret != 0) {
5395 PERROR("pthread_create dispatch");
5396 goto exit_dispatch;
5397 }
5398
5399 /* Create thread to manage application registration. */
5400 ret = pthread_create(&reg_apps_thread, NULL,
5401 thread_registration_apps, (void *) NULL);
5402 if (ret != 0) {
5403 PERROR("pthread_create registration");
5404 goto exit_reg_apps;
5405 }
5406
5407 /* Create thread to manage application socket */
5408 ret = pthread_create(&apps_thread, NULL,
5409 thread_manage_apps, (void *) NULL);
5410 if (ret != 0) {
5411 PERROR("pthread_create apps");
5412 goto exit_apps;
5413 }
5414
5415 /* Create thread to manage application notify socket */
5416 ret = pthread_create(&apps_notify_thread, NULL,
5417 ust_thread_manage_notify, (void *) NULL);
5418 if (ret != 0) {
5419 PERROR("pthread_create notify");
5420 goto exit_apps_notify;
5421 }
5422
5423 /* Create JUL registration thread. */
5424 ret = pthread_create(&jul_reg_thread, NULL,
5425 jul_thread_manage_registration, (void *) NULL);
5426 if (ret != 0) {
5427 PERROR("pthread_create JUL");
5428 goto exit_jul_reg;
5429 }
5430
5431 /* Don't start this thread if kernel tracing is not requested nor root */
5432 if (is_root && !opt_no_kernel) {
5433 /* Create kernel thread to manage kernel event */
5434 ret = pthread_create(&kernel_thread, NULL,
5435 thread_manage_kernel, (void *) NULL);
5436 if (ret != 0) {
5437 PERROR("pthread_create kernel");
5438 goto exit_kernel;
5439 }
5440 }
5441
5442 /* Load possible session(s). */
5443 start_load_session_thread();
5444
5445 if (is_root && !opt_no_kernel) {
5446 ret = pthread_join(kernel_thread, &status);
5447 if (ret != 0) {
5448 PERROR("pthread_join");
5449 goto error; /* join error, exit without cleanup */
5450 }
5451 }
5452
5453 exit_kernel:
5454 ret = pthread_join(jul_reg_thread, &status);
5455 if (ret != 0) {
5456 PERROR("pthread_join JUL");
5457 goto error; /* join error, exit without cleanup */
5458 }
5459
5460 exit_jul_reg:
5461 ret = pthread_join(apps_notify_thread, &status);
5462 if (ret != 0) {
5463 PERROR("pthread_join apps notify");
5464 goto error; /* join error, exit without cleanup */
5465 }
5466
5467 exit_apps_notify:
5468 ret = pthread_join(apps_thread, &status);
5469 if (ret != 0) {
5470 PERROR("pthread_join apps");
5471 goto error; /* join error, exit without cleanup */
5472 }
5473
5474
5475 exit_apps:
5476 ret = pthread_join(reg_apps_thread, &status);
5477 if (ret != 0) {
5478 PERROR("pthread_join");
5479 goto error; /* join error, exit without cleanup */
5480 }
5481
5482 exit_reg_apps:
5483 ret = pthread_join(dispatch_thread, &status);
5484 if (ret != 0) {
5485 PERROR("pthread_join");
5486 goto error; /* join error, exit without cleanup */
5487 }
5488
5489 exit_dispatch:
5490 ret = pthread_join(client_thread, &status);
5491 if (ret != 0) {
5492 PERROR("pthread_join");
5493 goto error; /* join error, exit without cleanup */
5494 }
5495
5496 ret = join_consumer_thread(&kconsumer_data);
5497 if (ret != 0) {
5498 PERROR("join_consumer");
5499 goto error; /* join error, exit without cleanup */
5500 }
5501
5502 ret = join_consumer_thread(&ustconsumer32_data);
5503 if (ret != 0) {
5504 PERROR("join_consumer ust32");
5505 goto error; /* join error, exit without cleanup */
5506 }
5507
5508 ret = join_consumer_thread(&ustconsumer64_data);
5509 if (ret != 0) {
5510 PERROR("join_consumer ust64");
5511 goto error; /* join error, exit without cleanup */
5512 }
5513
5514 exit_client:
5515 ret = pthread_join(health_thread, &status);
5516 if (ret != 0) {
5517 PERROR("pthread_join health thread");
5518 goto error; /* join error, exit without cleanup */
5519 }
5520
5521 exit_health:
5522 ret = pthread_join(ht_cleanup_thread, &status);
5523 if (ret != 0) {
5524 PERROR("pthread_join ht cleanup thread");
5525 goto error; /* join error, exit without cleanup */
5526 }
5527 exit_ht_cleanup:
5528 health_app_destroy(health_sessiond);
5529 exit_health_sessiond_cleanup:
5530 exit:
5531 /*
5532 * cleanup() is called when no other thread is running.
5533 */
5534 rcu_thread_online();
5535 cleanup();
5536 rcu_thread_offline();
5537 rcu_unregister_thread();
5538 if (!ret) {
5539 exit(EXIT_SUCCESS);
5540 }
5541 error:
5542 exit(EXIT_FAILURE);
5543 }
This page took 0.20792 seconds and 4 git commands to generate.