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