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