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