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