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