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