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