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