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