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