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