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