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