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