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