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