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