Fix session daemon binary name
[lttng-tools.git] / 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 *
54d01ffb
DG
5 * This program is free software; you can redistribute it and/or modify it
6 * under the terms of the GNU General Public License as published by the Free
7 * Software Foundation; only version 2 of the License.
91d76f53 8 *
54d01ffb
DG
9 * This program is distributed in the hope that it will be useful, but WITHOUT
10 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
11 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
12 * more details.
91d76f53 13 *
54d01ffb
DG
14 * You should have received a copy of the GNU General Public License along with
15 * this program; if not, write to the Free Software Foundation, Inc., 59 Temple
16 * Place - Suite 330, Boston, MA 02111-1307, USA.
fac6795d
DG
17 */
18
19#define _GNU_SOURCE
20#include <fcntl.h>
21#include <getopt.h>
22#include <grp.h>
23#include <limits.h>
24#include <pthread.h>
8c0faa1d 25#include <semaphore.h>
fac6795d
DG
26#include <signal.h>
27#include <stdio.h>
28#include <stdlib.h>
29#include <string.h>
0fdd1e2c 30#include <sys/mman.h>
b73401da 31#include <sys/mount.h>
1e307fab 32#include <sys/resource.h>
fac6795d
DG
33#include <sys/socket.h>
34#include <sys/stat.h>
35#include <sys/types.h>
0fdd1e2c
DG
36#include <sys/wait.h>
37#include <urcu/futex.h>
fac6795d 38#include <unistd.h>
3bd1e081 39#include <config.h>
fac6795d 40
3bd1e081 41#include <lttng-consumerd.h>
e88129fc 42#include <lttng-sessiond-comm.h>
3bd1e081 43#include <lttng/lttng-consumer.h>
2bdd86d4 44
1e307fab 45#include <lttngerr.h>
fac6795d 46
54d01ffb 47#include "channel.h"
5eb91c98 48#include "compat/poll.h"
b579acd9 49#include "context.h"
54d01ffb 50#include "event.h"
099e26bd 51#include "futex.h"
f6a9efaa 52#include "hashtable.h"
4771f025 53#include "kernel.h"
32258573 54#include "lttng-sessiond.h"
0fdd1e2c 55#include "shm.h"
56fff090 56#include "ust-app.h"
1e307fab 57#include "ust-ctl.h"
8e68d1c8 58#include "utils.h"
fac6795d 59
ebaeda94
MD
60#define CONSUMERD_FILE "lttng-consumerd"
61
3bd1e081
MD
62struct consumer_data {
63 enum lttng_consumer_type type;
64
65 pthread_t thread; /* Worker thread interacting with the consumer */
66 sem_t sem;
67
68 /* Mutex to control consumerd pid assignation */
69 pthread_mutex_t pid_mutex;
70 pid_t pid;
71
72 int err_sock;
73 int cmd_sock;
74
75 /* consumer error and command Unix socket path */
76 char err_unix_sock_path[PATH_MAX];
77 char cmd_unix_sock_path[PATH_MAX];
78};
fac6795d 79
b25a8868
DG
80#include "benchmark.h"
81
75462a81 82/* Const values */
686204ab 83const char default_home_dir[] = DEFAULT_HOME_DIR;
64a23ac4 84const char default_tracing_group[] = LTTNG_DEFAULT_TRACING_GROUP;
686204ab
MD
85const char default_ust_sock_dir[] = DEFAULT_UST_SOCK_DIR;
86const char default_global_apps_pipe[] = DEFAULT_GLOBAL_APPS_PIPE;
87
fac6795d 88/* Variables */
1d4b027a 89int opt_verbose; /* Not static for lttngerr.h */
3bd1e081 90int opt_verbose_consumer; /* Not static for lttngerr.h */
1d4b027a 91int opt_quiet; /* Not static for lttngerr.h */
d063d709 92
fac6795d
DG
93const char *progname;
94const char *opt_tracing_group;
5b8719f5 95static int opt_sig_parent;
fac6795d
DG
96static int opt_daemon;
97static int is_root; /* Set to 1 if the daemon is running as root */
1d4b027a 98static pid_t ppid; /* Parent PID for --sig-parent option */
3bd1e081
MD
99
100/* Consumer daemon specific control data */
101static struct consumer_data kconsumer_data = {
102 .type = LTTNG_CONSUMER_KERNEL,
7753dea8
MD
103 .err_unix_sock_path = KCONSUMERD_ERR_SOCK_PATH,
104 .cmd_unix_sock_path = KCONSUMERD_CMD_SOCK_PATH,
3bd1e081 105};
7753dea8
MD
106static struct consumer_data ustconsumer64_data = {
107 .type = LTTNG_CONSUMER64_UST,
108 .err_unix_sock_path = USTCONSUMERD64_ERR_SOCK_PATH,
109 .cmd_unix_sock_path = USTCONSUMERD64_CMD_SOCK_PATH,
3bd1e081 110};
7753dea8
MD
111static struct consumer_data ustconsumer32_data = {
112 .type = LTTNG_CONSUMER32_UST,
113 .err_unix_sock_path = USTCONSUMERD32_ERR_SOCK_PATH,
114 .cmd_unix_sock_path = USTCONSUMERD32_CMD_SOCK_PATH,
3bd1e081
MD
115};
116
099e26bd 117static int dispatch_thread_exit;
fac6795d 118
54d01ffb
DG
119/* Global application Unix socket path */
120static char apps_unix_sock_path[PATH_MAX];
121/* Global client Unix socket path */
122static char client_unix_sock_path[PATH_MAX];
54d01ffb
DG
123/* global wait shm path for UST */
124static char wait_shm_path[PATH_MAX];
fac6795d 125
1d4b027a 126/* Sockets and FDs */
d6f42150
DG
127static int client_sock;
128static int apps_sock;
20fe2104 129static int kernel_tracer_fd;
7a485870 130static int kernel_poll_pipe[2];
1d4b027a 131
273ea72c
DG
132/*
133 * Quit pipe for all threads. This permits a single cancellation point
134 * for all threads when receiving an event on the pipe.
135 */
136static int thread_quit_pipe[2];
137
099e26bd
DG
138/*
139 * This pipe is used to inform the thread managing application communication
140 * that a command is queued and ready to be processed.
141 */
142static int apps_cmd_pipe[2];
143
1d4b027a 144/* Pthread, Mutexes and Semaphores */
1d4b027a 145static pthread_t apps_thread;
099e26bd 146static pthread_t reg_apps_thread;
1d4b027a 147static pthread_t client_thread;
7a485870 148static pthread_t kernel_thread;
099e26bd 149static pthread_t dispatch_thread;
5eb91c98 150
fac6795d 151
099e26bd
DG
152/*
153 * UST registration command queue. This queue is tied with a futex and uses a N
154 * wakers / 1 waiter implemented and detailed in futex.c/.h
155 *
156 * The thread_manage_apps and thread_dispatch_ust_registration interact with
157 * this queue and the wait/wake scheme.
158 */
159static struct ust_cmd_queue ust_cmd_queue;
160
b5541356
DG
161/*
162 * Pointer initialized before thread creation.
163 *
164 * This points to the tracing session list containing the session count and a
165 * mutex lock. The lock MUST be taken if you iterate over the list. The lock
166 * MUST NOT be taken if you call a public function in session.c.
04ea676f 167 *
d063d709 168 * The lock is nested inside the structure: session_list_ptr->lock. Please use
54d01ffb 169 * session_lock_list and session_unlock_list for lock acquisition.
b5541356
DG
170 */
171static struct ltt_session_list *session_list_ptr;
172
7753dea8
MD
173int ust_consumerd64_fd = -1;
174int ust_consumerd32_fd = -1;
175
ebaeda94
MD
176static const char *consumerd32_path =
177 __stringify(CONFIG_CONSUMERD32_PATH);
178static const char *consumerd64_path =
179 __stringify(CONFIG_CONSUMERD64_PATH);
180static const char *consumerd32_libdir =
181 __stringify(CONFIG_CONSUMERD32_LIBDIR);
182static const char *consumerd64_libdir =
183 __stringify(CONFIG_CONSUMERD64_LIBDIR);
fb09408a
MD
184
185static
7753dea8 186void setup_consumerd_path(void)
fb09408a 187{
ebaeda94 188 const char *path, *libdir;
fb09408a 189
7753dea8
MD
190 /*
191 * Allow INSTALL_BIN_PATH to be used as a target path for the
ebaeda94
MD
192 * native architecture size consumer if CONFIG_CONSUMER*_PATH
193 * has not been defined.
7753dea8 194 */
ebaeda94
MD
195#if (CAA_BITS_PER_LONG == 32)
196 if (!consumerd32_path[0]) {
7745933c 197 consumerd32_path = INSTALL_BIN_PATH "/" CONSUMERD_FILE;
ebaeda94
MD
198 }
199 if (!consumerd32_libdir[0]) {
200 consumerd32_libdir = INSTALL_LIB_PATH;
201 }
202#elif (CAA_BITS_PER_LONG == 64)
203 if (!consumerd64_path[0]) {
204 consumerd64_path = INSTALL_BIN_PATH "/" CONSUMERD_FILE;
7753dea8 205 }
ebaeda94
MD
206 if (!consumerd64_libdir[0]) {
207 consumerd64_libdir = INSTALL_LIB_PATH;
7753dea8
MD
208 }
209#else
210#error "Unknown bitness"
211#endif
212
fb09408a
MD
213 /*
214 * runtime env. var. overrides the build default.
215 */
ebaeda94
MD
216 path = getenv("LTTNG_CONSUMERD32_PATH");
217 if (path) {
218 consumerd32_path = path;
7753dea8 219 }
ebaeda94
MD
220 path = getenv("LTTNG_CONSUMERD64_PATH");
221 if (path) {
222 consumerd64_path = path;
223 }
224 libdir = getenv("LTTNG_TOOLS_CONSUMERD32_LIBDIR");
225 if (libdir) {
226 consumerd32_libdir = libdir;
227 }
228 libdir = getenv("LTTNG_TOOLS_CONSUMERD64_LIBDIR");
229 if (libdir) {
230 consumerd64_libdir = libdir;
fb09408a
MD
231 }
232}
233
5eb91c98
DG
234/*
235 * Create a poll set with O_CLOEXEC and add the thread quit pipe to the set.
236 */
237static int create_thread_poll_set(struct lttng_poll_event *events,
238 unsigned int size)
239{
240 int ret;
241
242 if (events == NULL || size == 0) {
243 ret = -1;
244 goto error;
245 }
246
247 ret = lttng_poll_create(events, size, LTTNG_CLOEXEC);
248 if (ret < 0) {
249 goto error;
250 }
251
252 /* Add quit pipe */
253 ret = lttng_poll_add(events, thread_quit_pipe[0], LPOLLIN);
254 if (ret < 0) {
255 goto error;
256 }
257
258 return 0;
259
260error:
261 return ret;
262}
263
264/*
265 * Check if the thread quit pipe was triggered.
266 *
267 * Return 1 if it was triggered else 0;
268 */
269static int check_thread_quit_pipe(int fd, uint32_t events)
270{
271 if (fd == thread_quit_pipe[0] && (events & LPOLLIN)) {
272 return 1;
273 }
274
275 return 0;
276}
277
0fdd1e2c
DG
278/*
279 * Remove modules in reverse load order.
280 */
281static int modprobe_remove_kernel_modules(void)
282{
283 int ret = 0, i;
284 char modprobe[256];
285
286 for (i = ARRAY_SIZE(kernel_modules_list) - 1; i >= 0; i--) {
287 ret = snprintf(modprobe, sizeof(modprobe),
24b487b8 288 "/sbin/modprobe -r -q %s",
0fdd1e2c
DG
289 kernel_modules_list[i].name);
290 if (ret < 0) {
24b487b8 291 perror("snprintf modprobe -r");
0fdd1e2c
DG
292 goto error;
293 }
294 modprobe[sizeof(modprobe) - 1] = '\0';
295 ret = system(modprobe);
296 if (ret == -1) {
24b487b8 297 ERR("Unable to launch modprobe -r for module %s",
0fdd1e2c
DG
298 kernel_modules_list[i].name);
299 } else if (kernel_modules_list[i].required
300 && WEXITSTATUS(ret) != 0) {
301 ERR("Unable to remove module %s",
302 kernel_modules_list[i].name);
303 } else {
304 DBG("Modprobe removal successful %s",
305 kernel_modules_list[i].name);
306 }
307 }
308
309error:
310 return ret;
311}
312
313/*
314 * Return group ID of the tracing group or -1 if not found.
315 */
996b65c8
MD
316static gid_t allowed_group(void)
317{
318 struct group *grp;
319
274e143b
MD
320 if (opt_tracing_group) {
321 grp = getgrnam(opt_tracing_group);
322 } else {
323 grp = getgrnam(default_tracing_group);
324 }
996b65c8
MD
325 if (!grp) {
326 return -1;
327 } else {
328 return grp->gr_gid;
329 }
330}
331
273ea72c 332/*
5eb91c98 333 * Init thread quit pipe.
273ea72c
DG
334 *
335 * Return -1 on error or 0 if all pipes are created.
336 */
337static int init_thread_quit_pipe(void)
338{
339 int ret;
340
341 ret = pipe2(thread_quit_pipe, O_CLOEXEC);
342 if (ret < 0) {
343 perror("thread quit pipe");
344 goto error;
345 }
346
347error:
348 return ret;
349}
350
fac6795d 351/*
d063d709
DG
352 * Complete teardown of a kernel session. This free all data structure related
353 * to a kernel session and update counter.
fac6795d 354 */
1d4b027a 355static void teardown_kernel_session(struct ltt_session *session)
fac6795d 356{
8f7a84dd
DG
357 if (!session->kernel_session) {
358 DBG3("No kernel session when tearingdown session");
84ea9c99 359 return;
8f7a84dd 360 }
d9800920 361
84ea9c99 362 DBG("Tearing down kernel session");
d9800920 363
84ea9c99
MD
364 /*
365 * If a custom kernel consumer was registered, close the socket before
366 * tearing down the complete kernel session structure
367 */
368 if (session->kernel_session->consumer_fd != kconsumer_data.cmd_sock) {
369 lttcomm_close_unix_sock(session->kernel_session->consumer_fd);
fac6795d 370 }
84ea9c99
MD
371
372 trace_kernel_destroy_session(session->kernel_session);
fac6795d
DG
373}
374
f6a9efaa
DG
375/*
376 * Complete teardown of all UST sessions. This will free everything on his path
377 * and destroy the core essence of all ust sessions :)
378 */
379static void teardown_ust_session(struct ltt_session *session)
380{
84cd17c6
MD
381 int ret;
382
8f7a84dd
DG
383 if (!session->ust_session) {
384 DBG3("No UST session when tearingdown session");
f470a390 385 return;
8f7a84dd
DG
386 }
387
f6a9efaa
DG
388 DBG("Tearing down UST session(s)");
389
84cd17c6
MD
390 ret = ust_app_destroy_trace_all(session->ust_session);
391 if (ret) {
392 ERR("Error in ust_app_destroy_trace_all");
393 }
8f7a84dd 394
f6a9efaa
DG
395 trace_ust_destroy_session(session->ust_session);
396}
397
099e26bd
DG
398/*
399 * Stop all threads by closing the thread quit pipe.
400 */
cf3af59e
MD
401static void stop_threads(void)
402{
5eb91c98
DG
403 int ret;
404
cf3af59e
MD
405 /* Stopping all threads */
406 DBG("Terminating all threads");
54d01ffb 407 ret = notify_thread_pipe(thread_quit_pipe[1]);
5eb91c98
DG
408 if (ret < 0) {
409 ERR("write error on thread quit pipe");
410 }
411
099e26bd
DG
412 /* Dispatch thread */
413 dispatch_thread_exit = 1;
414 futex_nto1_wake(&ust_cmd_queue.futex);
cf3af59e
MD
415}
416
fac6795d 417/*
d063d709 418 * Cleanup the daemon
fac6795d 419 */
cf3af59e 420static void cleanup(void)
fac6795d 421{
1d4b027a
DG
422 int ret;
423 char *cmd;
af9737e9 424 struct ltt_session *sess, *stmp;
fac6795d 425
1d4b027a 426 DBG("Cleaning up");
e07ae692 427
5eb91c98
DG
428 if (is_root) {
429 DBG("Removing %s directory", LTTNG_RUNDIR);
430 ret = asprintf(&cmd, "rm -rf " LTTNG_RUNDIR);
431 if (ret < 0) {
432 ERR("asprintf failed. Something is really wrong!");
433 }
5461b305 434
5eb91c98
DG
435 /* Remove lttng run directory */
436 ret = system(cmd);
437 if (ret < 0) {
438 ERR("Unable to clean " LTTNG_RUNDIR);
439 }
1d4b027a 440 }
5461b305 441
1d4b027a 442 DBG("Cleaning up all session");
fac6795d 443
b5541356 444 /* Destroy session list mutex */
273ea72c
DG
445 if (session_list_ptr != NULL) {
446 pthread_mutex_destroy(&session_list_ptr->lock);
447
448 /* Cleanup ALL session */
54d01ffb
DG
449 cds_list_for_each_entry_safe(sess, stmp,
450 &session_list_ptr->head, list) {
273ea72c 451 teardown_kernel_session(sess);
f6a9efaa
DG
452 teardown_ust_session(sess);
453 free(sess);
273ea72c
DG
454 }
455 }
456
099e26bd 457 DBG("Closing all UST sockets");
56fff090 458 ust_app_clean_list();
099e26bd 459
3bd1e081 460 pthread_mutex_destroy(&kconsumer_data.pid_mutex);
b5541356 461
f3ed775e 462 DBG("Closing kernel fd");
1d4b027a 463 close(kernel_tracer_fd);
ab147185 464
2f50c8a3
DG
465 if (is_root) {
466 DBG("Unloading kernel modules");
467 modprobe_remove_kernel_modules();
468 }
b25a8868 469
5eb91c98
DG
470 close(thread_quit_pipe[0]);
471 close(thread_quit_pipe[1]);
dab4c8a1 472
3c6bae61
DG
473 /* OUTPUT BENCHMARK RESULTS */
474 bench_init();
475
62d53818
DG
476 if (getenv("BENCH_UST_NOTIFY")) {
477 bench_print_ust_notification();
478 }
479
480 if (getenv("BENCH_UST_REGISTER")) {
481 bench_print_ust_register();
ccca3fea 482 bench_print_ust_unregister();
62d53818
DG
483 }
484
485 if (getenv("BENCH_BOOT_PROCESS")) {
486 bench_print_boot_process();
487 }
3c6bae61
DG
488
489 bench_close();
490 /* END BENCHMARK */
bb3037a9 491
421cb601
DG
492 /* <fun> */
493 MSG("%c[%d;%dm*** assert failed :-) *** ==> %c[%dm%c[%d;%dm"
494 "Matthew, BEET driven development works!%c[%dm",
495 27, 1, 31, 27, 0, 27, 1, 33, 27, 0);
496 /* </fun> */
fac6795d
DG
497}
498
e065084a 499/*
d063d709 500 * Send data on a unix socket using the liblttsessiondcomm API.
e065084a 501 *
d063d709 502 * Return lttcomm error code.
e065084a
DG
503 */
504static int send_unix_sock(int sock, void *buf, size_t len)
505{
506 /* Check valid length */
507 if (len <= 0) {
508 return -1;
509 }
510
511 return lttcomm_send_unix_sock(sock, buf, len);
512}
513
5461b305 514/*
d063d709 515 * Free memory of a command context structure.
5461b305 516 */
a2fb29a5 517static void clean_command_ctx(struct command_ctx **cmd_ctx)
5461b305 518{
a2fb29a5
DG
519 DBG("Clean command context structure");
520 if (*cmd_ctx) {
521 if ((*cmd_ctx)->llm) {
522 free((*cmd_ctx)->llm);
5461b305 523 }
a2fb29a5
DG
524 if ((*cmd_ctx)->lsm) {
525 free((*cmd_ctx)->lsm);
5461b305 526 }
a2fb29a5
DG
527 free(*cmd_ctx);
528 *cmd_ctx = NULL;
5461b305
DG
529 }
530}
531
f3ed775e 532/*
d063d709 533 * Send all stream fds of kernel channel to the consumer.
f3ed775e 534 */
2bdd86d4 535static int send_kconsumer_channel_streams(struct consumer_data *consumer_data,
3bd1e081 536 int sock, struct ltt_kernel_channel *channel)
f3ed775e
DG
537{
538 int ret;
f3ed775e 539 struct ltt_kernel_stream *stream;
3bd1e081 540 struct lttcomm_consumer_msg lkm;
f3ed775e 541
3bd1e081 542 DBG("Sending streams of channel %s to kernel consumer",
54d01ffb 543 channel->channel->name);
7a485870 544
3bd1e081
MD
545 /* Send channel */
546 lkm.cmd_type = LTTNG_CONSUMER_ADD_CHANNEL;
547 lkm.u.channel.channel_key = channel->fd;
548 lkm.u.channel.max_sb_size = channel->channel->attr.subbuf_size;
549 lkm.u.channel.mmap_len = 0; /* for kernel */
2bdd86d4 550 DBG("Sending channel %d to consumer", lkm.u.channel.channel_key);
3bd1e081 551 ret = lttcomm_send_unix_sock(sock, &lkm, sizeof(lkm));
f3ed775e 552 if (ret < 0) {
3bd1e081 553 perror("send consumer channel");
f3ed775e
DG
554 goto error;
555 }
556
3bd1e081 557 /* Send streams */
7a485870 558 cds_list_for_each_entry(stream, &channel->stream_list.head, list) {
3bd1e081
MD
559 if (!stream->fd) {
560 continue;
561 }
562 lkm.cmd_type = LTTNG_CONSUMER_ADD_STREAM;
563 lkm.u.stream.channel_key = channel->fd;
564 lkm.u.stream.stream_key = stream->fd;
565 lkm.u.stream.state = stream->state;
566 lkm.u.stream.output = channel->channel->attr.output;
567 lkm.u.stream.mmap_len = 0; /* for kernel */
568 strncpy(lkm.u.stream.path_name, stream->pathname, PATH_MAX - 1);
569 lkm.u.stream.path_name[PATH_MAX - 1] = '\0';
570 DBG("Sending stream %d to consumer", lkm.u.stream.stream_key);
571 ret = lttcomm_send_unix_sock(sock, &lkm, sizeof(lkm));
572 if (ret < 0) {
573 perror("send consumer stream");
574 goto error;
575 }
576 ret = lttcomm_send_fds_unix_sock(sock, &stream->fd, 1);
577 if (ret < 0) {
578 perror("send consumer stream ancillary data");
579 goto error;
f3ed775e
DG
580 }
581 }
582
3bd1e081 583 DBG("consumer channel streams sent");
f3ed775e
DG
584
585 return 0;
586
587error:
588 return ret;
589}
590
591/*
d063d709 592 * Send all stream fds of the kernel session to the consumer.
f3ed775e 593 */
2bdd86d4 594static int send_kconsumer_session_streams(struct consumer_data *consumer_data,
3bd1e081 595 struct ltt_kernel_session *session)
f3ed775e
DG
596{
597 int ret;
598 struct ltt_kernel_channel *chan;
3bd1e081
MD
599 struct lttcomm_consumer_msg lkm;
600 int sock = session->consumer_fd;
7a485870
DG
601
602 DBG("Sending metadata stream fd");
603
2bdd86d4 604 /* Extra protection. It's NOT supposed to be set to 0 at this point */
d9800920 605 if (session->consumer_fd == 0) {
3bd1e081 606 session->consumer_fd = consumer_data->cmd_sock;
d9800920
DG
607 }
608
7a485870 609 if (session->metadata_stream_fd != 0) {
3bd1e081
MD
610 /* Send metadata channel fd */
611 lkm.cmd_type = LTTNG_CONSUMER_ADD_CHANNEL;
612 lkm.u.channel.channel_key = session->metadata->fd;
613 lkm.u.channel.max_sb_size = session->metadata->conf->attr.subbuf_size;
614 lkm.u.channel.mmap_len = 0; /* for kernel */
615 DBG("Sending metadata channel %d to consumer", lkm.u.stream.stream_key);
616 ret = lttcomm_send_unix_sock(sock, &lkm, sizeof(lkm));
617 if (ret < 0) {
618 perror("send consumer channel");
619 goto error;
620 }
621
622 /* Send metadata stream fd */
623 lkm.cmd_type = LTTNG_CONSUMER_ADD_STREAM;
624 lkm.u.stream.channel_key = session->metadata->fd;
625 lkm.u.stream.stream_key = session->metadata_stream_fd;
626 lkm.u.stream.state = LTTNG_CONSUMER_ACTIVE_STREAM;
627 lkm.u.stream.output = DEFAULT_KERNEL_CHANNEL_OUTPUT;
628 lkm.u.stream.mmap_len = 0; /* for kernel */
629 strncpy(lkm.u.stream.path_name, session->metadata->pathname, PATH_MAX - 1);
630 lkm.u.stream.path_name[PATH_MAX - 1] = '\0';
631 DBG("Sending metadata stream %d to consumer", lkm.u.stream.stream_key);
632 ret = lttcomm_send_unix_sock(sock, &lkm, sizeof(lkm));
7a485870 633 if (ret < 0) {
3bd1e081
MD
634 perror("send consumer stream");
635 goto error;
636 }
637 ret = lttcomm_send_fds_unix_sock(sock, &session->metadata_stream_fd, 1);
7a485870 638 if (ret < 0) {
3bd1e081 639 perror("send consumer stream");
7a485870
DG
640 goto error;
641 }
642 }
f3ed775e 643
f3ed775e 644 cds_list_for_each_entry(chan, &session->channel_list.head, list) {
2bdd86d4 645 ret = send_kconsumer_channel_streams(consumer_data, sock, chan);
f3ed775e 646 if (ret < 0) {
7a485870 647 goto error;
f3ed775e
DG
648 }
649 }
650
2bdd86d4 651 DBG("consumer fds (metadata and channel streams) sent");
7a485870 652
f3ed775e
DG
653 return 0;
654
655error:
656 return ret;
657}
658
fac6795d 659/*
0fdd1e2c 660 * Notify UST applications using the shm mmap futex.
fac6795d 661 */
0fdd1e2c 662static int notify_ust_apps(int active)
fac6795d 663{
0fdd1e2c 664 char *wait_shm_mmap;
fac6795d 665
0fdd1e2c 666 DBG("Notifying applications of session daemon state: %d", active);
fac6795d 667
62d53818
DG
668 tracepoint(ust_notify_apps_start);
669
0fdd1e2c
DG
670 /* See shm.c for this call implying mmap, shm and futex calls */
671 wait_shm_mmap = shm_ust_get_mmap(wait_shm_path, is_root);
672 if (wait_shm_mmap == NULL) {
fac6795d
DG
673 goto error;
674 }
675
0fdd1e2c
DG
676 /* Wake waiting process */
677 futex_wait_update((int32_t *) wait_shm_mmap, active);
678
62d53818
DG
679 tracepoint(ust_notify_apps_stop);
680
0fdd1e2c
DG
681 /* Apps notified successfully */
682 return 0;
fac6795d
DG
683
684error:
0fdd1e2c 685 return -1;
fac6795d
DG
686}
687
e065084a 688/*
d063d709
DG
689 * Setup the outgoing data buffer for the response (llm) by allocating the
690 * right amount of memory and copying the original information from the lsm
691 * structure.
ca95a216 692 *
d063d709 693 * Return total size of the buffer pointed by buf.
ca95a216 694 */
5461b305 695static int setup_lttng_msg(struct command_ctx *cmd_ctx, size_t size)
ca95a216 696{
f3ed775e 697 int ret, buf_size;
ca95a216 698
f3ed775e 699 buf_size = size;
5461b305 700
ba7f0ae5 701 cmd_ctx->llm = zmalloc(sizeof(struct lttcomm_lttng_msg) + buf_size);
5461b305 702 if (cmd_ctx->llm == NULL) {
ba7f0ae5 703 perror("zmalloc");
5461b305 704 ret = -ENOMEM;
ca95a216
DG
705 goto error;
706 }
707
5461b305
DG
708 /* Copy common data */
709 cmd_ctx->llm->cmd_type = cmd_ctx->lsm->cmd_type;
9f19cc17 710 cmd_ctx->llm->pid = cmd_ctx->lsm->domain.attr.pid;
5461b305 711
5461b305
DG
712 cmd_ctx->llm->data_size = size;
713 cmd_ctx->lttng_msg_size = sizeof(struct lttcomm_lttng_msg) + buf_size;
714
ca95a216
DG
715 return buf_size;
716
717error:
718 return ret;
719}
720
7a485870 721/*
5eb91c98 722 * Update the kernel poll set of all channel fd available over all tracing
d063d709 723 * session. Add the wakeup pipe at the end of the set.
7a485870 724 */
5eb91c98 725static int update_kernel_poll(struct lttng_poll_event *events)
7a485870 726{
5eb91c98 727 int ret;
7a485870
DG
728 struct ltt_session *session;
729 struct ltt_kernel_channel *channel;
730
5eb91c98 731 DBG("Updating kernel poll set");
7a485870 732
54d01ffb 733 session_lock_list();
b5541356 734 cds_list_for_each_entry(session, &session_list_ptr->head, list) {
54d01ffb 735 session_lock(session);
7a485870 736 if (session->kernel_session == NULL) {
54d01ffb 737 session_unlock(session);
7a485870
DG
738 continue;
739 }
7a485870 740
54d01ffb
DG
741 cds_list_for_each_entry(channel,
742 &session->kernel_session->channel_list.head, list) {
5eb91c98
DG
743 /* Add channel fd to the kernel poll set */
744 ret = lttng_poll_add(events, channel->fd, LPOLLIN | LPOLLRDNORM);
745 if (ret < 0) {
54d01ffb 746 session_unlock(session);
5eb91c98
DG
747 goto error;
748 }
749 DBG("Channel fd %d added to kernel set", channel->fd);
7a485870 750 }
54d01ffb 751 session_unlock(session);
7a485870 752 }
54d01ffb 753 session_unlock_list();
7a485870 754
5eb91c98 755 return 0;
7a485870
DG
756
757error:
54d01ffb 758 session_unlock_list();
7a485870
DG
759 return -1;
760}
761
762/*
54d01ffb 763 * Find the channel fd from 'fd' over all tracing session. When found, check
d063d709 764 * for new channel stream and send those stream fds to the kernel consumer.
7a485870 765 *
d063d709 766 * Useful for CPU hotplug feature.
7a485870 767 */
2bdd86d4 768static int update_kernel_stream(struct consumer_data *consumer_data, int fd)
7a485870
DG
769{
770 int ret = 0;
771 struct ltt_session *session;
772 struct ltt_kernel_channel *channel;
773
774 DBG("Updating kernel streams for channel fd %d", fd);
775
54d01ffb 776 session_lock_list();
b5541356 777 cds_list_for_each_entry(session, &session_list_ptr->head, list) {
54d01ffb 778 session_lock(session);
7a485870 779 if (session->kernel_session == NULL) {
54d01ffb 780 session_unlock(session);
7a485870
DG
781 continue;
782 }
d9800920
DG
783
784 /* This is not suppose to be 0 but this is an extra security check */
785 if (session->kernel_session->consumer_fd == 0) {
3bd1e081 786 session->kernel_session->consumer_fd = consumer_data->cmd_sock;
d9800920
DG
787 }
788
5eb91c98
DG
789 cds_list_for_each_entry(channel,
790 &session->kernel_session->channel_list.head, list) {
7a485870
DG
791 if (channel->fd == fd) {
792 DBG("Channel found, updating kernel streams");
793 ret = kernel_open_channel_stream(channel);
794 if (ret < 0) {
b3c750d2 795 goto error;
7a485870 796 }
d9800920 797
7a485870 798 /*
5eb91c98
DG
799 * Have we already sent fds to the consumer? If yes, it means
800 * that tracing is started so it is safe to send our updated
801 * stream fds.
7a485870 802 */
3bd1e081 803 if (session->kernel_session->consumer_fds_sent == 1) {
2bdd86d4 804 ret = send_kconsumer_channel_streams(consumer_data,
5eb91c98 805 session->kernel_session->consumer_fd, channel);
7a485870 806 if (ret < 0) {
b3c750d2 807 goto error;
7a485870
DG
808 }
809 }
b3c750d2 810 goto error;
7a485870
DG
811 }
812 }
54d01ffb 813 session_unlock(session);
7a485870 814 }
54d01ffb 815 session_unlock_list();
b3c750d2 816 return ret;
7a485870 817
b3c750d2 818error:
54d01ffb
DG
819 session_unlock(session);
820 session_unlock_list();
7a485870
DG
821 return ret;
822}
823
487cf67c
DG
824/*
825 * For each tracing session, update newly registered apps.
826 */
827static void update_ust_app(int app_sock)
828{
829 struct ltt_session *sess, *stmp;
830
831 /* For all tracing session(s) */
832 cds_list_for_each_entry_safe(sess, stmp, &session_list_ptr->head, list) {
421cb601
DG
833 if (sess->ust_session) {
834 ust_app_global_update(sess->ust_session, app_sock);
835 }
487cf67c
DG
836 }
837}
838
7a485870 839/*
d063d709 840 * This thread manage event coming from the kernel.
7a485870 841 *
d063d709
DG
842 * Features supported in this thread:
843 * -) CPU Hotplug
7a485870
DG
844 */
845static void *thread_manage_kernel(void *data)
846{
5eb91c98
DG
847 int ret, i, pollfd, update_poll_flag = 1;
848 uint32_t revents, nb_fd;
7a485870 849 char tmp;
5eb91c98 850 struct lttng_poll_event events;
7a485870 851
b25a8868
DG
852 tracepoint(sessiond_th_kern_start);
853
7a485870
DG
854 DBG("Thread manage kernel started");
855
5eb91c98
DG
856 ret = create_thread_poll_set(&events, 2);
857 if (ret < 0) {
858 goto error;
859 }
860
861 ret = lttng_poll_add(&events, kernel_poll_pipe[0], LPOLLIN);
862 if (ret < 0) {
863 goto error;
864 }
865
7a485870
DG
866 while (1) {
867 if (update_poll_flag == 1) {
5f822d0a
DG
868 /*
869 * Reset number of fd in the poll set. Always 2 since there is the thread
870 * quit pipe and the kernel pipe.
871 */
872 events.nb_fd = 2;
873
5eb91c98
DG
874 ret = update_kernel_poll(&events);
875 if (ret < 0) {
7a485870
DG
876 goto error;
877 }
878 update_poll_flag = 0;
879 }
880
5eb91c98
DG
881 nb_fd = LTTNG_POLL_GETNB(&events);
882
883 DBG("Thread kernel polling on %d fds", nb_fd);
884
885 /* Zeroed the poll events */
886 lttng_poll_reset(&events);
7a485870 887
b25a8868
DG
888 tracepoint(sessiond_th_kern_poll);
889
7a485870 890 /* Poll infinite value of time */
5eb91c98 891 ret = lttng_poll_wait(&events, -1);
7a485870 892 if (ret < 0) {
7a485870
DG
893 goto error;
894 } else if (ret == 0) {
895 /* Should not happen since timeout is infinite */
85611738
DG
896 ERR("Return value of poll is 0 with an infinite timeout.\n"
897 "This should not have happened! Continuing...");
7a485870
DG
898 continue;
899 }
900
5eb91c98
DG
901 for (i = 0; i < nb_fd; i++) {
902 /* Fetch once the poll data */
903 revents = LTTNG_POLL_GETEV(&events, i);
904 pollfd = LTTNG_POLL_GETFD(&events, i);
7a485870 905
5eb91c98
DG
906 /* Thread quit pipe has been closed. Killing thread. */
907 ret = check_thread_quit_pipe(pollfd, revents);
908 if (ret) {
909 goto error;
910 }
7a485870 911
5eb91c98
DG
912 /* Check for data on kernel pipe */
913 if (pollfd == kernel_poll_pipe[0] && (revents & LPOLLIN)) {
914 ret = read(kernel_poll_pipe[0], &tmp, 1);
915 update_poll_flag = 1;
916 continue;
917 } else {
918 /*
919 * New CPU detected by the kernel. Adding kernel stream to
920 * kernel session and updating the kernel consumer
921 */
922 if (revents & LPOLLIN) {
2bdd86d4 923 ret = update_kernel_stream(&kconsumer_data, pollfd);
5eb91c98
DG
924 if (ret < 0) {
925 continue;
926 }
927 break;
928 /*
929 * TODO: We might want to handle the LPOLLERR | LPOLLHUP
930 * and unregister kernel stream at this point.
931 */
7a485870 932 }
7a485870
DG
933 }
934 }
935 }
936
937error:
938 DBG("Kernel thread dying");
273ea72c
DG
939 close(kernel_poll_pipe[0]);
940 close(kernel_poll_pipe[1]);
5eb91c98
DG
941
942 lttng_poll_clean(&events);
943
7a485870
DG
944 return NULL;
945}
946
1d4b027a 947/*
3bd1e081 948 * This thread manage the consumer error sent back to the session daemon.
1d4b027a 949 */
3bd1e081 950static void *thread_manage_consumer(void *data)
1d4b027a 951{
5eb91c98
DG
952 int sock = 0, i, ret, pollfd;
953 uint32_t revents, nb_fd;
1d4b027a 954 enum lttcomm_return_code code;
5eb91c98 955 struct lttng_poll_event events;
3bd1e081 956 struct consumer_data *consumer_data = data;
1d4b027a 957
b25a8868
DG
958 tracepoint(sessiond_th_kcon_start);
959
3bd1e081 960 DBG("[thread] Manage consumer started");
1d4b027a 961
3bd1e081 962 ret = lttcomm_listen_unix_sock(consumer_data->err_sock);
1d4b027a
DG
963 if (ret < 0) {
964 goto error;
965 }
966
5eb91c98
DG
967 /*
968 * Pass 2 as size here for the thread quit pipe and kconsumerd_err_sock.
969 * Nothing more will be added to this poll set.
970 */
971 ret = create_thread_poll_set(&events, 2);
972 if (ret < 0) {
973 goto error;
974 }
273ea72c 975
3bd1e081 976 ret = lttng_poll_add(&events, consumer_data->err_sock, LPOLLIN | LPOLLRDHUP);
5eb91c98
DG
977 if (ret < 0) {
978 goto error;
979 }
273ea72c 980
5eb91c98 981 nb_fd = LTTNG_POLL_GETNB(&events);
273ea72c 982
b25a8868
DG
983 tracepoint(sessiond_th_kcon_poll);
984
273ea72c 985 /* Inifinite blocking call, waiting for transmission */
5eb91c98 986 ret = lttng_poll_wait(&events, -1);
273ea72c 987 if (ret < 0) {
273ea72c
DG
988 goto error;
989 }
990
5eb91c98
DG
991 for (i = 0; i < nb_fd; i++) {
992 /* Fetch once the poll data */
993 revents = LTTNG_POLL_GETEV(&events, i);
994 pollfd = LTTNG_POLL_GETFD(&events, i);
995
996 /* Thread quit pipe has been closed. Killing thread. */
997 ret = check_thread_quit_pipe(pollfd, revents);
998 if (ret) {
999 goto error;
1000 }
1001
1002 /* Event on the registration socket */
3bd1e081 1003 if (pollfd == consumer_data->err_sock) {
5eb91c98 1004 if (revents & (LPOLLERR | LPOLLHUP | LPOLLRDHUP)) {
3bd1e081 1005 ERR("consumer err socket poll error");
5eb91c98
DG
1006 goto error;
1007 }
1008 }
273ea72c
DG
1009 }
1010
3bd1e081 1011 sock = lttcomm_accept_unix_sock(consumer_data->err_sock);
1d4b027a
DG
1012 if (sock < 0) {
1013 goto error;
1014 }
1015
3bd1e081 1016 DBG2("Receiving code from consumer err_sock");
ee0b0061 1017
712ea556 1018 /* Getting status code from kconsumerd */
54d01ffb
DG
1019 ret = lttcomm_recv_unix_sock(sock, &code,
1020 sizeof(enum lttcomm_return_code));
1d4b027a
DG
1021 if (ret <= 0) {
1022 goto error;
1023 }
1024
3bd1e081
MD
1025 if (code == CONSUMERD_COMMAND_SOCK_READY) {
1026 consumer_data->cmd_sock =
1027 lttcomm_connect_unix_sock(consumer_data->cmd_unix_sock_path);
1028 if (consumer_data->cmd_sock < 0) {
1029 sem_post(&consumer_data->sem);
48842b30 1030 PERROR("consumer connect");
1d4b027a
DG
1031 goto error;
1032 }
1033 /* Signal condition to tell that the kconsumerd is ready */
3bd1e081
MD
1034 sem_post(&consumer_data->sem);
1035 DBG("consumer command socket ready");
1d4b027a 1036 } else {
3bd1e081 1037 ERR("consumer error when waiting for SOCK_READY : %s",
1d4b027a
DG
1038 lttcomm_get_readable_code(-code));
1039 goto error;
1040 }
1041
54d01ffb 1042 /* Remove the kconsumerd error sock since we've established a connexion */
3bd1e081 1043 ret = lttng_poll_del(&events, consumer_data->err_sock);
72079cae 1044 if (ret < 0) {
72079cae
DG
1045 goto error;
1046 }
1047
5eb91c98
DG
1048 ret = lttng_poll_add(&events, sock, LPOLLIN | LPOLLRDHUP);
1049 if (ret < 0) {
72079cae 1050 goto error;
5eb91c98
DG
1051 }
1052
1053 /* Update number of fd */
1054 nb_fd = LTTNG_POLL_GETNB(&events);
1055
1056 /* Inifinite blocking call, waiting for transmission */
1057 ret = lttng_poll_wait(&events, -1);
1058 if (ret < 0) {
72079cae
DG
1059 goto error;
1060 }
1061
5eb91c98
DG
1062 for (i = 0; i < nb_fd; i++) {
1063 /* Fetch once the poll data */
1064 revents = LTTNG_POLL_GETEV(&events, i);
1065 pollfd = LTTNG_POLL_GETFD(&events, i);
1066
1067 /* Thread quit pipe has been closed. Killing thread. */
1068 ret = check_thread_quit_pipe(pollfd, revents);
1069 if (ret) {
1070 goto error;
1071 }
1072
1073 /* Event on the kconsumerd socket */
1074 if (pollfd == sock) {
1075 if (revents & (LPOLLERR | LPOLLHUP | LPOLLRDHUP)) {
3bd1e081 1076 ERR("consumer err socket second poll error");
5eb91c98
DG
1077 goto error;
1078 }
1079 }
1080 }
1081
712ea556 1082 /* Wait for any kconsumerd error */
54d01ffb
DG
1083 ret = lttcomm_recv_unix_sock(sock, &code,
1084 sizeof(enum lttcomm_return_code));
712ea556 1085 if (ret <= 0) {
3bd1e081 1086 ERR("consumer closed the command socket");
712ea556 1087 goto error;
6f61d021 1088 }
1d4b027a 1089
3bd1e081 1090 ERR("consumer return code : %s", lttcomm_get_readable_code(-code));
712ea556 1091
1d4b027a 1092error:
3bd1e081
MD
1093 DBG("consumer thread dying");
1094 close(consumer_data->err_sock);
1095 close(consumer_data->cmd_sock);
5eb91c98 1096 close(sock);
273ea72c 1097
3bd1e081
MD
1098 unlink(consumer_data->err_unix_sock_path);
1099 unlink(consumer_data->cmd_unix_sock_path);
1100 consumer_data->pid = 0;
0177d773 1101
5eb91c98 1102 lttng_poll_clean(&events);
0177d773 1103
5eb91c98 1104 return NULL;
099e26bd
DG
1105}
1106
099e26bd
DG
1107/*
1108 * This thread manage application communication.
1d4b027a
DG
1109 */
1110static void *thread_manage_apps(void *data)
099e26bd 1111{
5eb91c98
DG
1112 int i, ret, pollfd;
1113 uint32_t revents, nb_fd;
099e26bd 1114 struct ust_command ust_cmd;
5eb91c98 1115 struct lttng_poll_event events;
099e26bd 1116
85c434ee
DG
1117 tracepoint(sessiond_th_apps_start);
1118
099e26bd
DG
1119 DBG("[thread] Manage application started");
1120
f6a9efaa
DG
1121 rcu_register_thread();
1122 rcu_thread_online();
1123
5eb91c98
DG
1124 ret = create_thread_poll_set(&events, 2);
1125 if (ret < 0) {
1126 goto error;
1127 }
099e26bd 1128
5eb91c98
DG
1129 ret = lttng_poll_add(&events, apps_cmd_pipe[0], LPOLLIN | LPOLLRDHUP);
1130 if (ret < 0) {
1131 goto error;
1132 }
099e26bd 1133
5eb91c98
DG
1134 while (1) {
1135 /* Zeroed the events structure */
1136 lttng_poll_reset(&events);
0177d773 1137
5eb91c98 1138 nb_fd = LTTNG_POLL_GETNB(&events);
099e26bd
DG
1139
1140 DBG("Apps thread polling on %d fds", nb_fd);
1141
85c434ee
DG
1142 tracepoint(sessiond_th_apps_poll);
1143
099e26bd 1144 /* Inifinite blocking call, waiting for transmission */
5eb91c98 1145 ret = lttng_poll_wait(&events, -1);
099e26bd 1146 if (ret < 0) {
099e26bd
DG
1147 goto error;
1148 }
1149
5eb91c98
DG
1150 for (i = 0; i < nb_fd; i++) {
1151 /* Fetch once the poll data */
1152 revents = LTTNG_POLL_GETEV(&events, i);
1153 pollfd = LTTNG_POLL_GETFD(&events, i);
1154
1155 /* Thread quit pipe has been closed. Killing thread. */
1156 ret = check_thread_quit_pipe(pollfd, revents);
1157 if (ret) {
099e26bd 1158 goto error;
5eb91c98 1159 }
62d53818 1160
5eb91c98
DG
1161 /* Inspect the apps cmd pipe */
1162 if (pollfd == apps_cmd_pipe[0]) {
1163 if (revents & (LPOLLERR | LPOLLHUP | LPOLLRDHUP)) {
1164 ERR("Apps command pipe error");
0177d773 1165 goto error;
5eb91c98 1166 } else if (revents & LPOLLIN) {
dab4c8a1 1167 tracepoint(ust_register_read_start);
5eb91c98
DG
1168 /* Empty pipe */
1169 ret = read(apps_cmd_pipe[0], &ust_cmd, sizeof(ust_cmd));
1170 if (ret < 0 || ret < sizeof(ust_cmd)) {
1171 perror("read apps cmd pipe");
1172 goto error;
1173 }
a89c7d1b 1174 tracepoint(ust_register_read_stop);
099e26bd 1175
a89c7d1b 1176 tracepoint(ust_register_add_start);
5eb91c98 1177 /* Register applicaton to the session daemon */
56fff090 1178 ret = ust_app_register(&ust_cmd.reg_msg,
54d01ffb 1179 ust_cmd.sock);
88ff5b7f 1180 if (ret == -ENOMEM) {
5eb91c98 1181 goto error;
88ff5b7f
MD
1182 } else if (ret < 0) {
1183 break;
5eb91c98 1184 }
a89c7d1b 1185 tracepoint(ust_register_add_stop);
85c434ee 1186
a89c7d1b 1187 tracepoint(ust_register_done_start);
acc7b41b
MD
1188 /*
1189 * Add channel(s) and event(s) to newly registered apps
1190 * from lttng global UST domain.
1191 */
1192 update_ust_app(ust_cmd.sock);
1193
5eb91c98
DG
1194 ret = ustctl_register_done(ust_cmd.sock);
1195 if (ret < 0) {
1196 /*
1197 * If the registration is not possible, we simply
1198 * unregister the apps and continue
1199 */
56fff090 1200 ust_app_unregister(ust_cmd.sock);
5eb91c98
DG
1201 } else {
1202 /*
1203 * We just need here to monitor the close of the UST
1204 * socket and poll set monitor those by default.
1205 */
1206 ret = lttng_poll_add(&events, ust_cmd.sock, 0);
1207 if (ret < 0) {
1208 goto error;
1209 }
1210
54d01ffb
DG
1211 DBG("Apps with sock %d added to poll set",
1212 ust_cmd.sock);
5eb91c98 1213 }
a89c7d1b 1214 tracepoint(ust_register_done_stop);
5eb91c98 1215 break;
0177d773 1216 }
5eb91c98
DG
1217 } else {
1218 /*
54d01ffb
DG
1219 * At this point, we know that a registered application made
1220 * the event at poll_wait.
5eb91c98
DG
1221 */
1222 if (revents & (LPOLLERR | LPOLLHUP | LPOLLRDHUP)) {
1223 /* Removing from the poll set */
1224 ret = lttng_poll_del(&events, pollfd);
1225 if (ret < 0) {
1226 goto error;
1227 }
099e26bd 1228
b9d9b220 1229 /* Socket closed on remote end. */
56fff090 1230 ust_app_unregister(pollfd);
5eb91c98 1231 break;
0177d773 1232 }
099e26bd
DG
1233 }
1234 }
099e26bd
DG
1235 }
1236
1237error:
1238 DBG("Application communication apps dying");
1239 close(apps_cmd_pipe[0]);
1240 close(apps_cmd_pipe[1]);
1241
5eb91c98 1242 lttng_poll_clean(&events);
099e26bd 1243
f6a9efaa
DG
1244 rcu_thread_offline();
1245 rcu_unregister_thread();
099e26bd
DG
1246 return NULL;
1247}
1248
1249/*
1250 * Dispatch request from the registration threads to the application
1251 * communication thread.
1252 */
1253static void *thread_dispatch_ust_registration(void *data)
1254{
1255 int ret;
1256 struct cds_wfq_node *node;
1257 struct ust_command *ust_cmd = NULL;
1258
85c434ee
DG
1259 tracepoint(sessiond_th_dispatch_start);
1260
099e26bd
DG
1261 DBG("[thread] Dispatch UST command started");
1262
1263 while (!dispatch_thread_exit) {
1264 /* Atomically prepare the queue futex */
1265 futex_nto1_prepare(&ust_cmd_queue.futex);
1266
1267 do {
85c434ee
DG
1268 tracepoint(sessiond_th_dispatch_block);
1269
099e26bd
DG
1270 /* Dequeue command for registration */
1271 node = cds_wfq_dequeue_blocking(&ust_cmd_queue.queue);
1272 if (node == NULL) {
00a17c97 1273 DBG("Woken up but nothing in the UST command queue");
099e26bd
DG
1274 /* Continue thread execution */
1275 break;
1276 }
1277
62d53818
DG
1278 tracepoint(ust_dispatch_register_start);
1279
099e26bd
DG
1280 ust_cmd = caa_container_of(node, struct ust_command, node);
1281
2f50c8a3
DG
1282 DBG("Dispatching UST registration pid:%d ppid:%d uid:%d"
1283 " gid:%d sock:%d name:%s (version %d.%d)",
1284 ust_cmd->reg_msg.pid, ust_cmd->reg_msg.ppid,
1285 ust_cmd->reg_msg.uid, ust_cmd->reg_msg.gid,
1286 ust_cmd->sock, ust_cmd->reg_msg.name,
1287 ust_cmd->reg_msg.major, ust_cmd->reg_msg.minor);
099e26bd
DG
1288 /*
1289 * Inform apps thread of the new application registration. This
1290 * call is blocking so we can be assured that the data will be read
1291 * at some point in time or wait to the end of the world :)
1292 */
1293 ret = write(apps_cmd_pipe[1], ust_cmd,
1294 sizeof(struct ust_command));
1295 if (ret < 0) {
1296 perror("write apps cmd pipe");
1297 if (errno == EBADF) {
1298 /*
1299 * We can't inform the application thread to process
1300 * registration. We will exit or else application
1301 * registration will not occur and tracing will never
1302 * start.
1303 */
1304 goto error;
1305 }
1306 }
1307 free(ust_cmd);
1308 } while (node != NULL);
1309
62d53818
DG
1310 tracepoint(ust_dispatch_register_stop);
1311
099e26bd
DG
1312 /* Futex wait on queue. Blocking call on futex() */
1313 futex_nto1_wait(&ust_cmd_queue.futex);
1314 }
1315
1316error:
1317 DBG("Dispatch thread dying");
1318 return NULL;
1319}
1320
1321/*
1322 * This thread manage application registration.
1323 */
1324static void *thread_registration_apps(void *data)
1d4b027a 1325{
5eb91c98
DG
1326 int sock = 0, i, ret, pollfd;
1327 uint32_t revents, nb_fd;
1328 struct lttng_poll_event events;
099e26bd
DG
1329 /*
1330 * Get allocated in this thread, enqueued to a global queue, dequeued and
1331 * freed in the manage apps thread.
1332 */
1333 struct ust_command *ust_cmd = NULL;
1d4b027a 1334
62d53818 1335 tracepoint(sessiond_th_reg_start);
b25a8868 1336
099e26bd 1337 DBG("[thread] Manage application registration started");
1d4b027a
DG
1338
1339 ret = lttcomm_listen_unix_sock(apps_sock);
1340 if (ret < 0) {
1341 goto error;
1342 }
1343
5eb91c98
DG
1344 /*
1345 * Pass 2 as size here for the thread quit pipe and apps socket. Nothing
1346 * more will be added to this poll set.
1347 */
1348 ret = create_thread_poll_set(&events, 2);
1349 if (ret < 0) {
1350 goto error;
1351 }
273ea72c 1352
5eb91c98
DG
1353 /* Add the application registration socket */
1354 ret = lttng_poll_add(&events, apps_sock, LPOLLIN | LPOLLRDHUP);
1355 if (ret < 0) {
1356 goto error;
1357 }
273ea72c 1358
1d4b027a 1359 /* Notify all applications to register */
0fdd1e2c
DG
1360 ret = notify_ust_apps(1);
1361 if (ret < 0) {
1362 ERR("Failed to notify applications or create the wait shared memory.\n"
54d01ffb
DG
1363 "Execution continues but there might be problem for already\n"
1364 "running applications that wishes to register.");
0fdd1e2c 1365 }
1d4b027a
DG
1366
1367 while (1) {
1368 DBG("Accepting application registration");
273ea72c 1369
62d53818 1370 tracepoint(sessiond_th_reg_poll);
b25a8868 1371
5eb91c98
DG
1372 nb_fd = LTTNG_POLL_GETNB(&events);
1373
273ea72c 1374 /* Inifinite blocking call, waiting for transmission */
5eb91c98 1375 ret = lttng_poll_wait(&events, -1);
273ea72c 1376 if (ret < 0) {
273ea72c
DG
1377 goto error;
1378 }
1379
5eb91c98
DG
1380 for (i = 0; i < nb_fd; i++) {
1381 /* Fetch once the poll data */
1382 revents = LTTNG_POLL_GETEV(&events, i);
1383 pollfd = LTTNG_POLL_GETFD(&events, i);
273ea72c 1384
5eb91c98
DG
1385 /* Thread quit pipe has been closed. Killing thread. */
1386 ret = check_thread_quit_pipe(pollfd, revents);
1387 if (ret) {
90014c57
DG
1388 goto error;
1389 }
62d53818 1390
5eb91c98
DG
1391 /* Event on the registration socket */
1392 if (pollfd == apps_sock) {
1393 if (revents & (LPOLLERR | LPOLLHUP | LPOLLRDHUP)) {
1394 ERR("Register apps socket poll error");
1395 goto error;
1396 } else if (revents & LPOLLIN) {
dab4c8a1
DG
1397 /* Registration starts here. Recording cycles */
1398 tracepoint(ust_register_start);
1d4b027a 1399
5eb91c98
DG
1400 sock = lttcomm_accept_unix_sock(apps_sock);
1401 if (sock < 0) {
1402 goto error;
1403 }
099e26bd 1404
5eb91c98 1405 /* Create UST registration command for enqueuing */
ba7f0ae5 1406 ust_cmd = zmalloc(sizeof(struct ust_command));
5eb91c98 1407 if (ust_cmd == NULL) {
ba7f0ae5 1408 perror("ust command zmalloc");
5eb91c98
DG
1409 goto error;
1410 }
1d4b027a 1411
5eb91c98
DG
1412 /*
1413 * Using message-based transmissions to ensure we don't
1414 * have to deal with partially received messages.
1415 */
1416 ret = lttcomm_recv_unix_sock(sock, &ust_cmd->reg_msg,
1417 sizeof(struct ust_register_msg));
1418 if (ret < 0 || ret < sizeof(struct ust_register_msg)) {
1419 if (ret < 0) {
1420 perror("lttcomm_recv_unix_sock register apps");
1421 } else {
1422 ERR("Wrong size received on apps register");
1423 }
1424 free(ust_cmd);
1425 close(sock);
1426 continue;
1427 }
099e26bd 1428
5eb91c98 1429 ust_cmd->sock = sock;
099e26bd 1430
5eb91c98
DG
1431 DBG("UST registration received with pid:%d ppid:%d uid:%d"
1432 " gid:%d sock:%d name:%s (version %d.%d)",
1433 ust_cmd->reg_msg.pid, ust_cmd->reg_msg.ppid,
1434 ust_cmd->reg_msg.uid, ust_cmd->reg_msg.gid,
1435 ust_cmd->sock, ust_cmd->reg_msg.name,
1436 ust_cmd->reg_msg.major, ust_cmd->reg_msg.minor);
54d01ffb 1437
5eb91c98
DG
1438 /*
1439 * Lock free enqueue the registration request. The red pill
54d01ffb 1440 * has been taken! This apps will be part of the *system*.
5eb91c98
DG
1441 */
1442 cds_wfq_enqueue(&ust_cmd_queue.queue, &ust_cmd->node);
62d53818 1443
5eb91c98
DG
1444 /*
1445 * Wake the registration queue futex. Implicit memory
1446 * barrier with the exchange in cds_wfq_enqueue.
1447 */
1448 futex_nto1_wake(&ust_cmd_queue.futex);
dab4c8a1
DG
1449
1450 tracepoint(ust_register_stop);
5eb91c98
DG
1451 }
1452 }
90014c57 1453 }
1d4b027a
DG
1454 }
1455
1456error:
0fdd1e2c
DG
1457 DBG("UST Registration thread dying");
1458
1459 /* Notify that the registration thread is gone */
1460 notify_ust_apps(0);
1461
1462 close(apps_sock);
1463 close(sock);
273ea72c 1464 unlink(apps_unix_sock_path);
0fdd1e2c 1465
5eb91c98
DG
1466 lttng_poll_clean(&events);
1467
1d4b027a
DG
1468 return NULL;
1469}
1470
8c0faa1d 1471/*
3bd1e081 1472 * Start the thread_manage_consumer. This must be done after a lttng-consumerd
d063d709 1473 * exec or it will fails.
8c0faa1d 1474 */
3bd1e081 1475static int spawn_consumer_thread(struct consumer_data *consumer_data)
8c0faa1d
DG
1476{
1477 int ret;
ee0b0061
DG
1478 struct timespec timeout;
1479
1480 timeout.tv_sec = DEFAULT_SEM_WAIT_TIMEOUT;
1481 timeout.tv_nsec = 0;
8c0faa1d
DG
1482
1483 /* Setup semaphore */
3bd1e081 1484 ret = sem_init(&consumer_data->sem, 0, 0);
ee0b0061 1485 if (ret < 0) {
3bd1e081 1486 PERROR("sem_init consumer semaphore");
ee0b0061
DG
1487 goto error;
1488 }
8c0faa1d 1489
3bd1e081
MD
1490 ret = pthread_create(&consumer_data->thread, NULL,
1491 thread_manage_consumer, consumer_data);
8c0faa1d 1492 if (ret != 0) {
3bd1e081 1493 PERROR("pthread_create consumer");
ee0b0061 1494 ret = -1;
8c0faa1d
DG
1495 goto error;
1496 }
1497
ee0b0061
DG
1498 /* Get time for sem_timedwait absolute timeout */
1499 ret = clock_gettime(CLOCK_REALTIME, &timeout);
1500 if (ret < 0) {
3bd1e081 1501 PERROR("clock_gettime spawn consumer");
ee0b0061 1502 /* Infinite wait for the kconsumerd thread to be ready */
3bd1e081 1503 ret = sem_wait(&consumer_data->sem);
ee0b0061
DG
1504 } else {
1505 /* Normal timeout if the gettime was successful */
1506 timeout.tv_sec += DEFAULT_SEM_WAIT_TIMEOUT;
3bd1e081 1507 ret = sem_timedwait(&consumer_data->sem, &timeout);
ee0b0061 1508 }
8c0faa1d 1509
ee0b0061
DG
1510 if (ret < 0) {
1511 if (errno == ETIMEDOUT) {
1512 /*
1513 * Call has timed out so we kill the kconsumerd_thread and return
1514 * an error.
1515 */
3bd1e081
MD
1516 ERR("The consumer thread was never ready. Killing it");
1517 ret = pthread_cancel(consumer_data->thread);
ee0b0061 1518 if (ret < 0) {
3bd1e081 1519 PERROR("pthread_cancel consumer thread");
ee0b0061
DG
1520 }
1521 } else {
3bd1e081 1522 PERROR("semaphore wait failed consumer thread");
ee0b0061
DG
1523 }
1524 goto error;
1525 }
1526
3bd1e081
MD
1527 pthread_mutex_lock(&consumer_data->pid_mutex);
1528 if (consumer_data->pid == 0) {
712ea556 1529 ERR("Kconsumerd did not start");
3bd1e081 1530 pthread_mutex_unlock(&consumer_data->pid_mutex);
712ea556
DG
1531 goto error;
1532 }
3bd1e081 1533 pthread_mutex_unlock(&consumer_data->pid_mutex);
712ea556 1534
8c0faa1d
DG
1535 return 0;
1536
1537error:
1538 return ret;
1539}
1540
d9800920 1541/*
3bd1e081 1542 * Join consumer thread
d9800920 1543 */
3bd1e081 1544static int join_consumer_thread(struct consumer_data *consumer_data)
cf3af59e
MD
1545{
1546 void *status;
1547 int ret;
1548
3bd1e081
MD
1549 if (consumer_data->pid != 0) {
1550 ret = kill(consumer_data->pid, SIGTERM);
cf3af59e 1551 if (ret) {
3bd1e081 1552 ERR("Error killing consumer daemon");
cf3af59e
MD
1553 return ret;
1554 }
3bd1e081 1555 return pthread_join(consumer_data->thread, &status);
cf3af59e
MD
1556 } else {
1557 return 0;
1558 }
1559}
1560
8c0faa1d 1561/*
3bd1e081 1562 * Fork and exec a consumer daemon (consumerd).
8c0faa1d 1563 *
d063d709 1564 * Return pid if successful else -1.
8c0faa1d 1565 */
3bd1e081 1566static pid_t spawn_consumerd(struct consumer_data *consumer_data)
8c0faa1d
DG
1567{
1568 int ret;
1569 pid_t pid;
53086306 1570 const char *verbosity;
8c0faa1d 1571
3bd1e081 1572 DBG("Spawning consumerd");
c49dc785 1573
8c0faa1d
DG
1574 pid = fork();
1575 if (pid == 0) {
1576 /*
3bd1e081 1577 * Exec consumerd.
8c0faa1d 1578 */
3bd1e081 1579 if (opt_verbose > 1 || opt_verbose_consumer) {
53086306
DG
1580 verbosity = "--verbose";
1581 } else {
1582 verbosity = "--quiet";
1583 }
3bd1e081
MD
1584 switch (consumer_data->type) {
1585 case LTTNG_CONSUMER_KERNEL:
1586 execl(INSTALL_BIN_PATH "/lttng-consumerd",
7753dea8
MD
1587 "lttng-consumerd", verbosity, "-k",
1588 "--consumerd-cmd-sock", consumer_data->cmd_unix_sock_path,
1589 "--consumerd-err-sock", consumer_data->err_unix_sock_path,
1590 NULL);
3bd1e081 1591 break;
7753dea8
MD
1592 case LTTNG_CONSUMER64_UST:
1593 {
b1e0b6b6 1594 char *tmpnew = NULL;
8f4905da
MD
1595
1596 if (consumerd64_libdir[0] != '\0') {
1597 char *tmp;
1598 size_t tmplen;
1599
1600 tmp = getenv("LD_LIBRARY_PATH");
1601 if (!tmp) {
1602 tmp = "";
1603 }
1604 tmplen = strlen("LD_LIBRARY_PATH=")
1605 + strlen(consumerd64_libdir) + 1 /* : */ + strlen(tmp);
1606 tmpnew = zmalloc(tmplen + 1 /* \0 */);
1607 if (!tmpnew) {
1608 ret = -ENOMEM;
1609 goto error;
1610 }
1611 strcpy(tmpnew, "LD_LIBRARY_PATH=");
1612 strcat(tmpnew, consumerd64_libdir);
1613 if (tmp[0] != '\0') {
1614 strcat(tmpnew, ":");
1615 strcat(tmpnew, tmp);
1616 }
1617 ret = putenv(tmpnew);
1618 if (ret) {
1619 ret = -errno;
1620 goto error;
1621 }
1622 }
1623 ret = execl(consumerd64_path, verbosity, "-u",
7753dea8
MD
1624 "--consumerd-cmd-sock", consumer_data->cmd_unix_sock_path,
1625 "--consumerd-err-sock", consumer_data->err_unix_sock_path,
1626 NULL);
8f4905da
MD
1627 if (consumerd64_libdir[0] != '\0') {
1628 free(tmpnew);
1629 }
1630 if (ret) {
1631 goto error;
1632 }
3bd1e081 1633 break;
7753dea8
MD
1634 }
1635 case LTTNG_CONSUMER32_UST:
1636 {
937dde8e 1637 char *tmpnew = NULL;
8f4905da
MD
1638
1639 if (consumerd32_libdir[0] != '\0') {
1640 char *tmp;
1641 size_t tmplen;
1642
1643 tmp = getenv("LD_LIBRARY_PATH");
1644 if (!tmp) {
1645 tmp = "";
1646 }
1647 tmplen = strlen("LD_LIBRARY_PATH=")
1648 + strlen(consumerd32_libdir) + 1 /* : */ + strlen(tmp);
1649 tmpnew = zmalloc(tmplen + 1 /* \0 */);
1650 if (!tmpnew) {
1651 ret = -ENOMEM;
1652 goto error;
1653 }
1654 strcpy(tmpnew, "LD_LIBRARY_PATH=");
1655 strcat(tmpnew, consumerd32_libdir);
1656 if (tmp[0] != '\0') {
1657 strcat(tmpnew, ":");
1658 strcat(tmpnew, tmp);
1659 }
1660 ret = putenv(tmpnew);
1661 if (ret) {
1662 ret = -errno;
1663 goto error;
1664 }
1665 }
1666 ret = execl(consumerd32_path, verbosity, "-u",
7753dea8
MD
1667 "--consumerd-cmd-sock", consumer_data->cmd_unix_sock_path,
1668 "--consumerd-err-sock", consumer_data->err_unix_sock_path,
1669 NULL);
8f4905da
MD
1670 if (consumerd32_libdir[0] != '\0') {
1671 free(tmpnew);
1672 }
1673 if (ret) {
1674 goto error;
1675 }
3bd1e081 1676 break;
7753dea8 1677 }
3bd1e081
MD
1678 default:
1679 perror("unknown consumer type");
1680 exit(EXIT_FAILURE);
1681 }
8c0faa1d
DG
1682 if (errno != 0) {
1683 perror("kernel start consumer exec");
1684 }
1685 exit(EXIT_FAILURE);
1686 } else if (pid > 0) {
1687 ret = pid;
8c0faa1d 1688 } else {
3bd1e081 1689 perror("start consumer fork");
8c0faa1d 1690 ret = -errno;
8c0faa1d 1691 }
8f4905da 1692error:
8c0faa1d
DG
1693 return ret;
1694}
1695
693bd40b 1696/*
3bd1e081 1697 * Spawn the consumerd daemon and session daemon thread.
693bd40b 1698 */
3bd1e081 1699static int start_consumerd(struct consumer_data *consumer_data)
693bd40b
DG
1700{
1701 int ret;
1702
3bd1e081
MD
1703 pthread_mutex_lock(&consumer_data->pid_mutex);
1704 if (consumer_data->pid != 0) {
1705 pthread_mutex_unlock(&consumer_data->pid_mutex);
c49dc785
DG
1706 goto end;
1707 }
693bd40b 1708
3bd1e081 1709 ret = spawn_consumerd(consumer_data);
c49dc785 1710 if (ret < 0) {
3bd1e081
MD
1711 ERR("Spawning consumerd failed");
1712 pthread_mutex_unlock(&consumer_data->pid_mutex);
c49dc785 1713 goto error;
693bd40b 1714 }
c49dc785 1715
3bd1e081
MD
1716 /* Setting up the consumer_data pid */
1717 consumer_data->pid = ret;
48842b30 1718 DBG2("Consumer pid %d", consumer_data->pid);
3bd1e081 1719 pthread_mutex_unlock(&consumer_data->pid_mutex);
693bd40b 1720
3bd1e081
MD
1721 DBG2("Spawning consumer control thread");
1722 ret = spawn_consumer_thread(consumer_data);
693bd40b 1723 if (ret < 0) {
3bd1e081 1724 ERR("Fatal error spawning consumer control thread");
693bd40b
DG
1725 goto error;
1726 }
1727
c49dc785 1728end:
693bd40b
DG
1729 return 0;
1730
1731error:
1732 return ret;
1733}
1734
b73401da 1735/*
d063d709 1736 * modprobe_kernel_modules
b73401da
DG
1737 */
1738static int modprobe_kernel_modules(void)
1739{
ab147185 1740 int ret = 0, i;
b73401da
DG
1741 char modprobe[256];
1742
ab147185
MD
1743 for (i = 0; i < ARRAY_SIZE(kernel_modules_list); i++) {
1744 ret = snprintf(modprobe, sizeof(modprobe),
1745 "/sbin/modprobe %s%s",
24b487b8 1746 kernel_modules_list[i].required ? "" : "-q ",
ab147185 1747 kernel_modules_list[i].name);
b73401da
DG
1748 if (ret < 0) {
1749 perror("snprintf modprobe");
1750 goto error;
1751 }
ab147185 1752 modprobe[sizeof(modprobe) - 1] = '\0';
b73401da 1753 ret = system(modprobe);
ab147185
MD
1754 if (ret == -1) {
1755 ERR("Unable to launch modprobe for module %s",
1756 kernel_modules_list[i].name);
1757 } else if (kernel_modules_list[i].required
d9800920 1758 && WEXITSTATUS(ret) != 0) {
ab147185
MD
1759 ERR("Unable to load module %s",
1760 kernel_modules_list[i].name);
1761 } else {
1762 DBG("Modprobe successfully %s",
1763 kernel_modules_list[i].name);
1764 }
1765 }
1766
1767error:
1768 return ret;
1769}
1770
b73401da 1771/*
d063d709 1772 * mount_debugfs
b73401da
DG
1773 */
1774static int mount_debugfs(char *path)
1775{
1776 int ret;
1777 char *type = "debugfs";
1778
996b65c8 1779 ret = mkdir_recursive(path, S_IRWXU | S_IRWXG, geteuid(), getegid());
b73401da 1780 if (ret < 0) {
7272acf5 1781 PERROR("Cannot create debugfs path");
b73401da
DG
1782 goto error;
1783 }
1784
1785 ret = mount(type, path, type, 0, NULL);
1786 if (ret < 0) {
7272acf5 1787 PERROR("Cannot mount debugfs");
b73401da
DG
1788 goto error;
1789 }
1790
1791 DBG("Mounted debugfs successfully at %s", path);
1792
1793error:
1794 return ret;
1795}
1796
8c0faa1d 1797/*
d063d709 1798 * Setup necessary data for kernel tracer action.
8c0faa1d 1799 */
f3ed775e 1800static void init_kernel_tracer(void)
8c0faa1d 1801{
b73401da
DG
1802 int ret;
1803 char *proc_mounts = "/proc/mounts";
1804 char line[256];
684d34d2 1805 char *debugfs_path = NULL, *lttng_path = NULL;
b73401da
DG
1806 FILE *fp;
1807
1808 /* Detect debugfs */
1809 fp = fopen(proc_mounts, "r");
1810 if (fp == NULL) {
1811 ERR("Unable to probe %s", proc_mounts);
1812 goto error;
1813 }
1814
1815 while (fgets(line, sizeof(line), fp) != NULL) {
1816 if (strstr(line, "debugfs") != NULL) {
1817 /* Remove first string */
1818 strtok(line, " ");
1819 /* Dup string here so we can reuse line later on */
1820 debugfs_path = strdup(strtok(NULL, " "));
1821 DBG("Got debugfs path : %s", debugfs_path);
1822 break;
1823 }
1824 }
1825
1826 fclose(fp);
1827
1828 /* Mount debugfs if needded */
1829 if (debugfs_path == NULL) {
1830 ret = asprintf(&debugfs_path, "/mnt/debugfs");
1831 if (ret < 0) {
1832 perror("asprintf debugfs path");
1833 goto error;
1834 }
1835 ret = mount_debugfs(debugfs_path);
1836 if (ret < 0) {
7272acf5 1837 perror("Cannot mount debugfs");
b73401da
DG
1838 goto error;
1839 }
1840 }
1841
1842 /* Modprobe lttng kernel modules */
1843 ret = modprobe_kernel_modules();
1844 if (ret < 0) {
1845 goto error;
1846 }
1847
1848 /* Setup lttng kernel path */
1849 ret = asprintf(&lttng_path, "%s/lttng", debugfs_path);
1850 if (ret < 0) {
1851 perror("asprintf lttng path");
1852 goto error;
1853 }
1854
1855 /* Open debugfs lttng */
1856 kernel_tracer_fd = open(lttng_path, O_RDWR);
f3ed775e 1857 if (kernel_tracer_fd < 0) {
b73401da
DG
1858 DBG("Failed to open %s", lttng_path);
1859 goto error;
8c0faa1d
DG
1860 }
1861
b73401da
DG
1862 free(lttng_path);
1863 free(debugfs_path);
f3ed775e 1864 DBG("Kernel tracer fd %d", kernel_tracer_fd);
b73401da
DG
1865 return;
1866
1867error:
1868 if (lttng_path) {
1869 free(lttng_path);
1870 }
1871 if (debugfs_path) {
1872 free(debugfs_path);
1873 }
1874 WARN("No kernel tracer available");
1875 kernel_tracer_fd = 0;
1876 return;
f3ed775e 1877}
33a2b854 1878
f3ed775e 1879/*
54d01ffb 1880 * Init tracing by creating trace directory and sending fds kernel consumer.
f3ed775e 1881 */
54d01ffb 1882static int init_kernel_tracing(struct ltt_kernel_session *session)
f3ed775e 1883{
f40799e8 1884 int ret = 0;
8c0faa1d 1885
3bd1e081 1886 if (session->consumer_fds_sent == 0) {
d9800920 1887 /*
54d01ffb
DG
1888 * Assign default kernel consumer socket if no consumer assigned to the
1889 * kernel session. At this point, it's NOT suppose to be 0 but this is
1890 * an extra security check.
d9800920
DG
1891 */
1892 if (session->consumer_fd == 0) {
3bd1e081 1893 session->consumer_fd = kconsumer_data.cmd_sock;
d9800920
DG
1894 }
1895
2bdd86d4 1896 ret = send_kconsumer_session_streams(&kconsumer_data, session);
f3ed775e 1897 if (ret < 0) {
f3ed775e
DG
1898 ret = LTTCOMM_KERN_CONSUMER_FAIL;
1899 goto error;
1900 }
1d4b027a 1901
3bd1e081 1902 session->consumer_fds_sent = 1;
f3ed775e 1903 }
1d4b027a
DG
1904
1905error:
1906 return ret;
8c0faa1d
DG
1907}
1908
0177d773
DG
1909/*
1910 * Create an UST session and add it to the session ust list.
1911 */
44d3bd01
DG
1912static int create_ust_session(struct ltt_session *session,
1913 struct lttng_domain *domain)
0177d773 1914{
44d3bd01 1915 int ret;
48842b30 1916 unsigned int uid;
13384287 1917 struct ltt_ust_session *lus = NULL;
44d3bd01
DG
1918
1919 switch (domain->type) {
48842b30 1920 case LTTNG_DOMAIN_UST:
44d3bd01
DG
1921 break;
1922 default:
13384287 1923 ret = LTTCOMM_UNKNOWN_DOMAIN;
44d3bd01
DG
1924 goto error;
1925 }
0177d773
DG
1926
1927 DBG("Creating UST session");
1928
44e96653 1929 uid = session->uid;
48842b30 1930 lus = trace_ust_create_session(session->path, uid, domain);
0177d773 1931 if (lus == NULL) {
44d3bd01 1932 ret = LTTCOMM_UST_SESS_FAIL;
0177d773
DG
1933 goto error;
1934 }
1935
48842b30 1936 ret = mkdir_recursive(lus->pathname, S_IRWXU | S_IRWXG,
0177d773
DG
1937 geteuid(), allowed_group());
1938 if (ret < 0) {
1939 if (ret != -EEXIST) {
1940 ERR("Trace directory creation error");
44d3bd01 1941 ret = LTTCOMM_UST_SESS_FAIL;
0177d773
DG
1942 goto error;
1943 }
1944 }
1945
f6a9efaa
DG
1946 /* The domain type dictate different actions on session creation */
1947 switch (domain->type) {
48842b30
DG
1948 case LTTNG_DOMAIN_UST:
1949 /* No ustctl for the global UST domain */
1950 break;
1951 default:
36dc12cc 1952 ERR("Unknown UST domain on create session %d", domain->type);
0177d773
DG
1953 goto error;
1954 }
f6a9efaa 1955 session->ust_session = lus;
44d3bd01
DG
1956
1957 return LTTCOMM_OK;
0177d773
DG
1958
1959error:
1960 free(lus);
1961 return ret;
1962}
1963
333f285e 1964/*
d063d709 1965 * Create a kernel tracer session then create the default channel.
333f285e 1966 */
f3ed775e 1967static int create_kernel_session(struct ltt_session *session)
333f285e 1968{
f3ed775e 1969 int ret;
f3ed775e
DG
1970
1971 DBG("Creating kernel session");
1972
1973 ret = kernel_create_session(session, kernel_tracer_fd);
1974 if (ret < 0) {
1975 ret = LTTCOMM_KERN_SESS_FAIL;
1976 goto error;
333f285e
DG
1977 }
1978
d9800920 1979 /* Set kernel consumer socket fd */
3bd1e081
MD
1980 if (kconsumer_data.cmd_sock) {
1981 session->kernel_session->consumer_fd = kconsumer_data.cmd_sock;
d9800920
DG
1982 }
1983
63053e7c
DG
1984 ret = mkdir_recursive(session->kernel_session->trace_path,
1985 S_IRWXU | S_IRWXG, geteuid(), allowed_group());
7a485870 1986 if (ret < 0) {
996b65c8 1987 if (ret != -EEXIST) {
7a485870
DG
1988 ERR("Trace directory creation error");
1989 goto error;
1990 }
1991 }
1992
f3ed775e
DG
1993error:
1994 return ret;
333f285e
DG
1995}
1996
6c9cc2ab
DG
1997/*
1998 * Using the session list, filled a lttng_session array to send back to the
1999 * client for session listing.
2000 *
2001 * The session list lock MUST be acquired before calling this function. Use
54d01ffb 2002 * session_lock_list() and session_unlock_list().
6c9cc2ab
DG
2003 */
2004static void list_lttng_sessions(struct lttng_session *sessions)
2005{
2006 int i = 0;
2007 struct ltt_session *session;
2008
2009 DBG("Getting all available session");
2010 /*
2011 * Iterate over session list and append data after the control struct in
2012 * the buffer.
2013 */
2014 cds_list_for_each_entry(session, &session_list_ptr->head, list) {
2015 strncpy(sessions[i].path, session->path, PATH_MAX);
99497cd0 2016 sessions[i].path[PATH_MAX - 1] = '\0';
6c9cc2ab 2017 strncpy(sessions[i].name, session->name, NAME_MAX);
99497cd0 2018 sessions[i].name[NAME_MAX - 1] = '\0';
464dd62d 2019 sessions[i].enabled = session->enabled;
6c9cc2ab
DG
2020 i++;
2021 }
2022}
2023
9f19cc17
DG
2024/*
2025 * Fill lttng_channel array of all channels.
2026 */
b551a063 2027static void list_lttng_channels(int domain, struct ltt_session *session,
9f19cc17
DG
2028 struct lttng_channel *channels)
2029{
2030 int i = 0;
2031 struct ltt_kernel_channel *kchan;
2032
2033 DBG("Listing channels for session %s", session->name);
2034
b551a063
DG
2035 switch (domain) {
2036 case LTTNG_DOMAIN_KERNEL:
2037 /* Kernel channels */
2038 if (session->kernel_session != NULL) {
2039 cds_list_for_each_entry(kchan,
2040 &session->kernel_session->channel_list.head, list) {
2041 /* Copy lttng_channel struct to array */
2042 memcpy(&channels[i], kchan->channel, sizeof(struct lttng_channel));
2043 channels[i].enabled = kchan->enabled;
2044 i++;
2045 }
2046 }
2047 break;
2048 case LTTNG_DOMAIN_UST:
2049 {
2050 struct cds_lfht_iter iter;
2051 struct ltt_ust_channel *uchan;
2052
2053 cds_lfht_for_each_entry(session->ust_session->domain_global.channels,
2054 &iter, uchan, node) {
2055 strncpy(channels[i].name, uchan->name, LTTNG_SYMBOL_NAME_LEN);
2056 channels[i].attr.overwrite = uchan->attr.overwrite;
2057 channels[i].attr.subbuf_size = uchan->attr.subbuf_size;
2058 channels[i].attr.num_subbuf = uchan->attr.num_subbuf;
2059 channels[i].attr.switch_timer_interval =
2060 uchan->attr.switch_timer_interval;
2061 channels[i].attr.read_timer_interval =
2062 uchan->attr.read_timer_interval;
aea829b3 2063 channels[i].enabled = uchan->enabled;
5edd7e09
DG
2064 switch (uchan->attr.output) {
2065 case LTTNG_UST_MMAP:
2066 default:
2067 channels[i].attr.output = LTTNG_EVENT_MMAP;
2068 break;
2069 }
9f19cc17
DG
2070 i++;
2071 }
b551a063
DG
2072 break;
2073 }
2074 default:
2075 break;
9f19cc17 2076 }
b551a063 2077}
9f19cc17 2078
b551a063
DG
2079/*
2080 * Create a list of ust global domain events.
2081 */
2082static int list_lttng_ust_global_events(char *channel_name,
2083 struct ltt_ust_domain_global *ust_global, struct lttng_event **events)
2084{
2085 int i = 0, ret = 0;
2086 unsigned int nb_event = 0;
2087 struct cds_lfht_iter iter;
d7b75b30 2088 struct cds_lfht_node *node;
b551a063
DG
2089 struct ltt_ust_channel *uchan;
2090 struct ltt_ust_event *uevent;
2091 struct lttng_event *tmp;
2092
2093 DBG("Listing UST global events for channel %s", channel_name);
2094
2095 rcu_read_lock();
2096
d7b75b30
DG
2097 node = hashtable_lookup(ust_global->channels, (void *) channel_name,
2098 strlen(channel_name), &iter);
2099 if (node == NULL) {
2100 ret = -LTTCOMM_UST_CHAN_NOT_FOUND;
2101 goto error;
b551a063
DG
2102 }
2103
d7b75b30
DG
2104 uchan = caa_container_of(node, struct ltt_ust_channel, node);
2105
2106 nb_event += hashtable_get_count(uchan->events);
2107
b551a063
DG
2108 if (nb_event == 0) {
2109 ret = nb_event;
2110 goto error;
2111 }
2112
2113 DBG3("Listing UST global %d events", nb_event);
2114
2115 tmp = zmalloc(nb_event * sizeof(struct lttng_event));
2116 if (tmp == NULL) {
2117 ret = -LTTCOMM_FATAL;
2118 goto error;
2119 }
2120
d7b75b30
DG
2121 cds_lfht_for_each_entry(uchan->events, &iter, uevent, node) {
2122 strncpy(tmp[i].name, uevent->attr.name, LTTNG_SYMBOL_NAME_LEN);
2123 tmp[i].name[LTTNG_SYMBOL_NAME_LEN - 1] = '\0';
2124 tmp[i].enabled = uevent->enabled;
2125 switch (uevent->attr.instrumentation) {
2126 case LTTNG_UST_TRACEPOINT:
2127 tmp[i].type = LTTNG_EVENT_TRACEPOINT;
2128 break;
2129 case LTTNG_UST_PROBE:
2130 tmp[i].type = LTTNG_EVENT_PROBE;
2131 break;
2132 case LTTNG_UST_FUNCTION:
2133 tmp[i].type = LTTNG_EVENT_FUNCTION;
2134 break;
ac3bd9c0
MD
2135 case LTTNG_UST_TRACEPOINT_LOGLEVEL:
2136 /* TODO */
2137 ret = -LTTCOMM_NOT_IMPLEMENTED;
2138 goto error;
2139 break;
9f19cc17 2140 }
d7b75b30 2141 i++;
9f19cc17
DG
2142 }
2143
b551a063
DG
2144 ret = nb_event;
2145 *events = tmp;
2146
2147error:
2148 rcu_read_unlock();
2149 return ret;
9f19cc17
DG
2150}
2151
2152/*
b551a063 2153 * Fill lttng_event array of all kernel events in the channel.
9f19cc17 2154 */
b551a063
DG
2155static int list_lttng_kernel_events(char *channel_name,
2156 struct ltt_kernel_session *kernel_session, struct lttng_event **events)
9f19cc17 2157{
b551a063
DG
2158 int i = 0, ret;
2159 unsigned int nb_event;
9f19cc17 2160 struct ltt_kernel_event *event;
b551a063
DG
2161 struct ltt_kernel_channel *kchan;
2162
2163 kchan = trace_kernel_get_channel_by_name(channel_name, kernel_session);
2164 if (kchan == NULL) {
2165 ret = LTTCOMM_KERN_CHAN_NOT_FOUND;
2166 goto error;
2167 }
2168
2169 nb_event = kchan->event_count;
9f19cc17
DG
2170
2171 DBG("Listing events for channel %s", kchan->channel->name);
2172
b551a063
DG
2173 if (nb_event == 0) {
2174 ret = nb_event;
2175 goto error;
2176 }
2177
2178 *events = zmalloc(nb_event * sizeof(struct lttng_event));
2179 if (*events == NULL) {
2180 ret = LTTCOMM_FATAL;
2181 goto error;
2182 }
2183
9f19cc17
DG
2184 /* Kernel channels */
2185 cds_list_for_each_entry(event, &kchan->events_list.head , list) {
b551a063
DG
2186 strncpy((*events)[i].name, event->event->name, LTTNG_SYMBOL_NAME_LEN);
2187 (*events)[i].name[LTTNG_SYMBOL_NAME_LEN - 1] = '\0';
2188 (*events)[i].enabled = event->enabled;
9f19cc17
DG
2189 switch (event->event->instrumentation) {
2190 case LTTNG_KERNEL_TRACEPOINT:
b551a063 2191 (*events)[i].type = LTTNG_EVENT_TRACEPOINT;
9f19cc17
DG
2192 break;
2193 case LTTNG_KERNEL_KPROBE:
2194 case LTTNG_KERNEL_KRETPROBE:
b551a063
DG
2195 (*events)[i].type = LTTNG_EVENT_PROBE;
2196 memcpy(&(*events)[i].attr.probe, &event->event->u.kprobe,
9f19cc17
DG
2197 sizeof(struct lttng_kernel_kprobe));
2198 break;
2199 case LTTNG_KERNEL_FUNCTION:
b551a063
DG
2200 (*events)[i].type = LTTNG_EVENT_FUNCTION;
2201 memcpy(&((*events)[i].attr.ftrace), &event->event->u.ftrace,
9f19cc17
DG
2202 sizeof(struct lttng_kernel_function));
2203 break;
0133c199 2204 case LTTNG_KERNEL_NOOP:
b551a063 2205 (*events)[i].type = LTTNG_EVENT_NOOP;
0133c199 2206 break;
a54bd42d 2207 case LTTNG_KERNEL_SYSCALL:
b551a063 2208 (*events)[i].type = LTTNG_EVENT_SYSCALL;
0133c199 2209 break;
7a3d1328
MD
2210 case LTTNG_KERNEL_ALL:
2211 assert(0);
2212 break;
9f19cc17
DG
2213 }
2214 i++;
2215 }
b551a063
DG
2216
2217 return nb_event;
2218
2219error:
2220 return ret;
9f19cc17
DG
2221}
2222
fac6795d 2223/*
54d01ffb 2224 * Command LTTNG_DISABLE_CHANNEL processed by the client thread.
fac6795d 2225 */
54d01ffb
DG
2226static int cmd_disable_channel(struct ltt_session *session,
2227 int domain, char *channel_name)
fac6795d 2228{
54d01ffb 2229 int ret;
78f0bacd
DG
2230 struct ltt_ust_session *usess;
2231
2232 usess = session->ust_session;
379473d2 2233
54d01ffb 2234 switch (domain) {
78f0bacd
DG
2235 case LTTNG_DOMAIN_KERNEL:
2236 {
2237 ret = channel_kernel_disable(session->kernel_session,
2238 channel_name);
2239 if (ret != LTTCOMM_OK) {
2240 goto error;
2241 }
54d01ffb 2242
78f0bacd
DG
2243 kernel_wait_quiescent(kernel_tracer_fd);
2244 break;
2245 }
2246 case LTTNG_DOMAIN_UST:
2247 {
2248 struct ltt_ust_channel *uchan;
2249
2250 /* Get channel in global UST domain HT */
2251 uchan = trace_ust_find_channel_by_name(usess->domain_global.channels,
2252 channel_name);
2253 if (uchan == NULL) {
2254 ret = LTTCOMM_UST_CHAN_NOT_FOUND;
54d01ffb 2255 goto error;
78f0bacd
DG
2256 }
2257
8535a6d9
DG
2258 /* Already disabled */
2259 if (!uchan->enabled) {
2260 DBG2("UST channel %s already disabled", channel_name);
44d3bd01 2261 break;
8535a6d9
DG
2262 }
2263
35a9059d 2264 ret = ust_app_disable_channel_glb(usess, uchan);
78f0bacd
DG
2265 if (ret < 0) {
2266 ret = LTTCOMM_UST_DISABLE_FAIL;
54d01ffb 2267 goto error;
78f0bacd
DG
2268 }
2269
2270 uchan->enabled = 0;
2271
2272 break;
2273 }
2274 case LTTNG_DOMAIN_UST_PID_FOLLOW_CHILDREN:
2275 case LTTNG_DOMAIN_UST_EXEC_NAME:
2276 case LTTNG_DOMAIN_UST_PID:
2277 ret = LTTCOMM_NOT_IMPLEMENTED;
2278 goto error;
2279 default:
2280 ret = LTTCOMM_UNKNOWN_DOMAIN;
2281 goto error;
20fe2104
DG
2282 }
2283
54d01ffb 2284 ret = LTTCOMM_OK;
d65106b1 2285
54d01ffb
DG
2286error:
2287 return ret;
2288}
2289
56fff090
DG
2290/*
2291 * Copy channel from attributes and set it in the application channel list.
2292 */
f6a9efaa 2293/*
56fff090
DG
2294static int copy_ust_channel_to_app(struct ltt_ust_session *usess,
2295 struct lttng_channel *attr, struct ust_app *app)
2296{
2297 int ret;
2298 struct ltt_ust_channel *uchan, *new_chan;
2299
f6a9efaa 2300 uchan = trace_ust_get_channel_by_key(usess->channels, attr->name);
56fff090
DG
2301 if (uchan == NULL) {
2302 ret = LTTCOMM_FATAL;
2303 goto error;
2304 }
2305
2306 new_chan = trace_ust_create_channel(attr, usess->path);
2307 if (new_chan == NULL) {
2308 PERROR("malloc ltt_ust_channel");
2309 ret = LTTCOMM_FATAL;
2310 goto error;
2311 }
2312
2313 ret = channel_ust_copy(new_chan, uchan);
2314 if (ret < 0) {
2315 ret = LTTCOMM_FATAL;
2316 goto error;
2317 }
2318
56fff090
DG
2319error:
2320 return ret;
2321}
f6a9efaa 2322*/
56fff090 2323
54d01ffb
DG
2324/*
2325 * Command LTTNG_ENABLE_CHANNEL processed by the client thread.
2326 */
44d3bd01 2327static int cmd_enable_channel(struct ltt_session *session,
aea829b3 2328 int domain, struct lttng_channel *attr)
54d01ffb
DG
2329{
2330 int ret;
f6a9efaa
DG
2331 struct ltt_ust_session *usess = session->ust_session;
2332
5d56b5aa 2333 DBG("Enabling channel %s for session %s", attr->name, session->name);
d65106b1 2334
aea829b3 2335 switch (domain) {
44d3bd01
DG
2336 case LTTNG_DOMAIN_KERNEL:
2337 {
2338 struct ltt_kernel_channel *kchan;
54d01ffb 2339
44d3bd01
DG
2340 kchan = trace_kernel_get_channel_by_name(attr->name,
2341 session->kernel_session);
2342 if (kchan == NULL) {
2343 ret = channel_kernel_create(session->kernel_session,
2344 attr, kernel_poll_pipe[1]);
2345 } else {
2346 ret = channel_kernel_enable(session->kernel_session, kchan);
2347 }
2348
2349 if (ret != LTTCOMM_OK) {
2350 goto error;
2351 }
2352
2353 kernel_wait_quiescent(kernel_tracer_fd);
2354 break;
2355 }
f6a9efaa
DG
2356 case LTTNG_DOMAIN_UST:
2357 {
2358 struct ltt_ust_channel *uchan;
2359
48842b30 2360 DBG2("Enabling channel for LTTNG_DOMAIN_UST");
f6a9efaa 2361
48842b30 2362 /* Get channel in global UST domain HT */
f6a9efaa
DG
2363 uchan = trace_ust_find_channel_by_name(usess->domain_global.channels,
2364 attr->name);
2365 if (uchan == NULL) {
48842b30 2366 uchan = trace_ust_create_channel(attr, usess->pathname);
f6a9efaa
DG
2367 if (uchan == NULL) {
2368 ret = LTTCOMM_UST_CHAN_FAIL;
2369 goto error;
2370 }
d5cd1f34 2371
78f0bacd 2372 /* Add channel to all registered applications */
35a9059d 2373 ret = ust_app_create_channel_glb(usess, uchan);
78f0bacd
DG
2374 if (ret != 0) {
2375 ret = LTTCOMM_UST_CHAN_FAIL;
2376 goto error;
2377 }
8535a6d9 2378
f6a9efaa
DG
2379 rcu_read_lock();
2380 hashtable_add_unique(usess->domain_global.channels, &uchan->node);
2381 rcu_read_unlock();
8535a6d9 2382
48842b30 2383 DBG2("UST channel %s added to global domain HT", attr->name);
f6a9efaa 2384 } else {
78f0bacd
DG
2385 /* If already enabled, everything is OK */
2386 if (uchan->enabled) {
8535a6d9 2387 break;
78f0bacd 2388 }
f6a9efaa 2389
35a9059d 2390 ret = ust_app_enable_channel_glb(usess, uchan);
78f0bacd 2391 if (ret < 0) {
8535a6d9
DG
2392 if (ret != -EEXIST) {
2393 ret = LTTCOMM_UST_CHAN_ENABLE_FAIL;
2394 goto error;
2395 } else {
2396 ret = LTTCOMM_OK;
2397 }
78f0bacd 2398 }
48842b30 2399 }
f6a9efaa 2400
37357452
DG
2401 uchan->enabled = 1;
2402
f6a9efaa
DG
2403 break;
2404 }
78f0bacd
DG
2405 case LTTNG_DOMAIN_UST_PID_FOLLOW_CHILDREN:
2406 case LTTNG_DOMAIN_UST_EXEC_NAME:
44d3bd01 2407 case LTTNG_DOMAIN_UST_PID:
f6a9efaa
DG
2408 ret = LTTCOMM_NOT_IMPLEMENTED;
2409 goto error;
44d3bd01
DG
2410 default:
2411 ret = LTTCOMM_UNKNOWN_DOMAIN;
2412 goto error;
54d01ffb
DG
2413 }
2414
2415 ret = LTTCOMM_OK;
2416
2417error:
2418 return ret;
2419}
2420
2421/*
2422 * Command LTTNG_DISABLE_EVENT processed by the client thread.
2423 */
2424static int cmd_disable_event(struct ltt_session *session, int domain,
2425 char *channel_name, char *event_name)
2426{
2427 int ret;
54d01ffb
DG
2428
2429 switch (domain) {
2430 case LTTNG_DOMAIN_KERNEL:
2bdd86d4
MD
2431 {
2432 struct ltt_kernel_channel *kchan;
b0a40d28 2433 struct ltt_kernel_session *ksess;
2bdd86d4 2434
b0a40d28
DG
2435 ksess = session->kernel_session;
2436
2437 kchan = trace_kernel_get_channel_by_name(channel_name, ksess);
54d01ffb
DG
2438 if (kchan == NULL) {
2439 ret = LTTCOMM_KERN_CHAN_NOT_FOUND;
2440 goto error;
d65106b1
DG
2441 }
2442
b0a40d28 2443 ret = event_kernel_disable_tracepoint(ksess, kchan, event_name);
54d01ffb
DG
2444 if (ret != LTTCOMM_OK) {
2445 goto error;
2446 }
2447
2448 kernel_wait_quiescent(kernel_tracer_fd);
d65106b1 2449 break;
2bdd86d4
MD
2450 }
2451 case LTTNG_DOMAIN_UST:
b0a40d28
DG
2452 {
2453 struct ltt_ust_session *usess;
2454 struct ltt_ust_channel *uchan;
35a9059d 2455 struct ltt_ust_event *uevent;
b0a40d28
DG
2456
2457 usess = session->ust_session;
2458
2459 uchan = trace_ust_find_channel_by_name(usess->domain_global.channels,
2460 channel_name);
2461 if (uchan == NULL) {
2462 ret = LTTCOMM_UST_CHAN_NOT_FOUND;
2463 goto error;
2464 }
2465
35a9059d
DG
2466 uevent = trace_ust_find_event_by_name(uchan->events, event_name);
2467 if (uevent == NULL) {
2468 ret = LTTCOMM_UST_EVENT_NOT_FOUND;
2469 goto error;
2470 }
2471
2472 ret = ust_app_disable_event_glb(usess, uchan, uevent);
b0a40d28
DG
2473 if (ret < 0) {
2474 ret = LTTCOMM_UST_DISABLE_FAIL;
2475 goto error;
2476 }
2477
35a9059d
DG
2478 uevent->enabled = 0;
2479
b0a40d28
DG
2480 DBG2("Disable UST event %s in channel %s completed", event_name,
2481 channel_name);
2482
2483 break;
2484 }
2bdd86d4
MD
2485 case LTTNG_DOMAIN_UST_EXEC_NAME:
2486 case LTTNG_DOMAIN_UST_PID:
2487 case LTTNG_DOMAIN_UST_PID_FOLLOW_CHILDREN:
54d01ffb 2488 default:
54d01ffb
DG
2489 ret = LTTCOMM_NOT_IMPLEMENTED;
2490 goto error;
d65106b1 2491 }
26cc6b4e 2492
54d01ffb
DG
2493 ret = LTTCOMM_OK;
2494
2495error:
2496 return ret;
2497}
2498
2499/*
2500 * Command LTTNG_DISABLE_ALL_EVENT processed by the client thread.
2501 */
2502static int cmd_disable_event_all(struct ltt_session *session, int domain,
2503 char *channel_name)
2504{
2505 int ret;
54d01ffb
DG
2506
2507 switch (domain) {
2508 case LTTNG_DOMAIN_KERNEL:
9730260e
DG
2509 {
2510 struct ltt_kernel_session *ksess;
2511 struct ltt_kernel_channel *kchan;
2512
2513 ksess = session->kernel_session;
2514
2515 kchan = trace_kernel_get_channel_by_name(channel_name, ksess);
54d01ffb
DG
2516 if (kchan == NULL) {
2517 ret = LTTCOMM_KERN_CHAN_NOT_FOUND;
2518 goto error;
26cc6b4e
DG
2519 }
2520
9730260e 2521 ret = event_kernel_disable_all(ksess, kchan);
54d01ffb 2522 if (ret != LTTCOMM_OK) {
0b97ec54 2523 goto error;
26cc6b4e
DG
2524 }
2525
54d01ffb 2526 kernel_wait_quiescent(kernel_tracer_fd);
26cc6b4e 2527 break;
9730260e
DG
2528 }
2529 case LTTNG_DOMAIN_UST:
2530 {
2531 struct ltt_ust_session *usess;
2532 struct ltt_ust_channel *uchan;
2533
2534 usess = session->ust_session;
2535
2536 uchan = trace_ust_find_channel_by_name(usess->domain_global.channels,
2537 channel_name);
2538 if (uchan == NULL) {
2539 ret = LTTCOMM_UST_CHAN_NOT_FOUND;
2540 goto error;
2541 }
2542
35a9059d 2543 ret = ust_app_disable_all_event_glb(usess, uchan);
9730260e
DG
2544 if (ret < 0) {
2545 ret = LTTCOMM_UST_DISABLE_FAIL;
2546 goto error;
2547 }
2548
2549 DBG2("Disable all UST event in channel %s completed", channel_name);
2550
2551 break;
2552 }
2553 case LTTNG_DOMAIN_UST_EXEC_NAME:
2554 case LTTNG_DOMAIN_UST_PID:
2555 case LTTNG_DOMAIN_UST_PID_FOLLOW_CHILDREN:
54d01ffb 2556 default:
54d01ffb
DG
2557 ret = LTTCOMM_NOT_IMPLEMENTED;
2558 goto error;
26cc6b4e 2559 }
e953ef25 2560
54d01ffb 2561 ret = LTTCOMM_OK;
e953ef25 2562
54d01ffb
DG
2563error:
2564 return ret;
2565}
f5177a38 2566
54d01ffb
DG
2567/*
2568 * Command LTTNG_ADD_CONTEXT processed by the client thread.
2569 */
2570static int cmd_add_context(struct ltt_session *session, int domain,
2571 char *channel_name, char *event_name, struct lttng_event_context *ctx)
2572{
2573 int ret;
f5177a38 2574
54d01ffb
DG
2575 switch (domain) {
2576 case LTTNG_DOMAIN_KERNEL:
2577 /* Add kernel context to kernel tracer */
2578 ret = context_kernel_add(session->kernel_session, ctx,
2579 event_name, channel_name);
2580 if (ret != LTTCOMM_OK) {
f5177a38 2581 goto error;
e953ef25 2582 }
2bdd86d4
MD
2583 break;
2584 case LTTNG_DOMAIN_UST:
2585 {
55cc08a6 2586 struct ltt_ust_session *usess = session->ust_session;
e953ef25 2587
55cc08a6
DG
2588 ret = context_ust_add(usess, domain, ctx, event_name, channel_name);
2589 if (ret != LTTCOMM_OK) {
2590 goto error;
2bdd86d4 2591 }
e953ef25 2592 break;
2bdd86d4 2593 }
55cc08a6
DG
2594 case LTTNG_DOMAIN_UST_EXEC_NAME:
2595 case LTTNG_DOMAIN_UST_PID:
2596 case LTTNG_DOMAIN_UST_PID_FOLLOW_CHILDREN:
54d01ffb 2597 default:
54d01ffb
DG
2598 ret = LTTCOMM_NOT_IMPLEMENTED;
2599 goto error;
e953ef25 2600 }
950131af 2601
54d01ffb 2602 ret = LTTCOMM_OK;
950131af 2603
54d01ffb
DG
2604error:
2605 return ret;
2606}
2607
2608/*
2609 * Command LTTNG_ENABLE_EVENT processed by the client thread.
2610 */
2611static int cmd_enable_event(struct ltt_session *session, int domain,
2612 char *channel_name, struct lttng_event *event)
2613{
2614 int ret;
f6cd6b0f 2615 struct lttng_channel *attr;
48842b30 2616 struct ltt_ust_session *usess = session->ust_session;
54d01ffb
DG
2617
2618 switch (domain) {
2619 case LTTNG_DOMAIN_KERNEL:
2bdd86d4
MD
2620 {
2621 struct ltt_kernel_channel *kchan;
2622
54d01ffb
DG
2623 kchan = trace_kernel_get_channel_by_name(channel_name,
2624 session->kernel_session);
2625 if (kchan == NULL) {
f6cd6b0f
DG
2626 attr = channel_new_default_attr(domain);
2627 if (attr == NULL) {
2628 ret = LTTCOMM_FATAL;
2629 goto error;
2630 }
2631 snprintf(attr->name, NAME_MAX, "%s", channel_name);
2632
54d01ffb 2633 /* This call will notify the kernel thread */
44d3bd01 2634 ret = channel_kernel_create(session->kernel_session,
f6cd6b0f 2635 attr, kernel_poll_pipe[1]);
54d01ffb 2636 if (ret != LTTCOMM_OK) {
ff4d74e6 2637 free(attr);
f5177a38
DG
2638 goto error;
2639 }
ff4d74e6 2640 free(attr);
54d01ffb 2641 }
950131af 2642
54d01ffb
DG
2643 /* Get the newly created kernel channel pointer */
2644 kchan = trace_kernel_get_channel_by_name(channel_name,
2645 session->kernel_session);
2646 if (kchan == NULL) {
2647 /* This sould not happen... */
2648 ret = LTTCOMM_FATAL;
2649 goto error;
2650 }
f5177a38 2651
48842b30
DG
2652 ret = event_kernel_enable_tracepoint(session->kernel_session, kchan,
2653 event);
54d01ffb 2654 if (ret != LTTCOMM_OK) {
f5177a38 2655 goto error;
950131af
DG
2656 }
2657
54d01ffb 2658 kernel_wait_quiescent(kernel_tracer_fd);
950131af 2659 break;
2bdd86d4
MD
2660 }
2661 case LTTNG_DOMAIN_UST:
2662 {
aea829b3 2663 struct lttng_channel *attr;
48842b30 2664 struct ltt_ust_channel *uchan;
2bdd86d4 2665
edb67388 2666 /* Get channel from global UST domain */
48842b30
DG
2667 uchan = trace_ust_find_channel_by_name(usess->domain_global.channels,
2668 channel_name);
2669 if (uchan == NULL) {
aea829b3
DG
2670 /* Create default channel */
2671 attr = channel_new_default_attr(domain);
2672 if (attr == NULL) {
2673 ret = LTTCOMM_FATAL;
2674 goto error;
2675 }
596219f7 2676 snprintf(attr->name, NAME_MAX, "%s", channel_name);
edb67388 2677 attr->name[NAME_MAX - 1] = '\0';
2bdd86d4 2678
aea829b3
DG
2679 /* Use the internal command enable channel */
2680 ret = cmd_enable_channel(session, domain, attr);
edb67388 2681 if (ret != LTTCOMM_OK) {
ff4d74e6 2682 free(attr);
aea829b3
DG
2683 goto error;
2684 }
aea829b3
DG
2685 free(attr);
2686
2687 /* Get the newly created channel reference back */
2688 uchan = trace_ust_find_channel_by_name(
2689 usess->domain_global.channels, channel_name);
2690 if (uchan == NULL) {
2691 /* Something is really wrong */
2bdd86d4
MD
2692 ret = LTTCOMM_FATAL;
2693 goto error;
2694 }
48842b30 2695 }
2bdd86d4 2696
edb67388 2697 /* At this point, the session and channel exist on the tracer */
d5cd1f34 2698
edb67388
DG
2699 ret = event_ust_enable_tracepoint(usess, domain, uchan, event);
2700 if (ret != LTTCOMM_OK) {
48842b30 2701 goto error;
2bdd86d4
MD
2702 }
2703 break;
2704 }
2705 case LTTNG_DOMAIN_UST_EXEC_NAME:
2706 case LTTNG_DOMAIN_UST_PID:
2707 case LTTNG_DOMAIN_UST_PID_FOLLOW_CHILDREN:
54d01ffb 2708 default:
54d01ffb
DG
2709 ret = LTTCOMM_NOT_IMPLEMENTED;
2710 goto error;
950131af 2711 }
d36b8583 2712
54d01ffb 2713 ret = LTTCOMM_OK;
d36b8583 2714
54d01ffb
DG
2715error:
2716 return ret;
2717}
7d29a247 2718
54d01ffb
DG
2719/*
2720 * Command LTTNG_ENABLE_ALL_EVENT processed by the client thread.
2721 */
2722static int cmd_enable_event_all(struct ltt_session *session, int domain,
8c9ae521 2723 char *channel_name, int event_type)
54d01ffb
DG
2724{
2725 int ret;
2726 struct ltt_kernel_channel *kchan;
7d29a247 2727
54d01ffb
DG
2728 switch (domain) {
2729 case LTTNG_DOMAIN_KERNEL:
2730 kchan = trace_kernel_get_channel_by_name(channel_name,
2731 session->kernel_session);
2732 if (kchan == NULL) {
2733 /* This call will notify the kernel thread */
44d3bd01
DG
2734 ret = channel_kernel_create(session->kernel_session, NULL,
2735 kernel_poll_pipe[1]);
54d01ffb
DG
2736 if (ret != LTTCOMM_OK) {
2737 goto error;
d36b8583 2738 }
0d0c377a 2739
8f69e5eb
DG
2740 /* Get the newly created kernel channel pointer */
2741 kchan = trace_kernel_get_channel_by_name(channel_name,
2742 session->kernel_session);
2743 if (kchan == NULL) {
2744 /* This sould not happen... */
2745 ret = LTTCOMM_FATAL;
2746 goto error;
2747 }
2748
54d01ffb 2749 }
0fdd1e2c 2750
7a3d1328
MD
2751 switch (event_type) {
2752 case LTTNG_KERNEL_SYSCALL:
2753 ret = event_kernel_enable_all_syscalls(session->kernel_session,
8c9ae521 2754 kchan, kernel_tracer_fd);
7a3d1328
MD
2755 break;
2756 case LTTNG_KERNEL_TRACEPOINT:
8c9ae521 2757 /*
7a3d1328
MD
2758 * This call enables all LTTNG_KERNEL_TRACEPOINTS and
2759 * events already registered to the channel.
8c9ae521 2760 */
7a3d1328
MD
2761 ret = event_kernel_enable_all_tracepoints(session->kernel_session,
2762 kchan, kernel_tracer_fd);
2763 break;
2764 case LTTNG_KERNEL_ALL:
2765 /* Enable syscalls and tracepoints */
8c9ae521
DG
2766 ret = event_kernel_enable_all(session->kernel_session,
2767 kchan, kernel_tracer_fd);
7a3d1328
MD
2768 break;
2769 default:
2770 ret = LTTCOMM_KERN_ENABLE_FAIL;
2771 goto error;
8c9ae521 2772 }
8f69e5eb
DG
2773
2774 /* Manage return value */
54d01ffb 2775 if (ret != LTTCOMM_OK) {
0d0c377a 2776 goto error;
d36b8583
DG
2777 }
2778
54d01ffb 2779 kernel_wait_quiescent(kernel_tracer_fd);
d36b8583 2780 break;
54d01ffb
DG
2781 default:
2782 /* TODO: Userspace tracing */
2783 ret = LTTCOMM_NOT_IMPLEMENTED;
2784 goto error;
d36b8583 2785 }
f3ed775e 2786
54d01ffb
DG
2787 ret = LTTCOMM_OK;
2788
2789error:
2790 return ret;
2791}
2792
2793/*
2794 * Command LTTNG_LIST_TRACEPOINTS processed by the client thread.
2795 */
2796static ssize_t cmd_list_tracepoints(int domain, struct lttng_event **events)
2797{
2798 int ret;
2799 ssize_t nb_events = 0;
2800
2801 switch (domain) {
2802 case LTTNG_DOMAIN_KERNEL:
2803 nb_events = kernel_list_events(kernel_tracer_fd, events);
2804 if (nb_events < 0) {
2805 ret = LTTCOMM_KERN_LIST_FAIL;
2806 goto error;
894be886 2807 }
54d01ffb 2808 break;
b551a063
DG
2809 case LTTNG_DOMAIN_UST:
2810 nb_events = ust_app_list_events(events);
2811 if (nb_events < 0) {
2812 ret = LTTCOMM_UST_LIST_FAIL;
2813 goto error;
2814 }
2815 break;
54d01ffb 2816 default:
54d01ffb
DG
2817 ret = LTTCOMM_NOT_IMPLEMENTED;
2818 goto error;
2819 }
894be886 2820
54d01ffb 2821 return nb_events;
7d29a247 2822
54d01ffb
DG
2823error:
2824 /* Return negative value to differentiate return code */
2825 return -ret;
2826}
b389abbe 2827
54d01ffb
DG
2828/*
2829 * Command LTTNG_START_TRACE processed by the client thread.
2830 */
2831static int cmd_start_trace(struct ltt_session *session)
2832{
2833 int ret;
54d01ffb 2834 struct ltt_kernel_session *ksession;
b9d9b220 2835 struct ltt_ust_session *usess;
b389abbe 2836
54d01ffb
DG
2837 /* Short cut */
2838 ksession = session->kernel_session;
b9d9b220 2839 usess = session->ust_session;
5eb91c98 2840
464dd62d
MD
2841 if (session->enabled)
2842 return LTTCOMM_UST_START_FAIL;
2843 session->enabled = 1;
5eb91c98 2844
54d01ffb
DG
2845 /* Kernel tracing */
2846 if (ksession != NULL) {
2bdd86d4
MD
2847 struct ltt_kernel_channel *kchan;
2848
54d01ffb
DG
2849 /* Open kernel metadata */
2850 if (ksession->metadata == NULL) {
2851 ret = kernel_open_metadata(ksession, ksession->trace_path);
2852 if (ret < 0) {
2853 ret = LTTCOMM_KERN_META_FAIL;
2854 goto error;
b389abbe 2855 }
54d01ffb 2856 }
7d29a247 2857
54d01ffb
DG
2858 /* Open kernel metadata stream */
2859 if (ksession->metadata_stream_fd == 0) {
2860 ret = kernel_open_metadata_stream(ksession);
2861 if (ret < 0) {
2862 ERR("Kernel create metadata stream failed");
2863 ret = LTTCOMM_KERN_STREAM_FAIL;
2864 goto error;
2865 }
2866 }
2867
2868 /* For each channel */
2869 cds_list_for_each_entry(kchan, &ksession->channel_list.head, list) {
2870 if (kchan->stream_count == 0) {
2871 ret = kernel_open_channel_stream(kchan);
2872 if (ret < 0) {
2873 ret = LTTCOMM_KERN_STREAM_FAIL;
7d29a247
DG
2874 goto error;
2875 }
54d01ffb
DG
2876 /* Update the stream global counter */
2877 ksession->stream_count_global += ret;
7d29a247 2878 }
54d01ffb
DG
2879 }
2880
2881 /* Setup kernel consumer socket and send fds to it */
2882 ret = init_kernel_tracing(ksession);
2883 if (ret < 0) {
2884 ret = LTTCOMM_KERN_START_FAIL;
2885 goto error;
2886 }
2887
2888 /* This start the kernel tracing */
2889 ret = kernel_start_session(ksession);
2890 if (ret < 0) {
2891 ret = LTTCOMM_KERN_START_FAIL;
2892 goto error;
2893 }
2894
2895 /* Quiescent wait after starting trace */
2896 kernel_wait_quiescent(kernel_tracer_fd);
2897 }
2898
36dc12cc 2899 /* Flag session that trace should start automatically */
b9d9b220
DG
2900 if (usess) {
2901 usess->start_trace = 1;
36dc12cc 2902
b9d9b220
DG
2903 ret = ust_app_start_trace_all(usess);
2904 if (ret < 0) {
2905 ret = LTTCOMM_UST_START_FAIL;
2906 goto error;
2907 }
2bdd86d4 2908 }
54d01ffb
DG
2909
2910 ret = LTTCOMM_OK;
2911
2912error:
2913 return ret;
2914}
2915
2916/*
2917 * Command LTTNG_STOP_TRACE processed by the client thread.
2918 */
2919static int cmd_stop_trace(struct ltt_session *session)
2920{
2921 int ret;
2922 struct ltt_kernel_channel *kchan;
2923 struct ltt_kernel_session *ksession;
8be98f9a 2924 struct ltt_ust_session *usess;
54d01ffb
DG
2925
2926 /* Short cut */
2927 ksession = session->kernel_session;
8be98f9a 2928 usess = session->ust_session;
54d01ffb 2929
464dd62d
MD
2930 if (!session->enabled)
2931 return LTTCOMM_UST_START_FAIL;
2932 session->enabled = 0;
54d01ffb
DG
2933
2934 /* Kernel tracer */
2935 if (ksession != NULL) {
2936 DBG("Stop kernel tracing");
2937
2938 /* Flush all buffers before stopping */
2939 ret = kernel_metadata_flush_buffer(ksession->metadata_stream_fd);
2940 if (ret < 0) {
2941 ERR("Kernel metadata flush failed");
2942 }
f34daff7 2943
54d01ffb
DG
2944 cds_list_for_each_entry(kchan, &ksession->channel_list.head, list) {
2945 ret = kernel_flush_buffer(kchan);
0d0c377a 2946 if (ret < 0) {
54d01ffb 2947 ERR("Kernel flush buffer error");
7d29a247 2948 }
54d01ffb 2949 }
19e70852 2950
54d01ffb
DG
2951 ret = kernel_stop_session(ksession);
2952 if (ret < 0) {
2953 ret = LTTCOMM_KERN_STOP_FAIL;
19e70852 2954 goto error;
f3ed775e 2955 }
54d01ffb
DG
2956
2957 kernel_wait_quiescent(kernel_tracer_fd);
894be886 2958 }
54d01ffb 2959
8be98f9a
MD
2960 if (usess) {
2961 usess->start_trace = 0;
2bdd86d4 2962
8be98f9a 2963 ret = ust_app_stop_trace_all(usess);
2bdd86d4 2964 if (ret < 0) {
8be98f9a 2965 ret = LTTCOMM_UST_START_FAIL;
2bdd86d4
MD
2966 goto error;
2967 }
2bdd86d4 2968 }
54d01ffb
DG
2969
2970 ret = LTTCOMM_OK;
2971
2972error:
2973 return ret;
2974}
2975
2976/*
2977 * Command LTTNG_CREATE_SESSION processed by the client thread.
2978 */
2979static int cmd_create_session(char *name, char *path)
2980{
2981 int ret;
2982
2983 ret = session_create(name, path);
2984 if (ret != LTTCOMM_OK) {
2985 goto error;
2986 }
2987
2988 ret = LTTCOMM_OK;
2989
2990error:
2991 return ret;
2992}
2993
2994/*
2995 * Command LTTNG_DESTROY_SESSION processed by the client thread.
2996 */
2997static int cmd_destroy_session(struct ltt_session *session, char *name)
2998{
2999 int ret;
3000
3001 /* Clean kernel session teardown */
3002 teardown_kernel_session(session);
84cd17c6
MD
3003 /* UST session teardown */
3004 teardown_ust_session(session);
54d01ffb
DG
3005
3006 /*
3007 * Must notify the kernel thread here to update it's poll setin order
3008 * to remove the channel(s)' fd just destroyed.
3009 */
3010 ret = notify_thread_pipe(kernel_poll_pipe[1]);
3011 if (ret < 0) {
3012 perror("write kernel poll pipe");
3013 }
3014
271933a4 3015 ret = session_destroy(session);
54d01ffb
DG
3016
3017 return ret;
3018}
3019
3020/*
3021 * Command LTTNG_CALIBRATE processed by the client thread.
3022 */
3023static int cmd_calibrate(int domain, struct lttng_calibrate *calibrate)
3024{
3025 int ret;
3026
3027 switch (domain) {
3028 case LTTNG_DOMAIN_KERNEL:
33a2b854 3029 {
54d01ffb 3030 struct lttng_kernel_calibrate kcalibrate;
33a2b854 3031
54d01ffb
DG
3032 kcalibrate.type = calibrate->type;
3033 ret = kernel_calibrate(kernel_tracer_fd, &kcalibrate);
33a2b854 3034 if (ret < 0) {
54d01ffb
DG
3035 ret = LTTCOMM_KERN_ENABLE_FAIL;
3036 goto error;
33a2b854 3037 }
54d01ffb
DG
3038 break;
3039 }
3040 default:
3041 /* TODO: Userspace tracing */
3042 ret = LTTCOMM_NOT_IMPLEMENTED;
3043 goto error;
3044 }
33a2b854 3045
54d01ffb 3046 ret = LTTCOMM_OK;
33a2b854 3047
54d01ffb
DG
3048error:
3049 return ret;
3050}
7d29a247 3051
54d01ffb
DG
3052/*
3053 * Command LTTNG_REGISTER_CONSUMER processed by the client thread.
3054 */
3055static int cmd_register_consumer(struct ltt_session *session, int domain,
3056 char *sock_path)
3057{
3058 int ret, sock;
b389abbe 3059
54d01ffb
DG
3060 switch (domain) {
3061 case LTTNG_DOMAIN_KERNEL:
3062 /* Can't register a consumer if there is already one */
3063 if (session->kernel_session->consumer_fd != 0) {
3064 ret = LTTCOMM_KERN_CONSUMER_FAIL;
3065 goto error;
3066 }
3067
3068 sock = lttcomm_connect_unix_sock(sock_path);
3069 if (sock < 0) {
3070 ret = LTTCOMM_CONNECT_FAIL;
3071 goto error;
3072 }
3073
3074 session->kernel_session->consumer_fd = sock;
3075 break;
3076 default:
3077 /* TODO: Userspace tracing */
3078 ret = LTTCOMM_NOT_IMPLEMENTED;
3079 goto error;
3080 }
3081
3082 ret = LTTCOMM_OK;
3083
3084error:
3085 return ret;
3086}
3087
3088/*
3089 * Command LTTNG_LIST_DOMAINS processed by the client thread.
3090 */
3091static ssize_t cmd_list_domains(struct ltt_session *session,
3092 struct lttng_domain **domains)
3093{
b551a063 3094 int ret, index = 0;
54d01ffb
DG
3095 ssize_t nb_dom = 0;
3096
3097 if (session->kernel_session != NULL) {
b551a063 3098 DBG3("Listing domains found kernel domain");
54d01ffb
DG
3099 nb_dom++;
3100 }
3101
b551a063
DG
3102 if (session->ust_session != NULL) {
3103 DBG3("Listing domains found UST global domain");
3104 nb_dom++;
3105 }
54d01ffb 3106
b551a063 3107 *domains = zmalloc(nb_dom * sizeof(struct lttng_domain));
54d01ffb
DG
3108 if (*domains == NULL) {
3109 ret = -LTTCOMM_FATAL;
3110 goto error;
3111 }
3112
b551a063
DG
3113 if (session->kernel_session != NULL) {
3114 (*domains)[index].type = LTTNG_DOMAIN_KERNEL;
3115 index++;
3116 }
3117
3118 if (session->ust_session != NULL) {
3119 (*domains)[index].type = LTTNG_DOMAIN_UST;
3120 index++;
3121 }
54d01ffb 3122
54d01ffb
DG
3123 return nb_dom;
3124
3125error:
3126 return ret;
3127}
3128
3129/*
3130 * Command LTTNG_LIST_CHANNELS processed by the client thread.
3131 */
b551a063 3132static ssize_t cmd_list_channels(int domain, struct ltt_session *session,
54d01ffb
DG
3133 struct lttng_channel **channels)
3134{
3135 int ret;
3136 ssize_t nb_chan = 0;
3137
b551a063
DG
3138 switch (domain) {
3139 case LTTNG_DOMAIN_KERNEL:
3140 if (session->kernel_session != NULL) {
3141 nb_chan = session->kernel_session->channel_count;
3142 }
0df502fd 3143 DBG3("Number of kernel channels %zd", nb_chan);
b551a063
DG
3144 break;
3145 case LTTNG_DOMAIN_UST:
3146 if (session->ust_session != NULL) {
3147 nb_chan = hashtable_get_count(
3148 session->ust_session->domain_global.channels);
3149 }
0df502fd 3150 DBG3("Number of UST global channels %zd", nb_chan);
b551a063
DG
3151 break;
3152 default:
3153 *channels = NULL;
3154 ret = -LTTCOMM_NOT_IMPLEMENTED;
54d01ffb
DG
3155 goto error;
3156 }
3157
b551a063
DG
3158 if (nb_chan > 0) {
3159 *channels = zmalloc(nb_chan * sizeof(struct lttng_channel));
3160 if (*channels == NULL) {
3161 ret = -LTTCOMM_FATAL;
3162 goto error;
3163 }
54d01ffb 3164
b551a063
DG
3165 list_lttng_channels(domain, session, *channels);
3166 } else {
3167 *channels = NULL;
3168 }
2bdd86d4 3169
54d01ffb
DG
3170 return nb_chan;
3171
3172error:
3173 return ret;
3174}
3175
3176/*
3177 * Command LTTNG_LIST_EVENTS processed by the client thread.
3178 */
b551a063 3179static ssize_t cmd_list_events(int domain, struct ltt_session *session,
54d01ffb
DG
3180 char *channel_name, struct lttng_event **events)
3181{
b551a063 3182 int ret = 0;
54d01ffb 3183 ssize_t nb_event = 0;
54d01ffb 3184
b551a063
DG
3185 switch (domain) {
3186 case LTTNG_DOMAIN_KERNEL:
3187 if (session->kernel_session != NULL) {
3188 nb_event = list_lttng_kernel_events(channel_name,
3189 session->kernel_session, events);
54d01ffb 3190 }
b551a063
DG
3191 break;
3192 case LTTNG_DOMAIN_UST:
3193 {
3194 if (session->ust_session != NULL) {
3195 nb_event = list_lttng_ust_global_events(channel_name,
3196 &session->ust_session->domain_global, events);
54d01ffb 3197 }
b551a063 3198 break;
54d01ffb 3199 }
b551a063
DG
3200 default:
3201 ret = -LTTCOMM_NOT_IMPLEMENTED;
54d01ffb
DG
3202 goto error;
3203 }
3204
b551a063 3205 ret = nb_event;
54d01ffb
DG
3206
3207error:
3208 return ret;
3209}
3210
3211/*
3212 * Process the command requested by the lttng client within the command
3213 * context structure. This function make sure that the return structure (llm)
3214 * is set and ready for transmission before returning.
3215 *
3216 * Return any error encountered or 0 for success.
3217 */
3218static int process_client_msg(struct command_ctx *cmd_ctx)
3219{
3220 int ret = LTTCOMM_OK;
44d3bd01 3221 int need_tracing_session = 1;
54d01ffb
DG
3222
3223 DBG("Processing client command %d", cmd_ctx->lsm->cmd_type);
3224
3225 /*
3226 * Check for command that don't needs to allocate a returned payload. We do
44d3bd01 3227 * this here so we don't have to make the call for no payload at each
54d01ffb
DG
3228 * command.
3229 */
3230 switch(cmd_ctx->lsm->cmd_type) {
3231 case LTTNG_LIST_SESSIONS:
3232 case LTTNG_LIST_TRACEPOINTS:
3233 case LTTNG_LIST_DOMAINS:
3234 case LTTNG_LIST_CHANNELS:
3235 case LTTNG_LIST_EVENTS:
3236 break;
3237 default:
3238 /* Setup lttng message with no payload */
3239 ret = setup_lttng_msg(cmd_ctx, 0);
3240 if (ret < 0) {
3241 /* This label does not try to unlock the session */
3242 goto init_setup_error;
3243 }
3244 }
3245
3246 /* Commands that DO NOT need a session. */
3247 switch (cmd_ctx->lsm->cmd_type) {
3248 case LTTNG_CALIBRATE:
3249 case LTTNG_CREATE_SESSION:
3250 case LTTNG_LIST_SESSIONS:
3251 case LTTNG_LIST_TRACEPOINTS:
44d3bd01 3252 need_tracing_session = 0;
54d01ffb
DG
3253 break;
3254 default:
3255 DBG("Getting session %s by name", cmd_ctx->lsm->session.name);
74babd95 3256 session_lock_list();
54d01ffb 3257 cmd_ctx->session = session_find_by_name(cmd_ctx->lsm->session.name);
74babd95 3258 session_unlock_list();
54d01ffb
DG
3259 if (cmd_ctx->session == NULL) {
3260 if (cmd_ctx->lsm->session.name != NULL) {
3261 ret = LTTCOMM_SESS_NOT_FOUND;
3262 } else {
3263 /* If no session name specified */
3264 ret = LTTCOMM_SELECT_SESS;
3265 }
3266 goto error;
3267 } else {
3268 /* Acquire lock for the session */
3269 session_lock(cmd_ctx->session);
3270 }
3271 break;
3272 }
b389abbe 3273
54d01ffb
DG
3274 /*
3275 * Check domain type for specific "pre-action".
3276 */
3277 switch (cmd_ctx->lsm->domain.type) {
3278 case LTTNG_DOMAIN_KERNEL:
3279 /* Kernel tracer check */
3280 if (kernel_tracer_fd == 0) {
3281 /* Basically, load kernel tracer modules */
3282 init_kernel_tracer();
3283 if (kernel_tracer_fd == 0) {
3284 ret = LTTCOMM_KERN_NA;
3285 goto error;
3286 }
3287 }
5eb91c98 3288
54d01ffb 3289 /* Need a session for kernel command */
44d3bd01 3290 if (need_tracing_session) {
54d01ffb
DG
3291 if (cmd_ctx->session->kernel_session == NULL) {
3292 ret = create_kernel_session(cmd_ctx->session);
5eb91c98 3293 if (ret < 0) {
54d01ffb 3294 ret = LTTCOMM_KERN_SESS_FAIL;
5eb91c98
DG
3295 goto error;
3296 }
b389abbe 3297 }
7d29a247 3298
54d01ffb 3299 /* Start the kernel consumer daemon */
3bd1e081
MD
3300 pthread_mutex_lock(&kconsumer_data.pid_mutex);
3301 if (kconsumer_data.pid == 0 &&
54d01ffb 3302 cmd_ctx->lsm->cmd_type != LTTNG_REGISTER_CONSUMER) {
3bd1e081
MD
3303 pthread_mutex_unlock(&kconsumer_data.pid_mutex);
3304 ret = start_consumerd(&kconsumer_data);
7d29a247 3305 if (ret < 0) {
54d01ffb
DG
3306 ret = LTTCOMM_KERN_CONSUMER_FAIL;
3307 goto error;
950131af 3308 }
3ff2ecac
MD
3309 } else {
3310 pthread_mutex_unlock(&kconsumer_data.pid_mutex);
33a2b854 3311 }
0d0c377a 3312 }
54d01ffb 3313 break;
2bdd86d4 3314 case LTTNG_DOMAIN_UST:
44d3bd01 3315 {
44d3bd01 3316 if (need_tracing_session) {
f6a9efaa 3317 if (cmd_ctx->session->ust_session == NULL) {
44d3bd01
DG
3318 ret = create_ust_session(cmd_ctx->session,
3319 &cmd_ctx->lsm->domain);
3320 if (ret != LTTCOMM_OK) {
3321 goto error;
3322 }
3323 }
7753dea8
MD
3324 /* Start the UST consumer daemons */
3325 /* 64-bit */
3326 pthread_mutex_lock(&ustconsumer64_data.pid_mutex);
ebaeda94 3327 if (consumerd64_path[0] != '\0' &&
7753dea8 3328 ustconsumer64_data.pid == 0 &&
2bdd86d4 3329 cmd_ctx->lsm->cmd_type != LTTNG_REGISTER_CONSUMER) {
7753dea8
MD
3330 pthread_mutex_unlock(&ustconsumer64_data.pid_mutex);
3331 ret = start_consumerd(&ustconsumer64_data);
2bdd86d4 3332 if (ret < 0) {
7753dea8
MD
3333 ret = LTTCOMM_UST_CONSUMER64_FAIL;
3334 ust_consumerd64_fd = -EINVAL;
2bdd86d4
MD
3335 goto error;
3336 }
48842b30 3337
7753dea8 3338 ust_consumerd64_fd = ustconsumer64_data.cmd_sock;
3ff2ecac 3339 } else {
7753dea8
MD
3340 pthread_mutex_unlock(&ustconsumer64_data.pid_mutex);
3341 }
3342 /* 32-bit */
ebaeda94 3343 if (consumerd32_path[0] != '\0' &&
7753dea8
MD
3344 ustconsumer32_data.pid == 0 &&
3345 cmd_ctx->lsm->cmd_type != LTTNG_REGISTER_CONSUMER) {
3346 pthread_mutex_unlock(&ustconsumer32_data.pid_mutex);
3347 ret = start_consumerd(&ustconsumer32_data);
3348 if (ret < 0) {
3349 ret = LTTCOMM_UST_CONSUMER32_FAIL;
3350 ust_consumerd32_fd = -EINVAL;
3351 goto error;
3352 }
3353 ust_consumerd32_fd = ustconsumer32_data.cmd_sock;
3354 } else {
3355 pthread_mutex_unlock(&ustconsumer32_data.pid_mutex);
2bdd86d4 3356 }
44d3bd01
DG
3357 }
3358 break;
3359 }
54d01ffb 3360 default:
54d01ffb
DG
3361 break;
3362 }
33a2b854 3363
54d01ffb
DG
3364 /* Process by command type */
3365 switch (cmd_ctx->lsm->cmd_type) {
3366 case LTTNG_ADD_CONTEXT:
3367 {
3368 ret = cmd_add_context(cmd_ctx->session, cmd_ctx->lsm->domain.type,
3369 cmd_ctx->lsm->u.context.channel_name,
3370 cmd_ctx->lsm->u.context.event_name,
3371 &cmd_ctx->lsm->u.context.ctx);
3372 break;
3373 }
3374 case LTTNG_DISABLE_CHANNEL:
3375 {
3376 ret = cmd_disable_channel(cmd_ctx->session, cmd_ctx->lsm->domain.type,
3377 cmd_ctx->lsm->u.disable.channel_name);
3378 break;
3379 }
3380 case LTTNG_DISABLE_EVENT:
3381 {
3382 ret = cmd_disable_event(cmd_ctx->session, cmd_ctx->lsm->domain.type,
3383 cmd_ctx->lsm->u.disable.channel_name,
3384 cmd_ctx->lsm->u.disable.name);
33a2b854
DG
3385 ret = LTTCOMM_OK;
3386 break;
3387 }
54d01ffb
DG
3388 case LTTNG_DISABLE_ALL_EVENT:
3389 {
2bdd86d4 3390 DBG("Disabling all events");
54d01ffb
DG
3391
3392 ret = cmd_disable_event_all(cmd_ctx->session, cmd_ctx->lsm->domain.type,
3393 cmd_ctx->lsm->u.disable.channel_name);
3394 break;
3395 }
3396 case LTTNG_ENABLE_CHANNEL:
3397 {
aea829b3 3398 ret = cmd_enable_channel(cmd_ctx->session, cmd_ctx->lsm->domain.type,
54d01ffb
DG
3399 &cmd_ctx->lsm->u.channel.chan);
3400 break;
3401 }
3402 case LTTNG_ENABLE_EVENT:
3403 {
3404 ret = cmd_enable_event(cmd_ctx->session, cmd_ctx->lsm->domain.type,
3405 cmd_ctx->lsm->u.enable.channel_name,
3406 &cmd_ctx->lsm->u.enable.event);
3407 break;
3408 }
3409 case LTTNG_ENABLE_ALL_EVENT:
3410 {
2bdd86d4 3411 DBG("Enabling all events");
54d01ffb
DG
3412
3413 ret = cmd_enable_event_all(cmd_ctx->session, cmd_ctx->lsm->domain.type,
8c9ae521
DG
3414 cmd_ctx->lsm->u.enable.channel_name,
3415 cmd_ctx->lsm->u.enable.event.type);
54d01ffb
DG
3416 break;
3417 }
052da939 3418 case LTTNG_LIST_TRACEPOINTS:
2ef84c95 3419 {
9f19cc17 3420 struct lttng_event *events;
54d01ffb 3421 ssize_t nb_events;
052da939 3422
54d01ffb
DG
3423 nb_events = cmd_list_tracepoints(cmd_ctx->lsm->domain.type, &events);
3424 if (nb_events < 0) {
3425 ret = -nb_events;
3426 goto error;
2ef84c95
DG
3427 }
3428
3429 /*
3430 * Setup lttng message with payload size set to the event list size in
3431 * bytes and then copy list into the llm payload.
3432 */
052da939 3433 ret = setup_lttng_msg(cmd_ctx, sizeof(struct lttng_event) * nb_events);
2ef84c95 3434 if (ret < 0) {
052da939 3435 free(events);
2ef84c95
DG
3436 goto setup_error;
3437 }
3438
3439 /* Copy event list into message payload */
9f19cc17 3440 memcpy(cmd_ctx->llm->payload, events,
052da939 3441 sizeof(struct lttng_event) * nb_events);
2ef84c95 3442
9f19cc17 3443 free(events);
2ef84c95
DG
3444
3445 ret = LTTCOMM_OK;
3446 break;
3447 }
f3ed775e 3448 case LTTNG_START_TRACE:
8c0faa1d 3449 {
54d01ffb 3450 ret = cmd_start_trace(cmd_ctx->session);
8c0faa1d
DG
3451 break;
3452 }
f3ed775e 3453 case LTTNG_STOP_TRACE:
8c0faa1d 3454 {
54d01ffb 3455 ret = cmd_stop_trace(cmd_ctx->session);
8c0faa1d
DG
3456 break;
3457 }
5e16da05
MD
3458 case LTTNG_CREATE_SESSION:
3459 {
3c6bae61 3460 tracepoint(create_session_start);
54d01ffb
DG
3461 ret = cmd_create_session(cmd_ctx->lsm->session.name,
3462 cmd_ctx->lsm->session.path);
3c6bae61 3463 tracepoint(create_session_end);
5e16da05
MD
3464 break;
3465 }
3466 case LTTNG_DESTROY_SESSION:
3467 {
3c6bae61 3468 tracepoint(destroy_session_start);
54d01ffb
DG
3469 ret = cmd_destroy_session(cmd_ctx->session,
3470 cmd_ctx->lsm->session.name);
3c6bae61 3471 tracepoint(destroy_session_end);
5461b305 3472 break;
5e16da05 3473 }
9f19cc17 3474 case LTTNG_LIST_DOMAINS:
5e16da05 3475 {
54d01ffb
DG
3476 ssize_t nb_dom;
3477 struct lttng_domain *domains;
5461b305 3478
54d01ffb
DG
3479 nb_dom = cmd_list_domains(cmd_ctx->session, &domains);
3480 if (nb_dom < 0) {
3481 ret = -nb_dom;
3482 goto error;
ce3d728c 3483 }
520ff687 3484
54d01ffb 3485 ret = setup_lttng_msg(cmd_ctx, nb_dom * sizeof(struct lttng_domain));
5461b305
DG
3486 if (ret < 0) {
3487 goto setup_error;
520ff687 3488 }
57167058 3489
54d01ffb
DG
3490 /* Copy event list into message payload */
3491 memcpy(cmd_ctx->llm->payload, domains,
3492 nb_dom * sizeof(struct lttng_domain));
3493
3494 free(domains);
5e16da05 3495
5461b305 3496 ret = LTTCOMM_OK;
5e16da05
MD
3497 break;
3498 }
9f19cc17 3499 case LTTNG_LIST_CHANNELS:
5e16da05 3500 {
54d01ffb
DG
3501 size_t nb_chan;
3502 struct lttng_channel *channels;
3503
b551a063
DG
3504 nb_chan = cmd_list_channels(cmd_ctx->lsm->domain.type,
3505 cmd_ctx->session, &channels);
54d01ffb
DG
3506 if (nb_chan < 0) {
3507 ret = -nb_chan;
3508 goto error;
5461b305 3509 }
ca95a216 3510
54d01ffb 3511 ret = setup_lttng_msg(cmd_ctx, nb_chan * sizeof(struct lttng_channel));
5461b305
DG
3512 if (ret < 0) {
3513 goto setup_error;
3514 }
9f19cc17 3515
54d01ffb
DG
3516 /* Copy event list into message payload */
3517 memcpy(cmd_ctx->llm->payload, channels,
3518 nb_chan * sizeof(struct lttng_channel));
3519
3520 free(channels);
9f19cc17
DG
3521
3522 ret = LTTCOMM_OK;
5461b305 3523 break;
5e16da05 3524 }
9f19cc17 3525 case LTTNG_LIST_EVENTS:
5e16da05 3526 {
b551a063 3527 ssize_t nb_event;
684d34d2 3528 struct lttng_event *events = NULL;
9f19cc17 3529
b551a063 3530 nb_event = cmd_list_events(cmd_ctx->lsm->domain.type, cmd_ctx->session,
54d01ffb
DG
3531 cmd_ctx->lsm->u.list.channel_name, &events);
3532 if (nb_event < 0) {
3533 ret = -nb_event;
3534 goto error;
5461b305 3535 }
ca95a216 3536
54d01ffb 3537 ret = setup_lttng_msg(cmd_ctx, nb_event * sizeof(struct lttng_event));
5461b305
DG
3538 if (ret < 0) {
3539 goto setup_error;
3540 }
9f19cc17 3541
54d01ffb
DG
3542 /* Copy event list into message payload */
3543 memcpy(cmd_ctx->llm->payload, events,
3544 nb_event * sizeof(struct lttng_event));
9f19cc17 3545
54d01ffb 3546 free(events);
9f19cc17
DG
3547
3548 ret = LTTCOMM_OK;
5461b305 3549 break;
5e16da05
MD
3550 }
3551 case LTTNG_LIST_SESSIONS:
3552 {
54d01ffb 3553 session_lock_list();
5461b305 3554
6c9cc2ab 3555 if (session_list_ptr->count == 0) {
f3ed775e 3556 ret = LTTCOMM_NO_SESSION;
54d01ffb 3557 session_unlock_list();
5461b305 3558 goto error;
57167058 3559 }
5e16da05 3560
6c9cc2ab
DG
3561 ret = setup_lttng_msg(cmd_ctx, sizeof(struct lttng_session) *
3562 session_list_ptr->count);
5461b305 3563 if (ret < 0) {
54d01ffb 3564 session_unlock_list();
5461b305 3565 goto setup_error;
e065084a 3566 }
5e16da05 3567
6c9cc2ab
DG
3568 /* Filled the session array */
3569 list_lttng_sessions((struct lttng_session *)(cmd_ctx->llm->payload));
3570
54d01ffb 3571 session_unlock_list();
5e16da05 3572
5461b305 3573 ret = LTTCOMM_OK;
5e16da05
MD
3574 break;
3575 }
d0254c7c
MD
3576 case LTTNG_CALIBRATE:
3577 {
54d01ffb
DG
3578 ret = cmd_calibrate(cmd_ctx->lsm->domain.type,
3579 &cmd_ctx->lsm->u.calibrate);
d0254c7c
MD
3580 break;
3581 }
d9800920
DG
3582 case LTTNG_REGISTER_CONSUMER:
3583 {
54d01ffb
DG
3584 ret = cmd_register_consumer(cmd_ctx->session, cmd_ctx->lsm->domain.type,
3585 cmd_ctx->lsm->u.reg.path);
d9800920
DG
3586 break;
3587 }
5e16da05 3588 default:
5e16da05 3589 ret = LTTCOMM_UND;
5461b305 3590 break;
fac6795d
DG
3591 }
3592
5461b305 3593error:
5461b305
DG
3594 if (cmd_ctx->llm == NULL) {
3595 DBG("Missing llm structure. Allocating one.");
894be886 3596 if (setup_lttng_msg(cmd_ctx, 0) < 0) {
5461b305
DG
3597 goto setup_error;
3598 }
3599 }
54d01ffb 3600 /* Set return code */
5461b305 3601 cmd_ctx->llm->ret_code = ret;
5461b305 3602setup_error:
b5541356 3603 if (cmd_ctx->session) {
54d01ffb 3604 session_unlock(cmd_ctx->session);
b5541356 3605 }
54d01ffb 3606init_setup_error:
8028d920 3607 return ret;
fac6795d
DG
3608}
3609
1d4b027a 3610/*
d063d709
DG
3611 * This thread manage all clients request using the unix client socket for
3612 * communication.
1d4b027a
DG
3613 */
3614static void *thread_manage_clients(void *data)
3615{
5eb91c98
DG
3616 int sock = 0, ret, i, pollfd;
3617 uint32_t revents, nb_fd;
273ea72c 3618 struct command_ctx *cmd_ctx = NULL;
5eb91c98 3619 struct lttng_poll_event events;
1d4b027a 3620
b25a8868
DG
3621 tracepoint(sessiond_th_cli_start);
3622
1d4b027a
DG
3623 DBG("[thread] Manage client started");
3624
f6a9efaa
DG
3625 rcu_register_thread();
3626
1d4b027a
DG
3627 ret = lttcomm_listen_unix_sock(client_sock);
3628 if (ret < 0) {
3629 goto error;
3630 }
3631
5eb91c98
DG
3632 /*
3633 * Pass 2 as size here for the thread quit pipe and client_sock. Nothing
3634 * more will be added to this poll set.
3635 */
3636 ret = create_thread_poll_set(&events, 2);
3637 if (ret < 0) {
3638 goto error;
3639 }
273ea72c 3640
5eb91c98
DG
3641 /* Add the application registration socket */
3642 ret = lttng_poll_add(&events, client_sock, LPOLLIN | LPOLLPRI);
3643 if (ret < 0) {
3644 goto error;
3645 }
273ea72c 3646
bbd973c2
DG
3647 /*
3648 * Notify parent pid that we are ready to accept command for client side.
1d4b027a
DG
3649 */
3650 if (opt_sig_parent) {
3651 kill(ppid, SIGCHLD);
3652 }
3653
3654 while (1) {
1d4b027a 3655 DBG("Accepting client command ...");
273ea72c 3656
b25a8868
DG
3657 tracepoint(sessiond_th_cli_poll);
3658
5eb91c98
DG
3659 nb_fd = LTTNG_POLL_GETNB(&events);
3660
273ea72c 3661 /* Inifinite blocking call, waiting for transmission */
5eb91c98 3662 ret = lttng_poll_wait(&events, -1);
273ea72c 3663 if (ret < 0) {
273ea72c
DG
3664 goto error;
3665 }
3666
5eb91c98
DG
3667 for (i = 0; i < nb_fd; i++) {
3668 /* Fetch once the poll data */
3669 revents = LTTNG_POLL_GETEV(&events, i);
3670 pollfd = LTTNG_POLL_GETFD(&events, i);
3671
3672 /* Thread quit pipe has been closed. Killing thread. */
3673 ret = check_thread_quit_pipe(pollfd, revents);
3674 if (ret) {
3675 goto error;
3676 }
3677
3678 /* Event on the registration socket */
3679 if (pollfd == client_sock) {
3680 if (revents & (LPOLLERR | LPOLLHUP | LPOLLRDHUP)) {
3681 ERR("Client socket poll error");
3682 goto error;
3683 }
3684 }
273ea72c
DG
3685 }
3686
5eb91c98
DG
3687 DBG("Wait for client response");
3688
1d4b027a
DG
3689 sock = lttcomm_accept_unix_sock(client_sock);
3690 if (sock < 0) {
3691 goto error;
3692 }
3693
3694 /* Allocate context command to process the client request */
ba7f0ae5 3695 cmd_ctx = zmalloc(sizeof(struct command_ctx));
5eb91c98 3696 if (cmd_ctx == NULL) {
ba7f0ae5 3697 perror("zmalloc cmd_ctx");
1d4b027a 3698 goto error;
5eb91c98 3699 }
1d4b027a
DG
3700
3701 /* Allocate data buffer for reception */
ba7f0ae5 3702 cmd_ctx->lsm = zmalloc(sizeof(struct lttcomm_session_msg));
5eb91c98 3703 if (cmd_ctx->lsm == NULL) {
ba7f0ae5 3704 perror("zmalloc cmd_ctx->lsm");
5eb91c98
DG
3705 goto error;
3706 }
1d4b027a 3707
1d4b027a
DG
3708 cmd_ctx->llm = NULL;
3709 cmd_ctx->session = NULL;
3710
3711 /*
3712 * Data is received from the lttng client. The struct
3713 * lttcomm_session_msg (lsm) contains the command and data request of
3714 * the client.
3715 */
3716 DBG("Receiving data from client ...");
5eb91c98
DG
3717 ret = lttcomm_recv_unix_sock(sock, cmd_ctx->lsm,
3718 sizeof(struct lttcomm_session_msg));
1d4b027a 3719 if (ret <= 0) {
5eb91c98
DG
3720 DBG("Nothing recv() from client... continuing");
3721 close(sock);
3722 free(cmd_ctx);
1d4b027a
DG
3723 continue;
3724 }
3725
5eb91c98
DG
3726 // TODO: Validate cmd_ctx including sanity check for
3727 // security purpose.
f7776ea7 3728
f6a9efaa 3729 rcu_thread_online();
1d4b027a
DG
3730 /*
3731 * This function dispatch the work to the kernel or userspace tracer
3732 * libs and fill the lttcomm_lttng_msg data structure of all the needed
3733 * informations for the client. The command context struct contains
3734 * everything this function may needs.
3735 */
3736 ret = process_client_msg(cmd_ctx);
f6a9efaa 3737 rcu_thread_offline();
1d4b027a 3738 if (ret < 0) {
bbd973c2 3739 /*
5eb91c98 3740 * TODO: Inform client somehow of the fatal error. At
ba7f0ae5 3741 * this point, ret < 0 means that a zmalloc failed
5eb91c98 3742 * (ENOMEM). Error detected but still accept command.
bbd973c2 3743 */
a2fb29a5 3744 clean_command_ctx(&cmd_ctx);
1d4b027a
DG
3745 continue;
3746 }
3747
54d01ffb
DG
3748 DBG("Sending response (size: %d, retcode: %s)",
3749 cmd_ctx->lttng_msg_size,
9a745bc7 3750 lttng_strerror(-cmd_ctx->llm->ret_code));
54d01ffb 3751 ret = send_unix_sock(sock, cmd_ctx->llm, cmd_ctx->lttng_msg_size);
1d4b027a
DG
3752 if (ret < 0) {
3753 ERR("Failed to send data back to client");
3754 }
3755
a2fb29a5 3756 clean_command_ctx(&cmd_ctx);
d6e4fca4
DG
3757
3758 /* End of transmission */
3759 close(sock);
1d4b027a
DG
3760 }
3761
3762error:
273ea72c 3763 DBG("Client thread dying");
273ea72c 3764 unlink(client_unix_sock_path);
5eb91c98
DG
3765 close(client_sock);
3766 close(sock);
273ea72c 3767
5eb91c98 3768 lttng_poll_clean(&events);
a2fb29a5 3769 clean_command_ctx(&cmd_ctx);
f6a9efaa
DG
3770
3771 rcu_unregister_thread();
1d4b027a
DG
3772 return NULL;
3773}
3774
3775
fac6795d
DG
3776/*
3777 * usage function on stderr
3778 */
3779static void usage(void)
3780{
b716ce68 3781 fprintf(stderr, "Usage: %s OPTIONS\n\nOptions:\n", progname);
d6f42150
DG
3782 fprintf(stderr, " -h, --help Display this usage.\n");
3783 fprintf(stderr, " -c, --client-sock PATH Specify path for the client unix socket\n");
3784 fprintf(stderr, " -a, --apps-sock PATH Specify path for apps unix socket\n");
3785 fprintf(stderr, " --kconsumerd-err-sock PATH Specify path for the kernel consumer error socket\n");
3786 fprintf(stderr, " --kconsumerd-cmd-sock PATH Specify path for the kernel consumer command socket\n");
7753dea8
MD
3787 fprintf(stderr, " --ustconsumerd32-err-sock PATH Specify path for the 32-bit UST consumer error socket\n");
3788 fprintf(stderr, " --ustconsumerd64-err-sock PATH Specify path for the 64-bit UST consumer error socket\n");
3789 fprintf(stderr, " --ustconsumerd32-cmd-sock PATH Specify path for the 32-bit UST consumer command socket\n");
3790 fprintf(stderr, " --ustconsumerd64-cmd-sock PATH Specify path for the 64-bit UST consumer command socket\n");
ebaeda94
MD
3791 fprintf(stderr, " --consumerd32-path PATH Specify path for the 32-bit UST consumer daemon binary\n");
3792 fprintf(stderr, " --consumerd32-libdir PATH Specify path for the 32-bit UST consumer daemon libraries\n");
3793 fprintf(stderr, " --consumerd64-path PATH Specify path for the 64-bit UST consumer daemon binary\n");
3794 fprintf(stderr, " --consumerd64-libdir PATH Specify path for the 64-bit UST consumer daemon libraries\n");
d6f42150
DG
3795 fprintf(stderr, " -d, --daemonize Start as a daemon.\n");
3796 fprintf(stderr, " -g, --group NAME Specify the tracing group name. (default: tracing)\n");
3797 fprintf(stderr, " -V, --version Show version number.\n");
3798 fprintf(stderr, " -S, --sig-parent Send SIGCHLD to parent pid to notify readiness.\n");
3799 fprintf(stderr, " -q, --quiet No output at all.\n");
3800 fprintf(stderr, " -v, --verbose Verbose mode. Activate DBG() macro.\n");
3bd1e081 3801 fprintf(stderr, " --verbose-consumer Verbose mode for consumer. Activate DBG() macro.\n");
fac6795d
DG
3802}
3803
3804/*
3805 * daemon argument parsing
3806 */
3807static int parse_args(int argc, char **argv)
3808{
3809 int c;
3810
3811 static struct option long_options[] = {
3812 { "client-sock", 1, 0, 'c' },
3813 { "apps-sock", 1, 0, 'a' },
3bd1e081
MD
3814 { "kconsumerd-cmd-sock", 1, 0, 'C' },
3815 { "kconsumerd-err-sock", 1, 0, 'E' },
7753dea8
MD
3816 { "ustconsumerd32-cmd-sock", 1, 0, 'G' },
3817 { "ustconsumerd32-err-sock", 1, 0, 'H' },
ebaeda94
MD
3818 { "ustconsumerd64-cmd-sock", 1, 0, 'D' },
3819 { "ustconsumerd64-err-sock", 1, 0, 'F' },
3820 { "consumerd32-path", 1, 0, 'u' },
3821 { "consumerd32-libdir", 1, 0, 'U' },
3822 { "consumerd64-path", 1, 0, 't' },
3823 { "consumerd64-libdir", 1, 0, 'T' },
fac6795d 3824 { "daemonize", 0, 0, 'd' },
5b8719f5 3825 { "sig-parent", 0, 0, 'S' },
fac6795d
DG
3826 { "help", 0, 0, 'h' },
3827 { "group", 1, 0, 'g' },
3828 { "version", 0, 0, 'V' },
75462a81 3829 { "quiet", 0, 0, 'q' },
3f9947db 3830 { "verbose", 0, 0, 'v' },
3bd1e081 3831 { "verbose-consumer", 0, 0, 'Z' },
fac6795d
DG
3832 { NULL, 0, 0, 0 }
3833 };
3834
3835 while (1) {
3836 int option_index = 0;
7753dea8 3837 c = getopt_long(argc, argv, "dhqvVS" "a:c:g:s:C:E:D:F:Z:u:t",
54d01ffb 3838 long_options, &option_index);
fac6795d
DG
3839 if (c == -1) {
3840 break;
3841 }
3842
3843 switch (c) {
3844 case 0:
3845 fprintf(stderr, "option %s", long_options[option_index].name);
3846 if (optarg) {
3847 fprintf(stderr, " with arg %s\n", optarg);
3848 }
3849 break;
b716ce68 3850 case 'c':
fac6795d
DG
3851 snprintf(client_unix_sock_path, PATH_MAX, "%s", optarg);
3852 break;
3853 case 'a':
3854 snprintf(apps_unix_sock_path, PATH_MAX, "%s", optarg);
3855 break;
3856 case 'd':
3857 opt_daemon = 1;
3858 break;
3859 case 'g':
fb09408a 3860 opt_tracing_group = optarg;
fac6795d
DG
3861 break;
3862 case 'h':
3863 usage();
3864 exit(EXIT_FAILURE);
3865 case 'V':
3866 fprintf(stdout, "%s\n", VERSION);
3867 exit(EXIT_SUCCESS);
5b8719f5
DG
3868 case 'S':
3869 opt_sig_parent = 1;
3870 break;
d6f42150 3871 case 'E':
3bd1e081 3872 snprintf(kconsumer_data.err_unix_sock_path, PATH_MAX, "%s", optarg);
d6f42150
DG
3873 break;
3874 case 'C':
3bd1e081
MD
3875 snprintf(kconsumer_data.cmd_unix_sock_path, PATH_MAX, "%s", optarg);
3876 break;
3877 case 'F':
7753dea8 3878 snprintf(ustconsumer64_data.err_unix_sock_path, PATH_MAX, "%s", optarg);
3bd1e081
MD
3879 break;
3880 case 'D':
7753dea8
MD
3881 snprintf(ustconsumer64_data.cmd_unix_sock_path, PATH_MAX, "%s", optarg);
3882 break;
3883 case 'H':
3884 snprintf(ustconsumer32_data.err_unix_sock_path, PATH_MAX, "%s", optarg);
3885 break;
3886 case 'G':
3887 snprintf(ustconsumer32_data.cmd_unix_sock_path, PATH_MAX, "%s", optarg);
d6f42150 3888 break;
75462a81
DG
3889 case 'q':
3890 opt_quiet = 1;
3891 break;
3f9947db 3892 case 'v':
53086306
DG
3893 /* Verbose level can increase using multiple -v */
3894 opt_verbose += 1;
3f9947db 3895 break;
31f73cc9 3896 case 'Z':
3bd1e081 3897 opt_verbose_consumer += 1;
31f73cc9 3898 break;
fb09408a 3899 case 'u':
ebaeda94
MD
3900 consumerd32_path= optarg;
3901 break;
3902 case 'U':
3903 consumerd32_libdir = optarg;
7753dea8
MD
3904 break;
3905 case 't':
ebaeda94
MD
3906 consumerd64_path = optarg;
3907 break;
3908 case 'T':
3909 consumerd64_libdir = optarg;
fb09408a 3910 break;
fac6795d
DG
3911 default:
3912 /* Unknown option or other error.
3913 * Error is printed by getopt, just return */
3914 return -1;
3915 }
3916 }
3917
3918 return 0;
3919}
3920
3921/*
d063d709 3922 * Creates the two needed socket by the daemon.
d6f42150
DG
3923 * apps_sock - The communication socket for all UST apps.
3924 * client_sock - The communication of the cli tool (lttng).
fac6795d 3925 */
cf3af59e 3926static int init_daemon_socket(void)
fac6795d
DG
3927{
3928 int ret = 0;
3929 mode_t old_umask;
3930
3931 old_umask = umask(0);
3932
3933 /* Create client tool unix socket */
d6f42150
DG
3934 client_sock = lttcomm_create_unix_sock(client_unix_sock_path);
3935 if (client_sock < 0) {
3936 ERR("Create unix sock failed: %s", client_unix_sock_path);
fac6795d
DG
3937 ret = -1;
3938 goto end;
3939 }
3940
3941 /* File permission MUST be 660 */
3942 ret = chmod(client_unix_sock_path, S_IRUSR | S_IWUSR | S_IRGRP | S_IWGRP);
3943 if (ret < 0) {
d6f42150 3944 ERR("Set file permissions failed: %s", client_unix_sock_path);
fac6795d
DG
3945 perror("chmod");
3946 goto end;
3947 }
3948
3949 /* Create the application unix socket */
d6f42150
DG
3950 apps_sock = lttcomm_create_unix_sock(apps_unix_sock_path);
3951 if (apps_sock < 0) {
3952 ERR("Create unix sock failed: %s", apps_unix_sock_path);
fac6795d
DG
3953 ret = -1;
3954 goto end;
3955 }
3956
d6f42150 3957 /* File permission MUST be 666 */
54d01ffb
DG
3958 ret = chmod(apps_unix_sock_path,
3959 S_IRUSR | S_IWUSR | S_IRGRP | S_IWGRP | S_IROTH | S_IWOTH);
fac6795d 3960 if (ret < 0) {
d6f42150 3961 ERR("Set file permissions failed: %s", apps_unix_sock_path);
fac6795d
DG
3962 perror("chmod");
3963 goto end;
3964 }
3965
3966end:
3967 umask(old_umask);
3968 return ret;
3969}
3970
3971/*
54d01ffb
DG
3972 * Check if the global socket is available, and if a daemon is answering at the
3973 * other side. If yes, error is returned.
fac6795d 3974 */
cf3af59e 3975static int check_existing_daemon(void)
fac6795d 3976{
7d8234d9 3977 if (access(client_unix_sock_path, F_OK) < 0 &&
099e26bd 3978 access(apps_unix_sock_path, F_OK) < 0) {
7d8234d9 3979 return 0;
099e26bd 3980 }
54d01ffb 3981
7d8234d9 3982 /* Is there anybody out there ? */
099e26bd 3983 if (lttng_session_daemon_alive()) {
7d8234d9 3984 return -EEXIST;
099e26bd 3985 } else {
7d8234d9 3986 return 0;
099e26bd 3987 }
fac6795d
DG
3988}
3989
fac6795d 3990/*
d063d709 3991 * Set the tracing group gid onto the client socket.
5e16da05 3992 *
d063d709
DG
3993 * Race window between mkdir and chown is OK because we are going from more
3994 * permissive (root.root) to les permissive (root.tracing).
fac6795d 3995 */
d6f42150 3996static int set_permissions(void)
fac6795d
DG
3997{
3998 int ret;
996b65c8 3999 gid_t gid;
fac6795d 4000
996b65c8
MD
4001 gid = allowed_group();
4002 if (gid < 0) {
a463f419
DG
4003 if (is_root) {
4004 WARN("No tracing group detected");
4005 ret = 0;
4006 } else {
4007 ERR("Missing tracing group. Aborting execution.");
4008 ret = -1;
4009 }
fac6795d
DG
4010 goto end;
4011 }
4012
d6f42150 4013 /* Set lttng run dir */
996b65c8 4014 ret = chown(LTTNG_RUNDIR, 0, gid);
d6f42150
DG
4015 if (ret < 0) {
4016 ERR("Unable to set group on " LTTNG_RUNDIR);
4017 perror("chown");
4018 }
4019
4020 /* lttng client socket path */
996b65c8 4021 ret = chown(client_unix_sock_path, 0, gid);
fac6795d 4022 if (ret < 0) {
d6f42150
DG
4023 ERR("Unable to set group on %s", client_unix_sock_path);
4024 perror("chown");
4025 }
4026
3bd1e081
MD
4027 /* kconsumer error socket path */
4028 ret = chown(kconsumer_data.err_unix_sock_path, 0, gid);
d6f42150 4029 if (ret < 0) {
3bd1e081
MD
4030 ERR("Unable to set group on %s", kconsumer_data.err_unix_sock_path);
4031 perror("chown");
4032 }
4033
7753dea8
MD
4034 /* 64-bit ustconsumer error socket path */
4035 ret = chown(ustconsumer64_data.err_unix_sock_path, 0, gid);
4036 if (ret < 0) {
4037 ERR("Unable to set group on %s", ustconsumer64_data.err_unix_sock_path);
4038 perror("chown");
4039 }
4040
4041 /* 32-bit ustconsumer compat32 error socket path */
4042 ret = chown(ustconsumer32_data.err_unix_sock_path, 0, gid);
3bd1e081 4043 if (ret < 0) {
7753dea8 4044 ERR("Unable to set group on %s", ustconsumer32_data.err_unix_sock_path);
fac6795d
DG
4045 perror("chown");
4046 }
4047
d6f42150 4048 DBG("All permissions are set");
e07ae692 4049
fac6795d
DG
4050end:
4051 return ret;
4052}
4053
7a485870 4054/*
d063d709 4055 * Create the pipe used to wake up the kernel thread.
7a485870
DG
4056 */
4057static int create_kernel_poll_pipe(void)
4058{
4059 return pipe2(kernel_poll_pipe, O_CLOEXEC);
4060}
4061
099e26bd
DG
4062/*
4063 * Create the application command pipe to wake thread_manage_apps.
4064 */
4065static int create_apps_cmd_pipe(void)
4066{
4067 return pipe2(apps_cmd_pipe, O_CLOEXEC);
4068}
4069
d6f42150 4070/*
d063d709 4071 * Create the lttng run directory needed for all global sockets and pipe.
d6f42150
DG
4072 */
4073static int create_lttng_rundir(void)
4074{
4075 int ret;
4076
4077 ret = mkdir(LTTNG_RUNDIR, S_IRWXU | S_IRWXG );
4078 if (ret < 0) {
b1f11e69
DG
4079 if (errno != EEXIST) {
4080 ERR("Unable to create " LTTNG_RUNDIR);
4081 goto error;
4082 } else {
4083 ret = 0;
4084 }
d6f42150
DG
4085 }
4086
4087error:
4088 return ret;
4089}
4090
4091/*
d063d709
DG
4092 * Setup sockets and directory needed by the kconsumerd communication with the
4093 * session daemon.
d6f42150 4094 */
3bd1e081 4095static int set_consumer_sockets(struct consumer_data *consumer_data)
d6f42150
DG
4096{
4097 int ret;
7753dea8 4098 const char *path;
d6f42150 4099
7753dea8
MD
4100 switch (consumer_data->type) {
4101 case LTTNG_CONSUMER_KERNEL:
4102 path = KCONSUMERD_PATH;
4103 break;
4104 case LTTNG_CONSUMER64_UST:
4105 path = USTCONSUMERD64_PATH;
4106 break;
4107 case LTTNG_CONSUMER32_UST:
4108 path = USTCONSUMERD32_PATH;
4109 break;
4110 default:
4111 ERR("Consumer type unknown");
4112 ret = -EINVAL;
4113 goto error;
d6f42150
DG
4114 }
4115
3bd1e081 4116 ret = mkdir(path, S_IRWXU | S_IRWXG);
d6f42150 4117 if (ret < 0) {
6beb2242 4118 if (errno != EEXIST) {
3bd1e081 4119 ERR("Failed to create %s", path);
6beb2242
DG
4120 goto error;
4121 }
4122 ret = 0;
d6f42150
DG
4123 }
4124
4125 /* Create the kconsumerd error unix socket */
3bd1e081
MD
4126 consumer_data->err_sock =
4127 lttcomm_create_unix_sock(consumer_data->err_unix_sock_path);
4128 if (consumer_data->err_sock < 0) {
4129 ERR("Create unix sock failed: %s", consumer_data->err_unix_sock_path);
d6f42150
DG
4130 ret = -1;
4131 goto error;
4132 }
4133
4134 /* File permission MUST be 660 */
3bd1e081 4135 ret = chmod(consumer_data->err_unix_sock_path,
54d01ffb 4136 S_IRUSR | S_IWUSR | S_IRGRP | S_IWGRP);
d6f42150 4137 if (ret < 0) {
3bd1e081 4138 ERR("Set file permissions failed: %s", consumer_data->err_unix_sock_path);
d6f42150
DG
4139 perror("chmod");
4140 goto error;
4141 }
4142
4143error:
4144 return ret;
4145}
4146
fac6795d 4147/*
d063d709 4148 * Signal handler for the daemon
cf3af59e 4149 *
54d01ffb
DG
4150 * Simply stop all worker threads, leaving main() return gracefully after
4151 * joining all threads and calling cleanup().
fac6795d
DG
4152 */
4153static void sighandler(int sig)
4154{
4155 switch (sig) {
cf3af59e
MD
4156 case SIGPIPE:
4157 DBG("SIGPIPE catched");
4158 return;
4159 case SIGINT:
4160 DBG("SIGINT catched");
4161 stop_threads();
4162 break;
4163 case SIGTERM:
4164 DBG("SIGTERM catched");
4165 stop_threads();
4166 break;
4167 default:
4168 break;
fac6795d 4169 }
fac6795d
DG
4170}
4171
4172/*
d063d709 4173 * Setup signal handler for :
1d4b027a 4174 * SIGINT, SIGTERM, SIGPIPE
fac6795d 4175 */
1d4b027a 4176static int set_signal_handler(void)
fac6795d 4177{
1d4b027a
DG
4178 int ret = 0;
4179 struct sigaction sa;
4180 sigset_t sigset;
fac6795d 4181
1d4b027a
DG
4182 if ((ret = sigemptyset(&sigset)) < 0) {
4183 perror("sigemptyset");
4184 return ret;
4185 }
d6f42150 4186
1d4b027a
DG
4187 sa.sa_handler = sighandler;
4188 sa.sa_mask = sigset;
4189 sa.sa_flags = 0;
4190 if ((ret = sigaction(SIGTERM, &sa, NULL)) < 0) {
4191 perror("sigaction");
4192 return ret;
d6f42150
DG
4193 }
4194
1d4b027a
DG
4195 if ((ret = sigaction(SIGINT, &sa, NULL)) < 0) {
4196 perror("sigaction");
4197 return ret;
d6f42150 4198 }
aaf26714 4199
1d4b027a
DG
4200 if ((ret = sigaction(SIGPIPE, &sa, NULL)) < 0) {
4201 perror("sigaction");
4202 return ret;
8c0faa1d
DG
4203 }
4204
1d4b027a
DG
4205 DBG("Signal handler set for SIGTERM, SIGPIPE and SIGINT");
4206
4207 return ret;
fac6795d
DG
4208}
4209
f3ed775e 4210/*
d063d709
DG
4211 * Set open files limit to unlimited. This daemon can open a large number of
4212 * file descriptors in order to consumer multiple kernel traces.
f3ed775e
DG
4213 */
4214static void set_ulimit(void)
4215{
4216 int ret;
4217 struct rlimit lim;
4218
a88df331 4219 /* The kernel does not allowed an infinite limit for open files */
f3ed775e
DG
4220 lim.rlim_cur = 65535;
4221 lim.rlim_max = 65535;
4222
4223 ret = setrlimit(RLIMIT_NOFILE, &lim);
4224 if (ret < 0) {
4225 perror("failed to set open files limit");
4226 }
4227}
4228
fac6795d
DG
4229/*
4230 * main
4231 */
4232int main(int argc, char **argv)
4233{
fac6795d
DG
4234 int ret = 0;
4235 void *status;
b082db07 4236 const char *home_path;
fac6795d 4237
b25a8868 4238 tracepoint(sessiond_boot_start);
f6a9efaa 4239 rcu_register_thread();
b25a8868 4240
273ea72c 4241 /* Create thread quit pipe */
cf3af59e
MD
4242 if ((ret = init_thread_quit_pipe()) < 0) {
4243 goto error;
273ea72c
DG
4244 }
4245
7753dea8 4246 setup_consumerd_path();
fb09408a 4247
fac6795d
DG
4248 /* Parse arguments */
4249 progname = argv[0];
4250 if ((ret = parse_args(argc, argv) < 0)) {
cf3af59e 4251 goto error;
fac6795d
DG
4252 }
4253
4254 /* Daemonize */
4255 if (opt_daemon) {
53094c05
DG
4256 ret = daemon(0, 0);
4257 if (ret < 0) {
4258 perror("daemon");
cf3af59e 4259 goto error;
53094c05 4260 }
fac6795d
DG
4261 }
4262
4263 /* Check if daemon is UID = 0 */
4264 is_root = !getuid();
4265
fac6795d 4266 if (is_root) {
d6f42150
DG
4267 ret = create_lttng_rundir();
4268 if (ret < 0) {
cf3af59e 4269 goto error;
d6f42150
DG
4270 }
4271
fac6795d 4272 if (strlen(apps_unix_sock_path) == 0) {
d6f42150
DG
4273 snprintf(apps_unix_sock_path, PATH_MAX,
4274 DEFAULT_GLOBAL_APPS_UNIX_SOCK);
fac6795d
DG
4275 }
4276
4277 if (strlen(client_unix_sock_path) == 0) {
d6f42150
DG
4278 snprintf(client_unix_sock_path, PATH_MAX,
4279 DEFAULT_GLOBAL_CLIENT_UNIX_SOCK);
4280 }
0fdd1e2c
DG
4281
4282 /* Set global SHM for ust */
4283 if (strlen(wait_shm_path) == 0) {
4284 snprintf(wait_shm_path, PATH_MAX,
4285 DEFAULT_GLOBAL_APPS_WAIT_SHM_PATH);
4286 }
fac6795d 4287 } else {
b082db07
DG
4288 home_path = get_home_dir();
4289 if (home_path == NULL) {
273ea72c
DG
4290 /* TODO: Add --socket PATH option */
4291 ERR("Can't get HOME directory for sockets creation.");
cf3af59e
MD
4292 ret = -EPERM;
4293 goto error;
b082db07
DG
4294 }
4295
fac6795d 4296 if (strlen(apps_unix_sock_path) == 0) {
d6f42150 4297 snprintf(apps_unix_sock_path, PATH_MAX,
b082db07 4298 DEFAULT_HOME_APPS_UNIX_SOCK, home_path);
fac6795d
DG
4299 }
4300
4301 /* Set the cli tool unix socket path */
4302 if (strlen(client_unix_sock_path) == 0) {
d6f42150 4303 snprintf(client_unix_sock_path, PATH_MAX,
b082db07 4304 DEFAULT_HOME_CLIENT_UNIX_SOCK, home_path);
fac6795d 4305 }
0fdd1e2c
DG
4306
4307 /* Set global SHM for ust */
4308 if (strlen(wait_shm_path) == 0) {
4309 snprintf(wait_shm_path, PATH_MAX,
4310 DEFAULT_HOME_APPS_WAIT_SHM_PATH, geteuid());
4311 }
fac6795d
DG
4312 }
4313
847177cd
DG
4314 DBG("Client socket path %s", client_unix_sock_path);
4315 DBG("Application socket path %s", apps_unix_sock_path);
4316
273ea72c 4317 /*
7d8234d9 4318 * See if daemon already exist.
fac6795d 4319 */
7d8234d9 4320 if ((ret = check_existing_daemon()) < 0) {
75462a81 4321 ERR("Already running daemon.\n");
273ea72c 4322 /*
cf3af59e
MD
4323 * We do not goto exit because we must not cleanup()
4324 * because a daemon is already running.
ab118b20 4325 */
cf3af59e 4326 goto error;
a88df331
DG
4327 }
4328
54d01ffb 4329 /* After this point, we can safely call cleanup() with "goto exit" */
a88df331
DG
4330
4331 /*
4332 * These actions must be executed as root. We do that *after* setting up
4333 * the sockets path because we MUST make the check for another daemon using
4334 * those paths *before* trying to set the kernel consumer sockets and init
4335 * kernel tracer.
4336 */
4337 if (is_root) {
3bd1e081 4338 ret = set_consumer_sockets(&kconsumer_data);
a88df331 4339 if (ret < 0) {
cf3af59e 4340 goto exit;
a88df331
DG
4341 }
4342
7753dea8 4343 ret = set_consumer_sockets(&ustconsumer64_data);
a88df331 4344 if (ret < 0) {
cf3af59e 4345 goto exit;
a88df331 4346 }
7753dea8
MD
4347
4348 ret = set_consumer_sockets(&ustconsumer32_data);
4349 if (ret < 0) {
4350 goto exit;
4351 }
4352
a88df331
DG
4353 /* Setup kernel tracer */
4354 init_kernel_tracer();
4355
4356 /* Set ulimit for open files */
4357 set_ulimit();
fac6795d
DG
4358 }
4359
cf3af59e
MD
4360 if ((ret = set_signal_handler()) < 0) {
4361 goto exit;
fac6795d
DG
4362 }
4363
d6f42150 4364 /* Setup the needed unix socket */
cf3af59e
MD
4365 if ((ret = init_daemon_socket()) < 0) {
4366 goto exit;
fac6795d
DG
4367 }
4368
4369 /* Set credentials to socket */
cf3af59e
MD
4370 if (is_root && ((ret = set_permissions()) < 0)) {
4371 goto exit;
fac6795d
DG
4372 }
4373
5b8719f5
DG
4374 /* Get parent pid if -S, --sig-parent is specified. */
4375 if (opt_sig_parent) {
4376 ppid = getppid();
4377 }
4378
7a485870 4379 /* Setup the kernel pipe for waking up the kernel thread */
cf3af59e
MD
4380 if ((ret = create_kernel_poll_pipe()) < 0) {
4381 goto exit;
7a485870
DG
4382 }
4383
099e26bd
DG
4384 /* Setup the thread apps communication pipe. */
4385 if ((ret = create_apps_cmd_pipe()) < 0) {
4386 goto exit;
4387 }
4388
4389 /* Init UST command queue. */
4390 cds_wfq_init(&ust_cmd_queue.queue);
4391
f6a9efaa
DG
4392 /* Init UST app hash table */
4393 ust_app_ht_alloc();
4394
273ea72c 4395 /*
54d01ffb
DG
4396 * Get session list pointer. This pointer MUST NOT be free(). This list is
4397 * statically declared in session.c
273ea72c 4398 */
54d01ffb 4399 session_list_ptr = session_get_list();
b5541356 4400
5eb91c98
DG
4401 /* Set up max poll set size */
4402 lttng_poll_set_max_size();
4403
cf3af59e 4404 /* Create thread to manage the client socket */
099e26bd
DG
4405 ret = pthread_create(&client_thread, NULL,
4406 thread_manage_clients, (void *) NULL);
cf3af59e 4407 if (ret != 0) {
099e26bd 4408 perror("pthread_create clients");
cf3af59e
MD
4409 goto exit_client;
4410 }
fac6795d 4411
099e26bd
DG
4412 /* Create thread to dispatch registration */
4413 ret = pthread_create(&dispatch_thread, NULL,
4414 thread_dispatch_ust_registration, (void *) NULL);
4415 if (ret != 0) {
4416 perror("pthread_create dispatch");
4417 goto exit_dispatch;
4418 }
4419
4420 /* Create thread to manage application registration. */
4421 ret = pthread_create(&reg_apps_thread, NULL,
4422 thread_registration_apps, (void *) NULL);
4423 if (ret != 0) {
4424 perror("pthread_create registration");
4425 goto exit_reg_apps;
4426 }
4427
cf3af59e 4428 /* Create thread to manage application socket */
54d01ffb
DG
4429 ret = pthread_create(&apps_thread, NULL,
4430 thread_manage_apps, (void *) NULL);
cf3af59e 4431 if (ret != 0) {
099e26bd 4432 perror("pthread_create apps");
cf3af59e
MD
4433 goto exit_apps;
4434 }
fac6795d 4435
cf3af59e 4436 /* Create kernel thread to manage kernel event */
54d01ffb
DG
4437 ret = pthread_create(&kernel_thread, NULL,
4438 thread_manage_kernel, (void *) NULL);
cf3af59e 4439 if (ret != 0) {
099e26bd 4440 perror("pthread_create kernel");
cf3af59e
MD
4441 goto exit_kernel;
4442 }
7a485870 4443
b25a8868
DG
4444 tracepoint(sessiond_boot_end);
4445
cf3af59e
MD
4446 ret = pthread_join(kernel_thread, &status);
4447 if (ret != 0) {
4448 perror("pthread_join");
4449 goto error; /* join error, exit without cleanup */
fac6795d
DG
4450 }
4451
cf3af59e
MD
4452exit_kernel:
4453 ret = pthread_join(apps_thread, &status);
4454 if (ret != 0) {
4455 perror("pthread_join");
4456 goto error; /* join error, exit without cleanup */
4457 }
fac6795d 4458
cf3af59e 4459exit_apps:
099e26bd
DG
4460 ret = pthread_join(reg_apps_thread, &status);
4461 if (ret != 0) {
4462 perror("pthread_join");
4463 goto error; /* join error, exit without cleanup */
4464 }
4465
4466exit_reg_apps:
4467 ret = pthread_join(dispatch_thread, &status);
4468 if (ret != 0) {
4469 perror("pthread_join");
4470 goto error; /* join error, exit without cleanup */
4471 }
4472
4473exit_dispatch:
cf3af59e
MD
4474 ret = pthread_join(client_thread, &status);
4475 if (ret != 0) {
4476 perror("pthread_join");
4477 goto error; /* join error, exit without cleanup */
4478 }
4479
3bd1e081 4480 ret = join_consumer_thread(&kconsumer_data);
cf3af59e 4481 if (ret != 0) {
3bd1e081 4482 perror("join_consumer");
cf3af59e
MD
4483 goto error; /* join error, exit without cleanup */
4484 }
a88df331 4485
cf3af59e 4486exit_client:
a88df331 4487exit:
cf3af59e
MD
4488 /*
4489 * cleanup() is called when no other thread is running.
4490 */
f6a9efaa 4491 rcu_thread_online();
cf3af59e 4492 cleanup();
f6a9efaa
DG
4493 rcu_thread_offline();
4494 rcu_unregister_thread();
cf3af59e
MD
4495 if (!ret)
4496 exit(EXIT_SUCCESS);
4497error:
5e16da05 4498 exit(EXIT_FAILURE);
fac6795d 4499}
This page took 0.29627 seconds and 4 git commands to generate.