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