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