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