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