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