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