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