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