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