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