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