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