lttng-relayd.h: review update
[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>
8c0faa1d 24#include <semaphore.h>
fac6795d
DG
25#include <signal.h>
26#include <stdio.h>
27#include <stdlib.h>
28#include <string.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>
0ba98ebc 41#include <common/compat/poll.h>
d27c42b8 42#include <common/compat/socket.h>
db758600
DG
43#include <common/defaults.h>
44#include <common/kernel-consumer/kernel-consumer.h>
50c8f484 45#include <common/futex.h>
00e2e675 46#include <common/relayd/relayd.h>
81b86775 47#include <common/utils.h>
fac6795d 48
10a8a223 49#include "lttng-sessiond.h"
54d01ffb 50#include "channel.h"
00e2e675 51#include "consumer.h"
099e26bd 52#include "context.h"
54d01ffb 53#include "event.h"
4771f025 54#include "kernel.h"
f1e16794 55#include "kernel-consumer.h"
096102bd 56#include "modprobe.h"
0fdd1e2c 57#include "shm.h"
1e307fab 58#include "ust-ctl.h"
00e2e675 59#include "ust-consumer.h"
8e68d1c8 60#include "utils.h"
4063050c 61#include "fd-limit.h"
53a80697 62#include "filter.h"
44a5e5eb 63#include "health.h"
fac6795d 64
ebaeda94
MD
65#define CONSUMERD_FILE "lttng-consumerd"
66
75462a81 67/* Const values */
686204ab 68const char default_home_dir[] = DEFAULT_HOME_DIR;
bbccc3d2 69const char default_tracing_group[] = DEFAULT_TRACING_GROUP;
686204ab
MD
70const char default_ust_sock_dir[] = DEFAULT_UST_SOCK_DIR;
71const char default_global_apps_pipe[] = DEFAULT_GLOBAL_APPS_PIPE;
72
fac6795d
DG
73const char *progname;
74const char *opt_tracing_group;
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
MD
82
83/* Consumer daemon specific control data */
84static struct consumer_data kconsumer_data = {
85 .type = LTTNG_CONSUMER_KERNEL,
60922cb0
DG
86 .err_unix_sock_path = DEFAULT_KCONSUMERD_ERR_SOCK_PATH,
87 .cmd_unix_sock_path = DEFAULT_KCONSUMERD_CMD_SOCK_PATH,
03550b58
MD
88 .err_sock = -1,
89 .cmd_sock = -1,
3bd1e081 90};
7753dea8
MD
91static struct consumer_data ustconsumer64_data = {
92 .type = LTTNG_CONSUMER64_UST,
60922cb0
DG
93 .err_unix_sock_path = DEFAULT_USTCONSUMERD64_ERR_SOCK_PATH,
94 .cmd_unix_sock_path = DEFAULT_USTCONSUMERD64_CMD_SOCK_PATH,
03550b58
MD
95 .err_sock = -1,
96 .cmd_sock = -1,
7753dea8
MD
97};
98static struct consumer_data ustconsumer32_data = {
99 .type = LTTNG_CONSUMER32_UST,
60922cb0
DG
100 .err_unix_sock_path = DEFAULT_USTCONSUMERD32_ERR_SOCK_PATH,
101 .cmd_unix_sock_path = DEFAULT_USTCONSUMERD32_CMD_SOCK_PATH,
03550b58
MD
102 .err_sock = -1,
103 .cmd_sock = -1,
3bd1e081
MD
104};
105
099e26bd 106static int dispatch_thread_exit;
fac6795d 107
54d01ffb
DG
108/* Global application Unix socket path */
109static char apps_unix_sock_path[PATH_MAX];
110/* Global client Unix socket path */
111static char client_unix_sock_path[PATH_MAX];
54d01ffb
DG
112/* global wait shm path for UST */
113static char wait_shm_path[PATH_MAX];
44a5e5eb
DG
114/* Global health check unix path */
115static char health_unix_sock_path[PATH_MAX];
fac6795d 116
1d4b027a 117/* Sockets and FDs */
a4b35e07
MD
118static int client_sock = -1;
119static int apps_sock = -1;
120static int kernel_tracer_fd = -1;
76d7553f 121static int kernel_poll_pipe[2] = { -1, -1 };
1d4b027a 122
273ea72c
DG
123/*
124 * Quit pipe for all threads. This permits a single cancellation point
125 * for all threads when receiving an event on the pipe.
126 */
76d7553f 127static int thread_quit_pipe[2] = { -1, -1 };
273ea72c 128
099e26bd
DG
129/*
130 * This pipe is used to inform the thread managing application communication
131 * that a command is queued and ready to be processed.
132 */
76d7553f 133static int apps_cmd_pipe[2] = { -1, -1 };
099e26bd 134
1d4b027a 135/* Pthread, Mutexes and Semaphores */
1d4b027a 136static pthread_t apps_thread;
099e26bd 137static pthread_t reg_apps_thread;
1d4b027a 138static pthread_t client_thread;
7a485870 139static pthread_t kernel_thread;
099e26bd 140static pthread_t dispatch_thread;
44a5e5eb 141static pthread_t health_thread;
5eb91c98 142
099e26bd
DG
143/*
144 * UST registration command queue. This queue is tied with a futex and uses a N
145 * wakers / 1 waiter implemented and detailed in futex.c/.h
146 *
147 * The thread_manage_apps and thread_dispatch_ust_registration interact with
148 * this queue and the wait/wake scheme.
149 */
150static struct ust_cmd_queue ust_cmd_queue;
151
b5541356
DG
152/*
153 * Pointer initialized before thread creation.
154 *
155 * This points to the tracing session list containing the session count and a
156 * mutex lock. The lock MUST be taken if you iterate over the list. The lock
157 * MUST NOT be taken if you call a public function in session.c.
04ea676f 158 *
d063d709 159 * The lock is nested inside the structure: session_list_ptr->lock. Please use
54d01ffb 160 * session_lock_list and session_unlock_list for lock acquisition.
b5541356
DG
161 */
162static struct ltt_session_list *session_list_ptr;
163
7753dea8
MD
164int ust_consumerd64_fd = -1;
165int ust_consumerd32_fd = -1;
166
fb6f1fa2
YB
167static const char *consumerd32_bin = CONFIG_CONSUMERD32_BIN;
168static const char *consumerd64_bin = CONFIG_CONSUMERD64_BIN;
169static const char *consumerd32_libdir = CONFIG_CONSUMERD32_LIBDIR;
170static const char *consumerd64_libdir = CONFIG_CONSUMERD64_LIBDIR;
fb09408a 171
5c827ce0
DG
172/*
173 * Consumer daemon state which is changed when spawning it, killing it or in
174 * case of a fatal error.
175 */
176enum consumerd_state {
177 CONSUMER_STARTED = 1,
178 CONSUMER_STOPPED = 2,
179 CONSUMER_ERROR = 3,
180};
181
182/*
183 * This consumer daemon state is used to validate if a client command will be
184 * able to reach the consumer. If not, the client is informed. For instance,
185 * doing a "lttng start" when the consumer state is set to ERROR will return an
186 * error to the client.
187 *
188 * The following example shows a possible race condition of this scheme:
189 *
190 * consumer thread error happens
191 * client cmd arrives
192 * client cmd checks state -> still OK
193 * consumer thread exit, sets error
194 * client cmd try to talk to consumer
195 * ...
196 *
197 * However, since the consumer is a different daemon, we have no way of making
198 * sure the command will reach it safely even with this state flag. This is why
199 * we consider that up to the state validation during command processing, the
200 * command is safe. After that, we can not guarantee the correctness of the
201 * client request vis-a-vis the consumer.
202 */
203static enum consumerd_state ust_consumerd_state;
204static enum consumerd_state kernel_consumerd_state;
205
00e2e675
DG
206/*
207 * Used to keep a unique index for each relayd socket created where this value
208 * is associated with streams on the consumer so it can match the right relayd
209 * to send to.
210 *
211 * This value should be incremented atomically for safety purposes and future
212 * possible concurrent access.
213 */
214static unsigned int relayd_net_seq_idx;
215
44a5e5eb
DG
216/* Used for the health monitoring of the session daemon. See health.h */
217struct health_state health_thread_cmd;
218struct health_state health_thread_app_reg;
219struct health_state health_thread_kernel;
220
fb09408a 221static
7753dea8 222void setup_consumerd_path(void)
fb09408a 223{
fc7a59ce 224 const char *bin, *libdir;
fb09408a 225
7753dea8
MD
226 /*
227 * Allow INSTALL_BIN_PATH to be used as a target path for the
ebaeda94
MD
228 * native architecture size consumer if CONFIG_CONSUMER*_PATH
229 * has not been defined.
7753dea8 230 */
ebaeda94 231#if (CAA_BITS_PER_LONG == 32)
fc7a59ce
AM
232 if (!consumerd32_bin[0]) {
233 consumerd32_bin = INSTALL_BIN_PATH "/" CONSUMERD_FILE;
ebaeda94
MD
234 }
235 if (!consumerd32_libdir[0]) {
236 consumerd32_libdir = INSTALL_LIB_PATH;
237 }
238#elif (CAA_BITS_PER_LONG == 64)
fc7a59ce
AM
239 if (!consumerd64_bin[0]) {
240 consumerd64_bin = INSTALL_BIN_PATH "/" CONSUMERD_FILE;
7753dea8 241 }
ebaeda94
MD
242 if (!consumerd64_libdir[0]) {
243 consumerd64_libdir = INSTALL_LIB_PATH;
7753dea8
MD
244 }
245#else
246#error "Unknown bitness"
247#endif
248
fb09408a
MD
249 /*
250 * runtime env. var. overrides the build default.
251 */
fc7a59ce
AM
252 bin = getenv("LTTNG_CONSUMERD32_BIN");
253 if (bin) {
254 consumerd32_bin = bin;
7753dea8 255 }
fc7a59ce
AM
256 bin = getenv("LTTNG_CONSUMERD64_BIN");
257 if (bin) {
258 consumerd64_bin = bin;
ebaeda94 259 }
72f579ee 260 libdir = getenv("LTTNG_CONSUMERD32_LIBDIR");
ebaeda94
MD
261 if (libdir) {
262 consumerd32_libdir = libdir;
263 }
72f579ee 264 libdir = getenv("LTTNG_CONSUMERD64_LIBDIR");
ebaeda94
MD
265 if (libdir) {
266 consumerd64_libdir = libdir;
fb09408a
MD
267 }
268}
269
5eb91c98
DG
270/*
271 * Create a poll set with O_CLOEXEC and add the thread quit pipe to the set.
272 */
273static int create_thread_poll_set(struct lttng_poll_event *events,
274 unsigned int size)
275{
276 int ret;
277
278 if (events == NULL || size == 0) {
279 ret = -1;
280 goto error;
281 }
282
283 ret = lttng_poll_create(events, size, LTTNG_CLOEXEC);
284 if (ret < 0) {
285 goto error;
286 }
287
288 /* Add quit pipe */
289 ret = lttng_poll_add(events, thread_quit_pipe[0], LPOLLIN);
290 if (ret < 0) {
291 goto error;
292 }
293
294 return 0;
295
296error:
297 return ret;
298}
299
300/*
301 * Check if the thread quit pipe was triggered.
302 *
303 * Return 1 if it was triggered else 0;
304 */
305static int check_thread_quit_pipe(int fd, uint32_t events)
306{
307 if (fd == thread_quit_pipe[0] && (events & LPOLLIN)) {
308 return 1;
309 }
310
311 return 0;
312}
313
0fdd1e2c
DG
314/*
315 * Return group ID of the tracing group or -1 if not found.
316 */
996b65c8
MD
317static gid_t allowed_group(void)
318{
319 struct group *grp;
320
274e143b
MD
321 if (opt_tracing_group) {
322 grp = getgrnam(opt_tracing_group);
323 } else {
324 grp = getgrnam(default_tracing_group);
325 }
996b65c8
MD
326 if (!grp) {
327 return -1;
328 } else {
329 return grp->gr_gid;
330 }
331}
332
273ea72c 333/*
5eb91c98 334 * Init thread quit pipe.
273ea72c
DG
335 *
336 * Return -1 on error or 0 if all pipes are created.
337 */
338static int init_thread_quit_pipe(void)
339{
730389d9 340 int ret, i;
273ea72c 341
730389d9 342 ret = pipe(thread_quit_pipe);
273ea72c 343 if (ret < 0) {
730389d9 344 PERROR("thread quit pipe");
273ea72c
DG
345 goto error;
346 }
347
730389d9
DG
348 for (i = 0; i < 2; i++) {
349 ret = fcntl(thread_quit_pipe[i], F_SETFD, FD_CLOEXEC);
350 if (ret < 0) {
351 PERROR("fcntl");
352 goto error;
353 }
354 }
355
273ea72c
DG
356error:
357 return ret;
358}
359
fac6795d 360/*
d063d709
DG
361 * Complete teardown of a kernel session. This free all data structure related
362 * to a kernel session and update counter.
fac6795d 363 */
1d4b027a 364static void teardown_kernel_session(struct ltt_session *session)
fac6795d 365{
8f7a84dd 366 if (!session->kernel_session) {
99bab54f 367 DBG3("No kernel session when tearing down session");
84ea9c99 368 return;
8f7a84dd
DG
369 }
370
84ea9c99 371 DBG("Tearing down kernel session");
d9800920 372
84ea9c99
MD
373 /*
374 * If a custom kernel consumer was registered, close the socket before
375 * tearing down the complete kernel session structure
376 */
03550b58
MD
377 if (kconsumer_data.cmd_sock >= 0 &&
378 session->kernel_session->consumer_fd != kconsumer_data.cmd_sock) {
84ea9c99 379 lttcomm_close_unix_sock(session->kernel_session->consumer_fd);
fac6795d 380 }
84ea9c99
MD
381
382 trace_kernel_destroy_session(session->kernel_session);
fac6795d
DG
383}
384
f6a9efaa
DG
385/*
386 * Complete teardown of all UST sessions. This will free everything on his path
387 * and destroy the core essence of all ust sessions :)
388 */
389static void teardown_ust_session(struct ltt_session *session)
390{
84cd17c6
MD
391 int ret;
392
8f7a84dd 393 if (!session->ust_session) {
99bab54f 394 DBG3("No UST session when tearing down session");
f470a390 395 return;
8f7a84dd
DG
396 }
397
84ea9c99 398 DBG("Tearing down UST session(s)");
8f7a84dd 399
84cd17c6
MD
400 ret = ust_app_destroy_trace_all(session->ust_session);
401 if (ret) {
402 ERR("Error in ust_app_destroy_trace_all");
403 }
8f7a84dd 404
f6a9efaa
DG
405 trace_ust_destroy_session(session->ust_session);
406}
407
099e26bd
DG
408/*
409 * Stop all threads by closing the thread quit pipe.
410 */
cf3af59e
MD
411static void stop_threads(void)
412{
5eb91c98
DG
413 int ret;
414
cf3af59e
MD
415 /* Stopping all threads */
416 DBG("Terminating all threads");
54d01ffb 417 ret = notify_thread_pipe(thread_quit_pipe[1]);
5eb91c98
DG
418 if (ret < 0) {
419 ERR("write error on thread quit pipe");
420 }
421
099e26bd
DG
422 /* Dispatch thread */
423 dispatch_thread_exit = 1;
424 futex_nto1_wake(&ust_cmd_queue.futex);
cf3af59e
MD
425}
426
fac6795d 427/*
d063d709 428 * Cleanup the daemon
fac6795d 429 */
cf3af59e 430static void cleanup(void)
fac6795d 431{
ef599319 432 int ret;
1d4b027a 433 char *cmd;
af9737e9 434 struct ltt_session *sess, *stmp;
fac6795d 435
1d4b027a 436 DBG("Cleaning up");
e07ae692 437
67e40797
DG
438 DBG("Removing %s directory", rundir);
439 ret = asprintf(&cmd, "rm -rf %s", rundir);
440 if (ret < 0) {
441 ERR("asprintf failed. Something is really wrong!");
442 }
5461b305 443
67e40797
DG
444 /* Remove lttng run directory */
445 ret = system(cmd);
446 if (ret < 0) {
447 ERR("Unable to clean %s", rundir);
1d4b027a 448 }
67e40797 449 free(cmd);
5461b305 450
99bab54f 451 DBG("Cleaning up all sessions");
fac6795d 452
b5541356 453 /* Destroy session list mutex */
273ea72c
DG
454 if (session_list_ptr != NULL) {
455 pthread_mutex_destroy(&session_list_ptr->lock);
456
457 /* Cleanup ALL session */
54d01ffb
DG
458 cds_list_for_each_entry_safe(sess, stmp,
459 &session_list_ptr->head, list) {
273ea72c 460 teardown_kernel_session(sess);
f6a9efaa
DG
461 teardown_ust_session(sess);
462 free(sess);
273ea72c
DG
463 }
464 }
465
099e26bd 466 DBG("Closing all UST sockets");
56fff090 467 ust_app_clean_list();
099e26bd 468
3bd1e081 469 pthread_mutex_destroy(&kconsumer_data.pid_mutex);
b5541356 470
4fba7219
DG
471 if (is_root && !opt_no_kernel) {
472 DBG2("Closing kernel fd");
a4b35e07 473 if (kernel_tracer_fd >= 0) {
76d7553f
MD
474 ret = close(kernel_tracer_fd);
475 if (ret) {
476 PERROR("close");
477 }
a4b35e07 478 }
2f50c8a3 479 DBG("Unloading kernel modules");
096102bd 480 modprobe_remove_lttng_all();
2f50c8a3 481 }
ef599319
DG
482 utils_close_pipe(kernel_poll_pipe);
483 utils_close_pipe(thread_quit_pipe);
484 utils_close_pipe(apps_cmd_pipe);
421cb601
DG
485
486 /* <fun> */
f56a39af 487 DBG("%c[%d;%dm*** assert failed :-) *** ==> %c[%dm%c[%d;%dm"
421cb601
DG
488 "Matthew, BEET driven development works!%c[%dm",
489 27, 1, 31, 27, 0, 27, 1, 33, 27, 0);
490 /* </fun> */
fac6795d
DG
491}
492
e065084a 493/*
d063d709 494 * Send data on a unix socket using the liblttsessiondcomm API.
e065084a 495 *
d063d709 496 * Return lttcomm error code.
e065084a
DG
497 */
498static int send_unix_sock(int sock, void *buf, size_t len)
499{
500 /* Check valid length */
501 if (len <= 0) {
502 return -1;
503 }
504
505 return lttcomm_send_unix_sock(sock, buf, len);
506}
507
5461b305 508/*
d063d709 509 * Free memory of a command context structure.
5461b305 510 */
a2fb29a5 511static void clean_command_ctx(struct command_ctx **cmd_ctx)
5461b305 512{
a2fb29a5
DG
513 DBG("Clean command context structure");
514 if (*cmd_ctx) {
515 if ((*cmd_ctx)->llm) {
516 free((*cmd_ctx)->llm);
5461b305 517 }
a2fb29a5
DG
518 if ((*cmd_ctx)->lsm) {
519 free((*cmd_ctx)->lsm);
5461b305 520 }
a2fb29a5
DG
521 free(*cmd_ctx);
522 *cmd_ctx = NULL;
5461b305
DG
523 }
524}
525
fac6795d 526/*
0fdd1e2c 527 * Notify UST applications using the shm mmap futex.
fac6795d 528 */
0fdd1e2c 529static int notify_ust_apps(int active)
fac6795d 530{
0fdd1e2c 531 char *wait_shm_mmap;
fac6795d 532
0fdd1e2c 533 DBG("Notifying applications of session daemon state: %d", active);
e07ae692 534
0fdd1e2c
DG
535 /* See shm.c for this call implying mmap, shm and futex calls */
536 wait_shm_mmap = shm_ust_get_mmap(wait_shm_path, is_root);
537 if (wait_shm_mmap == NULL) {
fac6795d
DG
538 goto error;
539 }
540
0fdd1e2c
DG
541 /* Wake waiting process */
542 futex_wait_update((int32_t *) wait_shm_mmap, active);
543
544 /* Apps notified successfully */
545 return 0;
fac6795d
DG
546
547error:
0fdd1e2c 548 return -1;
fac6795d
DG
549}
550
e065084a 551/*
d063d709
DG
552 * Setup the outgoing data buffer for the response (llm) by allocating the
553 * right amount of memory and copying the original information from the lsm
554 * structure.
ca95a216 555 *
d063d709 556 * Return total size of the buffer pointed by buf.
ca95a216 557 */
5461b305 558static int setup_lttng_msg(struct command_ctx *cmd_ctx, size_t size)
ca95a216 559{
f3ed775e 560 int ret, buf_size;
ca95a216 561
f3ed775e 562 buf_size = size;
5461b305 563
ba7f0ae5 564 cmd_ctx->llm = zmalloc(sizeof(struct lttcomm_lttng_msg) + buf_size);
5461b305 565 if (cmd_ctx->llm == NULL) {
76d7553f 566 PERROR("zmalloc");
5461b305 567 ret = -ENOMEM;
ca95a216
DG
568 goto error;
569 }
570
5461b305
DG
571 /* Copy common data */
572 cmd_ctx->llm->cmd_type = cmd_ctx->lsm->cmd_type;
9f19cc17 573 cmd_ctx->llm->pid = cmd_ctx->lsm->domain.attr.pid;
5461b305 574
5461b305
DG
575 cmd_ctx->llm->data_size = size;
576 cmd_ctx->lttng_msg_size = sizeof(struct lttcomm_lttng_msg) + buf_size;
577
ca95a216
DG
578 return buf_size;
579
580error:
581 return ret;
582}
583
7a485870 584/*
5eb91c98 585 * Update the kernel poll set of all channel fd available over all tracing
d063d709 586 * session. Add the wakeup pipe at the end of the set.
7a485870 587 */
5eb91c98 588static int update_kernel_poll(struct lttng_poll_event *events)
7a485870 589{
5eb91c98 590 int ret;
7a485870
DG
591 struct ltt_session *session;
592 struct ltt_kernel_channel *channel;
593
5eb91c98 594 DBG("Updating kernel poll set");
7a485870 595
54d01ffb 596 session_lock_list();
b5541356 597 cds_list_for_each_entry(session, &session_list_ptr->head, list) {
54d01ffb 598 session_lock(session);
7a485870 599 if (session->kernel_session == NULL) {
54d01ffb 600 session_unlock(session);
7a485870
DG
601 continue;
602 }
7a485870 603
54d01ffb
DG
604 cds_list_for_each_entry(channel,
605 &session->kernel_session->channel_list.head, list) {
5eb91c98
DG
606 /* Add channel fd to the kernel poll set */
607 ret = lttng_poll_add(events, channel->fd, LPOLLIN | LPOLLRDNORM);
608 if (ret < 0) {
54d01ffb 609 session_unlock(session);
5eb91c98
DG
610 goto error;
611 }
612 DBG("Channel fd %d added to kernel set", channel->fd);
7a485870 613 }
54d01ffb 614 session_unlock(session);
7a485870 615 }
54d01ffb 616 session_unlock_list();
7a485870 617
5eb91c98 618 return 0;
7a485870
DG
619
620error:
54d01ffb 621 session_unlock_list();
7a485870
DG
622 return -1;
623}
624
625/*
54d01ffb 626 * Find the channel fd from 'fd' over all tracing session. When found, check
d063d709 627 * for new channel stream and send those stream fds to the kernel consumer.
7a485870 628 *
d063d709 629 * Useful for CPU hotplug feature.
7a485870 630 */
2bdd86d4 631static int update_kernel_stream(struct consumer_data *consumer_data, int fd)
7a485870
DG
632{
633 int ret = 0;
634 struct ltt_session *session;
635 struct ltt_kernel_channel *channel;
636
637 DBG("Updating kernel streams for channel fd %d", fd);
638
54d01ffb 639 session_lock_list();
b5541356 640 cds_list_for_each_entry(session, &session_list_ptr->head, list) {
54d01ffb 641 session_lock(session);
7a485870 642 if (session->kernel_session == NULL) {
54d01ffb 643 session_unlock(session);
7a485870
DG
644 continue;
645 }
d9800920 646
03550b58
MD
647 /* This is not suppose to be -1 but this is an extra security check */
648 if (session->kernel_session->consumer_fd < 0) {
3bd1e081 649 session->kernel_session->consumer_fd = consumer_data->cmd_sock;
d9800920
DG
650 }
651
5eb91c98
DG
652 cds_list_for_each_entry(channel,
653 &session->kernel_session->channel_list.head, list) {
7a485870
DG
654 if (channel->fd == fd) {
655 DBG("Channel found, updating kernel streams");
656 ret = kernel_open_channel_stream(channel);
657 if (ret < 0) {
b3c750d2 658 goto error;
7a485870 659 }
d9800920 660
7a485870 661 /*
5eb91c98
DG
662 * Have we already sent fds to the consumer? If yes, it means
663 * that tracing is started so it is safe to send our updated
664 * stream fds.
7a485870 665 */
00e2e675
DG
666 if (session->kernel_session->consumer_fds_sent == 1 &&
667 session->kernel_session->consumer != NULL) {
668 ret = kernel_consumer_send_channel_stream(
669 session->kernel_session->consumer_fd, channel,
670 session->kernel_session);
7a485870 671 if (ret < 0) {
b3c750d2 672 goto error;
7a485870
DG
673 }
674 }
b3c750d2 675 goto error;
7a485870
DG
676 }
677 }
54d01ffb 678 session_unlock(session);
7a485870 679 }
54d01ffb 680 session_unlock_list();
b3c750d2 681 return ret;
7a485870 682
b3c750d2 683error:
54d01ffb
DG
684 session_unlock(session);
685 session_unlock_list();
7a485870
DG
686 return ret;
687}
688
487cf67c
DG
689/*
690 * For each tracing session, update newly registered apps.
691 */
692static void update_ust_app(int app_sock)
693{
694 struct ltt_session *sess, *stmp;
695
4ee14516
DG
696 session_lock_list();
697
487cf67c
DG
698 /* For all tracing session(s) */
699 cds_list_for_each_entry_safe(sess, stmp, &session_list_ptr->head, list) {
4ee14516 700 session_lock(sess);
421cb601
DG
701 if (sess->ust_session) {
702 ust_app_global_update(sess->ust_session, app_sock);
703 }
4ee14516 704 session_unlock(sess);
487cf67c 705 }
4ee14516
DG
706
707 session_unlock_list();
487cf67c
DG
708}
709
7a485870 710/*
d063d709 711 * This thread manage event coming from the kernel.
7a485870 712 *
d063d709
DG
713 * Features supported in this thread:
714 * -) CPU Hotplug
7a485870
DG
715 */
716static void *thread_manage_kernel(void *data)
717{
5eb91c98
DG
718 int ret, i, pollfd, update_poll_flag = 1;
719 uint32_t revents, nb_fd;
7a485870 720 char tmp;
5eb91c98 721 struct lttng_poll_event events;
7a485870
DG
722
723 DBG("Thread manage kernel started");
724
44a5e5eb
DG
725 health_code_update(&health_thread_kernel);
726
5eb91c98
DG
727 ret = create_thread_poll_set(&events, 2);
728 if (ret < 0) {
76d7553f 729 goto error_poll_create;
5eb91c98
DG
730 }
731
732 ret = lttng_poll_add(&events, kernel_poll_pipe[0], LPOLLIN);
733 if (ret < 0) {
734 goto error;
735 }
736
7a485870 737 while (1) {
44a5e5eb
DG
738 health_code_update(&health_thread_kernel);
739
7a485870 740 if (update_poll_flag == 1) {
5f822d0a
DG
741 /*
742 * Reset number of fd in the poll set. Always 2 since there is the thread
743 * quit pipe and the kernel pipe.
744 */
745 events.nb_fd = 2;
746
5eb91c98
DG
747 ret = update_kernel_poll(&events);
748 if (ret < 0) {
7a485870
DG
749 goto error;
750 }
751 update_poll_flag = 0;
752 }
753
5eb91c98
DG
754 nb_fd = LTTNG_POLL_GETNB(&events);
755
756 DBG("Thread kernel polling on %d fds", nb_fd);
757
758 /* Zeroed the poll events */
759 lttng_poll_reset(&events);
7a485870
DG
760
761 /* Poll infinite value of time */
88f2b785 762 restart:
44a5e5eb 763 health_poll_update(&health_thread_kernel);
5eb91c98 764 ret = lttng_poll_wait(&events, -1);
44a5e5eb 765 health_poll_update(&health_thread_kernel);
7a485870 766 if (ret < 0) {
88f2b785
MD
767 /*
768 * Restart interrupted system call.
769 */
770 if (errno == EINTR) {
771 goto restart;
772 }
7a485870
DG
773 goto error;
774 } else if (ret == 0) {
775 /* Should not happen since timeout is infinite */
85611738
DG
776 ERR("Return value of poll is 0 with an infinite timeout.\n"
777 "This should not have happened! Continuing...");
7a485870
DG
778 continue;
779 }
780
5eb91c98
DG
781 for (i = 0; i < nb_fd; i++) {
782 /* Fetch once the poll data */
783 revents = LTTNG_POLL_GETEV(&events, i);
784 pollfd = LTTNG_POLL_GETFD(&events, i);
7a485870 785
44a5e5eb
DG
786 health_code_update(&health_thread_kernel);
787
5eb91c98
DG
788 /* Thread quit pipe has been closed. Killing thread. */
789 ret = check_thread_quit_pipe(pollfd, revents);
790 if (ret) {
791 goto error;
792 }
7a485870 793
5eb91c98
DG
794 /* Check for data on kernel pipe */
795 if (pollfd == kernel_poll_pipe[0] && (revents & LPOLLIN)) {
796 ret = read(kernel_poll_pipe[0], &tmp, 1);
797 update_poll_flag = 1;
798 continue;
799 } else {
800 /*
801 * New CPU detected by the kernel. Adding kernel stream to
802 * kernel session and updating the kernel consumer
803 */
804 if (revents & LPOLLIN) {
2bdd86d4 805 ret = update_kernel_stream(&kconsumer_data, pollfd);
5eb91c98
DG
806 if (ret < 0) {
807 continue;
808 }
809 break;
810 /*
811 * TODO: We might want to handle the LPOLLERR | LPOLLHUP
812 * and unregister kernel stream at this point.
813 */
7a485870 814 }
7a485870
DG
815 }
816 }
817 }
818
819error:
5eb91c98 820 lttng_poll_clean(&events);
76d7553f 821error_poll_create:
44a5e5eb 822 health_reset(&health_thread_kernel);
76d7553f 823 DBG("Kernel thread dying");
7a485870
DG
824 return NULL;
825}
826
1d4b027a 827/*
3bd1e081 828 * This thread manage the consumer error sent back to the session daemon.
1d4b027a 829 */
3bd1e081 830static void *thread_manage_consumer(void *data)
1d4b027a 831{
76d7553f 832 int sock = -1, i, ret, pollfd;
5eb91c98 833 uint32_t revents, nb_fd;
1d4b027a 834 enum lttcomm_return_code code;
5eb91c98 835 struct lttng_poll_event events;
3bd1e081 836 struct consumer_data *consumer_data = data;
1d4b027a 837
3bd1e081 838 DBG("[thread] Manage consumer started");
1d4b027a 839
44a5e5eb
DG
840 health_code_update(&consumer_data->health);
841
3bd1e081 842 ret = lttcomm_listen_unix_sock(consumer_data->err_sock);
1d4b027a 843 if (ret < 0) {
76d7553f 844 goto error_listen;
1d4b027a
DG
845 }
846
5eb91c98
DG
847 /*
848 * Pass 2 as size here for the thread quit pipe and kconsumerd_err_sock.
849 * Nothing more will be added to this poll set.
850 */
851 ret = create_thread_poll_set(&events, 2);
852 if (ret < 0) {
76d7553f 853 goto error_poll;
5eb91c98 854 }
273ea72c 855
3bd1e081 856 ret = lttng_poll_add(&events, consumer_data->err_sock, LPOLLIN | LPOLLRDHUP);
5eb91c98
DG
857 if (ret < 0) {
858 goto error;
859 }
860
861 nb_fd = LTTNG_POLL_GETNB(&events);
273ea72c 862
44a5e5eb
DG
863 health_code_update(&consumer_data->health);
864
273ea72c 865 /* Inifinite blocking call, waiting for transmission */
88f2b785 866restart:
44a5e5eb 867 health_poll_update(&consumer_data->health);
5eb91c98 868 ret = lttng_poll_wait(&events, -1);
44a5e5eb 869 health_poll_update(&consumer_data->health);
273ea72c 870 if (ret < 0) {
88f2b785
MD
871 /*
872 * Restart interrupted system call.
873 */
874 if (errno == EINTR) {
875 goto restart;
876 }
273ea72c
DG
877 goto error;
878 }
879
5eb91c98
DG
880 for (i = 0; i < nb_fd; i++) {
881 /* Fetch once the poll data */
882 revents = LTTNG_POLL_GETEV(&events, i);
883 pollfd = LTTNG_POLL_GETFD(&events, i);
884
44a5e5eb
DG
885 health_code_update(&consumer_data->health);
886
5eb91c98
DG
887 /* Thread quit pipe has been closed. Killing thread. */
888 ret = check_thread_quit_pipe(pollfd, revents);
889 if (ret) {
890 goto error;
891 }
892
893 /* Event on the registration socket */
3bd1e081 894 if (pollfd == consumer_data->err_sock) {
5eb91c98 895 if (revents & (LPOLLERR | LPOLLHUP | LPOLLRDHUP)) {
3bd1e081 896 ERR("consumer err socket poll error");
5eb91c98
DG
897 goto error;
898 }
899 }
273ea72c
DG
900 }
901
3bd1e081 902 sock = lttcomm_accept_unix_sock(consumer_data->err_sock);
1d4b027a
DG
903 if (sock < 0) {
904 goto error;
905 }
906
44a5e5eb
DG
907 health_code_update(&consumer_data->health);
908
3bd1e081 909 DBG2("Receiving code from consumer err_sock");
ee0b0061 910
712ea556 911 /* Getting status code from kconsumerd */
54d01ffb
DG
912 ret = lttcomm_recv_unix_sock(sock, &code,
913 sizeof(enum lttcomm_return_code));
1d4b027a
DG
914 if (ret <= 0) {
915 goto error;
916 }
917
44a5e5eb
DG
918 health_code_update(&consumer_data->health);
919
3bd1e081
MD
920 if (code == CONSUMERD_COMMAND_SOCK_READY) {
921 consumer_data->cmd_sock =
922 lttcomm_connect_unix_sock(consumer_data->cmd_unix_sock_path);
923 if (consumer_data->cmd_sock < 0) {
924 sem_post(&consumer_data->sem);
48842b30 925 PERROR("consumer connect");
1d4b027a
DG
926 goto error;
927 }
928 /* Signal condition to tell that the kconsumerd is ready */
3bd1e081
MD
929 sem_post(&consumer_data->sem);
930 DBG("consumer command socket ready");
1d4b027a 931 } else {
3bd1e081 932 ERR("consumer error when waiting for SOCK_READY : %s",
1d4b027a
DG
933 lttcomm_get_readable_code(-code));
934 goto error;
935 }
936
54d01ffb 937 /* Remove the kconsumerd error sock since we've established a connexion */
3bd1e081 938 ret = lttng_poll_del(&events, consumer_data->err_sock);
72079cae 939 if (ret < 0) {
72079cae
DG
940 goto error;
941 }
942
5eb91c98
DG
943 ret = lttng_poll_add(&events, sock, LPOLLIN | LPOLLRDHUP);
944 if (ret < 0) {
72079cae 945 goto error;
5eb91c98
DG
946 }
947
44a5e5eb
DG
948 health_code_update(&consumer_data->health);
949
5eb91c98
DG
950 /* Update number of fd */
951 nb_fd = LTTNG_POLL_GETNB(&events);
952
953 /* Inifinite blocking call, waiting for transmission */
88f2b785 954restart_poll:
44a5e5eb 955 health_poll_update(&consumer_data->health);
5eb91c98 956 ret = lttng_poll_wait(&events, -1);
44a5e5eb 957 health_poll_update(&consumer_data->health);
5eb91c98 958 if (ret < 0) {
88f2b785
MD
959 /*
960 * Restart interrupted system call.
961 */
962 if (errno == EINTR) {
963 goto restart_poll;
964 }
72079cae
DG
965 goto error;
966 }
967
5eb91c98
DG
968 for (i = 0; i < nb_fd; i++) {
969 /* Fetch once the poll data */
970 revents = LTTNG_POLL_GETEV(&events, i);
971 pollfd = LTTNG_POLL_GETFD(&events, i);
972
44a5e5eb
DG
973 health_code_update(&consumer_data->health);
974
5eb91c98
DG
975 /* Thread quit pipe has been closed. Killing thread. */
976 ret = check_thread_quit_pipe(pollfd, revents);
977 if (ret) {
978 goto error;
979 }
980
981 /* Event on the kconsumerd socket */
982 if (pollfd == sock) {
983 if (revents & (LPOLLERR | LPOLLHUP | LPOLLRDHUP)) {
3bd1e081 984 ERR("consumer err socket second poll error");
5eb91c98
DG
985 goto error;
986 }
987 }
988 }
989
44a5e5eb
DG
990 health_code_update(&consumer_data->health);
991
712ea556 992 /* Wait for any kconsumerd error */
54d01ffb
DG
993 ret = lttcomm_recv_unix_sock(sock, &code,
994 sizeof(enum lttcomm_return_code));
712ea556 995 if (ret <= 0) {
3bd1e081 996 ERR("consumer closed the command socket");
712ea556 997 goto error;
6f61d021 998 }
1d4b027a 999
3bd1e081 1000 ERR("consumer return code : %s", lttcomm_get_readable_code(-code));
712ea556 1001
1d4b027a 1002error:
5c827ce0
DG
1003 /* Immediately set the consumerd state to stopped */
1004 if (consumer_data->type == LTTNG_CONSUMER_KERNEL) {
1005 uatomic_set(&kernel_consumerd_state, CONSUMER_ERROR);
1006 } else if (consumer_data->type == LTTNG_CONSUMER64_UST ||
1007 consumer_data->type == LTTNG_CONSUMER32_UST) {
1008 uatomic_set(&ust_consumerd_state, CONSUMER_ERROR);
1009 } else {
1010 /* Code flow error... */
1011 assert(0);
1012 }
1013
76d7553f
MD
1014 if (consumer_data->err_sock >= 0) {
1015 ret = close(consumer_data->err_sock);
1016 if (ret) {
1017 PERROR("close");
1018 }
1019 }
1020 if (consumer_data->cmd_sock >= 0) {
1021 ret = close(consumer_data->cmd_sock);
1022 if (ret) {
1023 PERROR("close");
1024 }
1025 }
1026 if (sock >= 0) {
1027 ret = close(sock);
1028 if (ret) {
1029 PERROR("close");
1030 }
1031 }
273ea72c 1032
3bd1e081
MD
1033 unlink(consumer_data->err_unix_sock_path);
1034 unlink(consumer_data->cmd_unix_sock_path);
1035 consumer_data->pid = 0;
1d4b027a 1036
5eb91c98 1037 lttng_poll_clean(&events);
76d7553f
MD
1038error_poll:
1039error_listen:
44a5e5eb 1040 health_reset(&consumer_data->health);
76d7553f 1041 DBG("consumer thread cleanup completed");
0177d773 1042
5eb91c98 1043 return NULL;
099e26bd
DG
1044}
1045
099e26bd
DG
1046/*
1047 * This thread manage application communication.
1d4b027a
DG
1048 */
1049static void *thread_manage_apps(void *data)
099e26bd 1050{
5eb91c98
DG
1051 int i, ret, pollfd;
1052 uint32_t revents, nb_fd;
099e26bd 1053 struct ust_command ust_cmd;
5eb91c98 1054 struct lttng_poll_event events;
099e26bd
DG
1055
1056 DBG("[thread] Manage application started");
1057
f6a9efaa
DG
1058 rcu_register_thread();
1059 rcu_thread_online();
1060
44a5e5eb
DG
1061 health_code_update(&health_thread_app_reg);
1062
5eb91c98
DG
1063 ret = create_thread_poll_set(&events, 2);
1064 if (ret < 0) {
76d7553f 1065 goto error_poll_create;
5eb91c98 1066 }
099e26bd 1067
5eb91c98
DG
1068 ret = lttng_poll_add(&events, apps_cmd_pipe[0], LPOLLIN | LPOLLRDHUP);
1069 if (ret < 0) {
1070 goto error;
1071 }
099e26bd 1072
44a5e5eb
DG
1073 health_code_update(&health_thread_app_reg);
1074
5eb91c98
DG
1075 while (1) {
1076 /* Zeroed the events structure */
1077 lttng_poll_reset(&events);
0177d773 1078
5eb91c98 1079 nb_fd = LTTNG_POLL_GETNB(&events);
099e26bd
DG
1080
1081 DBG("Apps thread polling on %d fds", nb_fd);
1082
1083 /* Inifinite blocking call, waiting for transmission */
88f2b785 1084 restart:
44a5e5eb 1085 health_poll_update(&health_thread_app_reg);
5eb91c98 1086 ret = lttng_poll_wait(&events, -1);
44a5e5eb 1087 health_poll_update(&health_thread_app_reg);
099e26bd 1088 if (ret < 0) {
88f2b785
MD
1089 /*
1090 * Restart interrupted system call.
1091 */
1092 if (errno == EINTR) {
1093 goto restart;
1094 }
099e26bd
DG
1095 goto error;
1096 }
1097
5eb91c98
DG
1098 for (i = 0; i < nb_fd; i++) {
1099 /* Fetch once the poll data */
1100 revents = LTTNG_POLL_GETEV(&events, i);
1101 pollfd = LTTNG_POLL_GETFD(&events, i);
1102
44a5e5eb
DG
1103 health_code_update(&health_thread_app_reg);
1104
5eb91c98
DG
1105 /* Thread quit pipe has been closed. Killing thread. */
1106 ret = check_thread_quit_pipe(pollfd, revents);
1107 if (ret) {
099e26bd 1108 goto error;
5eb91c98 1109 }
099e26bd 1110
5eb91c98
DG
1111 /* Inspect the apps cmd pipe */
1112 if (pollfd == apps_cmd_pipe[0]) {
1113 if (revents & (LPOLLERR | LPOLLHUP | LPOLLRDHUP)) {
1114 ERR("Apps command pipe error");
0177d773 1115 goto error;
5eb91c98
DG
1116 } else if (revents & LPOLLIN) {
1117 /* Empty pipe */
1118 ret = read(apps_cmd_pipe[0], &ust_cmd, sizeof(ust_cmd));
1119 if (ret < 0 || ret < sizeof(ust_cmd)) {
76d7553f 1120 PERROR("read apps cmd pipe");
5eb91c98
DG
1121 goto error;
1122 }
099e26bd 1123
44a5e5eb
DG
1124 health_code_update(&health_thread_app_reg);
1125
5eb91c98 1126 /* Register applicaton to the session daemon */
56fff090 1127 ret = ust_app_register(&ust_cmd.reg_msg,
54d01ffb 1128 ust_cmd.sock);
88ff5b7f 1129 if (ret == -ENOMEM) {
5eb91c98 1130 goto error;
88ff5b7f
MD
1131 } else if (ret < 0) {
1132 break;
5eb91c98
DG
1133 }
1134
44a5e5eb
DG
1135 health_code_update(&health_thread_app_reg);
1136
acc7b41b 1137 /*
e0c7ec2b 1138 * Validate UST version compatibility.
acc7b41b 1139 */
e0c7ec2b
DG
1140 ret = ust_app_validate_version(ust_cmd.sock);
1141 if (ret >= 0) {
1142 /*
1143 * Add channel(s) and event(s) to newly registered apps
1144 * from lttng global UST domain.
1145 */
1146 update_ust_app(ust_cmd.sock);
1147 }
acc7b41b 1148
44a5e5eb
DG
1149 health_code_update(&health_thread_app_reg);
1150
f2ca2e25 1151 ret = ust_app_register_done(ust_cmd.sock);
5eb91c98
DG
1152 if (ret < 0) {
1153 /*
1154 * If the registration is not possible, we simply
1155 * unregister the apps and continue
1156 */
56fff090 1157 ust_app_unregister(ust_cmd.sock);
5eb91c98
DG
1158 } else {
1159 /*
1160 * We just need here to monitor the close of the UST
1161 * socket and poll set monitor those by default.
a9ade966
MD
1162 * Listen on POLLIN (even if we never expect any
1163 * data) to ensure that hangup wakes us.
5eb91c98 1164 */
a9ade966 1165 ret = lttng_poll_add(&events, ust_cmd.sock, LPOLLIN);
5eb91c98
DG
1166 if (ret < 0) {
1167 goto error;
1168 }
1169
54d01ffb
DG
1170 DBG("Apps with sock %d added to poll set",
1171 ust_cmd.sock);
5eb91c98 1172 }
487cf67c 1173
44a5e5eb
DG
1174 health_code_update(&health_thread_app_reg);
1175
5eb91c98 1176 break;
0177d773 1177 }
5eb91c98
DG
1178 } else {
1179 /*
54d01ffb
DG
1180 * At this point, we know that a registered application made
1181 * the event at poll_wait.
5eb91c98
DG
1182 */
1183 if (revents & (LPOLLERR | LPOLLHUP | LPOLLRDHUP)) {
1184 /* Removing from the poll set */
1185 ret = lttng_poll_del(&events, pollfd);
1186 if (ret < 0) {
1187 goto error;
1188 }
099e26bd 1189
b9d9b220 1190 /* Socket closed on remote end. */
56fff090 1191 ust_app_unregister(pollfd);
5eb91c98
DG
1192 break;
1193 }
099e26bd 1194 }
44a5e5eb
DG
1195
1196 health_code_update(&health_thread_app_reg);
099e26bd 1197 }
099e26bd
DG
1198 }
1199
1200error:
5eb91c98 1201 lttng_poll_clean(&events);
76d7553f 1202error_poll_create:
44a5e5eb 1203 health_reset(&health_thread_app_reg);
76d7553f 1204 DBG("Application communication apps thread cleanup complete");
f6a9efaa
DG
1205 rcu_thread_offline();
1206 rcu_unregister_thread();
099e26bd
DG
1207 return NULL;
1208}
1209
1210/*
1211 * Dispatch request from the registration threads to the application
1212 * communication thread.
1213 */
1214static void *thread_dispatch_ust_registration(void *data)
1215{
1216 int ret;
1217 struct cds_wfq_node *node;
1218 struct ust_command *ust_cmd = NULL;
1219
1220 DBG("[thread] Dispatch UST command started");
1221
1222 while (!dispatch_thread_exit) {
1223 /* Atomically prepare the queue futex */
1224 futex_nto1_prepare(&ust_cmd_queue.futex);
1225
1226 do {
1227 /* Dequeue command for registration */
1228 node = cds_wfq_dequeue_blocking(&ust_cmd_queue.queue);
1229 if (node == NULL) {
00a17c97 1230 DBG("Woken up but nothing in the UST command queue");
099e26bd
DG
1231 /* Continue thread execution */
1232 break;
1233 }
1234
1235 ust_cmd = caa_container_of(node, struct ust_command, node);
1236
2f50c8a3
DG
1237 DBG("Dispatching UST registration pid:%d ppid:%d uid:%d"
1238 " gid:%d sock:%d name:%s (version %d.%d)",
1239 ust_cmd->reg_msg.pid, ust_cmd->reg_msg.ppid,
1240 ust_cmd->reg_msg.uid, ust_cmd->reg_msg.gid,
1241 ust_cmd->sock, ust_cmd->reg_msg.name,
1242 ust_cmd->reg_msg.major, ust_cmd->reg_msg.minor);
099e26bd
DG
1243 /*
1244 * Inform apps thread of the new application registration. This
1245 * call is blocking so we can be assured that the data will be read
1246 * at some point in time or wait to the end of the world :)
1247 */
1248 ret = write(apps_cmd_pipe[1], ust_cmd,
1249 sizeof(struct ust_command));
1250 if (ret < 0) {
76d7553f 1251 PERROR("write apps cmd pipe");
099e26bd
DG
1252 if (errno == EBADF) {
1253 /*
1254 * We can't inform the application thread to process
1255 * registration. We will exit or else application
1256 * registration will not occur and tracing will never
1257 * start.
1258 */
1259 goto error;
1260 }
1261 }
1262 free(ust_cmd);
1263 } while (node != NULL);
1264
1265 /* Futex wait on queue. Blocking call on futex() */
1266 futex_nto1_wait(&ust_cmd_queue.futex);
1267 }
1268
1269error:
1270 DBG("Dispatch thread dying");
1271 return NULL;
1272}
1273
1274/*
1275 * This thread manage application registration.
1276 */
1277static void *thread_registration_apps(void *data)
1d4b027a 1278{
a4b35e07 1279 int sock = -1, i, ret, pollfd;
5eb91c98
DG
1280 uint32_t revents, nb_fd;
1281 struct lttng_poll_event events;
099e26bd
DG
1282 /*
1283 * Get allocated in this thread, enqueued to a global queue, dequeued and
1284 * freed in the manage apps thread.
1285 */
1286 struct ust_command *ust_cmd = NULL;
1d4b027a 1287
099e26bd 1288 DBG("[thread] Manage application registration started");
1d4b027a
DG
1289
1290 ret = lttcomm_listen_unix_sock(apps_sock);
1291 if (ret < 0) {
76d7553f 1292 goto error_listen;
1d4b027a
DG
1293 }
1294
5eb91c98
DG
1295 /*
1296 * Pass 2 as size here for the thread quit pipe and apps socket. Nothing
1297 * more will be added to this poll set.
1298 */
1299 ret = create_thread_poll_set(&events, 2);
1300 if (ret < 0) {
76d7553f 1301 goto error_create_poll;
5eb91c98 1302 }
273ea72c 1303
5eb91c98
DG
1304 /* Add the application registration socket */
1305 ret = lttng_poll_add(&events, apps_sock, LPOLLIN | LPOLLRDHUP);
1306 if (ret < 0) {
76d7553f 1307 goto error_poll_add;
5eb91c98 1308 }
273ea72c 1309
1d4b027a 1310 /* Notify all applications to register */
0fdd1e2c
DG
1311 ret = notify_ust_apps(1);
1312 if (ret < 0) {
1313 ERR("Failed to notify applications or create the wait shared memory.\n"
54d01ffb
DG
1314 "Execution continues but there might be problem for already\n"
1315 "running applications that wishes to register.");
0fdd1e2c 1316 }
1d4b027a
DG
1317
1318 while (1) {
1319 DBG("Accepting application registration");
273ea72c 1320
5eb91c98
DG
1321 nb_fd = LTTNG_POLL_GETNB(&events);
1322
273ea72c 1323 /* Inifinite blocking call, waiting for transmission */
88f2b785 1324 restart:
5eb91c98 1325 ret = lttng_poll_wait(&events, -1);
273ea72c 1326 if (ret < 0) {
88f2b785
MD
1327 /*
1328 * Restart interrupted system call.
1329 */
1330 if (errno == EINTR) {
1331 goto restart;
1332 }
273ea72c
DG
1333 goto error;
1334 }
1335
5eb91c98
DG
1336 for (i = 0; i < nb_fd; i++) {
1337 /* Fetch once the poll data */
1338 revents = LTTNG_POLL_GETEV(&events, i);
1339 pollfd = LTTNG_POLL_GETFD(&events, i);
273ea72c 1340
5eb91c98
DG
1341 /* Thread quit pipe has been closed. Killing thread. */
1342 ret = check_thread_quit_pipe(pollfd, revents);
1343 if (ret) {
90014c57
DG
1344 goto error;
1345 }
1d4b027a 1346
5eb91c98
DG
1347 /* Event on the registration socket */
1348 if (pollfd == apps_sock) {
1349 if (revents & (LPOLLERR | LPOLLHUP | LPOLLRDHUP)) {
1350 ERR("Register apps socket poll error");
1351 goto error;
1352 } else if (revents & LPOLLIN) {
1353 sock = lttcomm_accept_unix_sock(apps_sock);
1354 if (sock < 0) {
1355 goto error;
1356 }
099e26bd 1357
5eb91c98 1358 /* Create UST registration command for enqueuing */
ba7f0ae5 1359 ust_cmd = zmalloc(sizeof(struct ust_command));
5eb91c98 1360 if (ust_cmd == NULL) {
76d7553f 1361 PERROR("ust command zmalloc");
5eb91c98
DG
1362 goto error;
1363 }
1d4b027a 1364
5eb91c98
DG
1365 /*
1366 * Using message-based transmissions to ensure we don't
1367 * have to deal with partially received messages.
1368 */
4063050c
MD
1369 ret = lttng_fd_get(LTTNG_FD_APPS, 1);
1370 if (ret < 0) {
1371 ERR("Exhausted file descriptors allowed for applications.");
1372 free(ust_cmd);
1373 ret = close(sock);
1374 if (ret) {
1375 PERROR("close");
1376 }
1377 sock = -1;
1378 continue;
1379 }
5eb91c98
DG
1380 ret = lttcomm_recv_unix_sock(sock, &ust_cmd->reg_msg,
1381 sizeof(struct ust_register_msg));
1382 if (ret < 0 || ret < sizeof(struct ust_register_msg)) {
1383 if (ret < 0) {
76d7553f 1384 PERROR("lttcomm_recv_unix_sock register apps");
5eb91c98
DG
1385 } else {
1386 ERR("Wrong size received on apps register");
1387 }
1388 free(ust_cmd);
76d7553f
MD
1389 ret = close(sock);
1390 if (ret) {
1391 PERROR("close");
1392 }
4063050c 1393 lttng_fd_put(LTTNG_FD_APPS, 1);
76d7553f 1394 sock = -1;
5eb91c98
DG
1395 continue;
1396 }
099e26bd 1397
5eb91c98 1398 ust_cmd->sock = sock;
34a2494f 1399 sock = -1;
099e26bd 1400
5eb91c98
DG
1401 DBG("UST registration received with pid:%d ppid:%d uid:%d"
1402 " gid:%d sock:%d name:%s (version %d.%d)",
1403 ust_cmd->reg_msg.pid, ust_cmd->reg_msg.ppid,
1404 ust_cmd->reg_msg.uid, ust_cmd->reg_msg.gid,
1405 ust_cmd->sock, ust_cmd->reg_msg.name,
1406 ust_cmd->reg_msg.major, ust_cmd->reg_msg.minor);
54d01ffb 1407
5eb91c98
DG
1408 /*
1409 * Lock free enqueue the registration request. The red pill
54d01ffb 1410 * has been taken! This apps will be part of the *system*.
5eb91c98
DG
1411 */
1412 cds_wfq_enqueue(&ust_cmd_queue.queue, &ust_cmd->node);
1413
1414 /*
1415 * Wake the registration queue futex. Implicit memory
1416 * barrier with the exchange in cds_wfq_enqueue.
1417 */
1418 futex_nto1_wake(&ust_cmd_queue.futex);
1419 }
1420 }
90014c57 1421 }
1d4b027a
DG
1422 }
1423
1424error:
0fdd1e2c
DG
1425 /* Notify that the registration thread is gone */
1426 notify_ust_apps(0);
1427
a4b35e07 1428 if (apps_sock >= 0) {
76d7553f
MD
1429 ret = close(apps_sock);
1430 if (ret) {
1431 PERROR("close");
1432 }
a4b35e07 1433 }
46c3f085 1434 if (sock >= 0) {
76d7553f
MD
1435 ret = close(sock);
1436 if (ret) {
1437 PERROR("close");
1438 }
4063050c 1439 lttng_fd_put(LTTNG_FD_APPS, 1);
a4b35e07 1440 }
273ea72c 1441 unlink(apps_unix_sock_path);
0fdd1e2c 1442
76d7553f 1443error_poll_add:
5eb91c98 1444 lttng_poll_clean(&events);
76d7553f
MD
1445error_listen:
1446error_create_poll:
1447 DBG("UST Registration thread cleanup complete");
5eb91c98 1448
1d4b027a
DG
1449 return NULL;
1450}
1451
8c0faa1d 1452/*
3bd1e081 1453 * Start the thread_manage_consumer. This must be done after a lttng-consumerd
d063d709 1454 * exec or it will fails.
8c0faa1d 1455 */
3bd1e081 1456static int spawn_consumer_thread(struct consumer_data *consumer_data)
8c0faa1d
DG
1457{
1458 int ret;
ee0b0061
DG
1459 struct timespec timeout;
1460
1461 timeout.tv_sec = DEFAULT_SEM_WAIT_TIMEOUT;
1462 timeout.tv_nsec = 0;
8c0faa1d
DG
1463
1464 /* Setup semaphore */
3bd1e081 1465 ret = sem_init(&consumer_data->sem, 0, 0);
ee0b0061 1466 if (ret < 0) {
3bd1e081 1467 PERROR("sem_init consumer semaphore");
ee0b0061
DG
1468 goto error;
1469 }
8c0faa1d 1470
3bd1e081
MD
1471 ret = pthread_create(&consumer_data->thread, NULL,
1472 thread_manage_consumer, consumer_data);
8c0faa1d 1473 if (ret != 0) {
3bd1e081 1474 PERROR("pthread_create consumer");
ee0b0061 1475 ret = -1;
8c0faa1d
DG
1476 goto error;
1477 }
1478
ee0b0061
DG
1479 /* Get time for sem_timedwait absolute timeout */
1480 ret = clock_gettime(CLOCK_REALTIME, &timeout);
1481 if (ret < 0) {
3bd1e081 1482 PERROR("clock_gettime spawn consumer");
ee0b0061 1483 /* Infinite wait for the kconsumerd thread to be ready */
3bd1e081 1484 ret = sem_wait(&consumer_data->sem);
ee0b0061
DG
1485 } else {
1486 /* Normal timeout if the gettime was successful */
1487 timeout.tv_sec += DEFAULT_SEM_WAIT_TIMEOUT;
3bd1e081 1488 ret = sem_timedwait(&consumer_data->sem, &timeout);
ee0b0061 1489 }
8c0faa1d 1490
ee0b0061
DG
1491 if (ret < 0) {
1492 if (errno == ETIMEDOUT) {
1493 /*
1494 * Call has timed out so we kill the kconsumerd_thread and return
1495 * an error.
1496 */
3bd1e081
MD
1497 ERR("The consumer thread was never ready. Killing it");
1498 ret = pthread_cancel(consumer_data->thread);
ee0b0061 1499 if (ret < 0) {
3bd1e081 1500 PERROR("pthread_cancel consumer thread");
ee0b0061
DG
1501 }
1502 } else {
3bd1e081 1503 PERROR("semaphore wait failed consumer thread");
ee0b0061
DG
1504 }
1505 goto error;
1506 }
1507
3bd1e081
MD
1508 pthread_mutex_lock(&consumer_data->pid_mutex);
1509 if (consumer_data->pid == 0) {
712ea556 1510 ERR("Kconsumerd did not start");
3bd1e081 1511 pthread_mutex_unlock(&consumer_data->pid_mutex);
712ea556
DG
1512 goto error;
1513 }
3bd1e081 1514 pthread_mutex_unlock(&consumer_data->pid_mutex);
712ea556 1515
8c0faa1d
DG
1516 return 0;
1517
1518error:
1519 return ret;
1520}
1521
d9800920 1522/*
3bd1e081 1523 * Join consumer thread
d9800920 1524 */
3bd1e081 1525static int join_consumer_thread(struct consumer_data *consumer_data)
cf3af59e
MD
1526{
1527 void *status;
1528 int ret;
1529
3bd1e081
MD
1530 if (consumer_data->pid != 0) {
1531 ret = kill(consumer_data->pid, SIGTERM);
cf3af59e 1532 if (ret) {
3bd1e081 1533 ERR("Error killing consumer daemon");
cf3af59e
MD
1534 return ret;
1535 }
3bd1e081 1536 return pthread_join(consumer_data->thread, &status);
cf3af59e
MD
1537 } else {
1538 return 0;
1539 }
1540}
1541
8c0faa1d 1542/*
3bd1e081 1543 * Fork and exec a consumer daemon (consumerd).
8c0faa1d 1544 *
d063d709 1545 * Return pid if successful else -1.
8c0faa1d 1546 */
3bd1e081 1547static pid_t spawn_consumerd(struct consumer_data *consumer_data)
8c0faa1d
DG
1548{
1549 int ret;
1550 pid_t pid;
94c55f17 1551 const char *consumer_to_use;
53086306 1552 const char *verbosity;
94c55f17 1553 struct stat st;
8c0faa1d 1554
3bd1e081 1555 DBG("Spawning consumerd");
c49dc785 1556
8c0faa1d
DG
1557 pid = fork();
1558 if (pid == 0) {
1559 /*
3bd1e081 1560 * Exec consumerd.
8c0faa1d 1561 */
daee5345 1562 if (opt_verbose_consumer) {
53086306
DG
1563 verbosity = "--verbose";
1564 } else {
1565 verbosity = "--quiet";
1566 }
3bd1e081
MD
1567 switch (consumer_data->type) {
1568 case LTTNG_CONSUMER_KERNEL:
94c55f17 1569 /*
c7704d57
DG
1570 * Find out which consumerd to execute. We will first try the
1571 * 64-bit path, then the sessiond's installation directory, and
1572 * fallback on the 32-bit one,
94c55f17 1573 */
63a799e8
AM
1574 DBG3("Looking for a kernel consumer at these locations:");
1575 DBG3(" 1) %s", consumerd64_bin);
1576 DBG3(" 2) %s/%s", INSTALL_BIN_PATH, CONSUMERD_FILE);
1577 DBG3(" 3) %s", consumerd32_bin);
94c55f17 1578 if (stat(consumerd64_bin, &st) == 0) {
63a799e8 1579 DBG3("Found location #1");
94c55f17 1580 consumer_to_use = consumerd64_bin;
94c55f17 1581 } else if (stat(INSTALL_BIN_PATH "/" CONSUMERD_FILE, &st) == 0) {
63a799e8 1582 DBG3("Found location #2");
94c55f17 1583 consumer_to_use = INSTALL_BIN_PATH "/" CONSUMERD_FILE;
eb1e0bd4 1584 } else if (stat(consumerd32_bin, &st) == 0) {
63a799e8 1585 DBG3("Found location #3");
eb1e0bd4 1586 consumer_to_use = consumerd32_bin;
94c55f17 1587 } else {
63a799e8 1588 DBG("Could not find any valid consumerd executable");
94c55f17
AM
1589 break;
1590 }
1591 DBG("Using kernel consumer at: %s", consumer_to_use);
1592 execl(consumer_to_use,
1593 "lttng-consumerd", verbosity, "-k",
1594 "--consumerd-cmd-sock", consumer_data->cmd_unix_sock_path,
1595 "--consumerd-err-sock", consumer_data->err_unix_sock_path,
1596 NULL);
3bd1e081 1597 break;
7753dea8
MD
1598 case LTTNG_CONSUMER64_UST:
1599 {
b1e0b6b6 1600 char *tmpnew = NULL;
8f4905da
MD
1601
1602 if (consumerd64_libdir[0] != '\0') {
1603 char *tmp;
1604 size_t tmplen;
1605
1606 tmp = getenv("LD_LIBRARY_PATH");
1607 if (!tmp) {
1608 tmp = "";
1609 }
1610 tmplen = strlen("LD_LIBRARY_PATH=")
1611 + strlen(consumerd64_libdir) + 1 /* : */ + strlen(tmp);
1612 tmpnew = zmalloc(tmplen + 1 /* \0 */);
1613 if (!tmpnew) {
1614 ret = -ENOMEM;
1615 goto error;
1616 }
1617 strcpy(tmpnew, "LD_LIBRARY_PATH=");
1618 strcat(tmpnew, consumerd64_libdir);
1619 if (tmp[0] != '\0') {
1620 strcat(tmpnew, ":");
1621 strcat(tmpnew, tmp);
1622 }
1623 ret = putenv(tmpnew);
1624 if (ret) {
1625 ret = -errno;
1626 goto error;
1627 }
1628 }
94c55f17 1629 DBG("Using 64-bit UST consumer at: %s", consumerd64_bin);
a5a6aff3 1630 ret = execl(consumerd64_bin, "lttng-consumerd", verbosity, "-u",
7753dea8
MD
1631 "--consumerd-cmd-sock", consumer_data->cmd_unix_sock_path,
1632 "--consumerd-err-sock", consumer_data->err_unix_sock_path,
1633 NULL);
8f4905da
MD
1634 if (consumerd64_libdir[0] != '\0') {
1635 free(tmpnew);
1636 }
1637 if (ret) {
1638 goto error;
1639 }
3bd1e081 1640 break;
7753dea8
MD
1641 }
1642 case LTTNG_CONSUMER32_UST:
1643 {
937dde8e 1644 char *tmpnew = NULL;
8f4905da
MD
1645
1646 if (consumerd32_libdir[0] != '\0') {
1647 char *tmp;
1648 size_t tmplen;
1649
1650 tmp = getenv("LD_LIBRARY_PATH");
1651 if (!tmp) {
1652 tmp = "";
1653 }
1654 tmplen = strlen("LD_LIBRARY_PATH=")
1655 + strlen(consumerd32_libdir) + 1 /* : */ + strlen(tmp);
1656 tmpnew = zmalloc(tmplen + 1 /* \0 */);
1657 if (!tmpnew) {
1658 ret = -ENOMEM;
1659 goto error;
1660 }
1661 strcpy(tmpnew, "LD_LIBRARY_PATH=");
1662 strcat(tmpnew, consumerd32_libdir);
1663 if (tmp[0] != '\0') {
1664 strcat(tmpnew, ":");
1665 strcat(tmpnew, tmp);
1666 }
1667 ret = putenv(tmpnew);
1668 if (ret) {
1669 ret = -errno;
1670 goto error;
1671 }
1672 }
94c55f17 1673 DBG("Using 32-bit UST consumer at: %s", consumerd32_bin);
a5a6aff3 1674 ret = execl(consumerd32_bin, "lttng-consumerd", verbosity, "-u",
7753dea8
MD
1675 "--consumerd-cmd-sock", consumer_data->cmd_unix_sock_path,
1676 "--consumerd-err-sock", consumer_data->err_unix_sock_path,
1677 NULL);
8f4905da
MD
1678 if (consumerd32_libdir[0] != '\0') {
1679 free(tmpnew);
1680 }
1681 if (ret) {
1682 goto error;
1683 }
7753dea8
MD
1684 break;
1685 }
3bd1e081 1686 default:
76d7553f 1687 PERROR("unknown consumer type");
3bd1e081
MD
1688 exit(EXIT_FAILURE);
1689 }
8c0faa1d 1690 if (errno != 0) {
76d7553f 1691 PERROR("kernel start consumer exec");
8c0faa1d
DG
1692 }
1693 exit(EXIT_FAILURE);
1694 } else if (pid > 0) {
1695 ret = pid;
8c0faa1d 1696 } else {
76d7553f 1697 PERROR("start consumer fork");
8c0faa1d 1698 ret = -errno;
8c0faa1d 1699 }
8f4905da 1700error:
8c0faa1d
DG
1701 return ret;
1702}
1703
693bd40b 1704/*
3bd1e081 1705 * Spawn the consumerd daemon and session daemon thread.
693bd40b 1706 */
3bd1e081 1707static int start_consumerd(struct consumer_data *consumer_data)
693bd40b
DG
1708{
1709 int ret;
1710
3bd1e081
MD
1711 pthread_mutex_lock(&consumer_data->pid_mutex);
1712 if (consumer_data->pid != 0) {
1713 pthread_mutex_unlock(&consumer_data->pid_mutex);
c49dc785
DG
1714 goto end;
1715 }
693bd40b 1716
3bd1e081 1717 ret = spawn_consumerd(consumer_data);
c49dc785 1718 if (ret < 0) {
3bd1e081
MD
1719 ERR("Spawning consumerd failed");
1720 pthread_mutex_unlock(&consumer_data->pid_mutex);
c49dc785 1721 goto error;
693bd40b 1722 }
c49dc785 1723
3bd1e081
MD
1724 /* Setting up the consumer_data pid */
1725 consumer_data->pid = ret;
48842b30 1726 DBG2("Consumer pid %d", consumer_data->pid);
3bd1e081 1727 pthread_mutex_unlock(&consumer_data->pid_mutex);
693bd40b 1728
3bd1e081
MD
1729 DBG2("Spawning consumer control thread");
1730 ret = spawn_consumer_thread(consumer_data);
693bd40b 1731 if (ret < 0) {
3bd1e081 1732 ERR("Fatal error spawning consumer control thread");
693bd40b
DG
1733 goto error;
1734 }
1735
c49dc785 1736end:
693bd40b
DG
1737 return 0;
1738
1739error:
1740 return ret;
1741}
1742
44a5e5eb
DG
1743/*
1744 * Compute health status of each consumer.
1745 */
1746static int check_consumer_health(void)
1747{
1748 int ret;
1749
1750 ret =
1751 health_check_state(&kconsumer_data.health) &
1752 health_check_state(&ustconsumer32_data.health) &
1753 health_check_state(&ustconsumer64_data.health);
1754
1755 DBG3("Health consumer check %d", ret);
1756
1757 return ret;
1758}
1759
b73401da 1760/*
096102bd 1761 * Check version of the lttng-modules.
b73401da 1762 */
096102bd 1763static int validate_lttng_modules_version(void)
b73401da 1764{
096102bd 1765 return kernel_validate_version(kernel_tracer_fd);
ab147185
MD
1766}
1767
b73401da 1768/*
096102bd 1769 * Setup necessary data for kernel tracer action.
b73401da 1770 */
096102bd 1771static int init_kernel_tracer(void)
b73401da
DG
1772{
1773 int ret;
b73401da 1774
096102bd
DG
1775 /* Modprobe lttng kernel modules */
1776 ret = modprobe_lttng_control();
b73401da 1777 if (ret < 0) {
b73401da
DG
1778 goto error;
1779 }
1780
096102bd
DG
1781 /* Open debugfs lttng */
1782 kernel_tracer_fd = open(module_proc_lttng, O_RDWR);
1783 if (kernel_tracer_fd < 0) {
1784 DBG("Failed to open %s", module_proc_lttng);
1785 ret = -1;
1786 goto error_open;
b73401da
DG
1787 }
1788
096102bd
DG
1789 /* Validate kernel version */
1790 ret = validate_lttng_modules_version();
b73401da 1791 if (ret < 0) {
096102bd 1792 goto error_version;
b73401da
DG
1793 }
1794
096102bd 1795 ret = modprobe_lttng_data();
b73401da 1796 if (ret < 0) {
096102bd 1797 goto error_modules;
8c0faa1d
DG
1798 }
1799
f3ed775e 1800 DBG("Kernel tracer fd %d", kernel_tracer_fd);
096102bd
DG
1801 return 0;
1802
1803error_version:
1804 modprobe_remove_lttng_control();
76d7553f
MD
1805 ret = close(kernel_tracer_fd);
1806 if (ret) {
1807 PERROR("close");
1808 }
1809 kernel_tracer_fd = -1;
096102bd
DG
1810 return LTTCOMM_KERN_VERSION;
1811
1812error_modules:
76d7553f
MD
1813 ret = close(kernel_tracer_fd);
1814 if (ret) {
1815 PERROR("close");
1816 }
096102bd
DG
1817
1818error_open:
1819 modprobe_remove_lttng_control();
b73401da
DG
1820
1821error:
b73401da 1822 WARN("No kernel tracer available");
a4b35e07 1823 kernel_tracer_fd = -1;
531d29f9
MD
1824 if (!is_root) {
1825 return LTTCOMM_NEED_ROOT_SESSIOND;
1826 } else {
1827 return LTTCOMM_KERN_NA;
1828 }
f3ed775e 1829}
33a2b854 1830
f3ed775e 1831/*
54d01ffb 1832 * Init tracing by creating trace directory and sending fds kernel consumer.
f3ed775e 1833 */
54d01ffb 1834static int init_kernel_tracing(struct ltt_kernel_session *session)
f3ed775e 1835{
f40799e8 1836 int ret = 0;
8c0faa1d 1837
00e2e675 1838 if (session->consumer_fds_sent == 0 && session->consumer != NULL) {
d9800920 1839 /*
54d01ffb 1840 * Assign default kernel consumer socket if no consumer assigned to the
03550b58 1841 * kernel session. At this point, it's NOT supposed to be -1 but this is
54d01ffb 1842 * an extra security check.
d9800920 1843 */
03550b58 1844 if (session->consumer_fd < 0) {
3bd1e081 1845 session->consumer_fd = kconsumer_data.cmd_sock;
d9800920
DG
1846 }
1847
00e2e675 1848 ret = kernel_consumer_send_session(session->consumer_fd, session);
f3ed775e 1849 if (ret < 0) {
f3ed775e
DG
1850 ret = LTTCOMM_KERN_CONSUMER_FAIL;
1851 goto error;
1852 }
00e2e675 1853 }
1d4b027a 1854
00e2e675
DG
1855error:
1856 return ret;
1857}
1858
1859/*
1860 * Create a socket to the relayd using the URI.
1861 *
1862 * On success, the relayd_sock pointer is set to the created socket.
1863 * Else, it is untouched and an lttcomm error code is returned.
1864 */
1865static int create_connect_relayd(struct consumer_output *output,
1866 const char *session_name, struct lttng_uri *uri,
1867 struct lttcomm_sock **relayd_sock)
1868{
1869 int ret;
1870 struct lttcomm_sock *sock;
1871
1872 /* Create socket object from URI */
1873 sock = lttcomm_alloc_sock_from_uri(uri);
1874 if (sock == NULL) {
1875 ret = LTTCOMM_FATAL;
1876 goto error;
1877 }
1878
1879 ret = lttcomm_create_sock(sock);
1880 if (ret < 0) {
1881 ret = LTTCOMM_FATAL;
1882 goto error;
1883 }
1884
1885 /* Connect to relayd so we can proceed with a session creation. */
1886 ret = relayd_connect(sock);
1887 if (ret < 0) {
1888 ERR("Unable to reach lttng-relayd");
1889 ret = LTTCOMM_RELAYD_SESSION_FAIL;
1890 goto free_sock;
f3ed775e 1891 }
1d4b027a 1892
00e2e675
DG
1893 /* Create socket for control stream. */
1894 if (uri->stype == LTTNG_STREAM_CONTROL) {
1895 DBG3("Creating relayd stream socket from URI");
1896
1897 /* Check relayd version */
1898 ret = relayd_version_check(sock, LTTNG_UST_COMM_MAJOR, 0);
1899 if (ret < 0) {
1900 ret = LTTCOMM_RELAYD_VERSION_FAIL;
1901 goto close_sock;
1902 }
1903 } else if (uri->stype == LTTNG_STREAM_DATA) {
1904 DBG3("Creating relayd data socket from URI");
1905 } else {
1906 /* Command is not valid */
1907 ERR("Relayd invalid stream type: %d", uri->stype);
1908 ret = LTTCOMM_INVALID;
1909 goto close_sock;
1910 }
1911
1912 *relayd_sock = sock;
1913
1914 return LTTCOMM_OK;
1915
1916close_sock:
1917 if (sock) {
1918 (void) relayd_close(sock);
1919 }
1920free_sock:
1921 if (sock) {
1922 lttcomm_destroy_sock(sock);
1923 }
1924error:
1925 return ret;
1926}
1927
1928/*
1929 * Connect to the relayd using URI and send the socket to the right consumer.
1930 */
1931static int send_socket_relayd_consumer(int domain, struct ltt_session *session,
1932 struct lttng_uri *relayd_uri, struct consumer_output *consumer,
1933 int consumer_fd)
1934{
1935 int ret;
1936 struct lttcomm_sock *sock = NULL;
1937
1938 /* Set the network sequence index if not set. */
1939 if (consumer->net_seq_index == -1) {
1940 /*
1941 * Increment net_seq_idx because we are about to transfer the
1942 * new relayd socket to the consumer.
1943 */
1944 uatomic_inc(&relayd_net_seq_idx);
1945 /* Assign unique key so the consumer can match streams */
1946 consumer->net_seq_index = uatomic_read(&relayd_net_seq_idx);
1947 }
1948
1949 /* Connect to relayd and make version check if uri is the control. */
1950 ret = create_connect_relayd(consumer, session->name, relayd_uri, &sock);
1951 if (ret != LTTCOMM_OK) {
1952 goto close_sock;
1953 }
1954
1955 /* If the control socket is connected, network session is ready */
1956 if (relayd_uri->stype == LTTNG_STREAM_CONTROL) {
1957 session->net_handle = 1;
1958 }
1959
1960 switch (domain) {
1961 case LTTNG_DOMAIN_KERNEL:
1962 /* Send relayd socket to consumer. */
1963 ret = kernel_consumer_send_relayd_socket(consumer_fd, sock,
1964 consumer, relayd_uri->stype);
1965 if (ret < 0) {
1966 ret = LTTCOMM_ENABLE_CONSUMER_FAIL;
1967 goto close_sock;
1968 }
1969 break;
1970 case LTTNG_DOMAIN_UST:
1971 /* Send relayd socket to consumer. */
1972 ret = ust_consumer_send_relayd_socket(consumer_fd, sock,
1973 consumer, relayd_uri->stype);
1974 if (ret < 0) {
1975 ret = LTTCOMM_ENABLE_CONSUMER_FAIL;
1976 goto close_sock;
1977 }
1978 break;
1979 }
1980
1981 ret = LTTCOMM_OK;
1982
1983 /*
1984 * Close socket which was dup on the consumer side. The session daemon does
1985 * NOT keep track of the relayd socket(s) once transfer to the consumer.
1986 */
1987
1988close_sock:
1989 if (sock) {
1990 (void) relayd_close(sock);
1991 lttcomm_destroy_sock(sock);
1992 }
1993
1994 return ret;
1995}
1996
1997/*
1998 * Send both relayd sockets to a specific consumer and domain. This is a
1999 * helper function to facilitate sending the information to the consumer for a
2000 * session.
2001 */
2002static int send_sockets_relayd_consumer(int domain,
2003 struct ltt_session *session, struct consumer_output *consumer, int fd)
2004{
2005 int ret;
2006
2007 /* Sending control relayd socket. */
2008 ret = send_socket_relayd_consumer(domain, session,
2009 &consumer->dst.net.control, consumer, fd);
2010 if (ret != LTTCOMM_OK) {
2011 goto error;
2012 }
2013
2014 /* Sending data relayd socket. */
2015 ret = send_socket_relayd_consumer(domain, session,
2016 &consumer->dst.net.data, consumer, fd);
2017 if (ret != LTTCOMM_OK) {
2018 goto error;
2019 }
2020
2021error:
2022 return ret;
2023}
2024
2025/*
2026 * Setup relayd connections for a tracing session. First creates the socket to
2027 * the relayd and send them to the right domain consumer. Consumer type MUST be
2028 * network.
2029 */
2030static int setup_relayd(struct ltt_session *session)
2031{
2032 int ret = LTTCOMM_OK;
2033 struct ltt_ust_session *usess;
2034 struct ltt_kernel_session *ksess;
2035
2036 assert(session);
2037
2038 usess = session->ust_session;
2039 ksess = session->kernel_session;
2040
2041 DBG2("Setting relayd for session %s", session->name);
2042
2043 if (usess && usess->consumer->sock == -1 &&
2044 usess->consumer->type == CONSUMER_DST_NET &&
2045 usess->consumer->enabled) {
2046 /* Setup relayd for 64 bits consumer */
2047 if (ust_consumerd64_fd >= 0) {
2048 send_sockets_relayd_consumer(LTTNG_DOMAIN_UST, session,
2049 usess->consumer, ust_consumerd64_fd);
2050 if (ret != LTTCOMM_OK) {
2051 goto error;
2052 }
2053 }
2054
2055 /* Setup relayd for 32 bits consumer */
2056 if (ust_consumerd32_fd >= 0) {
2057 send_sockets_relayd_consumer(LTTNG_DOMAIN_UST, session,
2058 usess->consumer, ust_consumerd32_fd);
2059 if (ret != LTTCOMM_OK) {
2060 goto error;
2061 }
2062 }
2063 } else if (ksess && ksess->consumer->sock == -1 &&
2064 ksess->consumer->type == CONSUMER_DST_NET &&
2065 ksess->consumer->enabled) {
2066 send_sockets_relayd_consumer(LTTNG_DOMAIN_KERNEL, session,
2067 ksess->consumer, ksess->consumer_fd);
2068 if (ret != LTTCOMM_OK) {
2069 goto error;
2070 }
2071 }
2072
2073error:
2074 return ret;
2075}
2076
2077/*
2078 * Copy consumer output from the tracing session to the domain session. The
2079 * function also applies the right modification on a per domain basis for the
2080 * trace files destination directory.
2081 */
2082static int copy_session_consumer(int domain, struct ltt_session *session)
2083{
2084 int ret;
2085 const char *dir_name;
2086 struct consumer_output *consumer;
2087
2088 switch (domain) {
2089 case LTTNG_DOMAIN_KERNEL:
2090 DBG3("Copying tracing session consumer output in kernel session");
2091 session->kernel_session->consumer =
2092 consumer_copy_output(session->consumer);
2093 /* Ease our life a bit for the next part */
2094 consumer = session->kernel_session->consumer;
2095 dir_name = DEFAULT_KERNEL_TRACE_DIR;
2096 break;
2097 case LTTNG_DOMAIN_UST:
2098 DBG3("Copying tracing session consumer output in UST session");
2099 session->ust_session->consumer =
2100 consumer_copy_output(session->consumer);
2101 /* Ease our life a bit for the next part */
2102 consumer = session->ust_session->consumer;
2103 dir_name = DEFAULT_UST_TRACE_DIR;
2104 break;
2105 default:
2106 ret = LTTCOMM_UNKNOWN_DOMAIN;
2107 goto error;
2108 }
2109
2110 /* Append correct directory to subdir */
2111 strncat(consumer->subdir, dir_name, sizeof(consumer->subdir));
2112 DBG3("Copy session consumer subdir %s", consumer->subdir);
2113
2114 /* Add default trace directory name */
2115 if (consumer->type == CONSUMER_DST_LOCAL) {
2116 strncat(consumer->dst.trace_path, dir_name,
2117 sizeof(consumer->dst.trace_path));
2118 }
2119
2120 ret = LTTCOMM_OK;
2121
1d4b027a
DG
2122error:
2123 return ret;
8c0faa1d
DG
2124}
2125
0177d773
DG
2126/*
2127 * Create an UST session and add it to the session ust list.
2128 */
44d3bd01 2129static int create_ust_session(struct ltt_session *session,
6df2e2c9 2130 struct lttng_domain *domain)
0177d773 2131{
6df2e2c9 2132 int ret;
00e2e675
DG
2133 struct ltt_ust_session *lus = NULL;
2134
2135 assert(session);
2136 assert(session->consumer);
44d3bd01
DG
2137
2138 switch (domain->type) {
48842b30 2139 case LTTNG_DOMAIN_UST:
44d3bd01
DG
2140 break;
2141 default:
00e2e675 2142 ERR("Unknown UST domain on create session %d", domain->type);
13384287 2143 ret = LTTCOMM_UNKNOWN_DOMAIN;
44d3bd01
DG
2144 goto error;
2145 }
0177d773
DG
2146
2147 DBG("Creating UST session");
2148
a991f516 2149 lus = trace_ust_create_session(session->path, session->id, domain);
0177d773 2150 if (lus == NULL) {
44d3bd01 2151 ret = LTTCOMM_UST_SESS_FAIL;
0177d773
DG
2152 goto error;
2153 }
2154
00e2e675
DG
2155 if (session->consumer->type == CONSUMER_DST_LOCAL) {
2156 ret = run_as_mkdir_recursive(lus->pathname, S_IRWXU | S_IRWXG,
2157 session->uid, session->gid);
2158 if (ret < 0) {
2159 if (ret != -EEXIST) {
2160 ERR("Trace directory creation error");
2161 ret = LTTCOMM_UST_SESS_FAIL;
2162 goto error;
2163 }
0177d773
DG
2164 }
2165 }
2166
6df2e2c9
MD
2167 lus->uid = session->uid;
2168 lus->gid = session->gid;
f6a9efaa 2169 session->ust_session = lus;
44d3bd01 2170
00e2e675
DG
2171 /* Copy session output to the newly created UST session */
2172 ret = copy_session_consumer(domain->type, session);
2173 if (ret != LTTCOMM_OK) {
2174 goto error;
2175 }
2176
44d3bd01 2177 return LTTCOMM_OK;
0177d773
DG
2178
2179error:
2180 free(lus);
00e2e675 2181 session->ust_session = NULL;
0177d773
DG
2182 return ret;
2183}
2184
333f285e 2185/*
d063d709 2186 * Create a kernel tracer session then create the default channel.
333f285e 2187 */
6df2e2c9 2188static int create_kernel_session(struct ltt_session *session)
333f285e 2189{
f3ed775e 2190 int ret;
f3ed775e
DG
2191
2192 DBG("Creating kernel session");
2193
2194 ret = kernel_create_session(session, kernel_tracer_fd);
2195 if (ret < 0) {
2196 ret = LTTCOMM_KERN_SESS_FAIL;
2197 goto error;
333f285e
DG
2198 }
2199
d9800920 2200 /* Set kernel consumer socket fd */
03550b58 2201 if (kconsumer_data.cmd_sock >= 0) {
3bd1e081 2202 session->kernel_session->consumer_fd = kconsumer_data.cmd_sock;
d9800920
DG
2203 }
2204
00e2e675
DG
2205 /* Copy session output to the newly created Kernel session */
2206 ret = copy_session_consumer(LTTNG_DOMAIN_KERNEL, session);
2207 if (ret != LTTCOMM_OK) {
2208 goto error;
2209 }
2210
2211 /* Create directory(ies) on local filesystem. */
2212 if (session->consumer->type == CONSUMER_DST_LOCAL) {
2213 ret = run_as_mkdir_recursive(
2214 session->kernel_session->consumer->dst.trace_path,
2215 S_IRWXU | S_IRWXG, session->uid, session->gid);
2216 if (ret < 0) {
2217 if (ret != -EEXIST) {
2218 ERR("Trace directory creation error");
2219 goto error;
2220 }
7a485870
DG
2221 }
2222 }
00e2e675 2223
6df2e2c9
MD
2224 session->kernel_session->uid = session->uid;
2225 session->kernel_session->gid = session->gid;
7a485870 2226
00e2e675
DG
2227 return LTTCOMM_OK;
2228
f3ed775e 2229error:
00e2e675
DG
2230 trace_kernel_destroy_session(session->kernel_session);
2231 session->kernel_session = NULL;
f3ed775e 2232 return ret;
333f285e
DG
2233}
2234
8e0af1b4 2235/*
c7704d57
DG
2236 * Check if the UID or GID match the session. Root user has access to all
2237 * sessions.
8e0af1b4 2238 */
c7704d57 2239static int session_access_ok(struct ltt_session *session, uid_t uid, gid_t gid)
8e0af1b4 2240{
c7704d57 2241 if (uid != session->uid && gid != session->gid && uid != 0) {
8e0af1b4
MD
2242 return 0;
2243 } else {
2244 return 1;
2245 }
2246}
2247
00e2e675
DG
2248/*
2249 * Count number of session permitted by uid/gid.
2250 */
8e0af1b4
MD
2251static unsigned int lttng_sessions_count(uid_t uid, gid_t gid)
2252{
2253 unsigned int i = 0;
2254 struct ltt_session *session;
2255
2256 DBG("Counting number of available session for UID %d GID %d",
2257 uid, gid);
2258 cds_list_for_each_entry(session, &session_list_ptr->head, list) {
2259 /*
2260 * Only list the sessions the user can control.
2261 */
2262 if (!session_access_ok(session, uid, gid)) {
2263 continue;
2264 }
2265 i++;
2266 }
2267 return i;
2268}
2269
6c9cc2ab
DG
2270/*
2271 * Using the session list, filled a lttng_session array to send back to the
2272 * client for session listing.
2273 *
2274 * The session list lock MUST be acquired before calling this function. Use
54d01ffb 2275 * session_lock_list() and session_unlock_list().
6c9cc2ab 2276 */
c7704d57
DG
2277static void list_lttng_sessions(struct lttng_session *sessions, uid_t uid,
2278 gid_t gid)
6c9cc2ab 2279{
8e0af1b4 2280 unsigned int i = 0;
6c9cc2ab
DG
2281 struct ltt_session *session;
2282
8e0af1b4
MD
2283 DBG("Getting all available session for UID %d GID %d",
2284 uid, gid);
6c9cc2ab
DG
2285 /*
2286 * Iterate over session list and append data after the control struct in
2287 * the buffer.
2288 */
2289 cds_list_for_each_entry(session, &session_list_ptr->head, list) {
8e0af1b4
MD
2290 /*
2291 * Only list the sessions the user can control.
2292 */
2293 if (!session_access_ok(session, uid, gid)) {
2294 continue;
2295 }
6c9cc2ab 2296 strncpy(sessions[i].path, session->path, PATH_MAX);
99497cd0 2297 sessions[i].path[PATH_MAX - 1] = '\0';
6c9cc2ab 2298 strncpy(sessions[i].name, session->name, NAME_MAX);
99497cd0 2299 sessions[i].name[NAME_MAX - 1] = '\0';
464dd62d 2300 sessions[i].enabled = session->enabled;
6c9cc2ab
DG
2301 i++;
2302 }
2303}
2304
9f19cc17
DG
2305/*
2306 * Fill lttng_channel array of all channels.
2307 */
b551a063 2308static void list_lttng_channels(int domain, struct ltt_session *session,
9f19cc17
DG
2309 struct lttng_channel *channels)
2310{
2311 int i = 0;
2312 struct ltt_kernel_channel *kchan;
2313
2314 DBG("Listing channels for session %s", session->name);
2315
b551a063
DG
2316 switch (domain) {
2317 case LTTNG_DOMAIN_KERNEL:
2318 /* Kernel channels */
2319 if (session->kernel_session != NULL) {
2320 cds_list_for_each_entry(kchan,
2321 &session->kernel_session->channel_list.head, list) {
2322 /* Copy lttng_channel struct to array */
2323 memcpy(&channels[i], kchan->channel, sizeof(struct lttng_channel));
2324 channels[i].enabled = kchan->enabled;
2325 i++;
2326 }
2327 }
2328 break;
2329 case LTTNG_DOMAIN_UST:
2330 {
bec39940 2331 struct lttng_ht_iter iter;
b551a063
DG
2332 struct ltt_ust_channel *uchan;
2333
bec39940
DG
2334 cds_lfht_for_each_entry(session->ust_session->domain_global.channels->ht,
2335 &iter.iter, uchan, node.node) {
b551a063
DG
2336 strncpy(channels[i].name, uchan->name, LTTNG_SYMBOL_NAME_LEN);
2337 channels[i].attr.overwrite = uchan->attr.overwrite;
2338 channels[i].attr.subbuf_size = uchan->attr.subbuf_size;
2339 channels[i].attr.num_subbuf = uchan->attr.num_subbuf;
2340 channels[i].attr.switch_timer_interval =
2341 uchan->attr.switch_timer_interval;
2342 channels[i].attr.read_timer_interval =
2343 uchan->attr.read_timer_interval;
aea829b3 2344 channels[i].enabled = uchan->enabled;
5edd7e09
DG
2345 switch (uchan->attr.output) {
2346 case LTTNG_UST_MMAP:
2347 default:
2348 channels[i].attr.output = LTTNG_EVENT_MMAP;
2349 break;
2350 }
befe0905 2351 i++;
b551a063
DG
2352 }
2353 break;
2354 }
2355 default:
2356 break;
2357 }
2358}
2359
2360/*
2361 * Create a list of ust global domain events.
2362 */
2363static int list_lttng_ust_global_events(char *channel_name,
2364 struct ltt_ust_domain_global *ust_global, struct lttng_event **events)
2365{
2366 int i = 0, ret = 0;
2367 unsigned int nb_event = 0;
bec39940
DG
2368 struct lttng_ht_iter iter;
2369 struct lttng_ht_node_str *node;
b551a063
DG
2370 struct ltt_ust_channel *uchan;
2371 struct ltt_ust_event *uevent;
2372 struct lttng_event *tmp;
2373
2374 DBG("Listing UST global events for channel %s", channel_name);
2375
2376 rcu_read_lock();
2377
bec39940
DG
2378 lttng_ht_lookup(ust_global->channels, (void *)channel_name, &iter);
2379 node = lttng_ht_iter_get_node_str(&iter);
d7b75b30
DG
2380 if (node == NULL) {
2381 ret = -LTTCOMM_UST_CHAN_NOT_FOUND;
2382 goto error;
b551a063
DG
2383 }
2384
bec39940 2385 uchan = caa_container_of(&node->node, struct ltt_ust_channel, node.node);
d7b75b30 2386
bec39940 2387 nb_event += lttng_ht_get_count(uchan->events);
d7b75b30 2388
b551a063
DG
2389 if (nb_event == 0) {
2390 ret = nb_event;
2391 goto error;
2392 }
2393
2394 DBG3("Listing UST global %d events", nb_event);
2395
2396 tmp = zmalloc(nb_event * sizeof(struct lttng_event));
2397 if (tmp == NULL) {
2398 ret = -LTTCOMM_FATAL;
2399 goto error;
2400 }
2401
bec39940 2402 cds_lfht_for_each_entry(uchan->events->ht, &iter.iter, uevent, node.node) {
d7b75b30
DG
2403 strncpy(tmp[i].name, uevent->attr.name, LTTNG_SYMBOL_NAME_LEN);
2404 tmp[i].name[LTTNG_SYMBOL_NAME_LEN - 1] = '\0';
2405 tmp[i].enabled = uevent->enabled;
2406 switch (uevent->attr.instrumentation) {
2407 case LTTNG_UST_TRACEPOINT:
2408 tmp[i].type = LTTNG_EVENT_TRACEPOINT;
2409 break;
2410 case LTTNG_UST_PROBE:
2411 tmp[i].type = LTTNG_EVENT_PROBE;
2412 break;
2413 case LTTNG_UST_FUNCTION:
2414 tmp[i].type = LTTNG_EVENT_FUNCTION;
2415 break;
0cda4f28 2416 }
8005f29a 2417 tmp[i].loglevel = uevent->attr.loglevel;
0cda4f28 2418 switch (uevent->attr.loglevel_type) {
8005f29a 2419 case LTTNG_UST_LOGLEVEL_ALL:
22e25b71 2420 tmp[i].loglevel_type = LTTNG_EVENT_LOGLEVEL_ALL;
0cda4f28 2421 break;
8005f29a 2422 case LTTNG_UST_LOGLEVEL_RANGE:
22e25b71 2423 tmp[i].loglevel_type = LTTNG_EVENT_LOGLEVEL_RANGE;
8005f29a
MD
2424 break;
2425 case LTTNG_UST_LOGLEVEL_SINGLE:
22e25b71 2426 tmp[i].loglevel_type = LTTNG_EVENT_LOGLEVEL_SINGLE;
ac3bd9c0 2427 break;
9f19cc17 2428 }
fceb65df
MD
2429 if (uevent->filter) {
2430 tmp[i].filter = 1;
2431 }
d7b75b30 2432 i++;
9f19cc17
DG
2433 }
2434
b551a063
DG
2435 ret = nb_event;
2436 *events = tmp;
2437
2438error:
2439 rcu_read_unlock();
2440 return ret;
9f19cc17
DG
2441}
2442
2443/*
b551a063 2444 * Fill lttng_event array of all kernel events in the channel.
9f19cc17 2445 */
b551a063
DG
2446static int list_lttng_kernel_events(char *channel_name,
2447 struct ltt_kernel_session *kernel_session, struct lttng_event **events)
9f19cc17 2448{
b551a063
DG
2449 int i = 0, ret;
2450 unsigned int nb_event;
9f19cc17 2451 struct ltt_kernel_event *event;
b551a063
DG
2452 struct ltt_kernel_channel *kchan;
2453
2454 kchan = trace_kernel_get_channel_by_name(channel_name, kernel_session);
2455 if (kchan == NULL) {
2456 ret = LTTCOMM_KERN_CHAN_NOT_FOUND;
2457 goto error;
2458 }
2459
2460 nb_event = kchan->event_count;
9f19cc17
DG
2461
2462 DBG("Listing events for channel %s", kchan->channel->name);
2463
b551a063
DG
2464 if (nb_event == 0) {
2465 ret = nb_event;
2466 goto error;
2467 }
2468
2469 *events = zmalloc(nb_event * sizeof(struct lttng_event));
2470 if (*events == NULL) {
2471 ret = LTTCOMM_FATAL;
2472 goto error;
2473 }
2474
9f19cc17
DG
2475 /* Kernel channels */
2476 cds_list_for_each_entry(event, &kchan->events_list.head , list) {
b551a063
DG
2477 strncpy((*events)[i].name, event->event->name, LTTNG_SYMBOL_NAME_LEN);
2478 (*events)[i].name[LTTNG_SYMBOL_NAME_LEN - 1] = '\0';
2479 (*events)[i].enabled = event->enabled;
9f19cc17
DG
2480 switch (event->event->instrumentation) {
2481 case LTTNG_KERNEL_TRACEPOINT:
b551a063 2482 (*events)[i].type = LTTNG_EVENT_TRACEPOINT;
9f19cc17
DG
2483 break;
2484 case LTTNG_KERNEL_KPROBE:
2485 case LTTNG_KERNEL_KRETPROBE:
b551a063
DG
2486 (*events)[i].type = LTTNG_EVENT_PROBE;
2487 memcpy(&(*events)[i].attr.probe, &event->event->u.kprobe,
9f19cc17
DG
2488 sizeof(struct lttng_kernel_kprobe));
2489 break;
2490 case LTTNG_KERNEL_FUNCTION:
b551a063
DG
2491 (*events)[i].type = LTTNG_EVENT_FUNCTION;
2492 memcpy(&((*events)[i].attr.ftrace), &event->event->u.ftrace,
9f19cc17
DG
2493 sizeof(struct lttng_kernel_function));
2494 break;
0133c199 2495 case LTTNG_KERNEL_NOOP:
b551a063 2496 (*events)[i].type = LTTNG_EVENT_NOOP;
0133c199 2497 break;
a54bd42d 2498 case LTTNG_KERNEL_SYSCALL:
b551a063 2499 (*events)[i].type = LTTNG_EVENT_SYSCALL;
0133c199 2500 break;
7a3d1328
MD
2501 case LTTNG_KERNEL_ALL:
2502 assert(0);
2503 break;
9f19cc17
DG
2504 }
2505 i++;
2506 }
b551a063
DG
2507
2508 return nb_event;
2509
2510error:
2511 return ret;
9f19cc17
DG
2512}
2513
fac6795d 2514/*
54d01ffb 2515 * Command LTTNG_DISABLE_CHANNEL processed by the client thread.
fac6795d 2516 */
54d01ffb
DG
2517static int cmd_disable_channel(struct ltt_session *session,
2518 int domain, char *channel_name)
fac6795d 2519{
54d01ffb 2520 int ret;
78f0bacd
DG
2521 struct ltt_ust_session *usess;
2522
2523 usess = session->ust_session;
379473d2 2524
54d01ffb 2525 switch (domain) {
78f0bacd
DG
2526 case LTTNG_DOMAIN_KERNEL:
2527 {
2528 ret = channel_kernel_disable(session->kernel_session,
2529 channel_name);
2530 if (ret != LTTCOMM_OK) {
2531 goto error;
2532 }
54d01ffb 2533
78f0bacd
DG
2534 kernel_wait_quiescent(kernel_tracer_fd);
2535 break;
2536 }
2537 case LTTNG_DOMAIN_UST:
2538 {
2539 struct ltt_ust_channel *uchan;
bec39940 2540 struct lttng_ht *chan_ht;
78f0bacd 2541
7885e399
DG
2542 chan_ht = usess->domain_global.channels;
2543
2544 uchan = trace_ust_find_channel_by_name(chan_ht, channel_name);
78f0bacd
DG
2545 if (uchan == NULL) {
2546 ret = LTTCOMM_UST_CHAN_NOT_FOUND;
54d01ffb 2547 goto error;
78f0bacd
DG
2548 }
2549
7885e399
DG
2550 ret = channel_ust_disable(usess, domain, uchan);
2551 if (ret != LTTCOMM_OK) {
78f0bacd
DG
2552 goto error;
2553 }
78f0bacd
DG
2554 break;
2555 }
d78d6610 2556#if 0
78f0bacd
DG
2557 case LTTNG_DOMAIN_UST_PID_FOLLOW_CHILDREN:
2558 case LTTNG_DOMAIN_UST_EXEC_NAME:
2559 case LTTNG_DOMAIN_UST_PID:
d78d6610 2560#endif
78f0bacd
DG
2561 default:
2562 ret = LTTCOMM_UNKNOWN_DOMAIN;
2563 goto error;
20fe2104
DG
2564 }
2565
54d01ffb 2566 ret = LTTCOMM_OK;
d65106b1 2567
54d01ffb
DG
2568error:
2569 return ret;
2570}
2571
2572/*
2573 * Command LTTNG_ENABLE_CHANNEL processed by the client thread.
2574 */
44d3bd01 2575static int cmd_enable_channel(struct ltt_session *session,
aea829b3 2576 int domain, struct lttng_channel *attr)
54d01ffb
DG
2577{
2578 int ret;
f6a9efaa 2579 struct ltt_ust_session *usess = session->ust_session;
bec39940 2580 struct lttng_ht *chan_ht;
f6a9efaa 2581
5d56b5aa 2582 DBG("Enabling channel %s for session %s", attr->name, session->name);
d65106b1 2583
aea829b3 2584 switch (domain) {
44d3bd01
DG
2585 case LTTNG_DOMAIN_KERNEL:
2586 {
2587 struct ltt_kernel_channel *kchan;
54d01ffb 2588
44d3bd01
DG
2589 kchan = trace_kernel_get_channel_by_name(attr->name,
2590 session->kernel_session);
2591 if (kchan == NULL) {
2592 ret = channel_kernel_create(session->kernel_session,
2593 attr, kernel_poll_pipe[1]);
2594 } else {
2595 ret = channel_kernel_enable(session->kernel_session, kchan);
2596 }
2597
2598 if (ret != LTTCOMM_OK) {
2599 goto error;
2600 }
2601
2602 kernel_wait_quiescent(kernel_tracer_fd);
2603 break;
2604 }
f6a9efaa
DG
2605 case LTTNG_DOMAIN_UST:
2606 {
2607 struct ltt_ust_channel *uchan;
2608
7885e399 2609 chan_ht = usess->domain_global.channels;
f6a9efaa 2610
7885e399 2611 uchan = trace_ust_find_channel_by_name(chan_ht, attr->name);
f6a9efaa 2612 if (uchan == NULL) {
7885e399 2613 ret = channel_ust_create(usess, domain, attr);
f6a9efaa 2614 } else {
7885e399 2615 ret = channel_ust_enable(usess, domain, uchan);
48842b30 2616 }
f6a9efaa
DG
2617 break;
2618 }
d78d6610 2619#if 0
78f0bacd
DG
2620 case LTTNG_DOMAIN_UST_PID_FOLLOW_CHILDREN:
2621 case LTTNG_DOMAIN_UST_EXEC_NAME:
44d3bd01 2622 case LTTNG_DOMAIN_UST_PID:
d78d6610 2623#endif
44d3bd01
DG
2624 default:
2625 ret = LTTCOMM_UNKNOWN_DOMAIN;
2626 goto error;
54d01ffb
DG
2627 }
2628
54d01ffb
DG
2629error:
2630 return ret;
2631}
2632
2633/*
2634 * Command LTTNG_DISABLE_EVENT processed by the client thread.
2635 */
2636static int cmd_disable_event(struct ltt_session *session, int domain,
2637 char *channel_name, char *event_name)
2638{
2639 int ret;
54d01ffb
DG
2640
2641 switch (domain) {
2642 case LTTNG_DOMAIN_KERNEL:
2bdd86d4
MD
2643 {
2644 struct ltt_kernel_channel *kchan;
b0a40d28 2645 struct ltt_kernel_session *ksess;
2bdd86d4 2646
b0a40d28
DG
2647 ksess = session->kernel_session;
2648
2649 kchan = trace_kernel_get_channel_by_name(channel_name, ksess);
54d01ffb
DG
2650 if (kchan == NULL) {
2651 ret = LTTCOMM_KERN_CHAN_NOT_FOUND;
2652 goto error;
d65106b1
DG
2653 }
2654
b0a40d28 2655 ret = event_kernel_disable_tracepoint(ksess, kchan, event_name);
54d01ffb
DG
2656 if (ret != LTTCOMM_OK) {
2657 goto error;
2658 }
2659
2660 kernel_wait_quiescent(kernel_tracer_fd);
d65106b1 2661 break;
2bdd86d4
MD
2662 }
2663 case LTTNG_DOMAIN_UST:
b0a40d28 2664 {
b0a40d28 2665 struct ltt_ust_channel *uchan;
7f79d3a1 2666 struct ltt_ust_session *usess;
b0a40d28
DG
2667
2668 usess = session->ust_session;
2669
2670 uchan = trace_ust_find_channel_by_name(usess->domain_global.channels,
2671 channel_name);
2672 if (uchan == NULL) {
2673 ret = LTTCOMM_UST_CHAN_NOT_FOUND;
2674 goto error;
2675 }
2676
7f79d3a1
DG
2677 ret = event_ust_disable_tracepoint(usess, domain, uchan, event_name);
2678 if (ret != LTTCOMM_OK) {
b0a40d28
DG
2679 goto error;
2680 }
2681
7f79d3a1 2682 DBG3("Disable UST event %s in channel %s completed", event_name,
b0a40d28 2683 channel_name);
b0a40d28
DG
2684 break;
2685 }
d78d6610 2686#if 0
2bdd86d4
MD
2687 case LTTNG_DOMAIN_UST_EXEC_NAME:
2688 case LTTNG_DOMAIN_UST_PID:
2689 case LTTNG_DOMAIN_UST_PID_FOLLOW_CHILDREN:
d78d6610 2690#endif
54d01ffb 2691 default:
1ab1ea0b 2692 ret = LTTCOMM_UND;
54d01ffb 2693 goto error;
d65106b1 2694 }
26cc6b4e 2695
54d01ffb
DG
2696 ret = LTTCOMM_OK;
2697
2698error:
2699 return ret;
2700}
2701
2702/*
2703 * Command LTTNG_DISABLE_ALL_EVENT processed by the client thread.
2704 */
2705static int cmd_disable_event_all(struct ltt_session *session, int domain,
2706 char *channel_name)
2707{
2708 int ret;
54d01ffb
DG
2709
2710 switch (domain) {
2711 case LTTNG_DOMAIN_KERNEL:
9730260e
DG
2712 {
2713 struct ltt_kernel_session *ksess;
2714 struct ltt_kernel_channel *kchan;
2715
2716 ksess = session->kernel_session;
2717
2718 kchan = trace_kernel_get_channel_by_name(channel_name, ksess);
54d01ffb
DG
2719 if (kchan == NULL) {
2720 ret = LTTCOMM_KERN_CHAN_NOT_FOUND;
2721 goto error;
26cc6b4e
DG
2722 }
2723
9730260e 2724 ret = event_kernel_disable_all(ksess, kchan);
54d01ffb 2725 if (ret != LTTCOMM_OK) {
0b97ec54 2726 goto error;
26cc6b4e
DG
2727 }
2728
54d01ffb 2729 kernel_wait_quiescent(kernel_tracer_fd);
26cc6b4e 2730 break;
9730260e
DG
2731 }
2732 case LTTNG_DOMAIN_UST:
2733 {
2734 struct ltt_ust_session *usess;
2735 struct ltt_ust_channel *uchan;
2736
2737 usess = session->ust_session;
2738
2739 uchan = trace_ust_find_channel_by_name(usess->domain_global.channels,
2740 channel_name);
2741 if (uchan == NULL) {
2742 ret = LTTCOMM_UST_CHAN_NOT_FOUND;
2743 goto error;
2744 }
2745
7f79d3a1
DG
2746 ret = event_ust_disable_all_tracepoints(usess, domain, uchan);
2747 if (ret != 0) {
9730260e
DG
2748 goto error;
2749 }
2750
7f79d3a1 2751 DBG3("Disable all UST events in channel %s completed", channel_name);
9730260e
DG
2752
2753 break;
2754 }
d78d6610 2755#if 0
9730260e
DG
2756 case LTTNG_DOMAIN_UST_EXEC_NAME:
2757 case LTTNG_DOMAIN_UST_PID:
2758 case LTTNG_DOMAIN_UST_PID_FOLLOW_CHILDREN:
d78d6610 2759#endif
54d01ffb 2760 default:
1ab1ea0b 2761 ret = LTTCOMM_UND;
54d01ffb 2762 goto error;
26cc6b4e 2763 }
e953ef25 2764
54d01ffb 2765 ret = LTTCOMM_OK;
e953ef25 2766
54d01ffb
DG
2767error:
2768 return ret;
2769}
f5177a38 2770
54d01ffb
DG
2771/*
2772 * Command LTTNG_ADD_CONTEXT processed by the client thread.
2773 */
2774static int cmd_add_context(struct ltt_session *session, int domain,
2775 char *channel_name, char *event_name, struct lttng_event_context *ctx)
2776{
2777 int ret;
f5177a38 2778
54d01ffb
DG
2779 switch (domain) {
2780 case LTTNG_DOMAIN_KERNEL:
2781 /* Add kernel context to kernel tracer */
2782 ret = context_kernel_add(session->kernel_session, ctx,
2783 event_name, channel_name);
2784 if (ret != LTTCOMM_OK) {
f5177a38 2785 goto error;
e953ef25 2786 }
2bdd86d4
MD
2787 break;
2788 case LTTNG_DOMAIN_UST:
2789 {
55cc08a6 2790 struct ltt_ust_session *usess = session->ust_session;
e953ef25 2791
55cc08a6
DG
2792 ret = context_ust_add(usess, domain, ctx, event_name, channel_name);
2793 if (ret != LTTCOMM_OK) {
2794 goto error;
2bdd86d4 2795 }
e953ef25 2796 break;
2bdd86d4 2797 }
d78d6610 2798#if 0
55cc08a6
DG
2799 case LTTNG_DOMAIN_UST_EXEC_NAME:
2800 case LTTNG_DOMAIN_UST_PID:
2801 case LTTNG_DOMAIN_UST_PID_FOLLOW_CHILDREN:
d78d6610 2802#endif
54d01ffb 2803 default:
1ab1ea0b 2804 ret = LTTCOMM_UND;
54d01ffb 2805 goto error;
e953ef25 2806 }
950131af 2807
54d01ffb 2808 ret = LTTCOMM_OK;
950131af 2809
54d01ffb
DG
2810error:
2811 return ret;
2812}
2813
53a80697
MD
2814/*
2815 * Command LTTNG_SET_FILTER processed by the client thread.
2816 */
2817static int cmd_set_filter(struct ltt_session *session, int domain,
2818 char *channel_name, char *event_name,
2819 struct lttng_filter_bytecode *bytecode)
2820{
2821 int ret;
2822
2823 switch (domain) {
2824 case LTTNG_DOMAIN_KERNEL:
2825 ret = LTTCOMM_FATAL;
2826 break;
2827 case LTTNG_DOMAIN_UST:
2828 {
2829 struct ltt_ust_session *usess = session->ust_session;
2830
2831 ret = filter_ust_set(usess, domain, bytecode, event_name, channel_name);
2832 if (ret != LTTCOMM_OK) {
2833 goto error;
2834 }
2835 break;
2836 }
2837#if 0
2838 case LTTNG_DOMAIN_UST_EXEC_NAME:
2839 case LTTNG_DOMAIN_UST_PID:
2840 case LTTNG_DOMAIN_UST_PID_FOLLOW_CHILDREN:
2841#endif
2842 default:
2843 ret = LTTCOMM_UND;
2844 goto error;
2845 }
2846
2847 ret = LTTCOMM_OK;
2848
2849error:
2850 return ret;
2851
2852}
2853
54d01ffb
DG
2854/*
2855 * Command LTTNG_ENABLE_EVENT processed by the client thread.
2856 */
2857static int cmd_enable_event(struct ltt_session *session, int domain,
2858 char *channel_name, struct lttng_event *event)
2859{
2860 int ret;
f6cd6b0f 2861 struct lttng_channel *attr;
48842b30 2862 struct ltt_ust_session *usess = session->ust_session;
54d01ffb
DG
2863
2864 switch (domain) {
2865 case LTTNG_DOMAIN_KERNEL:
2bdd86d4
MD
2866 {
2867 struct ltt_kernel_channel *kchan;
2868
54d01ffb
DG
2869 kchan = trace_kernel_get_channel_by_name(channel_name,
2870 session->kernel_session);
2871 if (kchan == NULL) {
f6cd6b0f
DG
2872 attr = channel_new_default_attr(domain);
2873 if (attr == NULL) {
2874 ret = LTTCOMM_FATAL;
2875 goto error;
2876 }
2877 snprintf(attr->name, NAME_MAX, "%s", channel_name);
2878
54d01ffb 2879 /* This call will notify the kernel thread */
44d3bd01 2880 ret = channel_kernel_create(session->kernel_session,
f6cd6b0f 2881 attr, kernel_poll_pipe[1]);
54d01ffb 2882 if (ret != LTTCOMM_OK) {
ff4d74e6 2883 free(attr);
f5177a38
DG
2884 goto error;
2885 }
ff4d74e6 2886 free(attr);
54d01ffb 2887 }
950131af 2888
54d01ffb
DG
2889 /* Get the newly created kernel channel pointer */
2890 kchan = trace_kernel_get_channel_by_name(channel_name,
2891 session->kernel_session);
2892 if (kchan == NULL) {
2893 /* This sould not happen... */
2894 ret = LTTCOMM_FATAL;
2895 goto error;
2896 }
f5177a38 2897
48842b30
DG
2898 ret = event_kernel_enable_tracepoint(session->kernel_session, kchan,
2899 event);
54d01ffb 2900 if (ret != LTTCOMM_OK) {
f5177a38 2901 goto error;
950131af
DG
2902 }
2903
54d01ffb 2904 kernel_wait_quiescent(kernel_tracer_fd);
950131af 2905 break;
2bdd86d4
MD
2906 }
2907 case LTTNG_DOMAIN_UST:
2908 {
aea829b3 2909 struct lttng_channel *attr;
edb67388 2910 struct ltt_ust_channel *uchan;
2bdd86d4 2911
edb67388 2912 /* Get channel from global UST domain */
48842b30
DG
2913 uchan = trace_ust_find_channel_by_name(usess->domain_global.channels,
2914 channel_name);
2915 if (uchan == NULL) {
aea829b3
DG
2916 /* Create default channel */
2917 attr = channel_new_default_attr(domain);
2918 if (attr == NULL) {
2919 ret = LTTCOMM_FATAL;
2920 goto error;
2921 }
596219f7 2922 snprintf(attr->name, NAME_MAX, "%s", channel_name);
edb67388 2923 attr->name[NAME_MAX - 1] = '\0';
aea829b3 2924
7885e399 2925 ret = channel_ust_create(usess, domain, attr);
edb67388 2926 if (ret != LTTCOMM_OK) {
ff4d74e6 2927 free(attr);
aea829b3
DG
2928 goto error;
2929 }
aea829b3
DG
2930 free(attr);
2931
2932 /* Get the newly created channel reference back */
2933 uchan = trace_ust_find_channel_by_name(
2934 usess->domain_global.channels, channel_name);
2935 if (uchan == NULL) {
2936 /* Something is really wrong */
2937 ret = LTTCOMM_FATAL;
2938 goto error;
2939 }
48842b30 2940 }
2bdd86d4 2941
edb67388 2942 /* At this point, the session and channel exist on the tracer */
edb67388
DG
2943 ret = event_ust_enable_tracepoint(usess, domain, uchan, event);
2944 if (ret != LTTCOMM_OK) {
48842b30 2945 goto error;
2bdd86d4
MD
2946 }
2947 break;
2948 }
d78d6610 2949#if 0
2bdd86d4
MD
2950 case LTTNG_DOMAIN_UST_EXEC_NAME:
2951 case LTTNG_DOMAIN_UST_PID:
2952 case LTTNG_DOMAIN_UST_PID_FOLLOW_CHILDREN:
d78d6610 2953#endif
54d01ffb 2954 default:
1ab1ea0b 2955 ret = LTTCOMM_UND;
54d01ffb 2956 goto error;
950131af 2957 }
d36b8583 2958
54d01ffb 2959 ret = LTTCOMM_OK;
d36b8583 2960
54d01ffb
DG
2961error:
2962 return ret;
2963}
7d29a247 2964
54d01ffb
DG
2965/*
2966 * Command LTTNG_ENABLE_ALL_EVENT processed by the client thread.
2967 */
2968static int cmd_enable_event_all(struct ltt_session *session, int domain,
8c9ae521 2969 char *channel_name, int event_type)
54d01ffb
DG
2970{
2971 int ret;
2972 struct ltt_kernel_channel *kchan;
7d29a247 2973
54d01ffb
DG
2974 switch (domain) {
2975 case LTTNG_DOMAIN_KERNEL:
2976 kchan = trace_kernel_get_channel_by_name(channel_name,
2977 session->kernel_session);
2978 if (kchan == NULL) {
2979 /* This call will notify the kernel thread */
44d3bd01
DG
2980 ret = channel_kernel_create(session->kernel_session, NULL,
2981 kernel_poll_pipe[1]);
54d01ffb
DG
2982 if (ret != LTTCOMM_OK) {
2983 goto error;
d36b8583 2984 }
0d0c377a 2985
8f69e5eb
DG
2986 /* Get the newly created kernel channel pointer */
2987 kchan = trace_kernel_get_channel_by_name(channel_name,
2988 session->kernel_session);
2989 if (kchan == NULL) {
2990 /* This sould not happen... */
2991 ret = LTTCOMM_FATAL;
2992 goto error;
2993 }
2994
54d01ffb 2995 }
0fdd1e2c 2996
7a3d1328 2997 switch (event_type) {
76d45b40 2998 case LTTNG_EVENT_SYSCALL:
7a3d1328 2999 ret = event_kernel_enable_all_syscalls(session->kernel_session,
8c9ae521 3000 kchan, kernel_tracer_fd);
7a3d1328 3001 break;
76d45b40 3002 case LTTNG_EVENT_TRACEPOINT:
8c9ae521 3003 /*
7a3d1328
MD
3004 * This call enables all LTTNG_KERNEL_TRACEPOINTS and
3005 * events already registered to the channel.
8c9ae521 3006 */
7a3d1328
MD
3007 ret = event_kernel_enable_all_tracepoints(session->kernel_session,
3008 kchan, kernel_tracer_fd);
3009 break;
76d45b40 3010 case LTTNG_EVENT_ALL:
7a3d1328 3011 /* Enable syscalls and tracepoints */
8c9ae521
DG
3012 ret = event_kernel_enable_all(session->kernel_session,
3013 kchan, kernel_tracer_fd);
7a3d1328
MD
3014 break;
3015 default:
3016 ret = LTTCOMM_KERN_ENABLE_FAIL;
3017 goto error;
8c9ae521 3018 }
8f69e5eb
DG
3019
3020 /* Manage return value */
54d01ffb 3021 if (ret != LTTCOMM_OK) {
0d0c377a 3022 goto error;
d36b8583
DG
3023 }
3024
54d01ffb 3025 kernel_wait_quiescent(kernel_tracer_fd);
d36b8583 3026 break;
76d45b40
DG
3027 case LTTNG_DOMAIN_UST:
3028 {
3029 struct lttng_channel *attr;
3030 struct ltt_ust_channel *uchan;
3031 struct ltt_ust_session *usess = session->ust_session;
3032
3033 /* Get channel from global UST domain */
3034 uchan = trace_ust_find_channel_by_name(usess->domain_global.channels,
3035 channel_name);
3036 if (uchan == NULL) {
3037 /* Create default channel */
3038 attr = channel_new_default_attr(domain);
3039 if (attr == NULL) {
3040 ret = LTTCOMM_FATAL;
3041 goto error;
3042 }
3043 snprintf(attr->name, NAME_MAX, "%s", channel_name);
3044 attr->name[NAME_MAX - 1] = '\0';
3045
3046 /* Use the internal command enable channel */
7885e399 3047 ret = channel_ust_create(usess, domain, attr);
76d45b40
DG
3048 if (ret != LTTCOMM_OK) {
3049 free(attr);
3050 goto error;
3051 }
3052 free(attr);
3053
3054 /* Get the newly created channel reference back */
3055 uchan = trace_ust_find_channel_by_name(
3056 usess->domain_global.channels, channel_name);
3057 if (uchan == NULL) {
3058 /* Something is really wrong */
3059 ret = LTTCOMM_FATAL;
3060 goto error;
3061 }
3062 }
3063
3064 /* At this point, the session and channel exist on the tracer */
3065
3066 switch (event_type) {
3067 case LTTNG_EVENT_ALL:
3068 case LTTNG_EVENT_TRACEPOINT:
3069 ret = event_ust_enable_all_tracepoints(usess, domain, uchan);
3070 if (ret != LTTCOMM_OK) {
3071 goto error;
3072 }
3073 break;
3074 default:
3075 ret = LTTCOMM_UST_ENABLE_FAIL;
3076 goto error;
3077 }
3078
3079 /* Manage return value */
3080 if (ret != LTTCOMM_OK) {
3081 goto error;
3082 }
3083
3084 break;
3085 }
d78d6610 3086#if 0
76d45b40
DG
3087 case LTTNG_DOMAIN_UST_EXEC_NAME:
3088 case LTTNG_DOMAIN_UST_PID:
3089 case LTTNG_DOMAIN_UST_PID_FOLLOW_CHILDREN:
d78d6610 3090#endif
54d01ffb 3091 default:
1ab1ea0b 3092 ret = LTTCOMM_UND;
54d01ffb 3093 goto error;
d36b8583 3094 }
f3ed775e 3095
54d01ffb
DG
3096 ret = LTTCOMM_OK;
3097
3098error:
3099 return ret;
3100}
3101
3102/*
3103 * Command LTTNG_LIST_TRACEPOINTS processed by the client thread.
3104 */
3105static ssize_t cmd_list_tracepoints(int domain, struct lttng_event **events)
3106{
3107 int ret;
3108 ssize_t nb_events = 0;
3109
3110 switch (domain) {
3111 case LTTNG_DOMAIN_KERNEL:
3112 nb_events = kernel_list_events(kernel_tracer_fd, events);
3113 if (nb_events < 0) {
3114 ret = LTTCOMM_KERN_LIST_FAIL;
3115 goto error;
894be886 3116 }
54d01ffb 3117 break;
b551a063
DG
3118 case LTTNG_DOMAIN_UST:
3119 nb_events = ust_app_list_events(events);
3120 if (nb_events < 0) {
3121 ret = LTTCOMM_UST_LIST_FAIL;
3122 goto error;
3123 }
3124 break;
54d01ffb 3125 default:
1ab1ea0b 3126 ret = LTTCOMM_UND;
54d01ffb
DG
3127 goto error;
3128 }
894be886 3129
54d01ffb 3130 return nb_events;
7d29a247 3131
54d01ffb
DG
3132error:
3133 /* Return negative value to differentiate return code */
3134 return -ret;
3135}
b389abbe 3136
f37d259d
MD
3137/*
3138 * Command LTTNG_LIST_TRACEPOINT_FIELDS processed by the client thread.
3139 */
3140static ssize_t cmd_list_tracepoint_fields(int domain,
3141 struct lttng_event_field **fields)
3142{
3143 int ret;
3144 ssize_t nb_fields = 0;
3145
3146 switch (domain) {
3147 case LTTNG_DOMAIN_UST:
3148 nb_fields = ust_app_list_event_fields(fields);
3149 if (nb_fields < 0) {
3150 ret = LTTCOMM_UST_LIST_FAIL;
3151 goto error;
3152 }
3153 break;
3154 case LTTNG_DOMAIN_KERNEL:
3155 default: /* fall-through */
3156 ret = LTTCOMM_UND;
3157 goto error;
3158 }
3159
3160 return nb_fields;
3161
3162error:
3163 /* Return negative value to differentiate return code */
3164 return -ret;
3165}
3166
54d01ffb
DG
3167/*
3168 * Command LTTNG_START_TRACE processed by the client thread.
3169 */
3170static int cmd_start_trace(struct ltt_session *session)
3171{
3172 int ret;
54d01ffb 3173 struct ltt_kernel_session *ksession;
b9d9b220 3174 struct ltt_ust_session *usess;
00e2e675 3175 struct ltt_kernel_channel *kchan;
b389abbe 3176
00e2e675 3177 /* Ease our life a bit ;) */
54d01ffb 3178 ksession = session->kernel_session;
b9d9b220 3179 usess = session->ust_session;
5eb91c98 3180
b9ef1c83 3181 if (session->enabled) {
80e327fa
DG
3182 /* Already started. */
3183 ret = LTTCOMM_TRACE_ALREADY_STARTED;
b9ef1c83
DG
3184 goto error;
3185 }
3186
464dd62d
MD
3187 session->enabled = 1;
3188
00e2e675
DG
3189 ret = setup_relayd(session);
3190 if (ret != LTTCOMM_OK) {
3191 ERR("Error setting up relayd for session %s", session->name);
3192 goto error;
3193 }
3194
54d01ffb
DG
3195 /* Kernel tracing */
3196 if (ksession != NULL) {
3197 /* Open kernel metadata */
3198 if (ksession->metadata == NULL) {
00e2e675
DG
3199 ret = kernel_open_metadata(ksession,
3200 ksession->consumer->dst.trace_path);
54d01ffb
DG
3201 if (ret < 0) {
3202 ret = LTTCOMM_KERN_META_FAIL;
3203 goto error;
b389abbe 3204 }
54d01ffb 3205 }
7d29a247 3206
54d01ffb 3207 /* Open kernel metadata stream */
03550b58 3208 if (ksession->metadata_stream_fd < 0) {
54d01ffb
DG
3209 ret = kernel_open_metadata_stream(ksession);
3210 if (ret < 0) {
3211 ERR("Kernel create metadata stream failed");
3212 ret = LTTCOMM_KERN_STREAM_FAIL;
3213 goto error;
3214 }
3215 }
3216
3217 /* For each channel */
3218 cds_list_for_each_entry(kchan, &ksession->channel_list.head, list) {
3219 if (kchan->stream_count == 0) {
3220 ret = kernel_open_channel_stream(kchan);
3221 if (ret < 0) {
3222 ret = LTTCOMM_KERN_STREAM_FAIL;
7d29a247
DG
3223 goto error;
3224 }
54d01ffb
DG
3225 /* Update the stream global counter */
3226 ksession->stream_count_global += ret;
7d29a247 3227 }
54d01ffb
DG
3228 }
3229
3230 /* Setup kernel consumer socket and send fds to it */
3231 ret = init_kernel_tracing(ksession);
3232 if (ret < 0) {
3233 ret = LTTCOMM_KERN_START_FAIL;
3234 goto error;
3235 }
3236
3237 /* This start the kernel tracing */
3238 ret = kernel_start_session(ksession);
3239 if (ret < 0) {
3240 ret = LTTCOMM_KERN_START_FAIL;
3241 goto error;
3242 }
3243
3244 /* Quiescent wait after starting trace */
3245 kernel_wait_quiescent(kernel_tracer_fd);
3246 }
3247
36dc12cc 3248 /* Flag session that trace should start automatically */
b9d9b220
DG
3249 if (usess) {
3250 usess->start_trace = 1;
36dc12cc 3251
b9d9b220
DG
3252 ret = ust_app_start_trace_all(usess);
3253 if (ret < 0) {
3254 ret = LTTCOMM_UST_START_FAIL;
3255 goto error;
3256 }
2bdd86d4 3257 }
54d01ffb
DG
3258
3259 ret = LTTCOMM_OK;
3260
3261error:
3262 return ret;
3263}
3264
3265/*
3266 * Command LTTNG_STOP_TRACE processed by the client thread.
3267 */
3268static int cmd_stop_trace(struct ltt_session *session)
3269{
3270 int ret;
3271 struct ltt_kernel_channel *kchan;
3272 struct ltt_kernel_session *ksession;
8be98f9a 3273 struct ltt_ust_session *usess;
54d01ffb
DG
3274
3275 /* Short cut */
3276 ksession = session->kernel_session;
8be98f9a 3277 usess = session->ust_session;
54d01ffb 3278
b9ef1c83 3279 if (!session->enabled) {
80e327fa 3280 ret = LTTCOMM_TRACE_ALREADY_STOPPED;
b9ef1c83
DG
3281 goto error;
3282 }
3283
464dd62d
MD
3284 session->enabled = 0;
3285
54d01ffb
DG
3286 /* Kernel tracer */
3287 if (ksession != NULL) {
3288 DBG("Stop kernel tracing");
3289
00e2e675
DG
3290 /* Flush metadata if exist */
3291 if (ksession->metadata_stream_fd >= 0) {
3292 ret = kernel_metadata_flush_buffer(ksession->metadata_stream_fd);
3293 if (ret < 0) {
3294 ERR("Kernel metadata flush failed");
3295 }
54d01ffb 3296 }
f34daff7 3297
00e2e675 3298 /* Flush all buffers before stopping */
54d01ffb
DG
3299 cds_list_for_each_entry(kchan, &ksession->channel_list.head, list) {
3300 ret = kernel_flush_buffer(kchan);
0d0c377a 3301 if (ret < 0) {
54d01ffb 3302 ERR("Kernel flush buffer error");
7d29a247 3303 }
54d01ffb 3304 }
19e70852 3305
54d01ffb
DG
3306 ret = kernel_stop_session(ksession);
3307 if (ret < 0) {
3308 ret = LTTCOMM_KERN_STOP_FAIL;
19e70852 3309 goto error;
f3ed775e 3310 }
54d01ffb
DG
3311
3312 kernel_wait_quiescent(kernel_tracer_fd);
894be886 3313 }
54d01ffb 3314
8be98f9a
MD
3315 if (usess) {
3316 usess->start_trace = 0;
2bdd86d4 3317
8be98f9a 3318 ret = ust_app_stop_trace_all(usess);
2bdd86d4 3319 if (ret < 0) {
190df5ac 3320 ret = LTTCOMM_UST_STOP_FAIL;
2bdd86d4
MD
3321 goto error;
3322 }
2bdd86d4 3323 }
54d01ffb
DG
3324
3325 ret = LTTCOMM_OK;
3326
3327error:
3328 return ret;
3329}
3330
3331/*
00e2e675 3332 * Command LTTNG_CREATE_SESSION_URI processed by the client thread.
54d01ffb 3333 */
00e2e675
DG
3334static int cmd_create_session_uri(char *name, struct lttng_uri *ctrl_uri,
3335 struct lttng_uri *data_uri, unsigned int enable_consumer,
3336 lttng_sock_cred *creds)
54d01ffb
DG
3337{
3338 int ret;
00e2e675
DG
3339 char *path = NULL;
3340 struct ltt_session *session;
3341 struct consumer_output *consumer;
3342
3343 /* Verify if the session already exist */
3344 session = session_find_by_name(name);
3345 if (session != NULL) {
3346 ret = LTTCOMM_EXIST_SESS;
3347 goto error;
3348 }
3349
3350 /* TODO: validate URIs */
3351
3352 /* Create default consumer output */
3353 consumer = consumer_create_output(CONSUMER_DST_LOCAL);
3354 if (consumer == NULL) {
3355 ret = LTTCOMM_FATAL;
3356 goto error;
3357 }
3358 strncpy(consumer->subdir, ctrl_uri->subdir, sizeof(consumer->subdir));
3359 DBG2("Consumer subdir set to %s", consumer->subdir);
3360
3361 switch (ctrl_uri->dtype) {
3362 case LTTNG_DST_IPV4:
3363 case LTTNG_DST_IPV6:
3364 /* Set control URI into consumer output object */
3365 ret = consumer_set_network_uri(consumer, ctrl_uri);
3366 if (ret < 0) {
3367 ret = LTTCOMM_FATAL;
3368 goto error;
3369 }
3370
3371 /* Set data URI into consumer output object */
3372 ret = consumer_set_network_uri(consumer, data_uri);
3373 if (ret < 0) {
3374 ret = LTTCOMM_FATAL;
3375 goto error;
3376 }
3377
3378 /* Empty path since the session is network */
3379 path = "";
3380 break;
3381 case LTTNG_DST_PATH:
3382 /* Very volatile pointer. Only used for the create session. */
3383 path = ctrl_uri->dst.path;
3384 strncpy(consumer->dst.trace_path, path,
3385 sizeof(consumer->dst.trace_path));
3386 break;
3387 }
3388
3389 /* Set if the consumer is enabled or not */
3390 consumer->enabled = enable_consumer;
54d01ffb 3391
730389d9
DG
3392 ret = session_create(name, path, LTTNG_SOCK_GET_UID_CRED(creds),
3393 LTTNG_SOCK_GET_GID_CRED(creds));
54d01ffb 3394 if (ret != LTTCOMM_OK) {
00e2e675 3395 goto consumer_error;
54d01ffb
DG
3396 }
3397
00e2e675
DG
3398 /* Get the newly created session pointer back */
3399 session = session_find_by_name(name);
3400 assert(session);
3401
3402 /* Assign consumer to session */
3403 session->consumer = consumer;
3404
3405 return LTTCOMM_OK;
3406
3407consumer_error:
3408 consumer_destroy_output(consumer);
3409error:
3410 return ret;
3411}
3412
3413/*
3414 * Command LTTNG_CREATE_SESSION processed by the client thread.
3415 */
3416static int cmd_create_session(char *name, char *path, lttng_sock_cred *creds)
3417{
3418 int ret;
3419 struct lttng_uri uri;
3420
3421 /* Zeroed temporary URI */
3422 memset(&uri, 0, sizeof(uri));
3423
3424 uri.dtype = LTTNG_DST_PATH;
3425 uri.utype = LTTNG_URI_DST;
3426 strncpy(uri.dst.path, path, sizeof(uri.dst.path));
3427
3428 /* TODO: Strip date-time from path and put it in uri's subdir */
3429
3430 ret = cmd_create_session_uri(name, &uri, NULL, 1, creds);
3431 if (ret != LTTCOMM_OK) {
3432 goto error;
3433 }
54d01ffb
DG
3434
3435error:
3436 return ret;
3437}
3438
3439/*
3440 * Command LTTNG_DESTROY_SESSION processed by the client thread.
3441 */
3442static int cmd_destroy_session(struct ltt_session *session, char *name)
3443{
3444 int ret;
3445
3446 /* Clean kernel session teardown */
3447 teardown_kernel_session(session);
84cd17c6
MD
3448 /* UST session teardown */
3449 teardown_ust_session(session);
54d01ffb
DG
3450
3451 /*
3452 * Must notify the kernel thread here to update it's poll setin order
3453 * to remove the channel(s)' fd just destroyed.
3454 */
3455 ret = notify_thread_pipe(kernel_poll_pipe[1]);
3456 if (ret < 0) {
76d7553f 3457 PERROR("write kernel poll pipe");
54d01ffb
DG
3458 }
3459
271933a4 3460 ret = session_destroy(session);
54d01ffb
DG
3461
3462 return ret;
3463}
3464
3465/*
3466 * Command LTTNG_CALIBRATE processed by the client thread.
3467 */
3468static int cmd_calibrate(int domain, struct lttng_calibrate *calibrate)
3469{
3470 int ret;
3471
3472 switch (domain) {
3473 case LTTNG_DOMAIN_KERNEL:
33a2b854 3474 {
54d01ffb 3475 struct lttng_kernel_calibrate kcalibrate;
33a2b854 3476
54d01ffb
DG
3477 kcalibrate.type = calibrate->type;
3478 ret = kernel_calibrate(kernel_tracer_fd, &kcalibrate);
33a2b854 3479 if (ret < 0) {
54d01ffb
DG
3480 ret = LTTCOMM_KERN_ENABLE_FAIL;
3481 goto error;
33a2b854 3482 }
54d01ffb
DG
3483 break;
3484 }
4466912f
DG
3485 case LTTNG_DOMAIN_UST:
3486 {
3487 struct lttng_ust_calibrate ucalibrate;
3488
3489 ucalibrate.type = calibrate->type;
3490 ret = ust_app_calibrate_glb(&ucalibrate);
3491 if (ret < 0) {
3492 ret = LTTCOMM_UST_CALIBRATE_FAIL;
3493 goto error;
3494 }
3495 break;
3496 }
54d01ffb 3497 default:
1ab1ea0b 3498 ret = LTTCOMM_UND;
54d01ffb
DG
3499 goto error;
3500 }
33a2b854 3501
54d01ffb 3502 ret = LTTCOMM_OK;
33a2b854 3503
54d01ffb
DG
3504error:
3505 return ret;
3506}
7d29a247 3507
54d01ffb
DG
3508/*
3509 * Command LTTNG_REGISTER_CONSUMER processed by the client thread.
3510 */
3511static int cmd_register_consumer(struct ltt_session *session, int domain,
3512 char *sock_path)
3513{
3514 int ret, sock;
b389abbe 3515
54d01ffb
DG
3516 switch (domain) {
3517 case LTTNG_DOMAIN_KERNEL:
3518 /* Can't register a consumer if there is already one */
48c4f28c 3519 if (session->kernel_session->consumer_fds_sent != 0) {
54d01ffb
DG
3520 ret = LTTCOMM_KERN_CONSUMER_FAIL;
3521 goto error;
3522 }
3523
3524 sock = lttcomm_connect_unix_sock(sock_path);
3525 if (sock < 0) {
3526 ret = LTTCOMM_CONNECT_FAIL;
3527 goto error;
3528 }
3529
3530 session->kernel_session->consumer_fd = sock;
3531 break;
3532 default:
3533 /* TODO: Userspace tracing */
1ab1ea0b 3534 ret = LTTCOMM_UND;
54d01ffb
DG
3535 goto error;
3536 }
3537
3538 ret = LTTCOMM_OK;
3539
3540error:
3541 return ret;
3542}
3543
3544/*
3545 * Command LTTNG_LIST_DOMAINS processed by the client thread.
3546 */
3547static ssize_t cmd_list_domains(struct ltt_session *session,
3548 struct lttng_domain **domains)
3549{
b551a063 3550 int ret, index = 0;
54d01ffb
DG
3551 ssize_t nb_dom = 0;
3552
3553 if (session->kernel_session != NULL) {
b551a063 3554 DBG3("Listing domains found kernel domain");
54d01ffb
DG
3555 nb_dom++;
3556 }
3557
b551a063
DG
3558 if (session->ust_session != NULL) {
3559 DBG3("Listing domains found UST global domain");
3560 nb_dom++;
3561 }
54d01ffb 3562
b551a063 3563 *domains = zmalloc(nb_dom * sizeof(struct lttng_domain));
54d01ffb
DG
3564 if (*domains == NULL) {
3565 ret = -LTTCOMM_FATAL;
3566 goto error;
3567 }
3568
b551a063
DG
3569 if (session->kernel_session != NULL) {
3570 (*domains)[index].type = LTTNG_DOMAIN_KERNEL;
3571 index++;
3572 }
3573
3574 if (session->ust_session != NULL) {
3575 (*domains)[index].type = LTTNG_DOMAIN_UST;
3576 index++;
3577 }
54d01ffb 3578
54d01ffb
DG
3579 return nb_dom;
3580
3581error:
3582 return ret;
3583}
3584
3585/*
3586 * Command LTTNG_LIST_CHANNELS processed by the client thread.
3587 */
b551a063 3588static ssize_t cmd_list_channels(int domain, struct ltt_session *session,
54d01ffb
DG
3589 struct lttng_channel **channels)
3590{
3591 int ret;
3592 ssize_t nb_chan = 0;
3593
b551a063
DG
3594 switch (domain) {
3595 case LTTNG_DOMAIN_KERNEL:
3596 if (session->kernel_session != NULL) {
3597 nb_chan = session->kernel_session->channel_count;
3598 }
0df502fd 3599 DBG3("Number of kernel channels %zd", nb_chan);
b551a063
DG
3600 break;
3601 case LTTNG_DOMAIN_UST:
3602 if (session->ust_session != NULL) {
bec39940 3603 nb_chan = lttng_ht_get_count(
b551a063
DG
3604 session->ust_session->domain_global.channels);
3605 }
0df502fd 3606 DBG3("Number of UST global channels %zd", nb_chan);
b551a063
DG
3607 break;
3608 default:
3609 *channels = NULL;
1ab1ea0b 3610 ret = -LTTCOMM_UND;
54d01ffb
DG
3611 goto error;
3612 }
3613
b551a063
DG
3614 if (nb_chan > 0) {
3615 *channels = zmalloc(nb_chan * sizeof(struct lttng_channel));
3616 if (*channels == NULL) {
3617 ret = -LTTCOMM_FATAL;
3618 goto error;
3619 }
54d01ffb 3620
b551a063
DG
3621 list_lttng_channels(domain, session, *channels);
3622 } else {
3623 *channels = NULL;
3624 }
2bdd86d4 3625
54d01ffb
DG
3626 return nb_chan;
3627
3628error:
3629 return ret;
3630}
3631
3632/*
3633 * Command LTTNG_LIST_EVENTS processed by the client thread.
3634 */
b551a063 3635static ssize_t cmd_list_events(int domain, struct ltt_session *session,
54d01ffb
DG
3636 char *channel_name, struct lttng_event **events)
3637{
b551a063 3638 int ret = 0;
54d01ffb 3639 ssize_t nb_event = 0;
54d01ffb 3640
b551a063
DG
3641 switch (domain) {
3642 case LTTNG_DOMAIN_KERNEL:
3643 if (session->kernel_session != NULL) {
3644 nb_event = list_lttng_kernel_events(channel_name,
3645 session->kernel_session, events);
54d01ffb 3646 }
b551a063
DG
3647 break;
3648 case LTTNG_DOMAIN_UST:
3649 {
3650 if (session->ust_session != NULL) {
3651 nb_event = list_lttng_ust_global_events(channel_name,
3652 &session->ust_session->domain_global, events);
3653 }
3654 break;
54d01ffb 3655 }
b551a063 3656 default:
1ab1ea0b 3657 ret = -LTTCOMM_UND;
54d01ffb
DG
3658 goto error;
3659 }
3660
b551a063 3661 ret = nb_event;
54d01ffb
DG
3662
3663error:
3664 return ret;
3665}
3666
00e2e675
DG
3667/*
3668 * Command LTTNG_SET_CONSUMER_URI processed by the client thread.
3669 */
3670static int cmd_set_consumer_uri(int domain, struct ltt_session *session,
3671 struct lttng_uri *uri)
3672{
3673 int ret;
3674 struct ltt_kernel_session *ksess = session->kernel_session;
3675 struct ltt_ust_session *usess = session->ust_session;
3676 struct consumer_output *consumer;
3677
3678 /* Can't enable consumer after session started. */
3679 if (session->enabled) {
3680 ret = LTTCOMM_TRACE_ALREADY_STARTED;
3681 goto error;
3682 }
3683
3684 switch (domain) {
3685 case LTTNG_DOMAIN_KERNEL:
3686 /* Code flow error if we don't have a kernel session here. */
3687 assert(ksess);
3688
3689 /* Create consumer output if none exists */
3690 consumer = ksess->tmp_consumer;
3691 if (consumer == NULL) {
3692 consumer = consumer_copy_output(ksess->consumer);
3693 if (consumer == NULL) {
3694 ret = LTTCOMM_FATAL;
3695 goto error;
3696 }
3697 /* Reassign new pointer */
3698 ksess->tmp_consumer = consumer;
3699 }
3700
3701 switch (uri->dtype) {
3702 case LTTNG_DST_IPV4:
3703 case LTTNG_DST_IPV6:
3704 DBG2("Setting network URI for kernel session %s", session->name);
3705
3706 /* Set URI into consumer output object */
3707 ret = consumer_set_network_uri(consumer, uri);
3708 if (ret < 0) {
3709 ret = LTTCOMM_FATAL;
3710 goto error;
3711 }
3712
3713 /* On a new subdir, reappend the default trace dir. */
3714 if (strlen(uri->subdir) != 0) {
3715 strncat(consumer->subdir, DEFAULT_KERNEL_TRACE_DIR,
3716 sizeof(consumer->subdir));
3717 }
3718
3719 ret = send_socket_relayd_consumer(domain, session, uri, consumer,
3720 ksess->consumer_fd);
3721 if (ret != LTTCOMM_OK) {
3722 goto error;
3723 }
3724 break;
3725 case LTTNG_DST_PATH:
3726 DBG2("Setting trace directory path from URI to %s", uri->dst.path);
3727 memset(consumer->dst.trace_path, 0,
3728 sizeof(consumer->dst.trace_path));
3729 strncpy(consumer->dst.trace_path, uri->dst.path,
3730 sizeof(consumer->dst.trace_path));
3731 /* Append default kernel trace dir */
3732 strncat(consumer->dst.trace_path, DEFAULT_KERNEL_TRACE_DIR,
3733 sizeof(consumer->dst.trace_path));
3734 break;
3735 }
3736
3737 /* All good! */
3738 break;
3739 case LTTNG_DOMAIN_UST:
3740 /* Code flow error if we don't have a kernel session here. */
3741 assert(usess);
3742
3743 /* Create consumer output if none exists */
3744 consumer = usess->tmp_consumer;
3745 if (consumer == NULL) {
3746 consumer = consumer_copy_output(usess->consumer);
3747 if (consumer == NULL) {
3748 ret = LTTCOMM_FATAL;
3749 goto error;
3750 }
3751 /* Reassign new pointer */
3752 usess->tmp_consumer = consumer;
3753 }
3754
3755 switch (uri->dtype) {
3756 case LTTNG_DST_IPV4:
3757 case LTTNG_DST_IPV6:
3758 {
3759 DBG2("Setting network URI for UST session %s", session->name);
3760
3761 /* Set URI into consumer object */
3762 ret = consumer_set_network_uri(consumer, uri);
3763 if (ret < 0) {
3764 ret = LTTCOMM_FATAL;
3765 goto error;
3766 }
3767
3768 /* On a new subdir, reappend the default trace dir. */
3769 if (strlen(uri->subdir) != 0) {
3770 strncat(consumer->subdir, DEFAULT_UST_TRACE_DIR,
3771 sizeof(consumer->subdir));
3772 }
3773
3774 if (ust_consumerd64_fd >= 0) {
3775 ret = send_socket_relayd_consumer(domain, session, uri,
3776 consumer, ust_consumerd64_fd);
3777 if (ret != LTTCOMM_OK) {
3778 goto error;
3779 }
3780 }
3781
3782 if (ust_consumerd32_fd >= 0) {
3783 ret = send_socket_relayd_consumer(domain, session, uri,
3784 consumer, ust_consumerd32_fd);
3785 if (ret != LTTCOMM_OK) {
3786 goto error;
3787 }
3788 }
3789
3790 break;
3791 }
3792 case LTTNG_DST_PATH:
3793 DBG2("Setting trace directory path from URI to %s", uri->dst.path);
3794 memset(consumer->dst.trace_path, 0,
3795 sizeof(consumer->dst.trace_path));
3796 strncpy(consumer->dst.trace_path, uri->dst.path,
3797 sizeof(consumer->dst.trace_path));
3798 /* Append default UST trace dir */
3799 strncat(consumer->dst.trace_path, DEFAULT_UST_TRACE_DIR,
3800 sizeof(consumer->dst.trace_path));
3801 break;
3802 }
3803 break;
3804 }
3805
3806 /* All good! */
3807 ret = LTTCOMM_OK;
3808
3809error:
3810 return ret;
3811}
3812
3813/*
3814 * Command LTTNG_DISABLE_CONSUMER processed by the client thread.
3815 */
3816static int cmd_disable_consumer(int domain, struct ltt_session *session)
3817{
3818 int ret;
3819 struct ltt_kernel_session *ksess = session->kernel_session;
3820 struct ltt_ust_session *usess = session->ust_session;
3821 struct consumer_output *consumer;
3822
3823 if (session->enabled) {
3824 /* Can't disable consumer on an already started session */
3825 ret = LTTCOMM_TRACE_ALREADY_STARTED;
3826 goto error;
3827 }
3828
3829 switch (domain) {
3830 case LTTNG_DOMAIN_KERNEL:
3831 /* Code flow error if we don't have a kernel session here. */
3832 assert(ksess);
3833
3834 DBG("Disabling kernel consumer");
3835 consumer = ksess->consumer;
3836
3837 break;
3838 case LTTNG_DOMAIN_UST:
3839 /* Code flow error if we don't have a UST session here. */
3840 assert(usess);
3841
3842 DBG("Disabling UST consumer");
3843 consumer = usess->consumer;
3844
3845 break;
3846 default:
3847 ret = LTTCOMM_UNKNOWN_DOMAIN;
3848 goto error;
3849 }
3850
3851 assert(consumer);
3852 consumer->enabled = 0;
3853
3854 /* Success at this point */
3855 ret = LTTCOMM_OK;
3856
3857error:
3858 return ret;
3859}
3860
3861/*
3862 * Command LTTNG_ENABLE_CONSUMER processed by the client thread.
3863 */
3864static int cmd_enable_consumer(int domain, struct ltt_session *session)
3865{
3866 int ret;
3867 struct ltt_kernel_session *ksess = session->kernel_session;
3868 struct ltt_ust_session *usess = session->ust_session;
3869 struct consumer_output *tmp_out;
3870
3871 /* Can't enable consumer after session started. */
3872 if (session->enabled) {
3873 ret = LTTCOMM_TRACE_ALREADY_STARTED;
3874 goto error;
3875 }
3876
3877 switch (domain) {
3878 case LTTNG_DOMAIN_KERNEL:
3879 /* Code flow error if we don't have a kernel session here. */
3880 assert(ksess);
3881
3882 /*
3883 * Check if we have already sent fds to the consumer. In that case,
3884 * the enable-consumer command can't be used because a start trace
3885 * had previously occured.
3886 */
3887 if (ksess->consumer_fds_sent) {
3888 ret = LTTCOMM_ENABLE_CONSUMER_FAIL;
3889 goto error;
3890 }
3891
3892 tmp_out = ksess->tmp_consumer;
3893 if (tmp_out == NULL) {
3894 /* No temp. consumer output exists. Using the current one. */
3895 DBG3("No temporary consumer. Using default");
3896 ret = LTTCOMM_OK;
3897 goto error;
3898 }
3899
3900 switch (tmp_out->type) {
3901 case CONSUMER_DST_LOCAL:
3902 DBG2("Consumer output is local. Creating directory(ies)");
3903
3904 /* Create directory(ies) */
3905 ret = run_as_mkdir_recursive(tmp_out->dst.trace_path,
3906 S_IRWXU | S_IRWXG, session->uid, session->gid);
3907 if (ret < 0) {
3908 if (ret != -EEXIST) {
3909 ERR("Trace directory creation error");
3910 ret = LTTCOMM_FATAL;
3911 goto error;
3912 }
3913 }
3914 break;
3915 case CONSUMER_DST_NET:
3916 DBG2("Consumer output is network. Validating URIs");
3917 /* Validate if we have both control and data path set. */
3918 if (!tmp_out->dst.net.control_isset) {
3919 ret = LTTCOMM_URI_CTRL_MISS;
3920 goto error;
3921 }
3922
3923 if (!tmp_out->dst.net.data_isset) {
3924 ret = LTTCOMM_URI_DATA_MISS;
3925 goto error;
3926 }
3927
3928 /* Check established network session state */
3929 if (session->net_handle == 0) {
3930 ret = LTTCOMM_ENABLE_CONSUMER_FAIL;
3931 ERR("Session network handle is not set on enable-consumer");
3932 goto error;
3933 }
3934
3935 /* Append default kernel trace dir to subdir */
3936 strncat(ksess->consumer->subdir, DEFAULT_KERNEL_TRACE_DIR,
3937 sizeof(ksess->consumer->subdir));
3938
3939 break;
3940 }
3941
3942 /*
3943 * @session-lock
3944 * This is race free for now since the session lock is acquired before
3945 * ending up in this function. No other threads can access this kernel
3946 * session without this lock hence freeing the consumer output object
3947 * is valid.
3948 */
3949 consumer_destroy_output(ksess->consumer);
3950 ksess->consumer = tmp_out;
3951 ksess->tmp_consumer = NULL;
3952
3953 break;
3954 case LTTNG_DOMAIN_UST:
3955 /* Code flow error if we don't have a UST session here. */
3956 assert(usess);
3957
3958 /*
3959 * Check if we have already sent fds to the consumer. In that case,
3960 * the enable-consumer command can't be used because a start trace
3961 * had previously occured.
3962 */
3963 if (usess->start_trace) {
3964 ret = LTTCOMM_ENABLE_CONSUMER_FAIL;
3965 goto error;
3966 }
3967
3968 tmp_out = usess->tmp_consumer;
3969 if (tmp_out == NULL) {
3970 /* No temp. consumer output exists. Using the current one. */
3971 DBG3("No temporary consumer. Using default");
3972 ret = LTTCOMM_OK;
3973 goto error;
3974 }
3975
3976 switch (tmp_out->type) {
3977 case CONSUMER_DST_LOCAL:
3978 DBG2("Consumer output is local. Creating directory(ies)");
3979
3980 /* Create directory(ies) */
3981 ret = run_as_mkdir_recursive(tmp_out->dst.trace_path,
3982 S_IRWXU | S_IRWXG, session->uid, session->gid);
3983 if (ret < 0) {
3984 if (ret != -EEXIST) {
3985 ERR("Trace directory creation error");
3986 ret = LTTCOMM_FATAL;
3987 goto error;
3988 }
3989 }
3990 break;
3991 case CONSUMER_DST_NET:
3992 DBG2("Consumer output is network. Validating URIs");
3993 /* Validate if we have both control and data path set. */
3994 if (!tmp_out->dst.net.control_isset) {
3995 ret = LTTCOMM_URI_CTRL_MISS;
3996 goto error;
3997 }
3998
3999 if (!tmp_out->dst.net.data_isset) {
4000 ret = LTTCOMM_URI_DATA_MISS;
4001 goto error;
4002 }
4003
4004 /* Check established network session state */
4005 if (session->net_handle == 0) {
4006 ret = LTTCOMM_ENABLE_CONSUMER_FAIL;
4007 DBG2("Session network handle is not set on enable-consumer");
4008 goto error;
4009 }
4010
4011 if (tmp_out->net_seq_index == -1) {
4012 ret = LTTCOMM_ENABLE_CONSUMER_FAIL;
4013 DBG2("Network index is not set on the consumer");
4014 goto error;
4015 }
4016
4017 /* Append default kernel trace dir to subdir */
4018 strncat(usess->consumer->subdir, DEFAULT_UST_TRACE_DIR,
4019 sizeof(usess->consumer->subdir));
4020
4021 break;
4022 }
4023
4024 /*
4025 * @session-lock
4026 * This is race free for now since the session lock is acquired before
4027 * ending up in this function. No other threads can access this kernel
4028 * session without this lock hence freeing the consumer output object
4029 * is valid.
4030 */
4031 consumer_destroy_output(usess->consumer);
4032 usess->consumer = tmp_out;
4033 usess->tmp_consumer = NULL;
4034
4035 break;
4036 }
4037
4038 /* Success at this point */
4039 ret = LTTCOMM_OK;
4040
4041error:
4042 return ret;
4043}
4044
54d01ffb
DG
4045/*
4046 * Process the command requested by the lttng client within the command
4047 * context structure. This function make sure that the return structure (llm)
4048 * is set and ready for transmission before returning.
4049 *
4050 * Return any error encountered or 0 for success.
53a80697
MD
4051 *
4052 * "sock" is only used for special-case var. len data.
54d01ffb 4053 */
53a80697
MD
4054static int process_client_msg(struct command_ctx *cmd_ctx, int sock,
4055 int *sock_error)
54d01ffb
DG
4056{
4057 int ret = LTTCOMM_OK;
44d3bd01 4058 int need_tracing_session = 1;
2e09ba09 4059 int need_domain;
54d01ffb
DG
4060
4061 DBG("Processing client command %d", cmd_ctx->lsm->cmd_type);
4062
53a80697
MD
4063 *sock_error = 0;
4064
2e09ba09
MD
4065 switch (cmd_ctx->lsm->cmd_type) {
4066 case LTTNG_CREATE_SESSION:
00e2e675 4067 case LTTNG_CREATE_SESSION_URI:
2e09ba09
MD
4068 case LTTNG_DESTROY_SESSION:
4069 case LTTNG_LIST_SESSIONS:
4070 case LTTNG_LIST_DOMAINS:
4071 case LTTNG_START_TRACE:
4072 case LTTNG_STOP_TRACE:
4073 need_domain = 0;
3aace903 4074 break;
2e09ba09
MD
4075 default:
4076 need_domain = 1;
4077 }
4078
4079 if (opt_no_kernel && need_domain
4080 && cmd_ctx->lsm->domain.type == LTTNG_DOMAIN_KERNEL) {
531d29f9
MD
4081 if (!is_root) {
4082 ret = LTTCOMM_NEED_ROOT_SESSIOND;
4083 } else {
4084 ret = LTTCOMM_KERN_NA;
4085 }
4fba7219
DG
4086 goto error;
4087 }
4088
54d01ffb
DG
4089 /*
4090 * Check for command that don't needs to allocate a returned payload. We do
44d3bd01 4091 * this here so we don't have to make the call for no payload at each
54d01ffb
DG
4092 * command.
4093 */
4094 switch(cmd_ctx->lsm->cmd_type) {
4095 case LTTNG_LIST_SESSIONS:
4096 case LTTNG_LIST_TRACEPOINTS:
f37d259d 4097 case LTTNG_LIST_TRACEPOINT_FIELDS:
54d01ffb
DG
4098 case LTTNG_LIST_DOMAINS:
4099 case LTTNG_LIST_CHANNELS:
4100 case LTTNG_LIST_EVENTS:
4101 break;
4102 default:
4103 /* Setup lttng message with no payload */
4104 ret = setup_lttng_msg(cmd_ctx, 0);
4105 if (ret < 0) {
4106 /* This label does not try to unlock the session */
4107 goto init_setup_error;
4108 }
4109 }
4110
4111 /* Commands that DO NOT need a session. */
4112 switch (cmd_ctx->lsm->cmd_type) {
54d01ffb 4113 case LTTNG_CREATE_SESSION:
00e2e675 4114 case LTTNG_CREATE_SESSION_URI:
2e09ba09 4115 case LTTNG_CALIBRATE:
54d01ffb
DG
4116 case LTTNG_LIST_SESSIONS:
4117 case LTTNG_LIST_TRACEPOINTS:
f37d259d 4118 case LTTNG_LIST_TRACEPOINT_FIELDS:
44d3bd01 4119 need_tracing_session = 0;
54d01ffb
DG
4120 break;
4121 default:
4122 DBG("Getting session %s by name", cmd_ctx->lsm->session.name);
256a5576
MD
4123 /*
4124 * We keep the session list lock across _all_ commands
4125 * for now, because the per-session lock does not
4126 * handle teardown properly.
4127 */
74babd95 4128 session_lock_list();
54d01ffb
DG
4129 cmd_ctx->session = session_find_by_name(cmd_ctx->lsm->session.name);
4130 if (cmd_ctx->session == NULL) {
4131 if (cmd_ctx->lsm->session.name != NULL) {
4132 ret = LTTCOMM_SESS_NOT_FOUND;
4133 } else {
4134 /* If no session name specified */
4135 ret = LTTCOMM_SELECT_SESS;
4136 }
4137 goto error;
4138 } else {
4139 /* Acquire lock for the session */
4140 session_lock(cmd_ctx->session);
4141 }
4142 break;
4143 }
b389abbe 4144
2e09ba09
MD
4145 if (!need_domain) {
4146 goto skip_domain;
4147 }
54d01ffb
DG
4148 /*
4149 * Check domain type for specific "pre-action".
4150 */
4151 switch (cmd_ctx->lsm->domain.type) {
4152 case LTTNG_DOMAIN_KERNEL:
d1f1c568 4153 if (!is_root) {
531d29f9 4154 ret = LTTCOMM_NEED_ROOT_SESSIOND;
d1f1c568
DG
4155 goto error;
4156 }
4157
54d01ffb 4158 /* Kernel tracer check */
a4b35e07 4159 if (kernel_tracer_fd == -1) {
54d01ffb 4160 /* Basically, load kernel tracer modules */
096102bd
DG
4161 ret = init_kernel_tracer();
4162 if (ret != 0) {
54d01ffb
DG
4163 goto error;
4164 }
4165 }
5eb91c98 4166
5c827ce0
DG
4167 /* Consumer is in an ERROR state. Report back to client */
4168 if (uatomic_read(&kernel_consumerd_state) == CONSUMER_ERROR) {
4169 ret = LTTCOMM_NO_KERNCONSUMERD;
4170 goto error;
4171 }
4172
54d01ffb 4173 /* Need a session for kernel command */
44d3bd01 4174 if (need_tracing_session) {
54d01ffb 4175 if (cmd_ctx->session->kernel_session == NULL) {
6df2e2c9 4176 ret = create_kernel_session(cmd_ctx->session);
5eb91c98 4177 if (ret < 0) {
54d01ffb 4178 ret = LTTCOMM_KERN_SESS_FAIL;
5eb91c98
DG
4179 goto error;
4180 }
b389abbe 4181 }
7d29a247 4182
54d01ffb 4183 /* Start the kernel consumer daemon */
3bd1e081
MD
4184 pthread_mutex_lock(&kconsumer_data.pid_mutex);
4185 if (kconsumer_data.pid == 0 &&
54d01ffb 4186 cmd_ctx->lsm->cmd_type != LTTNG_REGISTER_CONSUMER) {
3bd1e081
MD
4187 pthread_mutex_unlock(&kconsumer_data.pid_mutex);
4188 ret = start_consumerd(&kconsumer_data);
7d29a247 4189 if (ret < 0) {
54d01ffb
DG
4190 ret = LTTCOMM_KERN_CONSUMER_FAIL;
4191 goto error;
950131af 4192 }
5c827ce0 4193 uatomic_set(&kernel_consumerd_state, CONSUMER_STARTED);
00e2e675
DG
4194
4195 /* Set consumer fd of the session */
4196 cmd_ctx->session->kernel_session->consumer_fd =
4197 kconsumer_data.cmd_sock;
3ff2ecac
MD
4198 } else {
4199 pthread_mutex_unlock(&kconsumer_data.pid_mutex);
33a2b854 4200 }
0d0c377a 4201 }
5c827ce0 4202
54d01ffb 4203 break;
2bdd86d4 4204 case LTTNG_DOMAIN_UST:
44d3bd01 4205 {
5c827ce0
DG
4206 /* Consumer is in an ERROR state. Report back to client */
4207 if (uatomic_read(&ust_consumerd_state) == CONSUMER_ERROR) {
4208 ret = LTTCOMM_NO_USTCONSUMERD;
4209 goto error;
4210 }
4211
44d3bd01 4212 if (need_tracing_session) {
f6a9efaa 4213 if (cmd_ctx->session->ust_session == NULL) {
44d3bd01 4214 ret = create_ust_session(cmd_ctx->session,
6df2e2c9 4215 &cmd_ctx->lsm->domain);
44d3bd01
DG
4216 if (ret != LTTCOMM_OK) {
4217 goto error;
4218 }
4219 }
00e2e675 4220
7753dea8
MD
4221 /* Start the UST consumer daemons */
4222 /* 64-bit */
4223 pthread_mutex_lock(&ustconsumer64_data.pid_mutex);
fc7a59ce 4224 if (consumerd64_bin[0] != '\0' &&
7753dea8 4225 ustconsumer64_data.pid == 0 &&
2bdd86d4 4226 cmd_ctx->lsm->cmd_type != LTTNG_REGISTER_CONSUMER) {
7753dea8
MD
4227 pthread_mutex_unlock(&ustconsumer64_data.pid_mutex);
4228 ret = start_consumerd(&ustconsumer64_data);
2bdd86d4 4229 if (ret < 0) {
7753dea8
MD
4230 ret = LTTCOMM_UST_CONSUMER64_FAIL;
4231 ust_consumerd64_fd = -EINVAL;
2bdd86d4
MD
4232 goto error;
4233 }
48842b30 4234
7753dea8 4235 ust_consumerd64_fd = ustconsumer64_data.cmd_sock;
5c827ce0 4236 uatomic_set(&ust_consumerd_state, CONSUMER_STARTED);
3ff2ecac 4237 } else {
7753dea8
MD
4238 pthread_mutex_unlock(&ustconsumer64_data.pid_mutex);
4239 }
4240 /* 32-bit */
fc7a59ce 4241 if (consumerd32_bin[0] != '\0' &&
7753dea8
MD
4242 ustconsumer32_data.pid == 0 &&
4243 cmd_ctx->lsm->cmd_type != LTTNG_REGISTER_CONSUMER) {
4244 pthread_mutex_unlock(&ustconsumer32_data.pid_mutex);
4245 ret = start_consumerd(&ustconsumer32_data);
4246 if (ret < 0) {
4247 ret = LTTCOMM_UST_CONSUMER32_FAIL;
4248 ust_consumerd32_fd = -EINVAL;
4249 goto error;
4250 }
5c827ce0 4251
7753dea8 4252 ust_consumerd32_fd = ustconsumer32_data.cmd_sock;
5c827ce0 4253 uatomic_set(&ust_consumerd_state, CONSUMER_STARTED);
7753dea8
MD
4254 } else {
4255 pthread_mutex_unlock(&ustconsumer32_data.pid_mutex);
2bdd86d4 4256 }
44d3bd01
DG
4257 }
4258 break;
48842b30 4259 }
54d01ffb 4260 default:
54d01ffb
DG
4261 break;
4262 }
2e09ba09 4263skip_domain:
33a2b854 4264
5c827ce0
DG
4265 /* Validate consumer daemon state when start/stop trace command */
4266 if (cmd_ctx->lsm->cmd_type == LTTNG_START_TRACE ||
4267 cmd_ctx->lsm->cmd_type == LTTNG_STOP_TRACE) {
4268 switch (cmd_ctx->lsm->domain.type) {
4269 case LTTNG_DOMAIN_UST:
4270 if (uatomic_read(&ust_consumerd_state) != CONSUMER_STARTED) {
4271 ret = LTTCOMM_NO_USTCONSUMERD;
4272 goto error;
4273 }
4274 break;
4275 case LTTNG_DOMAIN_KERNEL:
4276 if (uatomic_read(&kernel_consumerd_state) != CONSUMER_STARTED) {
4277 ret = LTTCOMM_NO_KERNCONSUMERD;
4278 goto error;
4279 }
4280 break;
4281 }
4282 }
4283
8e0af1b4
MD
4284 /*
4285 * Check that the UID or GID match that of the tracing session.
4286 * The root user can interact with all sessions.
4287 */
4288 if (need_tracing_session) {
4289 if (!session_access_ok(cmd_ctx->session,
730389d9
DG
4290 LTTNG_SOCK_GET_UID_CRED(&cmd_ctx->creds),
4291 LTTNG_SOCK_GET_GID_CRED(&cmd_ctx->creds))) {
8e0af1b4
MD
4292 ret = LTTCOMM_EPERM;
4293 goto error;
4294 }
4295 }
4296
54d01ffb
DG
4297 /* Process by command type */
4298 switch (cmd_ctx->lsm->cmd_type) {
4299 case LTTNG_ADD_CONTEXT:
4300 {
4301 ret = cmd_add_context(cmd_ctx->session, cmd_ctx->lsm->domain.type,
4302 cmd_ctx->lsm->u.context.channel_name,
4303 cmd_ctx->lsm->u.context.event_name,
4304 &cmd_ctx->lsm->u.context.ctx);
4305 break;
4306 }
4307 case LTTNG_DISABLE_CHANNEL:
4308 {
4309 ret = cmd_disable_channel(cmd_ctx->session, cmd_ctx->lsm->domain.type,
4310 cmd_ctx->lsm->u.disable.channel_name);
4311 break;
4312 }
4313 case LTTNG_DISABLE_EVENT:
4314 {
4315 ret = cmd_disable_event(cmd_ctx->session, cmd_ctx->lsm->domain.type,
4316 cmd_ctx->lsm->u.disable.channel_name,
4317 cmd_ctx->lsm->u.disable.name);
33a2b854
DG
4318 break;
4319 }
54d01ffb
DG
4320 case LTTNG_DISABLE_ALL_EVENT:
4321 {
2bdd86d4 4322 DBG("Disabling all events");
54d01ffb
DG
4323
4324 ret = cmd_disable_event_all(cmd_ctx->session, cmd_ctx->lsm->domain.type,
4325 cmd_ctx->lsm->u.disable.channel_name);
4326 break;
4327 }
00e2e675
DG
4328 case LTTNG_DISABLE_CONSUMER:
4329 {
4330 ret = cmd_disable_consumer(cmd_ctx->lsm->domain.type, cmd_ctx->session);
4331 break;
4332 }
54d01ffb
DG
4333 case LTTNG_ENABLE_CHANNEL:
4334 {
aea829b3 4335 ret = cmd_enable_channel(cmd_ctx->session, cmd_ctx->lsm->domain.type,
54d01ffb
DG
4336 &cmd_ctx->lsm->u.channel.chan);
4337 break;
4338 }
00e2e675
DG
4339 case LTTNG_ENABLE_CONSUMER:
4340 {
4341 ret = cmd_enable_consumer(cmd_ctx->lsm->domain.type, cmd_ctx->session);
4342 break;
4343 }
54d01ffb
DG
4344 case LTTNG_ENABLE_EVENT:
4345 {
4346 ret = cmd_enable_event(cmd_ctx->session, cmd_ctx->lsm->domain.type,
4347 cmd_ctx->lsm->u.enable.channel_name,
4348 &cmd_ctx->lsm->u.enable.event);
4349 break;
4350 }
4351 case LTTNG_ENABLE_ALL_EVENT:
4352 {
2bdd86d4 4353 DBG("Enabling all events");
54d01ffb
DG
4354
4355 ret = cmd_enable_event_all(cmd_ctx->session, cmd_ctx->lsm->domain.type,
8c9ae521
DG
4356 cmd_ctx->lsm->u.enable.channel_name,
4357 cmd_ctx->lsm->u.enable.event.type);
54d01ffb
DG
4358 break;
4359 }
052da939 4360 case LTTNG_LIST_TRACEPOINTS:
2ef84c95 4361 {
9f19cc17 4362 struct lttng_event *events;
54d01ffb 4363 ssize_t nb_events;
052da939 4364
54d01ffb
DG
4365 nb_events = cmd_list_tracepoints(cmd_ctx->lsm->domain.type, &events);
4366 if (nb_events < 0) {
4367 ret = -nb_events;
4368 goto error;
2ef84c95
DG
4369 }
4370
4371 /*
4372 * Setup lttng message with payload size set to the event list size in
4373 * bytes and then copy list into the llm payload.
4374 */
052da939 4375 ret = setup_lttng_msg(cmd_ctx, sizeof(struct lttng_event) * nb_events);
2ef84c95 4376 if (ret < 0) {
052da939 4377 free(events);
2ef84c95
DG
4378 goto setup_error;
4379 }
4380
4381 /* Copy event list into message payload */
9f19cc17 4382 memcpy(cmd_ctx->llm->payload, events,
052da939 4383 sizeof(struct lttng_event) * nb_events);
2ef84c95 4384
9f19cc17 4385 free(events);
2ef84c95
DG
4386
4387 ret = LTTCOMM_OK;
4388 break;
4389 }
f37d259d
MD
4390 case LTTNG_LIST_TRACEPOINT_FIELDS:
4391 {
4392 struct lttng_event_field *fields;
4393 ssize_t nb_fields;
4394
4395 nb_fields = cmd_list_tracepoint_fields(cmd_ctx->lsm->domain.type, &fields);
4396 if (nb_fields < 0) {
4397 ret = -nb_fields;
4398 goto error;
4399 }
4400
4401 /*
4402 * Setup lttng message with payload size set to the event list size in
4403 * bytes and then copy list into the llm payload.
4404 */
4405 ret = setup_lttng_msg(cmd_ctx, sizeof(struct lttng_event_field) * nb_fields);
4406 if (ret < 0) {
4407 free(fields);
4408 goto setup_error;
4409 }
4410
4411 /* Copy event list into message payload */
4412 memcpy(cmd_ctx->llm->payload, fields,
4413 sizeof(struct lttng_event_field) * nb_fields);
4414
4415 free(fields);
4416
4417 ret = LTTCOMM_OK;
4418 break;
4419 }
00e2e675
DG
4420 case LTTNG_SET_CONSUMER_URI:
4421 {
4422 ret = cmd_set_consumer_uri(cmd_ctx->lsm->domain.type, cmd_ctx->session,
4423 &cmd_ctx->lsm->u.uri);
4424 break;
4425 }
f3ed775e 4426 case LTTNG_START_TRACE:
8c0faa1d 4427 {
54d01ffb 4428 ret = cmd_start_trace(cmd_ctx->session);
8c0faa1d
DG
4429 break;
4430 }
f3ed775e 4431 case LTTNG_STOP_TRACE:
8c0faa1d 4432 {
54d01ffb 4433 ret = cmd_stop_trace(cmd_ctx->session);
8c0faa1d
DG
4434 break;
4435 }
5e16da05
MD
4436 case LTTNG_CREATE_SESSION:
4437 {
54d01ffb 4438 ret = cmd_create_session(cmd_ctx->lsm->session.name,
6df2e2c9 4439 cmd_ctx->lsm->session.path, &cmd_ctx->creds);
5e16da05
MD
4440 break;
4441 }
00e2e675
DG
4442 case LTTNG_CREATE_SESSION_URI:
4443 {
4444 ret = cmd_create_session_uri(cmd_ctx->lsm->session.name,
4445 &cmd_ctx->lsm->u.create_uri.ctrl_uri,
4446 &cmd_ctx->lsm->u.create_uri.data_uri,
4447 cmd_ctx->lsm->u.create_uri.enable_consumer, &cmd_ctx->creds);
4448 break;
4449 }
5e16da05
MD
4450 case LTTNG_DESTROY_SESSION:
4451 {
54d01ffb
DG
4452 ret = cmd_destroy_session(cmd_ctx->session,
4453 cmd_ctx->lsm->session.name);
256a5576
MD
4454 /*
4455 * Set session to NULL so we do not unlock it after
4456 * free.
4457 */
4458 cmd_ctx->session = NULL;
5461b305 4459 break;
5e16da05 4460 }
9f19cc17 4461 case LTTNG_LIST_DOMAINS:
5e16da05 4462 {
54d01ffb
DG
4463 ssize_t nb_dom;
4464 struct lttng_domain *domains;
5461b305 4465
54d01ffb
DG
4466 nb_dom = cmd_list_domains(cmd_ctx->session, &domains);
4467 if (nb_dom < 0) {
4468 ret = -nb_dom;
4469 goto error;
ce3d728c 4470 }
520ff687 4471
54d01ffb 4472 ret = setup_lttng_msg(cmd_ctx, nb_dom * sizeof(struct lttng_domain));
5461b305
DG
4473 if (ret < 0) {
4474 goto setup_error;
520ff687 4475 }
57167058 4476
54d01ffb
DG
4477 /* Copy event list into message payload */
4478 memcpy(cmd_ctx->llm->payload, domains,
4479 nb_dom * sizeof(struct lttng_domain));
4480
4481 free(domains);
5e16da05 4482
5461b305 4483 ret = LTTCOMM_OK;
5e16da05
MD
4484 break;
4485 }
9f19cc17 4486 case LTTNG_LIST_CHANNELS:
5e16da05 4487 {
6775595e 4488 int nb_chan;
54d01ffb
DG
4489 struct lttng_channel *channels;
4490
b551a063
DG
4491 nb_chan = cmd_list_channels(cmd_ctx->lsm->domain.type,
4492 cmd_ctx->session, &channels);
54d01ffb
DG
4493 if (nb_chan < 0) {
4494 ret = -nb_chan;
4495 goto error;
5461b305 4496 }
ca95a216 4497
54d01ffb 4498 ret = setup_lttng_msg(cmd_ctx, nb_chan * sizeof(struct lttng_channel));
5461b305
DG
4499 if (ret < 0) {
4500 goto setup_error;
4501 }
9f19cc17 4502
54d01ffb
DG
4503 /* Copy event list into message payload */
4504 memcpy(cmd_ctx->llm->payload, channels,
4505 nb_chan * sizeof(struct lttng_channel));
4506
4507 free(channels);
9f19cc17
DG
4508
4509 ret = LTTCOMM_OK;
5461b305 4510 break;
5e16da05 4511 }
9f19cc17 4512 case LTTNG_LIST_EVENTS:
5e16da05 4513 {
b551a063 4514 ssize_t nb_event;
684d34d2 4515 struct lttng_event *events = NULL;
9f19cc17 4516
b551a063 4517 nb_event = cmd_list_events(cmd_ctx->lsm->domain.type, cmd_ctx->session,
54d01ffb
DG
4518 cmd_ctx->lsm->u.list.channel_name, &events);
4519 if (nb_event < 0) {
4520 ret = -nb_event;
4521 goto error;
5461b305 4522 }
ca95a216 4523
54d01ffb 4524 ret = setup_lttng_msg(cmd_ctx, nb_event * sizeof(struct lttng_event));
5461b305
DG
4525 if (ret < 0) {
4526 goto setup_error;
4527 }
9f19cc17 4528
54d01ffb
DG
4529 /* Copy event list into message payload */
4530 memcpy(cmd_ctx->llm->payload, events,
4531 nb_event * sizeof(struct lttng_event));
9f19cc17 4532
54d01ffb 4533 free(events);
9f19cc17
DG
4534
4535 ret = LTTCOMM_OK;
5461b305 4536 break;
5e16da05
MD
4537 }
4538 case LTTNG_LIST_SESSIONS:
4539 {
8e0af1b4 4540 unsigned int nr_sessions;
5461b305 4541
8e0af1b4 4542 session_lock_list();
730389d9
DG
4543 nr_sessions = lttng_sessions_count(
4544 LTTNG_SOCK_GET_UID_CRED(&cmd_ctx->creds),
4545 LTTNG_SOCK_GET_GID_CRED(&cmd_ctx->creds));
d32fb093 4546
8e0af1b4 4547 ret = setup_lttng_msg(cmd_ctx, sizeof(struct lttng_session) * nr_sessions);
5461b305 4548 if (ret < 0) {
54d01ffb 4549 session_unlock_list();
5461b305 4550 goto setup_error;
e065084a 4551 }
5e16da05 4552
6c9cc2ab 4553 /* Filled the session array */
8e0af1b4 4554 list_lttng_sessions((struct lttng_session *)(cmd_ctx->llm->payload),
730389d9
DG
4555 LTTNG_SOCK_GET_UID_CRED(&cmd_ctx->creds),
4556 LTTNG_SOCK_GET_GID_CRED(&cmd_ctx->creds));
6c9cc2ab 4557
54d01ffb 4558 session_unlock_list();
5e16da05 4559
5461b305 4560 ret = LTTCOMM_OK;
5e16da05
MD
4561 break;
4562 }
d0254c7c
MD
4563 case LTTNG_CALIBRATE:
4564 {
54d01ffb
DG
4565 ret = cmd_calibrate(cmd_ctx->lsm->domain.type,
4566 &cmd_ctx->lsm->u.calibrate);
d0254c7c
MD
4567 break;
4568 }
d9800920
DG
4569 case LTTNG_REGISTER_CONSUMER:
4570 {
54d01ffb
DG
4571 ret = cmd_register_consumer(cmd_ctx->session, cmd_ctx->lsm->domain.type,
4572 cmd_ctx->lsm->u.reg.path);
d9800920
DG
4573 break;
4574 }
53a80697
MD
4575 case LTTNG_SET_FILTER:
4576 {
4577 struct lttng_filter_bytecode *bytecode;
4578
4579 if (cmd_ctx->lsm->u.filter.bytecode_len > 65336) {
4580 ret = LTTCOMM_FILTER_INVAL;
4581 goto error;
4582 }
4583 bytecode = zmalloc(cmd_ctx->lsm->u.filter.bytecode_len);
4584 if (!bytecode) {
4585 ret = LTTCOMM_FILTER_NOMEM;
4586 goto error;
4587 }
4588 /* Receive var. len. data */
4589 DBG("Receiving var len data from client ...");
4590 ret = lttcomm_recv_unix_sock(sock, bytecode,
4591 cmd_ctx->lsm->u.filter.bytecode_len);
4592 if (ret <= 0) {
4593 DBG("Nothing recv() from client var len data... continuing");
4594 *sock_error = 1;
4595 ret = LTTCOMM_FILTER_INVAL;
4596 goto error;
4597 }
4598
4599 if (bytecode->len + sizeof(*bytecode)
4600 != cmd_ctx->lsm->u.filter.bytecode_len) {
4601 free(bytecode);
4602 ret = LTTCOMM_FILTER_INVAL;
4603 goto error;
4604 }
4605
4606 ret = cmd_set_filter(cmd_ctx->session, cmd_ctx->lsm->domain.type,
4607 cmd_ctx->lsm->u.filter.channel_name,
4608 cmd_ctx->lsm->u.filter.event_name,
4609 bytecode);
4610 break;
4611 }
5e16da05 4612 default:
5e16da05 4613 ret = LTTCOMM_UND;
5461b305 4614 break;
fac6795d
DG
4615 }
4616
5461b305 4617error:
5461b305
DG
4618 if (cmd_ctx->llm == NULL) {
4619 DBG("Missing llm structure. Allocating one.");
894be886 4620 if (setup_lttng_msg(cmd_ctx, 0) < 0) {
5461b305
DG
4621 goto setup_error;
4622 }
4623 }
54d01ffb 4624 /* Set return code */
5461b305 4625 cmd_ctx->llm->ret_code = ret;
5461b305 4626setup_error:
b5541356 4627 if (cmd_ctx->session) {
54d01ffb 4628 session_unlock(cmd_ctx->session);
b5541356 4629 }
256a5576
MD
4630 if (need_tracing_session) {
4631 session_unlock_list();
4632 }
54d01ffb 4633init_setup_error:
8028d920 4634 return ret;
fac6795d
DG
4635}
4636
44a5e5eb
DG
4637/*
4638 * Thread managing health check socket.
4639 */
4640static void *thread_manage_health(void *data)
4641{
4642 int sock = -1, new_sock, ret, i, pollfd;
4643 uint32_t revents, nb_fd;
4644 struct lttng_poll_event events;
4645 struct lttcomm_health_msg msg;
4646 struct lttcomm_health_data reply;
4647
4648 DBG("[thread] Manage health check started");
4649
4650 rcu_register_thread();
4651
4652 /* Create unix socket */
4653 sock = lttcomm_create_unix_sock(health_unix_sock_path);
4654 if (sock < 0) {
4655 ERR("Unable to create health check Unix socket");
4656 ret = -1;
4657 goto error;
4658 }
4659
4660 ret = lttcomm_listen_unix_sock(sock);
4661 if (ret < 0) {
4662 goto error;
4663 }
4664
4665 /*
4666 * Pass 2 as size here for the thread quit pipe and client_sock. Nothing
4667 * more will be added to this poll set.
4668 */
4669 ret = create_thread_poll_set(&events, 2);
4670 if (ret < 0) {
4671 goto error;
4672 }
4673
4674 /* Add the application registration socket */
4675 ret = lttng_poll_add(&events, sock, LPOLLIN | LPOLLPRI);
4676 if (ret < 0) {
4677 goto error;
4678 }
4679
4680 while (1) {
4681 DBG("Health check ready");
4682
4683 nb_fd = LTTNG_POLL_GETNB(&events);
4684
4685 /* Inifinite blocking call, waiting for transmission */
4686restart:
4687 ret = lttng_poll_wait(&events, -1);
4688 if (ret < 0) {
4689 /*
4690 * Restart interrupted system call.
4691 */
4692 if (errno == EINTR) {
4693 goto restart;
4694 }
4695 goto error;
4696 }
4697
4698 for (i = 0; i < nb_fd; i++) {
4699 /* Fetch once the poll data */
4700 revents = LTTNG_POLL_GETEV(&events, i);
4701 pollfd = LTTNG_POLL_GETFD(&events, i);
4702
4703 /* Thread quit pipe has been closed. Killing thread. */
4704 ret = check_thread_quit_pipe(pollfd, revents);
4705 if (ret) {
4706 goto error;
4707 }
4708
4709 /* Event on the registration socket */
4710 if (pollfd == sock) {
4711 if (revents & (LPOLLERR | LPOLLHUP | LPOLLRDHUP)) {
4712 ERR("Health socket poll error");
4713 goto error;
4714 }
4715 }
4716 }
4717
4718 new_sock = lttcomm_accept_unix_sock(sock);
4719 if (new_sock < 0) {
4720 goto error;
4721 }
4722
4723 DBG("Receiving data from client for health...");
4724 ret = lttcomm_recv_unix_sock(new_sock, (void *)&msg, sizeof(msg));
4725 if (ret <= 0) {
4726 DBG("Nothing recv() from client... continuing");
4727 ret = close(new_sock);
4728 if (ret) {
4729 PERROR("close");
4730 }
4731 new_sock = -1;
4732 continue;
4733 }
4734
4735 rcu_thread_online();
4736
4737 switch (msg.component) {
4738 case LTTNG_HEALTH_CMD:
4739 reply.ret_code = health_check_state(&health_thread_cmd);
4740 break;
4741 case LTTNG_HEALTH_APP_REG:
4742 reply.ret_code = health_check_state(&health_thread_app_reg);
4743 break;
4744 case LTTNG_HEALTH_KERNEL:
4745 reply.ret_code = health_check_state(&health_thread_kernel);
4746 break;
4747 case LTTNG_HEALTH_CONSUMER:
4748 reply.ret_code = check_consumer_health();
4749 break;
4750 case LTTNG_HEALTH_ALL:
4751 ret = check_consumer_health();
4752
4753 reply.ret_code =
4754 health_check_state(&health_thread_app_reg) &
4755 health_check_state(&health_thread_cmd) &
4756 health_check_state(&health_thread_kernel) &
4757 ret;
4758 break;
4759 default:
4760 reply.ret_code = LTTCOMM_UND;
4761 break;
4762 }
4763
4764 /*
4765 * Flip ret value since 0 is a success and 1 indicates a bad health for
4766 * the client where in the sessiond it is the opposite. Again, this is
4767 * just to make things easier for us poor developer which enjoy a lot
4768 * lazyness.
4769 */
4770 if (reply.ret_code == 0 || reply.ret_code == 1) {
4771 reply.ret_code = !reply.ret_code;
4772 }
4773
4774 DBG2("Health check return value %d", reply.ret_code);
4775
4776 ret = send_unix_sock(new_sock, (void *) &reply, sizeof(reply));
4777 if (ret < 0) {
4778 ERR("Failed to send health data back to client");
4779 }
4780
4781 /* End of transmission */
4782 ret = close(new_sock);
4783 if (ret) {
4784 PERROR("close");
4785 }
4786 new_sock = -1;
4787 }
4788
4789error:
4790 DBG("Health check thread dying");
4791 unlink(health_unix_sock_path);
4792 if (sock >= 0) {
4793 ret = close(sock);
4794 if (ret) {
4795 PERROR("close");
4796 }
4797 }
4798 if (new_sock >= 0) {
4799 ret = close(new_sock);
4800 if (ret) {
4801 PERROR("close");
4802 }
4803 }
4804
4805 lttng_poll_clean(&events);
4806
4807 rcu_unregister_thread();
4808 return NULL;
4809}
4810
1d4b027a 4811/*
d063d709
DG
4812 * This thread manage all clients request using the unix client socket for
4813 * communication.
1d4b027a
DG
4814 */
4815static void *thread_manage_clients(void *data)
4816{
a4b35e07 4817 int sock = -1, ret, i, pollfd;
53a80697 4818 int sock_error;
5eb91c98 4819 uint32_t revents, nb_fd;
273ea72c 4820 struct command_ctx *cmd_ctx = NULL;
5eb91c98 4821 struct lttng_poll_event events;
1d4b027a
DG
4822
4823 DBG("[thread] Manage client started");
4824
f6a9efaa
DG
4825 rcu_register_thread();
4826
44a5e5eb
DG
4827 health_code_update(&health_thread_cmd);
4828
1d4b027a
DG
4829 ret = lttcomm_listen_unix_sock(client_sock);
4830 if (ret < 0) {
4831 goto error;
4832 }
4833
5eb91c98
DG
4834 /*
4835 * Pass 2 as size here for the thread quit pipe and client_sock. Nothing
4836 * more will be added to this poll set.
4837 */
4838 ret = create_thread_poll_set(&events, 2);
4839 if (ret < 0) {
4840 goto error;
4841 }
273ea72c 4842
5eb91c98
DG
4843 /* Add the application registration socket */
4844 ret = lttng_poll_add(&events, client_sock, LPOLLIN | LPOLLPRI);
4845 if (ret < 0) {
4846 goto error;
4847 }
273ea72c 4848
bbd973c2
DG
4849 /*
4850 * Notify parent pid that we are ready to accept command for client side.
1d4b027a
DG
4851 */
4852 if (opt_sig_parent) {
8db8d1dc 4853 kill(ppid, SIGUSR1);
1d4b027a
DG
4854 }
4855
44a5e5eb
DG
4856 health_code_update(&health_thread_cmd);
4857
1d4b027a 4858 while (1) {
1d4b027a 4859 DBG("Accepting client command ...");
273ea72c 4860
5eb91c98
DG
4861 nb_fd = LTTNG_POLL_GETNB(&events);
4862
273ea72c 4863 /* Inifinite blocking call, waiting for transmission */
88f2b785 4864 restart:
44a5e5eb 4865 health_poll_update(&health_thread_cmd);
5eb91c98 4866 ret = lttng_poll_wait(&events, -1);
44a5e5eb 4867 health_poll_update(&health_thread_cmd);
273ea72c 4868 if (ret < 0) {
88f2b785
MD
4869 /*
4870 * Restart interrupted system call.
4871 */
4872 if (errno == EINTR) {
4873 goto restart;
4874 }
273ea72c
DG
4875 goto error;
4876 }
4877
5eb91c98
DG
4878 for (i = 0; i < nb_fd; i++) {
4879 /* Fetch once the poll data */
4880 revents = LTTNG_POLL_GETEV(&events, i);
4881 pollfd = LTTNG_POLL_GETFD(&events, i);
4882
44a5e5eb
DG
4883 health_code_update(&health_thread_cmd);
4884
5eb91c98
DG
4885 /* Thread quit pipe has been closed. Killing thread. */
4886 ret = check_thread_quit_pipe(pollfd, revents);
4887 if (ret) {
4888 goto error;
4889 }
4890
4891 /* Event on the registration socket */
4892 if (pollfd == client_sock) {
4893 if (revents & (LPOLLERR | LPOLLHUP | LPOLLRDHUP)) {
4894 ERR("Client socket poll error");
4895 goto error;
4896 }
4897 }
4898 }
4899
4900 DBG("Wait for client response");
4901
44a5e5eb
DG
4902 health_code_update(&health_thread_cmd);
4903
5eb91c98
DG
4904 sock = lttcomm_accept_unix_sock(client_sock);
4905 if (sock < 0) {
273ea72c 4906 goto error;
273ea72c
DG
4907 }
4908
be040666
DG
4909 /* Set socket option for credentials retrieval */
4910 ret = lttcomm_setsockopt_creds_unix_sock(sock);
4911 if (ret < 0) {
4912 goto error;
4913 }
4914
5eb91c98 4915 /* Allocate context command to process the client request */
ba7f0ae5 4916 cmd_ctx = zmalloc(sizeof(struct command_ctx));
5eb91c98 4917 if (cmd_ctx == NULL) {
76d7553f 4918 PERROR("zmalloc cmd_ctx");
1d4b027a 4919 goto error;
5eb91c98 4920 }
1d4b027a 4921
5eb91c98 4922 /* Allocate data buffer for reception */
ba7f0ae5 4923 cmd_ctx->lsm = zmalloc(sizeof(struct lttcomm_session_msg));
5eb91c98 4924 if (cmd_ctx->lsm == NULL) {
76d7553f 4925 PERROR("zmalloc cmd_ctx->lsm");
5eb91c98
DG
4926 goto error;
4927 }
1d4b027a 4928
5eb91c98
DG
4929 cmd_ctx->llm = NULL;
4930 cmd_ctx->session = NULL;
1d4b027a 4931
44a5e5eb
DG
4932 health_code_update(&health_thread_cmd);
4933
5eb91c98
DG
4934 /*
4935 * Data is received from the lttng client. The struct
4936 * lttcomm_session_msg (lsm) contains the command and data request of
4937 * the client.
4938 */
4939 DBG("Receiving data from client ...");
be040666
DG
4940 ret = lttcomm_recv_creds_unix_sock(sock, cmd_ctx->lsm,
4941 sizeof(struct lttcomm_session_msg), &cmd_ctx->creds);
5eb91c98
DG
4942 if (ret <= 0) {
4943 DBG("Nothing recv() from client... continuing");
76d7553f
MD
4944 ret = close(sock);
4945 if (ret) {
4946 PERROR("close");
4947 }
4948 sock = -1;
a2c0da86 4949 clean_command_ctx(&cmd_ctx);
5eb91c98
DG
4950 continue;
4951 }
1d4b027a 4952
44a5e5eb
DG
4953 health_code_update(&health_thread_cmd);
4954
5eb91c98
DG
4955 // TODO: Validate cmd_ctx including sanity check for
4956 // security purpose.
f7776ea7 4957
f6a9efaa 4958 rcu_thread_online();
5eb91c98
DG
4959 /*
4960 * This function dispatch the work to the kernel or userspace tracer
4961 * libs and fill the lttcomm_lttng_msg data structure of all the needed
4962 * informations for the client. The command context struct contains
4963 * everything this function may needs.
4964 */
53a80697 4965 ret = process_client_msg(cmd_ctx, sock, &sock_error);
f6a9efaa 4966 rcu_thread_offline();
5eb91c98 4967 if (ret < 0) {
53a80697
MD
4968 if (sock_error) {
4969 ret = close(sock);
4970 if (ret) {
4971 PERROR("close");
4972 }
4973 sock = -1;
4974 }
bbd973c2 4975 /*
5eb91c98 4976 * TODO: Inform client somehow of the fatal error. At
ba7f0ae5 4977 * this point, ret < 0 means that a zmalloc failed
53a80697
MD
4978 * (ENOMEM). Error detected but still accept
4979 * command, unless a socket error has been
4980 * detected.
bbd973c2 4981 */
bbd973c2 4982 clean_command_ctx(&cmd_ctx);
5eb91c98
DG
4983 continue;
4984 }
d6e4fca4 4985
44a5e5eb
DG
4986 health_code_update(&health_thread_cmd);
4987
54d01ffb
DG
4988 DBG("Sending response (size: %d, retcode: %s)",
4989 cmd_ctx->lttng_msg_size,
9a745bc7 4990 lttng_strerror(-cmd_ctx->llm->ret_code));
54d01ffb 4991 ret = send_unix_sock(sock, cmd_ctx->llm, cmd_ctx->lttng_msg_size);
5eb91c98
DG
4992 if (ret < 0) {
4993 ERR("Failed to send data back to client");
bbd973c2 4994 }
1d4b027a 4995
5eb91c98 4996 /* End of transmission */
76d7553f
MD
4997 ret = close(sock);
4998 if (ret) {
4999 PERROR("close");
5000 }
5001 sock = -1;
be040666
DG
5002
5003 clean_command_ctx(&cmd_ctx);
44a5e5eb
DG
5004
5005 health_code_update(&health_thread_cmd);
273ea72c
DG
5006 }
5007
5eb91c98 5008error:
44a5e5eb
DG
5009 health_reset(&health_thread_cmd);
5010
5eb91c98 5011 DBG("Client thread dying");
273ea72c 5012 unlink(client_unix_sock_path);
76d7553f
MD
5013 if (client_sock >= 0) {
5014 ret = close(client_sock);
5015 if (ret) {
5016 PERROR("close");
5017 }
a4b35e07
MD
5018 }
5019 if (sock >= 0) {
76d7553f
MD
5020 ret = close(sock);
5021 if (ret) {
5022 PERROR("close");
5023 }
a4b35e07 5024 }
273ea72c 5025
5eb91c98 5026 lttng_poll_clean(&events);
a2fb29a5 5027 clean_command_ctx(&cmd_ctx);
f6a9efaa
DG
5028
5029 rcu_unregister_thread();
1d4b027a
DG
5030 return NULL;
5031}
5032
5033
fac6795d
DG
5034/*
5035 * usage function on stderr
5036 */
5037static void usage(void)
5038{
b716ce68 5039 fprintf(stderr, "Usage: %s OPTIONS\n\nOptions:\n", progname);
d6f42150
DG
5040 fprintf(stderr, " -h, --help Display this usage.\n");
5041 fprintf(stderr, " -c, --client-sock PATH Specify path for the client unix socket\n");
5042 fprintf(stderr, " -a, --apps-sock PATH Specify path for apps unix socket\n");
5043 fprintf(stderr, " --kconsumerd-err-sock PATH Specify path for the kernel consumer error socket\n");
5044 fprintf(stderr, " --kconsumerd-cmd-sock PATH Specify path for the kernel consumer command socket\n");
7753dea8
MD
5045 fprintf(stderr, " --ustconsumerd32-err-sock PATH Specify path for the 32-bit UST consumer error socket\n");
5046 fprintf(stderr, " --ustconsumerd64-err-sock PATH Specify path for the 64-bit UST consumer error socket\n");
5047 fprintf(stderr, " --ustconsumerd32-cmd-sock PATH Specify path for the 32-bit UST consumer command socket\n");
5048 fprintf(stderr, " --ustconsumerd64-cmd-sock PATH Specify path for the 64-bit UST consumer command socket\n");
ebaeda94
MD
5049 fprintf(stderr, " --consumerd32-path PATH Specify path for the 32-bit UST consumer daemon binary\n");
5050 fprintf(stderr, " --consumerd32-libdir PATH Specify path for the 32-bit UST consumer daemon libraries\n");
5051 fprintf(stderr, " --consumerd64-path PATH Specify path for the 64-bit UST consumer daemon binary\n");
5052 fprintf(stderr, " --consumerd64-libdir PATH Specify path for the 64-bit UST consumer daemon libraries\n");
d6f42150
DG
5053 fprintf(stderr, " -d, --daemonize Start as a daemon.\n");
5054 fprintf(stderr, " -g, --group NAME Specify the tracing group name. (default: tracing)\n");
5055 fprintf(stderr, " -V, --version Show version number.\n");
5056 fprintf(stderr, " -S, --sig-parent Send SIGCHLD to parent pid to notify readiness.\n");
5057 fprintf(stderr, " -q, --quiet No output at all.\n");
5058 fprintf(stderr, " -v, --verbose Verbose mode. Activate DBG() macro.\n");
3bd1e081 5059 fprintf(stderr, " --verbose-consumer Verbose mode for consumer. Activate DBG() macro.\n");
4fba7219 5060 fprintf(stderr, " --no-kernel Disable kernel tracer\n");
fac6795d
DG
5061}
5062
5063/*
5064 * daemon argument parsing
5065 */
5066static int parse_args(int argc, char **argv)
5067{
5068 int c;
5069
5070 static struct option long_options[] = {
5071 { "client-sock", 1, 0, 'c' },
5072 { "apps-sock", 1, 0, 'a' },
3bd1e081
MD
5073 { "kconsumerd-cmd-sock", 1, 0, 'C' },
5074 { "kconsumerd-err-sock", 1, 0, 'E' },
7753dea8
MD
5075 { "ustconsumerd32-cmd-sock", 1, 0, 'G' },
5076 { "ustconsumerd32-err-sock", 1, 0, 'H' },
ebaeda94
MD
5077 { "ustconsumerd64-cmd-sock", 1, 0, 'D' },
5078 { "ustconsumerd64-err-sock", 1, 0, 'F' },
5079 { "consumerd32-path", 1, 0, 'u' },
5080 { "consumerd32-libdir", 1, 0, 'U' },
5081 { "consumerd64-path", 1, 0, 't' },
5082 { "consumerd64-libdir", 1, 0, 'T' },
fac6795d 5083 { "daemonize", 0, 0, 'd' },
5b8719f5 5084 { "sig-parent", 0, 0, 'S' },
fac6795d
DG
5085 { "help", 0, 0, 'h' },
5086 { "group", 1, 0, 'g' },
5087 { "version", 0, 0, 'V' },
75462a81 5088 { "quiet", 0, 0, 'q' },
3f9947db 5089 { "verbose", 0, 0, 'v' },
3bd1e081 5090 { "verbose-consumer", 0, 0, 'Z' },
4fba7219 5091 { "no-kernel", 0, 0, 'N' },
fac6795d
DG
5092 { NULL, 0, 0, 0 }
5093 };
5094
5095 while (1) {
5096 int option_index = 0;
4fba7219 5097 c = getopt_long(argc, argv, "dhqvVSN" "a:c:g:s:C:E:D:F:Z:u:t",
54d01ffb 5098 long_options, &option_index);
fac6795d
DG
5099 if (c == -1) {
5100 break;
5101 }
5102
5103 switch (c) {
5104 case 0:
5105 fprintf(stderr, "option %s", long_options[option_index].name);
5106 if (optarg) {
5107 fprintf(stderr, " with arg %s\n", optarg);
5108 }
5109 break;
b716ce68 5110 case 'c':
fac6795d
DG
5111 snprintf(client_unix_sock_path, PATH_MAX, "%s", optarg);
5112 break;
5113 case 'a':
5114 snprintf(apps_unix_sock_path, PATH_MAX, "%s", optarg);
5115 break;
5116 case 'd':
5117 opt_daemon = 1;
5118 break;
5119 case 'g':
fb09408a 5120 opt_tracing_group = optarg;
fac6795d
DG
5121 break;
5122 case 'h':
5123 usage();
5124 exit(EXIT_FAILURE);
5125 case 'V':
5126 fprintf(stdout, "%s\n", VERSION);
5127 exit(EXIT_SUCCESS);
5b8719f5
DG
5128 case 'S':
5129 opt_sig_parent = 1;
5130 break;
d6f42150 5131 case 'E':
3bd1e081 5132 snprintf(kconsumer_data.err_unix_sock_path, PATH_MAX, "%s", optarg);
d6f42150
DG
5133 break;
5134 case 'C':
3bd1e081
MD
5135 snprintf(kconsumer_data.cmd_unix_sock_path, PATH_MAX, "%s", optarg);
5136 break;
5137 case 'F':
7753dea8 5138 snprintf(ustconsumer64_data.err_unix_sock_path, PATH_MAX, "%s", optarg);
3bd1e081
MD
5139 break;
5140 case 'D':
7753dea8
MD
5141 snprintf(ustconsumer64_data.cmd_unix_sock_path, PATH_MAX, "%s", optarg);
5142 break;
5143 case 'H':
5144 snprintf(ustconsumer32_data.err_unix_sock_path, PATH_MAX, "%s", optarg);
5145 break;
5146 case 'G':
5147 snprintf(ustconsumer32_data.cmd_unix_sock_path, PATH_MAX, "%s", optarg);
d6f42150 5148 break;
4fba7219
DG
5149 case 'N':
5150 opt_no_kernel = 1;
5151 break;
75462a81 5152 case 'q':
97e19046 5153 lttng_opt_quiet = 1;
75462a81 5154 break;
3f9947db 5155 case 'v':
53086306 5156 /* Verbose level can increase using multiple -v */
97e19046 5157 lttng_opt_verbose += 1;
3f9947db 5158 break;
31f73cc9 5159 case 'Z':
3bd1e081 5160 opt_verbose_consumer += 1;
31f73cc9 5161 break;
fb09408a 5162 case 'u':
fc7a59ce 5163 consumerd32_bin= optarg;
ebaeda94
MD
5164 break;
5165 case 'U':
5166 consumerd32_libdir = optarg;
7753dea8
MD
5167 break;
5168 case 't':
fc7a59ce 5169 consumerd64_bin = optarg;
ebaeda94
MD
5170 break;
5171 case 'T':
5172 consumerd64_libdir = optarg;
fb09408a 5173 break;
fac6795d
DG
5174 default:
5175 /* Unknown option or other error.
5176 * Error is printed by getopt, just return */
5177 return -1;
5178 }
5179 }
5180
5181 return 0;
5182}
5183
5184/*
d063d709 5185 * Creates the two needed socket by the daemon.
d6f42150
DG
5186 * apps_sock - The communication socket for all UST apps.
5187 * client_sock - The communication of the cli tool (lttng).
fac6795d 5188 */
cf3af59e 5189static int init_daemon_socket(void)
fac6795d
DG
5190{
5191 int ret = 0;
5192 mode_t old_umask;
5193
5194 old_umask = umask(0);
5195
5196 /* Create client tool unix socket */
d6f42150
DG
5197 client_sock = lttcomm_create_unix_sock(client_unix_sock_path);
5198 if (client_sock < 0) {
5199 ERR("Create unix sock failed: %s", client_unix_sock_path);
fac6795d
DG
5200 ret = -1;
5201 goto end;
5202 }
5203
5204 /* File permission MUST be 660 */
5205 ret = chmod(client_unix_sock_path, S_IRUSR | S_IWUSR | S_IRGRP | S_IWGRP);
5206 if (ret < 0) {
d6f42150 5207 ERR("Set file permissions failed: %s", client_unix_sock_path);
76d7553f 5208 PERROR("chmod");
fac6795d
DG
5209 goto end;
5210 }
5211
5212 /* Create the application unix socket */
d6f42150
DG
5213 apps_sock = lttcomm_create_unix_sock(apps_unix_sock_path);
5214 if (apps_sock < 0) {
5215 ERR("Create unix sock failed: %s", apps_unix_sock_path);
fac6795d
DG
5216 ret = -1;
5217 goto end;
5218 }
5219
d6f42150 5220 /* File permission MUST be 666 */
54d01ffb
DG
5221 ret = chmod(apps_unix_sock_path,
5222 S_IRUSR | S_IWUSR | S_IRGRP | S_IWGRP | S_IROTH | S_IWOTH);
fac6795d 5223 if (ret < 0) {
d6f42150 5224 ERR("Set file permissions failed: %s", apps_unix_sock_path);
76d7553f 5225 PERROR("chmod");
fac6795d
DG
5226 goto end;
5227 }
5228
5229end:
5230 umask(old_umask);
5231 return ret;
5232}
5233
5234/*
54d01ffb
DG
5235 * Check if the global socket is available, and if a daemon is answering at the
5236 * other side. If yes, error is returned.
fac6795d 5237 */
cf3af59e 5238static int check_existing_daemon(void)
fac6795d 5239{
7d8234d9 5240 /* Is there anybody out there ? */
099e26bd 5241 if (lttng_session_daemon_alive()) {
7d8234d9 5242 return -EEXIST;
099e26bd 5243 }
b09c7c76
DG
5244
5245 return 0;
fac6795d
DG
5246}
5247
fac6795d 5248/*
d063d709 5249 * Set the tracing group gid onto the client socket.
5e16da05 5250 *
d063d709 5251 * Race window between mkdir and chown is OK because we are going from more
d1613cf5 5252 * permissive (root.root) to less permissive (root.tracing).
fac6795d 5253 */
be040666 5254static int set_permissions(char *rundir)
fac6795d
DG
5255{
5256 int ret;
996b65c8 5257 gid_t gid;
fac6795d 5258
6775595e
DG
5259 ret = allowed_group();
5260 if (ret < 0) {
be040666
DG
5261 WARN("No tracing group detected");
5262 ret = 0;
fac6795d
DG
5263 goto end;
5264 }
5265
6775595e
DG
5266 gid = ret;
5267
d6f42150 5268 /* Set lttng run dir */
be040666 5269 ret = chown(rundir, 0, gid);
d6f42150 5270 if (ret < 0) {
be040666 5271 ERR("Unable to set group on %s", rundir);
76d7553f 5272 PERROR("chown");
d6f42150
DG
5273 }
5274
d1613cf5 5275 /* Ensure tracing group can search the run dir */
61076f74 5276 ret = chmod(rundir, S_IRWXU | S_IXGRP | S_IXOTH);
d1613cf5
JN
5277 if (ret < 0) {
5278 ERR("Unable to set permissions on %s", rundir);
76d7553f 5279 PERROR("chmod");
d1613cf5
JN
5280 }
5281
d6f42150 5282 /* lttng client socket path */
996b65c8 5283 ret = chown(client_unix_sock_path, 0, gid);
fac6795d 5284 if (ret < 0) {
d6f42150 5285 ERR("Unable to set group on %s", client_unix_sock_path);
76d7553f 5286 PERROR("chown");
d6f42150
DG
5287 }
5288
3bd1e081
MD
5289 /* kconsumer error socket path */
5290 ret = chown(kconsumer_data.err_unix_sock_path, 0, gid);
d6f42150 5291 if (ret < 0) {
3bd1e081 5292 ERR("Unable to set group on %s", kconsumer_data.err_unix_sock_path);
76d7553f 5293 PERROR("chown");
3bd1e081
MD
5294 }
5295
7753dea8
MD
5296 /* 64-bit ustconsumer error socket path */
5297 ret = chown(ustconsumer64_data.err_unix_sock_path, 0, gid);
5298 if (ret < 0) {
5299 ERR("Unable to set group on %s", ustconsumer64_data.err_unix_sock_path);
76d7553f 5300 PERROR("chown");
7753dea8
MD
5301 }
5302
5303 /* 32-bit ustconsumer compat32 error socket path */
5304 ret = chown(ustconsumer32_data.err_unix_sock_path, 0, gid);
3bd1e081 5305 if (ret < 0) {
7753dea8 5306 ERR("Unable to set group on %s", ustconsumer32_data.err_unix_sock_path);
76d7553f 5307 PERROR("chown");
fac6795d
DG
5308 }
5309
d6f42150 5310 DBG("All permissions are set");
e07ae692 5311
fac6795d
DG
5312end:
5313 return ret;
5314}
5315
d6f42150 5316/*
d063d709 5317 * Create the lttng run directory needed for all global sockets and pipe.
d6f42150 5318 */
67e40797 5319static int create_lttng_rundir(const char *rundir)
d6f42150
DG
5320{
5321 int ret;
5322
67e40797
DG
5323 DBG3("Creating LTTng run directory: %s", rundir);
5324
d1613cf5 5325 ret = mkdir(rundir, S_IRWXU);
d6f42150 5326 if (ret < 0) {
b1f11e69 5327 if (errno != EEXIST) {
67e40797 5328 ERR("Unable to create %s", rundir);
b1f11e69
DG
5329 goto error;
5330 } else {
5331 ret = 0;
5332 }
d6f42150
DG
5333 }
5334
5335error:
5336 return ret;
5337}
5338
5339/*
d063d709
DG
5340 * Setup sockets and directory needed by the kconsumerd communication with the
5341 * session daemon.
d6f42150 5342 */
67e40797
DG
5343static int set_consumer_sockets(struct consumer_data *consumer_data,
5344 const char *rundir)
d6f42150
DG
5345{
5346 int ret;
67e40797 5347 char path[PATH_MAX];
d6f42150 5348
67e40797 5349 switch (consumer_data->type) {
7753dea8 5350 case LTTNG_CONSUMER_KERNEL:
60922cb0 5351 snprintf(path, PATH_MAX, DEFAULT_KCONSUMERD_PATH, rundir);
7753dea8
MD
5352 break;
5353 case LTTNG_CONSUMER64_UST:
60922cb0 5354 snprintf(path, PATH_MAX, DEFAULT_USTCONSUMERD64_PATH, rundir);
7753dea8
MD
5355 break;
5356 case LTTNG_CONSUMER32_UST:
60922cb0 5357 snprintf(path, PATH_MAX, DEFAULT_USTCONSUMERD32_PATH, rundir);
7753dea8
MD
5358 break;
5359 default:
5360 ERR("Consumer type unknown");
5361 ret = -EINVAL;
5362 goto error;
d6f42150
DG
5363 }
5364
67e40797
DG
5365 DBG2("Creating consumer directory: %s", path);
5366
d1613cf5 5367 ret = mkdir(path, S_IRWXU);
d6f42150 5368 if (ret < 0) {
6beb2242 5369 if (errno != EEXIST) {
f11e84c2 5370 PERROR("mkdir");
3bd1e081 5371 ERR("Failed to create %s", path);
6beb2242
DG
5372 goto error;
5373 }
f11e84c2 5374 ret = -1;
d6f42150
DG
5375 }
5376
5377 /* Create the kconsumerd error unix socket */
3bd1e081
MD
5378 consumer_data->err_sock =
5379 lttcomm_create_unix_sock(consumer_data->err_unix_sock_path);
5380 if (consumer_data->err_sock < 0) {
5381 ERR("Create unix sock failed: %s", consumer_data->err_unix_sock_path);
d6f42150
DG
5382 ret = -1;
5383 goto error;
5384 }
5385
5386 /* File permission MUST be 660 */
3bd1e081 5387 ret = chmod(consumer_data->err_unix_sock_path,
54d01ffb 5388 S_IRUSR | S_IWUSR | S_IRGRP | S_IWGRP);
d6f42150 5389 if (ret < 0) {
3bd1e081 5390 ERR("Set file permissions failed: %s", consumer_data->err_unix_sock_path);
67e40797 5391 PERROR("chmod");
d6f42150
DG
5392 goto error;
5393 }
5394
5395error:
5396 return ret;
5397}
5398
fac6795d 5399/*
d063d709 5400 * Signal handler for the daemon
cf3af59e 5401 *
54d01ffb
DG
5402 * Simply stop all worker threads, leaving main() return gracefully after
5403 * joining all threads and calling cleanup().
fac6795d
DG
5404 */
5405static void sighandler(int sig)
5406{
5407 switch (sig) {
cf3af59e 5408 case SIGPIPE:
af87c45a 5409 DBG("SIGPIPE caught");
cf3af59e
MD
5410 return;
5411 case SIGINT:
af87c45a 5412 DBG("SIGINT caught");
cf3af59e
MD
5413 stop_threads();
5414 break;
5415 case SIGTERM:
af87c45a 5416 DBG("SIGTERM caught");
cf3af59e
MD
5417 stop_threads();
5418 break;
5419 default:
5420 break;
fac6795d 5421 }
fac6795d
DG
5422}
5423
5424/*
d063d709 5425 * Setup signal handler for :
1d4b027a 5426 * SIGINT, SIGTERM, SIGPIPE
fac6795d 5427 */
1d4b027a 5428static int set_signal_handler(void)
fac6795d 5429{
1d4b027a
DG
5430 int ret = 0;
5431 struct sigaction sa;
5432 sigset_t sigset;
fac6795d 5433
1d4b027a 5434 if ((ret = sigemptyset(&sigset)) < 0) {
76d7553f 5435 PERROR("sigemptyset");
1d4b027a
DG
5436 return ret;
5437 }
d6f42150 5438
1d4b027a
DG
5439 sa.sa_handler = sighandler;
5440 sa.sa_mask = sigset;
5441 sa.sa_flags = 0;
5442 if ((ret = sigaction(SIGTERM, &sa, NULL)) < 0) {
76d7553f 5443 PERROR("sigaction");
1d4b027a 5444 return ret;
d6f42150
DG
5445 }
5446
1d4b027a 5447 if ((ret = sigaction(SIGINT, &sa, NULL)) < 0) {
76d7553f 5448 PERROR("sigaction");
1d4b027a 5449 return ret;
d6f42150 5450 }
aaf26714 5451
1d4b027a 5452 if ((ret = sigaction(SIGPIPE, &sa, NULL)) < 0) {
76d7553f 5453 PERROR("sigaction");
1d4b027a 5454 return ret;
8c0faa1d
DG
5455 }
5456
1d4b027a
DG
5457 DBG("Signal handler set for SIGTERM, SIGPIPE and SIGINT");
5458
5459 return ret;
fac6795d
DG
5460}
5461
f3ed775e 5462/*
d063d709
DG
5463 * Set open files limit to unlimited. This daemon can open a large number of
5464 * file descriptors in order to consumer multiple kernel traces.
f3ed775e
DG
5465 */
5466static void set_ulimit(void)
5467{
5468 int ret;
5469 struct rlimit lim;
5470
a88df331 5471 /* The kernel does not allowed an infinite limit for open files */
f3ed775e
DG
5472 lim.rlim_cur = 65535;
5473 lim.rlim_max = 65535;
5474
5475 ret = setrlimit(RLIMIT_NOFILE, &lim);
5476 if (ret < 0) {
76d7553f 5477 PERROR("failed to set open files limit");
f3ed775e
DG
5478 }
5479}
5480
fac6795d
DG
5481/*
5482 * main
5483 */
5484int main(int argc, char **argv)
5485{
fac6795d
DG
5486 int ret = 0;
5487 void *status;
b082db07 5488 const char *home_path;
fac6795d 5489
335a95b7
MD
5490 init_kernel_workarounds();
5491
f6a9efaa
DG
5492 rcu_register_thread();
5493
7753dea8 5494 setup_consumerd_path();
fb09408a 5495
fac6795d
DG
5496 /* Parse arguments */
5497 progname = argv[0];
5498 if ((ret = parse_args(argc, argv) < 0)) {
cf3af59e 5499 goto error;
fac6795d
DG
5500 }
5501
5502 /* Daemonize */
5503 if (opt_daemon) {
ceed52b5
MD
5504 int i;
5505
5506 /*
5507 * fork
5508 * child: setsid, close FD 0, 1, 2, chdir /
5509 * parent: exit (if fork is successful)
5510 */
53094c05
DG
5511 ret = daemon(0, 0);
5512 if (ret < 0) {
76d7553f 5513 PERROR("daemon");
cf3af59e 5514 goto error;
53094c05 5515 }
ceed52b5
MD
5516 /*
5517 * We are in the child. Make sure all other file
5518 * descriptors are closed, in case we are called with
5519 * more opened file descriptors than the standard ones.
5520 */
5521 for (i = 3; i < sysconf(_SC_OPEN_MAX); i++) {
5522 (void) close(i);
5523 }
5524 }
5525
5526 /* Create thread quit pipe */
5527 if ((ret = init_thread_quit_pipe()) < 0) {
5528 goto error;
fac6795d
DG
5529 }
5530
5531 /* Check if daemon is UID = 0 */
5532 is_root = !getuid();
5533
fac6795d 5534 if (is_root) {
990570ed 5535 rundir = strdup(DEFAULT_LTTNG_RUNDIR);
67e40797
DG
5536
5537 /* Create global run dir with root access */
5538 ret = create_lttng_rundir(rundir);
d6f42150 5539 if (ret < 0) {
cf3af59e 5540 goto error;
d6f42150
DG
5541 }
5542
fac6795d 5543 if (strlen(apps_unix_sock_path) == 0) {
d6f42150
DG
5544 snprintf(apps_unix_sock_path, PATH_MAX,
5545 DEFAULT_GLOBAL_APPS_UNIX_SOCK);
fac6795d
DG
5546 }
5547
5548 if (strlen(client_unix_sock_path) == 0) {
d6f42150
DG
5549 snprintf(client_unix_sock_path, PATH_MAX,
5550 DEFAULT_GLOBAL_CLIENT_UNIX_SOCK);
5551 }
0fdd1e2c
DG
5552
5553 /* Set global SHM for ust */
5554 if (strlen(wait_shm_path) == 0) {
5555 snprintf(wait_shm_path, PATH_MAX,
5556 DEFAULT_GLOBAL_APPS_WAIT_SHM_PATH);
5557 }
67e40797 5558
44a5e5eb
DG
5559 if (strlen(health_unix_sock_path) == 0) {
5560 snprintf(health_unix_sock_path, sizeof(health_unix_sock_path),
5561 DEFAULT_GLOBAL_HEALTH_UNIX_SOCK);
5562 }
5563
67e40797
DG
5564 /* Setup kernel consumerd path */
5565 snprintf(kconsumer_data.err_unix_sock_path, PATH_MAX,
60922cb0 5566 DEFAULT_KCONSUMERD_ERR_SOCK_PATH, rundir);
67e40797 5567 snprintf(kconsumer_data.cmd_unix_sock_path, PATH_MAX,
60922cb0 5568 DEFAULT_KCONSUMERD_CMD_SOCK_PATH, rundir);
67e40797
DG
5569
5570 DBG2("Kernel consumer err path: %s",
5571 kconsumer_data.err_unix_sock_path);
5572 DBG2("Kernel consumer cmd path: %s",
5573 kconsumer_data.cmd_unix_sock_path);
fac6795d 5574 } else {
b082db07
DG
5575 home_path = get_home_dir();
5576 if (home_path == NULL) {
273ea72c
DG
5577 /* TODO: Add --socket PATH option */
5578 ERR("Can't get HOME directory for sockets creation.");
cf3af59e
MD
5579 ret = -EPERM;
5580 goto error;
b082db07
DG
5581 }
5582
67e40797
DG
5583 /*
5584 * Create rundir from home path. This will create something like
5585 * $HOME/.lttng
5586 */
990570ed 5587 ret = asprintf(&rundir, DEFAULT_LTTNG_HOME_RUNDIR, home_path);
67e40797
DG
5588 if (ret < 0) {
5589 ret = -ENOMEM;
5590 goto error;
5591 }
5592
5593 ret = create_lttng_rundir(rundir);
5594 if (ret < 0) {
5595 goto error;
5596 }
5597
fac6795d 5598 if (strlen(apps_unix_sock_path) == 0) {
d6f42150 5599 snprintf(apps_unix_sock_path, PATH_MAX,
b082db07 5600 DEFAULT_HOME_APPS_UNIX_SOCK, home_path);
fac6795d
DG
5601 }
5602
5603 /* Set the cli tool unix socket path */
5604 if (strlen(client_unix_sock_path) == 0) {
d6f42150 5605 snprintf(client_unix_sock_path, PATH_MAX,
b082db07 5606 DEFAULT_HOME_CLIENT_UNIX_SOCK, home_path);
fac6795d 5607 }
0fdd1e2c
DG
5608
5609 /* Set global SHM for ust */
5610 if (strlen(wait_shm_path) == 0) {
5611 snprintf(wait_shm_path, PATH_MAX,
5612 DEFAULT_HOME_APPS_WAIT_SHM_PATH, geteuid());
5613 }
44a5e5eb
DG
5614
5615 /* Set health check Unix path */
5616 if (strlen(health_unix_sock_path) == 0) {
5617 snprintf(health_unix_sock_path, sizeof(health_unix_sock_path),
5618 DEFAULT_HOME_HEALTH_UNIX_SOCK, home_path);
5619 }
fac6795d
DG
5620 }
5621
5c827ce0
DG
5622 /* Set consumer initial state */
5623 kernel_consumerd_state = CONSUMER_STOPPED;
5624 ust_consumerd_state = CONSUMER_STOPPED;
5625
847177cd
DG
5626 DBG("Client socket path %s", client_unix_sock_path);
5627 DBG("Application socket path %s", apps_unix_sock_path);
67e40797
DG
5628 DBG("LTTng run directory path: %s", rundir);
5629
5630 /* 32 bits consumerd path setup */
5631 snprintf(ustconsumer32_data.err_unix_sock_path, PATH_MAX,
60922cb0 5632 DEFAULT_USTCONSUMERD32_ERR_SOCK_PATH, rundir);
67e40797 5633 snprintf(ustconsumer32_data.cmd_unix_sock_path, PATH_MAX,
60922cb0 5634 DEFAULT_USTCONSUMERD32_CMD_SOCK_PATH, rundir);
67e40797
DG
5635
5636 DBG2("UST consumer 32 bits err path: %s",
5637 ustconsumer32_data.err_unix_sock_path);
5638 DBG2("UST consumer 32 bits cmd path: %s",
5639 ustconsumer32_data.cmd_unix_sock_path);
5640
5641 /* 64 bits consumerd path setup */
5642 snprintf(ustconsumer64_data.err_unix_sock_path, PATH_MAX,
60922cb0 5643 DEFAULT_USTCONSUMERD64_ERR_SOCK_PATH, rundir);
67e40797 5644 snprintf(ustconsumer64_data.cmd_unix_sock_path, PATH_MAX,
60922cb0 5645 DEFAULT_USTCONSUMERD64_CMD_SOCK_PATH, rundir);
67e40797
DG
5646
5647 DBG2("UST consumer 64 bits err path: %s",
5648 ustconsumer64_data.err_unix_sock_path);
5649 DBG2("UST consumer 64 bits cmd path: %s",
5650 ustconsumer64_data.cmd_unix_sock_path);
847177cd 5651
273ea72c 5652 /*
7d8234d9 5653 * See if daemon already exist.
fac6795d 5654 */
7d8234d9 5655 if ((ret = check_existing_daemon()) < 0) {
75462a81 5656 ERR("Already running daemon.\n");
273ea72c 5657 /*
cf3af59e
MD
5658 * We do not goto exit because we must not cleanup()
5659 * because a daemon is already running.
ab118b20 5660 */
cf3af59e 5661 goto error;
a88df331
DG
5662 }
5663
1427f9b2
DG
5664 /*
5665 * Init UST app hash table. Alloc hash table before this point since
5666 * cleanup() can get called after that point.
5667 */
5668 ust_app_ht_alloc();
5669
54d01ffb 5670 /* After this point, we can safely call cleanup() with "goto exit" */
a88df331
DG
5671
5672 /*
5673 * These actions must be executed as root. We do that *after* setting up
5674 * the sockets path because we MUST make the check for another daemon using
5675 * those paths *before* trying to set the kernel consumer sockets and init
5676 * kernel tracer.
5677 */
5678 if (is_root) {
67e40797 5679 ret = set_consumer_sockets(&kconsumer_data, rundir);
7753dea8
MD
5680 if (ret < 0) {
5681 goto exit;
5682 }
5683
a88df331 5684 /* Setup kernel tracer */
4fba7219
DG
5685 if (!opt_no_kernel) {
5686 init_kernel_tracer();
5687 }
a88df331
DG
5688
5689 /* Set ulimit for open files */
5690 set_ulimit();
fac6795d 5691 }
4063050c
MD
5692 /* init lttng_fd tracking must be done after set_ulimit. */
5693 lttng_fd_init();
fac6795d 5694
67e40797
DG
5695 ret = set_consumer_sockets(&ustconsumer64_data, rundir);
5696 if (ret < 0) {
5697 goto exit;
5698 }
5699
5700 ret = set_consumer_sockets(&ustconsumer32_data, rundir);
5701 if (ret < 0) {
5702 goto exit;
5703 }
5704
cf3af59e
MD
5705 if ((ret = set_signal_handler()) < 0) {
5706 goto exit;
fac6795d
DG
5707 }
5708
d6f42150 5709 /* Setup the needed unix socket */
cf3af59e
MD
5710 if ((ret = init_daemon_socket()) < 0) {
5711 goto exit;
fac6795d
DG
5712 }
5713
5714 /* Set credentials to socket */
be040666 5715 if (is_root && ((ret = set_permissions(rundir)) < 0)) {
cf3af59e 5716 goto exit;
fac6795d
DG
5717 }
5718
5b8719f5
DG
5719 /* Get parent pid if -S, --sig-parent is specified. */
5720 if (opt_sig_parent) {
5721 ppid = getppid();
5722 }
5723
7a485870 5724 /* Setup the kernel pipe for waking up the kernel thread */
ef599319 5725 if ((ret = utils_create_pipe_cloexec(kernel_poll_pipe)) < 0) {
cf3af59e 5726 goto exit;
7a485870
DG
5727 }
5728
099e26bd 5729 /* Setup the thread apps communication pipe. */
ef599319 5730 if ((ret = utils_create_pipe_cloexec(apps_cmd_pipe)) < 0) {
099e26bd
DG
5731 goto exit;
5732 }
5733
5734 /* Init UST command queue. */
5735 cds_wfq_init(&ust_cmd_queue.queue);
5736
273ea72c 5737 /*
54d01ffb
DG
5738 * Get session list pointer. This pointer MUST NOT be free(). This list is
5739 * statically declared in session.c
273ea72c 5740 */
54d01ffb 5741 session_list_ptr = session_get_list();
b5541356 5742
5eb91c98
DG
5743 /* Set up max poll set size */
5744 lttng_poll_set_max_size();
5745
00e2e675
DG
5746 /*
5747 * Set network sequence index to 1 for streams to match a relayd socket on
5748 * the consumer side.
5749 */
5750 uatomic_set(&relayd_net_seq_idx, 1);
5751
44a5e5eb
DG
5752 /* Init all health thread counters. */
5753 health_init(&health_thread_cmd);
5754 health_init(&health_thread_kernel);
5755 health_init(&health_thread_app_reg);
5756
5757 /*
5758 * Init health counters of the consumer thread. We do a quick hack here to
5759 * the state of the consumer health is fine even if the thread is not
5760 * started. This is simply to ease our life and has no cost what so ever.
5761 */
5762 health_init(&kconsumer_data.health);
5763 health_poll_update(&kconsumer_data.health);
5764 health_init(&ustconsumer32_data.health);
5765 health_poll_update(&ustconsumer32_data.health);
5766 health_init(&ustconsumer64_data.health);
5767 health_poll_update(&ustconsumer64_data.health);
5768
5769 /* Create thread to manage the client socket */
5770 ret = pthread_create(&health_thread, NULL,
5771 thread_manage_health, (void *) NULL);
5772 if (ret != 0) {
5773 PERROR("pthread_create health");
5774 goto exit_health;
5775 }
5776
cf3af59e 5777 /* Create thread to manage the client socket */
099e26bd
DG
5778 ret = pthread_create(&client_thread, NULL,
5779 thread_manage_clients, (void *) NULL);
cf3af59e 5780 if (ret != 0) {
76d7553f 5781 PERROR("pthread_create clients");
cf3af59e
MD
5782 goto exit_client;
5783 }
fac6795d 5784
099e26bd
DG
5785 /* Create thread to dispatch registration */
5786 ret = pthread_create(&dispatch_thread, NULL,
5787 thread_dispatch_ust_registration, (void *) NULL);
5788 if (ret != 0) {
76d7553f 5789 PERROR("pthread_create dispatch");
099e26bd
DG
5790 goto exit_dispatch;
5791 }
5792
5793 /* Create thread to manage application registration. */
5794 ret = pthread_create(&reg_apps_thread, NULL,
5795 thread_registration_apps, (void *) NULL);
5796 if (ret != 0) {
76d7553f 5797 PERROR("pthread_create registration");
099e26bd
DG
5798 goto exit_reg_apps;
5799 }
5800
cf3af59e 5801 /* Create thread to manage application socket */
54d01ffb
DG
5802 ret = pthread_create(&apps_thread, NULL,
5803 thread_manage_apps, (void *) NULL);
cf3af59e 5804 if (ret != 0) {
76d7553f 5805 PERROR("pthread_create apps");
cf3af59e
MD
5806 goto exit_apps;
5807 }
fac6795d 5808
cf3af59e 5809 /* Create kernel thread to manage kernel event */
54d01ffb
DG
5810 ret = pthread_create(&kernel_thread, NULL,
5811 thread_manage_kernel, (void *) NULL);
cf3af59e 5812 if (ret != 0) {
76d7553f 5813 PERROR("pthread_create kernel");
cf3af59e
MD
5814 goto exit_kernel;
5815 }
7a485870 5816
cf3af59e
MD
5817 ret = pthread_join(kernel_thread, &status);
5818 if (ret != 0) {
76d7553f 5819 PERROR("pthread_join");
cf3af59e 5820 goto error; /* join error, exit without cleanup */
fac6795d
DG
5821 }
5822
cf3af59e
MD
5823exit_kernel:
5824 ret = pthread_join(apps_thread, &status);
5825 if (ret != 0) {
76d7553f 5826 PERROR("pthread_join");
cf3af59e
MD
5827 goto error; /* join error, exit without cleanup */
5828 }
fac6795d 5829
cf3af59e 5830exit_apps:
099e26bd
DG
5831 ret = pthread_join(reg_apps_thread, &status);
5832 if (ret != 0) {
76d7553f 5833 PERROR("pthread_join");
099e26bd
DG
5834 goto error; /* join error, exit without cleanup */
5835 }
5836
5837exit_reg_apps:
5838 ret = pthread_join(dispatch_thread, &status);
5839 if (ret != 0) {
76d7553f 5840 PERROR("pthread_join");
099e26bd
DG
5841 goto error; /* join error, exit without cleanup */
5842 }
5843
5844exit_dispatch:
cf3af59e
MD
5845 ret = pthread_join(client_thread, &status);
5846 if (ret != 0) {
76d7553f 5847 PERROR("pthread_join");
cf3af59e
MD
5848 goto error; /* join error, exit without cleanup */
5849 }
5850
3bd1e081 5851 ret = join_consumer_thread(&kconsumer_data);
cf3af59e 5852 if (ret != 0) {
76d7553f 5853 PERROR("join_consumer");
cf3af59e
MD
5854 goto error; /* join error, exit without cleanup */
5855 }
a88df331 5856
cf3af59e 5857exit_client:
44a5e5eb 5858exit_health:
a88df331 5859exit:
cf3af59e
MD
5860 /*
5861 * cleanup() is called when no other thread is running.
5862 */
f6a9efaa 5863 rcu_thread_online();
cf3af59e 5864 cleanup();
f6a9efaa
DG
5865 rcu_thread_offline();
5866 rcu_unregister_thread();
67e40797 5867 if (!ret) {
cf3af59e 5868 exit(EXIT_SUCCESS);
67e40797 5869 }
cf3af59e 5870error:
5e16da05 5871 exit(EXIT_FAILURE);
fac6795d 5872}
This page took 0.371625 seconds and 4 git commands to generate.