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