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