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