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