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