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