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