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