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