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