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