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