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