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