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