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