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