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