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