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