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