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