Rename liblttsessiondcomm to liblttng-sessiond-comm, install it.
[lttng-tools.git] / ltt-sessiond / main.c
1 /*
2 * Copyright (C) 2011 - David Goulet <david.goulet@polymtl.ca>
3 * Copyright (C) 2011 - Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
4 *
5 * This program is free software; you can redistribute it and/or
6 * modify it under the terms of the GNU General Public License
7 * as published by the Free Software Foundation; only version 2
8 * of the License.
9 *
10 * This program is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 * GNU General Public License for more details.
14 *
15 * You should have received a copy of the GNU General Public License
16 * along with this program; if not, write to the Free Software
17 * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
18 */
19
20 #define _GNU_SOURCE
21 #include <fcntl.h>
22 #include <getopt.h>
23 #include <grp.h>
24 #include <limits.h>
25 #include <poll.h>
26 #include <pthread.h>
27 #include <semaphore.h>
28 #include <signal.h>
29 #include <stdio.h>
30 #include <stdlib.h>
31 #include <string.h>
32 #include <sys/ipc.h>
33 #include <sys/mount.h>
34 #include <sys/shm.h>
35 #include <sys/socket.h>
36 #include <sys/stat.h>
37 #include <sys/types.h>
38 #include <sys/time.h>
39 #include <sys/resource.h>
40 #include <unistd.h>
41
42 #include <urcu/list.h> /* URCU list library (-lurcu) */
43 #include <lttng/lttng.h>
44 #include <lttng/lttng-sessiond-comm.h>
45
46 #include "context.h"
47 #include "ltt-sessiond.h"
48 #include "lttngerr.h"
49 #include "kernel-ctl.h"
50 #include "ust-ctl.h"
51 #include "session.h"
52 #include "traceable-app.h"
53 #include "lttng-kconsumerd.h"
54 #include "utils.h"
55
56 /* Const values */
57 const char default_home_dir[] = DEFAULT_HOME_DIR;
58 const char default_tracing_group[] = LTTNG_DEFAULT_TRACING_GROUP;
59 const char default_ust_sock_dir[] = DEFAULT_UST_SOCK_DIR;
60 const char default_global_apps_pipe[] = DEFAULT_GLOBAL_APPS_PIPE;
61
62 /* Variables */
63 int opt_verbose; /* Not static for lttngerr.h */
64 int opt_verbose_kconsumerd; /* Not static for lttngerr.h */
65 int opt_quiet; /* Not static for lttngerr.h */
66
67 const char *progname;
68 const char *opt_tracing_group;
69 static int opt_sig_parent;
70 static int opt_daemon;
71 static int is_root; /* Set to 1 if the daemon is running as root */
72 static pid_t ppid; /* Parent PID for --sig-parent option */
73 static pid_t kconsumerd_pid;
74 static struct pollfd *kernel_pollfd;
75
76 static char apps_unix_sock_path[PATH_MAX]; /* Global application Unix socket path */
77 static char client_unix_sock_path[PATH_MAX]; /* Global client Unix socket path */
78 static char kconsumerd_err_unix_sock_path[PATH_MAX]; /* kconsumerd error Unix socket path */
79 static char kconsumerd_cmd_unix_sock_path[PATH_MAX]; /* kconsumerd command Unix socket path */
80
81 /* Sockets and FDs */
82 static int client_sock;
83 static int apps_sock;
84 static int kconsumerd_err_sock;
85 static int kconsumerd_cmd_sock;
86 static int kernel_tracer_fd;
87 static int kernel_poll_pipe[2];
88
89 /*
90 * Quit pipe for all threads. This permits a single cancellation point
91 * for all threads when receiving an event on the pipe.
92 */
93 static int thread_quit_pipe[2];
94
95 /* Pthread, Mutexes and Semaphores */
96 static pthread_t kconsumerd_thread;
97 static pthread_t apps_thread;
98 static pthread_t client_thread;
99 static pthread_t kernel_thread;
100 static sem_t kconsumerd_sem;
101
102 static pthread_mutex_t kconsumerd_pid_mutex; /* Mutex to control kconsumerd pid assignation */
103
104 static int modprobe_remove_kernel_modules(void);
105
106 /*
107 * Pointer initialized before thread creation.
108 *
109 * This points to the tracing session list containing the session count and a
110 * mutex lock. The lock MUST be taken if you iterate over the list. The lock
111 * MUST NOT be taken if you call a public function in session.c.
112 *
113 * The lock is nested inside the structure: session_list_ptr->lock. Please use
114 * lock_session_list and unlock_session_list for lock acquisition.
115 */
116 static struct ltt_session_list *session_list_ptr;
117
118 static gid_t allowed_group(void)
119 {
120 struct group *grp;
121
122 if (opt_tracing_group) {
123 grp = getgrnam(opt_tracing_group);
124 } else {
125 grp = getgrnam(default_tracing_group);
126 }
127 if (!grp) {
128 return -1;
129 } else {
130 return grp->gr_gid;
131 }
132 }
133
134 /*
135 * Init quit pipe.
136 *
137 * Return -1 on error or 0 if all pipes are created.
138 */
139 static int init_thread_quit_pipe(void)
140 {
141 int ret;
142
143 ret = pipe2(thread_quit_pipe, O_CLOEXEC);
144 if (ret < 0) {
145 perror("thread quit pipe");
146 goto error;
147 }
148
149 error:
150 return ret;
151 }
152
153 /*
154 * Complete teardown of a kernel session. This free all data structure related
155 * to a kernel session and update counter.
156 */
157 static void teardown_kernel_session(struct ltt_session *session)
158 {
159 if (session->kernel_session != NULL) {
160 DBG("Tearing down kernel session");
161 trace_destroy_kernel_session(session->kernel_session);
162 /* Extra precaution */
163 session->kernel_session = NULL;
164 }
165 }
166
167 static void stop_threads(void)
168 {
169 /* Stopping all threads */
170 DBG("Terminating all threads");
171 close(thread_quit_pipe[0]);
172 close(thread_quit_pipe[1]);
173 }
174
175 /*
176 * Cleanup the daemon
177 */
178 static void cleanup(void)
179 {
180 int ret;
181 char *cmd;
182 struct ltt_session *sess, *stmp;
183
184 DBG("Cleaning up");
185
186 /* <fun> */
187 MSG("\n%c[%d;%dm*** assert failed *** ==> %c[%dm%c[%d;%dm"
188 "Matthew, BEET driven development works!%c[%dm",
189 27, 1, 31, 27, 0, 27, 1, 33, 27, 0);
190 /* </fun> */
191
192 DBG("Removing %s directory", LTTNG_RUNDIR);
193 ret = asprintf(&cmd, "rm -rf " LTTNG_RUNDIR);
194 if (ret < 0) {
195 ERR("asprintf failed. Something is really wrong!");
196 }
197
198 /* Remove lttng run directory */
199 ret = system(cmd);
200 if (ret < 0) {
201 ERR("Unable to clean " LTTNG_RUNDIR);
202 }
203
204 DBG("Cleaning up all session");
205
206 /* Destroy session list mutex */
207 if (session_list_ptr != NULL) {
208 pthread_mutex_destroy(&session_list_ptr->lock);
209
210 /* Cleanup ALL session */
211 cds_list_for_each_entry_safe(sess, stmp, &session_list_ptr->head, list) {
212 teardown_kernel_session(sess);
213 // TODO complete session cleanup (including UST)
214 }
215 }
216
217 pthread_mutex_destroy(&kconsumerd_pid_mutex);
218
219 DBG("Closing kernel fd");
220 close(kernel_tracer_fd);
221
222 DBG("Unloading kernel modules");
223 modprobe_remove_kernel_modules();
224 }
225
226 /*
227 * Send data on a unix socket using the liblttsessiondcomm API.
228 *
229 * Return lttcomm error code.
230 */
231 static int send_unix_sock(int sock, void *buf, size_t len)
232 {
233 /* Check valid length */
234 if (len <= 0) {
235 return -1;
236 }
237
238 return lttcomm_send_unix_sock(sock, buf, len);
239 }
240
241 /*
242 * Free memory of a command context structure.
243 */
244 static void clean_command_ctx(struct command_ctx **cmd_ctx)
245 {
246 DBG("Clean command context structure");
247 if (*cmd_ctx) {
248 if ((*cmd_ctx)->llm) {
249 free((*cmd_ctx)->llm);
250 }
251 if ((*cmd_ctx)->lsm) {
252 free((*cmd_ctx)->lsm);
253 }
254 free(*cmd_ctx);
255 *cmd_ctx = NULL;
256 }
257 }
258
259 /*
260 * Send all stream fds of kernel channel to the consumer.
261 */
262 static int send_kconsumerd_channel_fds(int sock, struct ltt_kernel_channel *channel)
263 {
264 int ret;
265 size_t nb_fd;
266 struct ltt_kernel_stream *stream;
267 struct lttcomm_kconsumerd_header lkh;
268 struct lttcomm_kconsumerd_msg lkm;
269
270 DBG("Sending fds of channel %s to kernel consumer", channel->channel->name);
271
272 nb_fd = channel->stream_count;
273
274 /* Setup header */
275 lkh.payload_size = nb_fd * sizeof(struct lttcomm_kconsumerd_msg);
276 lkh.cmd_type = ADD_STREAM;
277
278 DBG("Sending kconsumerd header");
279
280 ret = lttcomm_send_unix_sock(sock, &lkh, sizeof(struct lttcomm_kconsumerd_header));
281 if (ret < 0) {
282 perror("send kconsumerd header");
283 goto error;
284 }
285
286 cds_list_for_each_entry(stream, &channel->stream_list.head, list) {
287 if (stream->fd != 0) {
288 lkm.fd = stream->fd;
289 lkm.state = stream->state;
290 lkm.max_sb_size = channel->channel->attr.subbuf_size;
291 strncpy(lkm.path_name, stream->pathname, PATH_MAX);
292 lkm.path_name[PATH_MAX - 1] = '\0';
293
294 DBG("Sending fd %d to kconsumerd", lkm.fd);
295
296 ret = lttcomm_send_fds_unix_sock(sock, &lkm, &lkm.fd, 1, sizeof(lkm));
297 if (ret < 0) {
298 perror("send kconsumerd fd");
299 goto error;
300 }
301 }
302 }
303
304 DBG("Kconsumerd channel fds sent");
305
306 return 0;
307
308 error:
309 return ret;
310 }
311
312 /*
313 * Send all stream fds of the kernel session to the consumer.
314 */
315 static int send_kconsumerd_fds(int sock, struct ltt_kernel_session *session)
316 {
317 int ret;
318 struct ltt_kernel_channel *chan;
319 struct lttcomm_kconsumerd_header lkh;
320 struct lttcomm_kconsumerd_msg lkm;
321
322 /* Setup header */
323 lkh.payload_size = sizeof(struct lttcomm_kconsumerd_msg);
324 lkh.cmd_type = ADD_STREAM;
325
326 DBG("Sending kconsumerd header for metadata");
327
328 ret = lttcomm_send_unix_sock(sock, &lkh, sizeof(struct lttcomm_kconsumerd_header));
329 if (ret < 0) {
330 perror("send kconsumerd header");
331 goto error;
332 }
333
334 DBG("Sending metadata stream fd");
335
336 if (session->metadata_stream_fd != 0) {
337 /* Send metadata stream fd first */
338 lkm.fd = session->metadata_stream_fd;
339 lkm.state = ACTIVE_FD;
340 lkm.max_sb_size = session->metadata->conf->attr.subbuf_size;
341 strncpy(lkm.path_name, session->metadata->pathname, PATH_MAX);
342 lkm.path_name[PATH_MAX - 1] = '\0';
343
344 ret = lttcomm_send_fds_unix_sock(sock, &lkm, &lkm.fd, 1, sizeof(lkm));
345 if (ret < 0) {
346 perror("send kconsumerd fd");
347 goto error;
348 }
349 }
350
351 cds_list_for_each_entry(chan, &session->channel_list.head, list) {
352 ret = send_kconsumerd_channel_fds(sock, chan);
353 if (ret < 0) {
354 goto error;
355 }
356 }
357
358 DBG("Kconsumerd fds (metadata and channel streams) sent");
359
360 return 0;
361
362 error:
363 return ret;
364 }
365
366 #ifdef DISABLED
367 /*
368 * Return a socket connected to the libust communication socket of the
369 * application identified by the pid.
370 *
371 * If the pid is not found in the traceable list, return -1 to indicate error.
372 */
373 static int ust_connect_app(pid_t pid)
374 {
375 int sock;
376 struct ltt_traceable_app *lta;
377
378 DBG("Connect to application pid %d", pid);
379
380 lta = find_app_by_pid(pid);
381 if (lta == NULL) {
382 /* App not found */
383 DBG("Application pid %d not found", pid);
384 return -1;
385 }
386
387 sock = ustctl_connect_pid(lta->pid);
388 if (sock < 0) {
389 ERR("Fail connecting to the PID %d", pid);
390 }
391
392 return sock;
393 }
394 #endif /* DISABLED */
395
396 /*
397 * Notify apps by writing 42 to a named pipe using name. Every applications
398 * waiting for a ltt-sessiond will be notified and re-register automatically to
399 * the session daemon.
400 *
401 * Return open or write error value.
402 */
403 static int notify_apps(const char *name)
404 {
405 int fd;
406 int ret = -1;
407
408 DBG("Notify the global application pipe");
409
410 /* Try opening the global pipe */
411 fd = open(name, O_WRONLY);
412 if (fd < 0) {
413 goto error;
414 }
415
416 /* Notify by writing on the pipe */
417 ret = write(fd, "42", 2);
418 if (ret < 0) {
419 perror("write");
420 }
421
422 error:
423 return ret;
424 }
425
426 /*
427 * Setup the outgoing data buffer for the response (llm) by allocating the
428 * right amount of memory and copying the original information from the lsm
429 * structure.
430 *
431 * Return total size of the buffer pointed by buf.
432 */
433 static int setup_lttng_msg(struct command_ctx *cmd_ctx, size_t size)
434 {
435 int ret, buf_size;
436
437 buf_size = size;
438
439 cmd_ctx->llm = malloc(sizeof(struct lttcomm_lttng_msg) + buf_size);
440 if (cmd_ctx->llm == NULL) {
441 perror("malloc");
442 ret = -ENOMEM;
443 goto error;
444 }
445
446 /* Copy common data */
447 cmd_ctx->llm->cmd_type = cmd_ctx->lsm->cmd_type;
448 cmd_ctx->llm->pid = cmd_ctx->lsm->domain.attr.pid;
449
450 cmd_ctx->llm->data_size = size;
451 cmd_ctx->lttng_msg_size = sizeof(struct lttcomm_lttng_msg) + buf_size;
452
453 return buf_size;
454
455 error:
456 return ret;
457 }
458
459 /*
460 * Update the kernel pollfd set of all channel fd available over all tracing
461 * session. Add the wakeup pipe at the end of the set.
462 */
463 static int update_kernel_pollfd(void)
464 {
465 int i = 0;
466 /*
467 * The wakup pipe and the quit pipe are needed so the number of fds starts
468 * at 2 for those pipes.
469 */
470 unsigned int nb_fd = 2;
471 struct ltt_session *session;
472 struct ltt_kernel_channel *channel;
473
474 DBG("Updating kernel_pollfd");
475
476 /* Get the number of channel of all kernel session */
477 lock_session_list();
478 cds_list_for_each_entry(session, &session_list_ptr->head, list) {
479 lock_session(session);
480 if (session->kernel_session == NULL) {
481 unlock_session(session);
482 continue;
483 }
484 nb_fd += session->kernel_session->channel_count;
485 unlock_session(session);
486 }
487
488 DBG("Resizing kernel_pollfd to size %d", nb_fd);
489
490 kernel_pollfd = realloc(kernel_pollfd, nb_fd * sizeof(struct pollfd));
491 if (kernel_pollfd == NULL) {
492 perror("malloc kernel_pollfd");
493 goto error;
494 }
495
496 cds_list_for_each_entry(session, &session_list_ptr->head, list) {
497 lock_session(session);
498 if (session->kernel_session == NULL) {
499 unlock_session(session);
500 continue;
501 }
502 if (i >= nb_fd) {
503 ERR("To much channel for kernel_pollfd size");
504 unlock_session(session);
505 break;
506 }
507 cds_list_for_each_entry(channel, &session->kernel_session->channel_list.head, list) {
508 kernel_pollfd[i].fd = channel->fd;
509 kernel_pollfd[i].events = POLLIN | POLLRDNORM;
510 i++;
511 }
512 unlock_session(session);
513 }
514 unlock_session_list();
515
516 /* Adding wake up pipe */
517 kernel_pollfd[nb_fd - 2].fd = kernel_poll_pipe[0];
518 kernel_pollfd[nb_fd - 2].events = POLLIN;
519
520 /* Adding the quit pipe */
521 kernel_pollfd[nb_fd - 1].fd = thread_quit_pipe[0];
522
523 return nb_fd;
524
525 error:
526 unlock_session_list();
527 return -1;
528 }
529
530 /*
531 * Find the channel fd from 'fd' over all tracing session. When found, check
532 * for new channel stream and send those stream fds to the kernel consumer.
533 *
534 * Useful for CPU hotplug feature.
535 */
536 static int update_kernel_stream(int fd)
537 {
538 int ret = 0;
539 struct ltt_session *session;
540 struct ltt_kernel_channel *channel;
541
542 DBG("Updating kernel streams for channel fd %d", fd);
543
544 lock_session_list();
545 cds_list_for_each_entry(session, &session_list_ptr->head, list) {
546 lock_session(session);
547 if (session->kernel_session == NULL) {
548 unlock_session(session);
549 continue;
550 }
551 cds_list_for_each_entry(channel, &session->kernel_session->channel_list.head, list) {
552 if (channel->fd == fd) {
553 DBG("Channel found, updating kernel streams");
554 ret = kernel_open_channel_stream(channel);
555 if (ret < 0) {
556 goto end;
557 }
558 /*
559 * Have we already sent fds to the consumer? If yes, it means that
560 * tracing is started so it is safe to send our updated stream fds.
561 */
562 if (session->kernel_session->kconsumer_fds_sent == 1) {
563 ret = send_kconsumerd_channel_fds(kconsumerd_cmd_sock, channel);
564 if (ret < 0) {
565 goto end;
566 }
567 }
568 goto end;
569 }
570 }
571 unlock_session(session);
572 }
573
574 end:
575 unlock_session_list();
576 if (session) {
577 unlock_session(session);
578 }
579 return ret;
580 }
581
582 /*
583 * This thread manage event coming from the kernel.
584 *
585 * Features supported in this thread:
586 * -) CPU Hotplug
587 */
588 static void *thread_manage_kernel(void *data)
589 {
590 int ret, i, nb_fd = 0;
591 char tmp;
592 int update_poll_flag = 1;
593
594 DBG("Thread manage kernel started");
595
596 while (1) {
597 if (update_poll_flag == 1) {
598 nb_fd = update_kernel_pollfd();
599 if (nb_fd < 0) {
600 goto error;
601 }
602 update_poll_flag = 0;
603 }
604
605 DBG("Polling on %d fds", nb_fd);
606
607 /* Poll infinite value of time */
608 ret = poll(kernel_pollfd, nb_fd, -1);
609 if (ret < 0) {
610 perror("poll kernel thread");
611 goto error;
612 } else if (ret == 0) {
613 /* Should not happen since timeout is infinite */
614 continue;
615 }
616
617 /* Thread quit pipe has been closed. Killing thread. */
618 if (kernel_pollfd[nb_fd - 1].revents == POLLNVAL) {
619 goto error;
620 }
621
622 DBG("Kernel poll event triggered");
623
624 /*
625 * Check if the wake up pipe was triggered. If so, the kernel_pollfd
626 * must be updated.
627 */
628 switch (kernel_pollfd[nb_fd - 2].revents) {
629 case POLLIN:
630 ret = read(kernel_poll_pipe[0], &tmp, 1);
631 update_poll_flag = 1;
632 continue;
633 case POLLERR:
634 goto error;
635 default:
636 break;
637 }
638
639 for (i = 0; i < nb_fd; i++) {
640 switch (kernel_pollfd[i].revents) {
641 /*
642 * New CPU detected by the kernel. Adding kernel stream to kernel
643 * session and updating the kernel consumer
644 */
645 case POLLIN | POLLRDNORM:
646 ret = update_kernel_stream(kernel_pollfd[i].fd);
647 if (ret < 0) {
648 continue;
649 }
650 break;
651 }
652 }
653 }
654
655 error:
656 DBG("Kernel thread dying");
657 if (kernel_pollfd) {
658 free(kernel_pollfd);
659 }
660
661 close(kernel_poll_pipe[0]);
662 close(kernel_poll_pipe[1]);
663 return NULL;
664 }
665
666 /*
667 * This thread manage the kconsumerd error sent back to the session daemon.
668 */
669 static void *thread_manage_kconsumerd(void *data)
670 {
671 int sock = 0, ret;
672 enum lttcomm_return_code code;
673 struct pollfd pollfd[2];
674
675 DBG("[thread] Manage kconsumerd started");
676
677 ret = lttcomm_listen_unix_sock(kconsumerd_err_sock);
678 if (ret < 0) {
679 goto error;
680 }
681
682 /* First fd is always the quit pipe */
683 pollfd[0].fd = thread_quit_pipe[0];
684
685 /* Apps socket */
686 pollfd[1].fd = kconsumerd_err_sock;
687 pollfd[1].events = POLLIN;
688
689 /* Inifinite blocking call, waiting for transmission */
690 ret = poll(pollfd, 2, -1);
691 if (ret < 0) {
692 perror("poll kconsumerd thread");
693 goto error;
694 }
695
696 /* Thread quit pipe has been closed. Killing thread. */
697 if (pollfd[0].revents == POLLNVAL) {
698 goto error;
699 } else if (pollfd[1].revents == POLLERR) {
700 ERR("Kconsumerd err socket poll error");
701 goto error;
702 }
703
704 sock = lttcomm_accept_unix_sock(kconsumerd_err_sock);
705 if (sock < 0) {
706 goto error;
707 }
708
709 /* Getting status code from kconsumerd */
710 ret = lttcomm_recv_unix_sock(sock, &code, sizeof(enum lttcomm_return_code));
711 if (ret <= 0) {
712 goto error;
713 }
714
715 if (code == KCONSUMERD_COMMAND_SOCK_READY) {
716 kconsumerd_cmd_sock = lttcomm_connect_unix_sock(kconsumerd_cmd_unix_sock_path);
717 if (kconsumerd_cmd_sock < 0) {
718 sem_post(&kconsumerd_sem);
719 perror("kconsumerd connect");
720 goto error;
721 }
722 /* Signal condition to tell that the kconsumerd is ready */
723 sem_post(&kconsumerd_sem);
724 DBG("Kconsumerd command socket ready");
725 } else {
726 DBG("Kconsumerd error when waiting for SOCK_READY : %s",
727 lttcomm_get_readable_code(-code));
728 goto error;
729 }
730
731 /* Wait for any kconsumerd error */
732 ret = lttcomm_recv_unix_sock(sock, &code, sizeof(enum lttcomm_return_code));
733 if (ret <= 0) {
734 ERR("Kconsumerd closed the command socket");
735 goto error;
736 }
737
738 ERR("Kconsumerd return code : %s", lttcomm_get_readable_code(-code));
739
740 error:
741 DBG("Kconsumerd thread dying");
742 if (kconsumerd_err_sock) {
743 close(kconsumerd_err_sock);
744 }
745 if (kconsumerd_cmd_sock) {
746 close(kconsumerd_cmd_sock);
747 }
748 if (sock) {
749 close(sock);
750 }
751
752 unlink(kconsumerd_err_unix_sock_path);
753 unlink(kconsumerd_cmd_unix_sock_path);
754
755 kconsumerd_pid = 0;
756 return NULL;
757 }
758
759 /*
760 * This thread manage the application socket communication
761 */
762 static void *thread_manage_apps(void *data)
763 {
764 int sock = 0, ret;
765 struct pollfd pollfd[2];
766
767 /* TODO: Something more elegant is needed but fine for now */
768 /* FIXME: change all types to either uint8_t, uint32_t, uint64_t
769 * for 32-bit vs 64-bit compat processes. */
770 /* replicate in ust with version number */
771 struct {
772 int reg; /* 1:register, 0:unregister */
773 pid_t pid;
774 uid_t uid;
775 } reg_msg;
776
777 DBG("[thread] Manage apps started");
778
779 ret = lttcomm_listen_unix_sock(apps_sock);
780 if (ret < 0) {
781 goto error;
782 }
783
784 /* First fd is always the quit pipe */
785 pollfd[0].fd = thread_quit_pipe[0];
786
787 /* Apps socket */
788 pollfd[1].fd = apps_sock;
789 pollfd[1].events = POLLIN;
790
791 /* Notify all applications to register */
792 notify_apps(default_global_apps_pipe);
793
794 while (1) {
795 DBG("Accepting application registration");
796
797 /* Inifinite blocking call, waiting for transmission */
798 ret = poll(pollfd, 2, -1);
799 if (ret < 0) {
800 perror("poll apps thread");
801 goto error;
802 }
803
804 /* Thread quit pipe has been closed. Killing thread. */
805 if (pollfd[0].revents == POLLNVAL) {
806 goto error;
807 } else if (pollfd[1].revents == POLLERR) {
808 ERR("Apps socket poll error");
809 goto error;
810 }
811
812 sock = lttcomm_accept_unix_sock(apps_sock);
813 if (sock < 0) {
814 goto error;
815 }
816
817 /*
818 * Basic recv here to handle the very simple data
819 * that the libust send to register (reg_msg).
820 */
821 ret = recv(sock, &reg_msg, sizeof(reg_msg), 0);
822 if (ret < 0) {
823 perror("recv");
824 continue;
825 }
826
827 /* Add application to the global traceable list */
828 if (reg_msg.reg == 1) {
829 /* Registering */
830 ret = register_traceable_app(reg_msg.pid, reg_msg.uid);
831 if (ret < 0) {
832 /* register_traceable_app only return an error with
833 * ENOMEM. At this point, we better stop everything.
834 */
835 goto error;
836 }
837 } else {
838 /* Unregistering */
839 unregister_traceable_app(reg_msg.pid);
840 }
841 }
842
843 error:
844 DBG("Apps thread dying");
845 if (apps_sock) {
846 close(apps_sock);
847 }
848 if (sock) {
849 close(sock);
850 }
851
852 unlink(apps_unix_sock_path);
853 return NULL;
854 }
855
856 /*
857 * Start the thread_manage_kconsumerd. This must be done after a kconsumerd
858 * exec or it will fails.
859 */
860 static int spawn_kconsumerd_thread(void)
861 {
862 int ret;
863
864 /* Setup semaphore */
865 sem_init(&kconsumerd_sem, 0, 0);
866
867 ret = pthread_create(&kconsumerd_thread, NULL, thread_manage_kconsumerd, (void *) NULL);
868 if (ret != 0) {
869 perror("pthread_create kconsumerd");
870 goto error;
871 }
872
873 /* Wait for the kconsumerd thread to be ready */
874 sem_wait(&kconsumerd_sem);
875
876 if (kconsumerd_pid == 0) {
877 ERR("Kconsumerd did not start");
878 goto error;
879 }
880
881 return 0;
882
883 error:
884 ret = LTTCOMM_KERN_CONSUMER_FAIL;
885 return ret;
886 }
887
888 static int join_kconsumerd_thread(void)
889 {
890 void *status;
891 int ret;
892
893 if (kconsumerd_pid != 0) {
894 ret = kill(kconsumerd_pid, SIGTERM);
895 if (ret) {
896 ERR("Error killing kconsumerd");
897 return ret;
898 }
899 return pthread_join(kconsumerd_thread, &status);
900 } else {
901 return 0;
902 }
903 }
904
905 /*
906 * Fork and exec a kernel consumer daemon (kconsumerd).
907 *
908 * Return pid if successful else -1.
909 */
910 static pid_t spawn_kconsumerd(void)
911 {
912 int ret;
913 pid_t pid;
914 const char *verbosity;
915
916 DBG("Spawning kconsumerd");
917
918 pid = fork();
919 if (pid == 0) {
920 /*
921 * Exec kconsumerd.
922 */
923 if (opt_verbose > 1 || opt_verbose_kconsumerd) {
924 verbosity = "--verbose";
925 } else {
926 verbosity = "--quiet";
927 }
928 execl(INSTALL_BIN_PATH "/ltt-kconsumerd", "ltt-kconsumerd", verbosity, NULL);
929 if (errno != 0) {
930 perror("kernel start consumer exec");
931 }
932 exit(EXIT_FAILURE);
933 } else if (pid > 0) {
934 ret = pid;
935 goto error;
936 } else {
937 perror("kernel start consumer fork");
938 ret = -errno;
939 goto error;
940 }
941
942 error:
943 return ret;
944 }
945
946 /*
947 * Spawn the kconsumerd daemon and session daemon thread.
948 */
949 static int start_kconsumerd(void)
950 {
951 int ret;
952
953 pthread_mutex_lock(&kconsumerd_pid_mutex);
954 if (kconsumerd_pid != 0) {
955 pthread_mutex_unlock(&kconsumerd_pid_mutex);
956 goto end;
957 }
958
959 ret = spawn_kconsumerd();
960 if (ret < 0) {
961 ERR("Spawning kconsumerd failed");
962 ret = LTTCOMM_KERN_CONSUMER_FAIL;
963 pthread_mutex_unlock(&kconsumerd_pid_mutex);
964 goto error;
965 }
966
967 /* Setting up the global kconsumerd_pid */
968 kconsumerd_pid = ret;
969 pthread_mutex_unlock(&kconsumerd_pid_mutex);
970
971 DBG("Kconsumerd pid %d", ret);
972
973 DBG("Spawning kconsumerd thread");
974 ret = spawn_kconsumerd_thread();
975 if (ret < 0) {
976 ERR("Fatal error spawning kconsumerd thread");
977 goto error;
978 }
979
980 end:
981 return 0;
982
983 error:
984 return ret;
985 }
986
987 /*
988 * modprobe_kernel_modules
989 */
990 static int modprobe_kernel_modules(void)
991 {
992 int ret = 0, i;
993 char modprobe[256];
994
995 for (i = 0; i < ARRAY_SIZE(kernel_modules_list); i++) {
996 ret = snprintf(modprobe, sizeof(modprobe),
997 "/sbin/modprobe %s%s",
998 kernel_modules_list[i].required ? "" : "--quiet ",
999 kernel_modules_list[i].name);
1000 if (ret < 0) {
1001 perror("snprintf modprobe");
1002 goto error;
1003 }
1004 modprobe[sizeof(modprobe) - 1] = '\0';
1005 ret = system(modprobe);
1006 if (ret == -1) {
1007 ERR("Unable to launch modprobe for module %s",
1008 kernel_modules_list[i].name);
1009 } else if (kernel_modules_list[i].required
1010 && WEXITSTATUS(ret) != 0) {
1011 ERR("Unable to load module %s",
1012 kernel_modules_list[i].name);
1013 } else {
1014 DBG("Modprobe successfully %s",
1015 kernel_modules_list[i].name);
1016 }
1017 }
1018
1019 error:
1020 return ret;
1021 }
1022
1023 /*
1024 * modprobe_remove_kernel_modules
1025 * Remove modules in reverse load order.
1026 */
1027 static int modprobe_remove_kernel_modules(void)
1028 {
1029 int ret = 0, i;
1030 char modprobe[256];
1031
1032 for (i = ARRAY_SIZE(kernel_modules_list) - 1; i >= 0; i--) {
1033 ret = snprintf(modprobe, sizeof(modprobe),
1034 "/sbin/modprobe --remove --quiet %s",
1035 kernel_modules_list[i].name);
1036 if (ret < 0) {
1037 perror("snprintf modprobe --remove");
1038 goto error;
1039 }
1040 modprobe[sizeof(modprobe) - 1] = '\0';
1041 ret = system(modprobe);
1042 if (ret == -1) {
1043 ERR("Unable to launch modprobe --remove for module %s",
1044 kernel_modules_list[i].name);
1045 } else if (kernel_modules_list[i].required
1046 && WEXITSTATUS(ret) != 0) {
1047 ERR("Unable to remove module %s",
1048 kernel_modules_list[i].name);
1049 } else {
1050 DBG("Modprobe removal successful %s",
1051 kernel_modules_list[i].name);
1052 }
1053 }
1054
1055 error:
1056 return ret;
1057 }
1058
1059 /*
1060 * mount_debugfs
1061 */
1062 static int mount_debugfs(char *path)
1063 {
1064 int ret;
1065 char *type = "debugfs";
1066
1067 ret = mkdir_recursive(path, S_IRWXU | S_IRWXG, geteuid(), getegid());
1068 if (ret < 0) {
1069 goto error;
1070 }
1071
1072 ret = mount(type, path, type, 0, NULL);
1073 if (ret < 0) {
1074 perror("mount debugfs");
1075 goto error;
1076 }
1077
1078 DBG("Mounted debugfs successfully at %s", path);
1079
1080 error:
1081 return ret;
1082 }
1083
1084 /*
1085 * Setup necessary data for kernel tracer action.
1086 */
1087 static void init_kernel_tracer(void)
1088 {
1089 int ret;
1090 char *proc_mounts = "/proc/mounts";
1091 char line[256];
1092 char *debugfs_path = NULL, *lttng_path;
1093 FILE *fp;
1094
1095 /* Detect debugfs */
1096 fp = fopen(proc_mounts, "r");
1097 if (fp == NULL) {
1098 ERR("Unable to probe %s", proc_mounts);
1099 goto error;
1100 }
1101
1102 while (fgets(line, sizeof(line), fp) != NULL) {
1103 if (strstr(line, "debugfs") != NULL) {
1104 /* Remove first string */
1105 strtok(line, " ");
1106 /* Dup string here so we can reuse line later on */
1107 debugfs_path = strdup(strtok(NULL, " "));
1108 DBG("Got debugfs path : %s", debugfs_path);
1109 break;
1110 }
1111 }
1112
1113 fclose(fp);
1114
1115 /* Mount debugfs if needded */
1116 if (debugfs_path == NULL) {
1117 ret = asprintf(&debugfs_path, "/mnt/debugfs");
1118 if (ret < 0) {
1119 perror("asprintf debugfs path");
1120 goto error;
1121 }
1122 ret = mount_debugfs(debugfs_path);
1123 if (ret < 0) {
1124 goto error;
1125 }
1126 }
1127
1128 /* Modprobe lttng kernel modules */
1129 ret = modprobe_kernel_modules();
1130 if (ret < 0) {
1131 goto error;
1132 }
1133
1134 /* Setup lttng kernel path */
1135 ret = asprintf(&lttng_path, "%s/lttng", debugfs_path);
1136 if (ret < 0) {
1137 perror("asprintf lttng path");
1138 goto error;
1139 }
1140
1141 /* Open debugfs lttng */
1142 kernel_tracer_fd = open(lttng_path, O_RDWR);
1143 if (kernel_tracer_fd < 0) {
1144 DBG("Failed to open %s", lttng_path);
1145 goto error;
1146 }
1147
1148 free(lttng_path);
1149 free(debugfs_path);
1150 DBG("Kernel tracer fd %d", kernel_tracer_fd);
1151 return;
1152
1153 error:
1154 if (lttng_path) {
1155 free(lttng_path);
1156 }
1157 if (debugfs_path) {
1158 free(debugfs_path);
1159 }
1160 WARN("No kernel tracer available");
1161 kernel_tracer_fd = 0;
1162 return;
1163 }
1164
1165 /*
1166 * Start tracing by creating trace directory and sending FDs to the kernel
1167 * consumer.
1168 */
1169 static int start_kernel_trace(struct ltt_kernel_session *session)
1170 {
1171 int ret = 0;
1172
1173 if (session->kconsumer_fds_sent == 0) {
1174 ret = send_kconsumerd_fds(kconsumerd_cmd_sock, session);
1175 if (ret < 0) {
1176 ERR("Send kconsumerd fds failed");
1177 ret = LTTCOMM_KERN_CONSUMER_FAIL;
1178 goto error;
1179 }
1180
1181 session->kconsumer_fds_sent = 1;
1182 }
1183
1184 error:
1185 return ret;
1186 }
1187
1188 /*
1189 * Notify kernel thread to update it's pollfd.
1190 */
1191 static int notify_kernel_pollfd(void)
1192 {
1193 int ret;
1194
1195 /* Inform kernel thread of the new kernel channel */
1196 ret = write(kernel_poll_pipe[1], "!", 1);
1197 if (ret < 0) {
1198 perror("write kernel poll pipe");
1199 }
1200
1201 return ret;
1202 }
1203
1204 /*
1205 * Allocate a channel structure and fill it.
1206 */
1207 static struct lttng_channel *init_default_channel(char *name)
1208 {
1209 struct lttng_channel *chan;
1210
1211 chan = malloc(sizeof(struct lttng_channel));
1212 if (chan == NULL) {
1213 perror("init channel malloc");
1214 goto error;
1215 }
1216
1217 if (snprintf(chan->name, NAME_MAX, "%s", name) < 0) {
1218 perror("snprintf channel name");
1219 return NULL;
1220 }
1221
1222 chan->attr.overwrite = DEFAULT_CHANNEL_OVERWRITE;
1223 chan->attr.subbuf_size = DEFAULT_CHANNEL_SUBBUF_SIZE;
1224 chan->attr.num_subbuf = DEFAULT_CHANNEL_SUBBUF_NUM;
1225 chan->attr.switch_timer_interval = DEFAULT_CHANNEL_SWITCH_TIMER;
1226 chan->attr.read_timer_interval = DEFAULT_CHANNEL_READ_TIMER;
1227 chan->attr.output = DEFAULT_KERNEL_CHANNEL_OUTPUT;
1228
1229 error:
1230 return chan;
1231 }
1232
1233 /*
1234 * Create a kernel tracer session then create the default channel.
1235 */
1236 static int create_kernel_session(struct ltt_session *session)
1237 {
1238 int ret;
1239
1240 DBG("Creating kernel session");
1241
1242 ret = kernel_create_session(session, kernel_tracer_fd);
1243 if (ret < 0) {
1244 ret = LTTCOMM_KERN_SESS_FAIL;
1245 goto error;
1246 }
1247
1248 ret = mkdir_recursive(session->path, S_IRWXU | S_IRWXG,
1249 geteuid(), allowed_group());
1250 if (ret < 0) {
1251 if (ret != -EEXIST) {
1252 ERR("Trace directory creation error");
1253 goto error;
1254 }
1255 }
1256
1257 error:
1258 return ret;
1259 }
1260
1261 /*
1262 * Using the session list, filled a lttng_session array to send back to the
1263 * client for session listing.
1264 *
1265 * The session list lock MUST be acquired before calling this function. Use
1266 * lock_session_list() and unlock_session_list().
1267 */
1268 static void list_lttng_sessions(struct lttng_session *sessions)
1269 {
1270 int i = 0;
1271 struct ltt_session *session;
1272
1273 DBG("Getting all available session");
1274 /*
1275 * Iterate over session list and append data after the control struct in
1276 * the buffer.
1277 */
1278 cds_list_for_each_entry(session, &session_list_ptr->head, list) {
1279 strncpy(sessions[i].path, session->path, PATH_MAX);
1280 sessions[i].path[PATH_MAX - 1] = '\0';
1281 strncpy(sessions[i].name, session->name, NAME_MAX);
1282 sessions[i].name[NAME_MAX - 1] = '\0';
1283 i++;
1284 }
1285 }
1286
1287 /*
1288 * Fill lttng_channel array of all channels.
1289 */
1290 static void list_lttng_channels(struct ltt_session *session,
1291 struct lttng_channel *channels)
1292 {
1293 int i = 0;
1294 struct ltt_kernel_channel *kchan;
1295
1296 DBG("Listing channels for session %s", session->name);
1297
1298 /* Kernel channels */
1299 if (session->kernel_session != NULL) {
1300 cds_list_for_each_entry(kchan, &session->kernel_session->channel_list.head, list) {
1301 /* Copy lttng_channel struct to array */
1302 memcpy(&channels[i], kchan->channel, sizeof(struct lttng_channel));
1303 channels[i].enabled = kchan->enabled;
1304 i++;
1305 }
1306 }
1307
1308 /* TODO: Missing UST listing */
1309 }
1310
1311 /*
1312 * Fill lttng_event array of all events in the channel.
1313 */
1314 static void list_lttng_events(struct ltt_kernel_channel *kchan,
1315 struct lttng_event *events)
1316 {
1317 /*
1318 * TODO: This is ONLY kernel. Need UST support.
1319 */
1320 int i = 0;
1321 struct ltt_kernel_event *event;
1322
1323 DBG("Listing events for channel %s", kchan->channel->name);
1324
1325 /* Kernel channels */
1326 cds_list_for_each_entry(event, &kchan->events_list.head , list) {
1327 strncpy(events[i].name, event->event->name, LTTNG_SYMBOL_NAME_LEN);
1328 events[i].name[LTTNG_SYMBOL_NAME_LEN - 1] = '\0';
1329 events[i].enabled = event->enabled;
1330 switch (event->event->instrumentation) {
1331 case LTTNG_KERNEL_TRACEPOINT:
1332 events[i].type = LTTNG_EVENT_TRACEPOINT;
1333 break;
1334 case LTTNG_KERNEL_KPROBE:
1335 case LTTNG_KERNEL_KRETPROBE:
1336 events[i].type = LTTNG_EVENT_PROBE;
1337 memcpy(&events[i].attr.probe, &event->event->u.kprobe,
1338 sizeof(struct lttng_kernel_kprobe));
1339 break;
1340 case LTTNG_KERNEL_FUNCTION:
1341 events[i].type = LTTNG_EVENT_FUNCTION;
1342 memcpy(&events[i].attr.ftrace, &event->event->u.ftrace,
1343 sizeof(struct lttng_kernel_function));
1344 break;
1345 }
1346 i++;
1347 }
1348 }
1349
1350 /*
1351 * Process the command requested by the lttng client within the command
1352 * context structure. This function make sure that the return structure (llm)
1353 * is set and ready for transmission before returning.
1354 *
1355 * Return any error encountered or 0 for success.
1356 */
1357 static int process_client_msg(struct command_ctx *cmd_ctx)
1358 {
1359 int ret = LTTCOMM_OK;
1360
1361 DBG("Processing client command %d", cmd_ctx->lsm->cmd_type);
1362
1363 /* Listing commands don't need a session */
1364 switch (cmd_ctx->lsm->cmd_type) {
1365 case LTTNG_CREATE_SESSION:
1366 case LTTNG_LIST_SESSIONS:
1367 case LTTNG_LIST_TRACEPOINTS:
1368 case LTTNG_CALIBRATE:
1369 break;
1370 default:
1371 DBG("Getting session %s by name", cmd_ctx->lsm->session.name);
1372 cmd_ctx->session = find_session_by_name(cmd_ctx->lsm->session.name);
1373 if (cmd_ctx->session == NULL) {
1374 /* If session name not found */
1375 if (cmd_ctx->lsm->session.name != NULL) {
1376 ret = LTTCOMM_SESS_NOT_FOUND;
1377 } else { /* If no session name specified */
1378 ret = LTTCOMM_SELECT_SESS;
1379 }
1380 goto error;
1381 } else {
1382 /* Acquire lock for the session */
1383 lock_session(cmd_ctx->session);
1384 }
1385 break;
1386 }
1387
1388 /*
1389 * Check domain type for specific "pre-action".
1390 */
1391 switch (cmd_ctx->lsm->domain.type) {
1392 case LTTNG_DOMAIN_KERNEL:
1393 /* Kernel tracer check */
1394 if (kernel_tracer_fd == 0) {
1395 init_kernel_tracer();
1396 if (kernel_tracer_fd == 0) {
1397 ret = LTTCOMM_KERN_NA;
1398 goto error;
1399 }
1400 }
1401
1402 /* Need a session for kernel command */
1403 switch (cmd_ctx->lsm->cmd_type) {
1404 case LTTNG_CREATE_SESSION:
1405 case LTTNG_LIST_SESSIONS:
1406 case LTTNG_LIST_TRACEPOINTS:
1407 case LTTNG_CALIBRATE:
1408 break;
1409 default:
1410 if (cmd_ctx->session->kernel_session == NULL) {
1411 ret = create_kernel_session(cmd_ctx->session);
1412 if (ret < 0) {
1413 ret = LTTCOMM_KERN_SESS_FAIL;
1414 goto error;
1415 }
1416
1417 /* Start the kernel consumer daemon */
1418 if (kconsumerd_pid == 0) {
1419 ret = start_kconsumerd();
1420 if (ret < 0) {
1421 goto error;
1422 }
1423 }
1424 }
1425 }
1426 break;
1427 default:
1428 break;
1429 }
1430
1431 /* Process by command type */
1432 switch (cmd_ctx->lsm->cmd_type) {
1433 case LTTNG_ADD_CONTEXT:
1434 {
1435 struct lttng_kernel_context kctx;
1436
1437 /* Setup lttng message with no payload */
1438 ret = setup_lttng_msg(cmd_ctx, 0);
1439 if (ret < 0) {
1440 goto setup_error;
1441 }
1442
1443 switch (cmd_ctx->lsm->domain.type) {
1444 case LTTNG_DOMAIN_KERNEL:
1445 /* Create Kernel context */
1446 kctx.ctx = cmd_ctx->lsm->u.context.ctx.ctx;
1447 kctx.u.perf_counter.type = cmd_ctx->lsm->u.context.ctx.u.perf_counter.type;
1448 kctx.u.perf_counter.config = cmd_ctx->lsm->u.context.ctx.u.perf_counter.config;
1449 strncpy(kctx.u.perf_counter.name,
1450 cmd_ctx->lsm->u.context.ctx.u.perf_counter.name,
1451 LTTNG_SYMBOL_NAME_LEN);
1452 kctx.u.perf_counter.name[LTTNG_SYMBOL_NAME_LEN - 1] = '\0';
1453
1454 /* Add kernel context to kernel tracer. See context.c */
1455 ret = add_kernel_context(cmd_ctx->session->kernel_session, &kctx,
1456 cmd_ctx->lsm->u.context.event_name,
1457 cmd_ctx->lsm->u.context.channel_name);
1458 if (ret != LTTCOMM_OK) {
1459 goto error;
1460 }
1461 break;
1462 default:
1463 /* TODO: Userspace tracing */
1464 ret = LTTCOMM_NOT_IMPLEMENTED;
1465 goto error;
1466 }
1467
1468 ret = LTTCOMM_OK;
1469 break;
1470 }
1471 case LTTNG_DISABLE_CHANNEL:
1472 {
1473 struct ltt_kernel_channel *kchan;
1474
1475 /* Setup lttng message with no payload */
1476 ret = setup_lttng_msg(cmd_ctx, 0);
1477 if (ret < 0) {
1478 goto setup_error;
1479 }
1480
1481 switch (cmd_ctx->lsm->domain.type) {
1482 case LTTNG_DOMAIN_KERNEL:
1483 kchan = get_kernel_channel_by_name(cmd_ctx->lsm->u.disable.channel_name,
1484 cmd_ctx->session->kernel_session);
1485 if (kchan == NULL) {
1486 ret = LTTCOMM_KERN_CHAN_NOT_FOUND;
1487 goto error;
1488 } else if (kchan->enabled == 1) {
1489 ret = kernel_disable_channel(kchan);
1490 if (ret < 0) {
1491 if (ret != EEXIST) {
1492 ret = LTTCOMM_KERN_CHAN_DISABLE_FAIL;
1493 }
1494 goto error;
1495 }
1496 }
1497 kernel_wait_quiescent(kernel_tracer_fd);
1498 break;
1499 default:
1500 /* TODO: Userspace tracing */
1501 ret = LTTCOMM_NOT_IMPLEMENTED;
1502 goto error;
1503 }
1504
1505 ret = LTTCOMM_OK;
1506 break;
1507 }
1508 case LTTNG_DISABLE_EVENT:
1509 {
1510 struct ltt_kernel_channel *kchan;
1511 struct ltt_kernel_event *kevent;
1512
1513 /* Setup lttng message with no payload */
1514 ret = setup_lttng_msg(cmd_ctx, 0);
1515 if (ret < 0) {
1516 goto setup_error;
1517 }
1518
1519 switch (cmd_ctx->lsm->domain.type) {
1520 case LTTNG_DOMAIN_KERNEL:
1521 kchan = get_kernel_channel_by_name(cmd_ctx->lsm->u.disable.channel_name,
1522 cmd_ctx->session->kernel_session);
1523 if (kchan == NULL) {
1524 ret = LTTCOMM_KERN_CHAN_NOT_FOUND;
1525 goto error;
1526 }
1527
1528 kevent = get_kernel_event_by_name(cmd_ctx->lsm->u.disable.name, kchan);
1529 if (kevent != NULL) {
1530 DBG("Disabling kernel event %s for channel %s.", kevent->event->name,
1531 kchan->channel->name);
1532 ret = kernel_disable_event(kevent);
1533 if (ret < 0) {
1534 ret = LTTCOMM_KERN_ENABLE_FAIL;
1535 goto error;
1536 }
1537 }
1538
1539 kernel_wait_quiescent(kernel_tracer_fd);
1540 break;
1541 default:
1542 /* TODO: Userspace tracing */
1543 ret = LTTCOMM_NOT_IMPLEMENTED;
1544 goto error;
1545 }
1546
1547 ret = LTTCOMM_OK;
1548 break;
1549 }
1550 case LTTNG_DISABLE_ALL_EVENT:
1551 {
1552 struct ltt_kernel_channel *kchan;
1553 struct ltt_kernel_event *kevent;
1554
1555 /* Setup lttng message with no payload */
1556 ret = setup_lttng_msg(cmd_ctx, 0);
1557 if (ret < 0) {
1558 goto setup_error;
1559 }
1560
1561 switch (cmd_ctx->lsm->domain.type) {
1562 case LTTNG_DOMAIN_KERNEL:
1563 DBG("Disabling all enabled kernel events");
1564 kchan = get_kernel_channel_by_name(cmd_ctx->lsm->u.disable.channel_name,
1565 cmd_ctx->session->kernel_session);
1566 if (kchan == NULL) {
1567 ret = LTTCOMM_KERN_CHAN_NOT_FOUND;
1568 goto error;
1569 }
1570
1571 /* For each event in the kernel session */
1572 cds_list_for_each_entry(kevent, &kchan->events_list.head, list) {
1573 DBG("Disabling kernel event %s for channel %s.",
1574 kevent->event->name, kchan->channel->name);
1575 ret = kernel_disable_event(kevent);
1576 if (ret < 0) {
1577 continue;
1578 }
1579 }
1580
1581 /* Quiescent wait after event disable */
1582 kernel_wait_quiescent(kernel_tracer_fd);
1583 break;
1584 default:
1585 /* TODO: Userspace tracing */
1586 ret = LTTCOMM_NOT_IMPLEMENTED;
1587 goto error;
1588 }
1589
1590 ret = LTTCOMM_OK;
1591 break;
1592 }
1593 case LTTNG_ENABLE_CHANNEL:
1594 {
1595 struct ltt_kernel_channel *kchan;
1596
1597 /* Setup lttng message with no payload */
1598 ret = setup_lttng_msg(cmd_ctx, 0);
1599 if (ret < 0) {
1600 goto setup_error;
1601 }
1602
1603 switch (cmd_ctx->lsm->domain.type) {
1604 case LTTNG_DOMAIN_KERNEL:
1605 kchan = get_kernel_channel_by_name(cmd_ctx->lsm->u.enable.channel_name,
1606 cmd_ctx->session->kernel_session);
1607 if (kchan == NULL) {
1608 /* Channel not found, creating it */
1609 DBG("Creating kernel channel");
1610
1611 ret = kernel_create_channel(cmd_ctx->session->kernel_session,
1612 &cmd_ctx->lsm->u.channel.chan, cmd_ctx->session->path);
1613 if (ret < 0) {
1614 ret = LTTCOMM_KERN_CHAN_FAIL;
1615 goto error;
1616 }
1617
1618 /* Notify kernel thread that there is a new channel */
1619 ret = notify_kernel_pollfd();
1620 if (ret < 0) {
1621 ret = LTTCOMM_FATAL;
1622 goto error;
1623 }
1624 } else if (kchan->enabled == 0) {
1625 ret = kernel_enable_channel(kchan);
1626 if (ret < 0) {
1627 if (ret != EEXIST) {
1628 ret = LTTCOMM_KERN_CHAN_ENABLE_FAIL;
1629 }
1630 goto error;
1631 }
1632 }
1633
1634 kernel_wait_quiescent(kernel_tracer_fd);
1635 break;
1636 default:
1637 /* TODO: Userspace tracing */
1638 ret = LTTCOMM_NOT_IMPLEMENTED;
1639 goto error;
1640 }
1641
1642 ret = LTTCOMM_OK;
1643 break;
1644 }
1645 case LTTNG_ENABLE_EVENT:
1646 {
1647 char *channel_name;
1648 struct ltt_kernel_channel *kchan;
1649 struct ltt_kernel_event *kevent;
1650 struct lttng_channel *chan;
1651
1652 /* Setup lttng message with no payload */
1653 ret = setup_lttng_msg(cmd_ctx, 0);
1654 if (ret < 0) {
1655 goto setup_error;
1656 }
1657
1658 channel_name = cmd_ctx->lsm->u.enable.channel_name;
1659
1660 switch (cmd_ctx->lsm->domain.type) {
1661 case LTTNG_DOMAIN_KERNEL:
1662 do {
1663 kchan = get_kernel_channel_by_name(channel_name,
1664 cmd_ctx->session->kernel_session);
1665 if (kchan == NULL) {
1666 DBG("Channel not found. Creating channel %s", channel_name);
1667
1668 chan = init_default_channel(channel_name);
1669 if (chan == NULL) {
1670 ret = LTTCOMM_FATAL;
1671 goto error;
1672 }
1673
1674 ret = kernel_create_channel(cmd_ctx->session->kernel_session,
1675 chan, cmd_ctx->session->path);
1676 if (ret < 0) {
1677 ret = LTTCOMM_KERN_CHAN_FAIL;
1678 goto error;
1679 }
1680 }
1681 } while (kchan == NULL);
1682
1683 kevent = get_kernel_event_by_name(cmd_ctx->lsm->u.enable.event.name, kchan);
1684 if (kevent == NULL) {
1685 DBG("Creating kernel event %s for channel %s.",
1686 cmd_ctx->lsm->u.enable.event.name, channel_name);
1687 ret = kernel_create_event(&cmd_ctx->lsm->u.enable.event, kchan);
1688 } else {
1689 DBG("Enabling kernel event %s for channel %s.",
1690 kevent->event->name, channel_name);
1691 ret = kernel_enable_event(kevent);
1692 if (ret == -EEXIST) {
1693 ret = LTTCOMM_KERN_EVENT_EXIST;
1694 goto error;
1695 }
1696 }
1697
1698 if (ret < 0) {
1699 ret = LTTCOMM_KERN_ENABLE_FAIL;
1700 goto error;
1701 }
1702
1703 kernel_wait_quiescent(kernel_tracer_fd);
1704 break;
1705 default:
1706 /* TODO: Userspace tracing */
1707 ret = LTTCOMM_NOT_IMPLEMENTED;
1708 goto error;
1709 }
1710 ret = LTTCOMM_OK;
1711 break;
1712 }
1713 case LTTNG_ENABLE_ALL_EVENT:
1714 {
1715 int size, i;
1716 char *channel_name;
1717 struct ltt_kernel_channel *kchan;
1718 struct ltt_kernel_event *kevent;
1719 struct lttng_event *event_list;
1720 struct lttng_channel *chan;
1721
1722 /* Setup lttng message with no payload */
1723 ret = setup_lttng_msg(cmd_ctx, 0);
1724 if (ret < 0) {
1725 goto setup_error;
1726 }
1727
1728 DBG("Enabling all kernel event");
1729
1730 channel_name = cmd_ctx->lsm->u.enable.channel_name;
1731
1732 switch (cmd_ctx->lsm->domain.type) {
1733 case LTTNG_DOMAIN_KERNEL:
1734 do {
1735 kchan = get_kernel_channel_by_name(channel_name,
1736 cmd_ctx->session->kernel_session);
1737 if (kchan == NULL) {
1738 DBG("Channel not found. Creating channel %s", channel_name);
1739
1740 chan = init_default_channel(channel_name);
1741 if (chan == NULL) {
1742 ret = LTTCOMM_FATAL;
1743 goto error;
1744 }
1745
1746 ret = kernel_create_channel(cmd_ctx->session->kernel_session,
1747 chan, cmd_ctx->session->path);
1748 if (ret < 0) {
1749 ret = LTTCOMM_KERN_CHAN_FAIL;
1750 goto error;
1751 }
1752 }
1753 } while (kchan == NULL);
1754
1755 /* For each event in the kernel session */
1756 cds_list_for_each_entry(kevent, &kchan->events_list.head, list) {
1757 DBG("Enabling kernel event %s for channel %s.",
1758 kevent->event->name, channel_name);
1759 ret = kernel_enable_event(kevent);
1760 if (ret < 0) {
1761 continue;
1762 }
1763 }
1764
1765 size = kernel_list_events(kernel_tracer_fd, &event_list);
1766 if (size < 0) {
1767 ret = LTTCOMM_KERN_LIST_FAIL;
1768 goto error;
1769 }
1770
1771 for (i = 0; i < size; i++) {
1772 kevent = get_kernel_event_by_name(event_list[i].name, kchan);
1773 if (kevent == NULL) {
1774 /* Default event type for enable all */
1775 event_list[i].type = LTTNG_EVENT_TRACEPOINT;
1776 /* Enable each single tracepoint event */
1777 ret = kernel_create_event(&event_list[i], kchan);
1778 if (ret < 0) {
1779 /* Ignore error here and continue */
1780 }
1781 }
1782 }
1783
1784 free(event_list);
1785
1786 /* Quiescent wait after event enable */
1787 kernel_wait_quiescent(kernel_tracer_fd);
1788 break;
1789 default:
1790 /* TODO: Userspace tracing */
1791 ret = LTTCOMM_NOT_IMPLEMENTED;
1792 goto error;
1793 }
1794
1795 ret = LTTCOMM_OK;
1796 break;
1797 }
1798 case LTTNG_LIST_TRACEPOINTS:
1799 {
1800 struct lttng_event *events;
1801 ssize_t nb_events = 0;
1802
1803 switch (cmd_ctx->lsm->domain.type) {
1804 case LTTNG_DOMAIN_KERNEL:
1805 DBG("Listing kernel events");
1806 nb_events = kernel_list_events(kernel_tracer_fd, &events);
1807 if (nb_events < 0) {
1808 ret = LTTCOMM_KERN_LIST_FAIL;
1809 goto error;
1810 }
1811 break;
1812 default:
1813 /* TODO: Userspace listing */
1814 ret = LTTCOMM_NOT_IMPLEMENTED;
1815 break;
1816 }
1817
1818 /*
1819 * Setup lttng message with payload size set to the event list size in
1820 * bytes and then copy list into the llm payload.
1821 */
1822 ret = setup_lttng_msg(cmd_ctx, sizeof(struct lttng_event) * nb_events);
1823 if (ret < 0) {
1824 free(events);
1825 goto setup_error;
1826 }
1827
1828 /* Copy event list into message payload */
1829 memcpy(cmd_ctx->llm->payload, events,
1830 sizeof(struct lttng_event) * nb_events);
1831
1832 free(events);
1833
1834 ret = LTTCOMM_OK;
1835 break;
1836 }
1837 case LTTNG_START_TRACE:
1838 {
1839 struct ltt_kernel_channel *chan;
1840
1841 /* Setup lttng message with no payload */
1842 ret = setup_lttng_msg(cmd_ctx, 0);
1843 if (ret < 0) {
1844 goto setup_error;
1845 }
1846
1847 /* Kernel tracing */
1848 if (cmd_ctx->session->kernel_session != NULL) {
1849 if (cmd_ctx->session->kernel_session->metadata == NULL) {
1850 DBG("Open kernel metadata");
1851 ret = kernel_open_metadata(cmd_ctx->session->kernel_session,
1852 cmd_ctx->session->path);
1853 if (ret < 0) {
1854 ret = LTTCOMM_KERN_META_FAIL;
1855 goto error;
1856 }
1857 }
1858
1859 if (cmd_ctx->session->kernel_session->metadata_stream_fd == 0) {
1860 DBG("Opening kernel metadata stream");
1861 if (cmd_ctx->session->kernel_session->metadata_stream_fd == 0) {
1862 ret = kernel_open_metadata_stream(cmd_ctx->session->kernel_session);
1863 if (ret < 0) {
1864 ERR("Kernel create metadata stream failed");
1865 ret = LTTCOMM_KERN_STREAM_FAIL;
1866 goto error;
1867 }
1868 }
1869 }
1870
1871 /* For each channel */
1872 cds_list_for_each_entry(chan,
1873 &cmd_ctx->session->kernel_session->channel_list.head, list) {
1874 if (chan->stream_count == 0) {
1875 ret = kernel_open_channel_stream(chan);
1876 if (ret < 0) {
1877 ERR("Kernel create channel stream failed");
1878 ret = LTTCOMM_KERN_STREAM_FAIL;
1879 goto error;
1880 }
1881 /* Update the stream global counter */
1882 cmd_ctx->session->kernel_session->stream_count_global += ret;
1883 }
1884 }
1885
1886 DBG("Start kernel tracing");
1887 ret = kernel_start_session(cmd_ctx->session->kernel_session);
1888 if (ret < 0) {
1889 ERR("Kernel start session failed");
1890 ret = LTTCOMM_KERN_START_FAIL;
1891 goto error;
1892 }
1893
1894 ret = start_kernel_trace(cmd_ctx->session->kernel_session);
1895 if (ret < 0) {
1896 ret = LTTCOMM_KERN_START_FAIL;
1897 goto error;
1898 }
1899
1900 /* Quiescent wait after starting trace */
1901 kernel_wait_quiescent(kernel_tracer_fd);
1902 }
1903
1904 /* TODO: Start all UST traces */
1905
1906 ret = LTTCOMM_OK;
1907 break;
1908 }
1909 case LTTNG_STOP_TRACE:
1910 {
1911 struct ltt_kernel_channel *chan;
1912 /* Setup lttng message with no payload */
1913 ret = setup_lttng_msg(cmd_ctx, 0);
1914 if (ret < 0) {
1915 goto setup_error;
1916 }
1917
1918 /* Kernel tracer */
1919 if (cmd_ctx->session->kernel_session != NULL) {
1920 DBG("Stop kernel tracing");
1921
1922 ret = kernel_metadata_flush_buffer(cmd_ctx->session->kernel_session->metadata_stream_fd);
1923 if (ret < 0) {
1924 ERR("Kernel metadata flush failed");
1925 }
1926
1927 cds_list_for_each_entry(chan, &cmd_ctx->session->kernel_session->channel_list.head, list) {
1928 ret = kernel_flush_buffer(chan);
1929 if (ret < 0) {
1930 ERR("Kernel flush buffer error");
1931 }
1932 }
1933
1934 ret = kernel_stop_session(cmd_ctx->session->kernel_session);
1935 if (ret < 0) {
1936 ERR("Kernel stop session failed");
1937 ret = LTTCOMM_KERN_STOP_FAIL;
1938 goto error;
1939 }
1940
1941 /* Quiescent wait after stopping trace */
1942 kernel_wait_quiescent(kernel_tracer_fd);
1943 }
1944
1945 /* TODO : User-space tracer */
1946
1947 ret = LTTCOMM_OK;
1948 break;
1949 }
1950 case LTTNG_CREATE_SESSION:
1951 {
1952 /* Setup lttng message with no payload */
1953 ret = setup_lttng_msg(cmd_ctx, 0);
1954 if (ret < 0) {
1955 goto setup_error;
1956 }
1957
1958 ret = create_session(cmd_ctx->lsm->session.name, cmd_ctx->lsm->session.path);
1959 if (ret < 0) {
1960 if (ret == -EEXIST) {
1961 ret = LTTCOMM_EXIST_SESS;
1962 } else {
1963 ret = LTTCOMM_FATAL;
1964 }
1965 goto error;
1966 }
1967
1968 ret = LTTCOMM_OK;
1969 break;
1970 }
1971 case LTTNG_DESTROY_SESSION:
1972 {
1973 /* Setup lttng message with no payload */
1974 ret = setup_lttng_msg(cmd_ctx, 0);
1975 if (ret < 0) {
1976 goto setup_error;
1977 }
1978
1979 /* Clean kernel session teardown */
1980 teardown_kernel_session(cmd_ctx->session);
1981
1982 ret = destroy_session(cmd_ctx->lsm->session.name);
1983 if (ret < 0) {
1984 ret = LTTCOMM_FATAL;
1985 goto error;
1986 }
1987
1988 /*
1989 * Must notify the kernel thread here to update it's pollfd in order to
1990 * remove the channel(s)' fd just destroyed.
1991 */
1992 ret = notify_kernel_pollfd();
1993 if (ret < 0) {
1994 ret = LTTCOMM_FATAL;
1995 goto error;
1996 }
1997
1998 ret = LTTCOMM_OK;
1999 break;
2000 }
2001 case LTTNG_LIST_DOMAINS:
2002 {
2003 size_t nb_dom = 0;
2004
2005 if (cmd_ctx->session->kernel_session != NULL) {
2006 nb_dom++;
2007 }
2008
2009 nb_dom += cmd_ctx->session->ust_trace_count;
2010
2011 ret = setup_lttng_msg(cmd_ctx, sizeof(struct lttng_domain) * nb_dom);
2012 if (ret < 0) {
2013 goto setup_error;
2014 }
2015
2016 ((struct lttng_domain *)(cmd_ctx->llm->payload))[0].type =
2017 LTTNG_DOMAIN_KERNEL;
2018
2019 /* TODO: User-space tracer domain support */
2020 ret = LTTCOMM_OK;
2021 break;
2022 }
2023 case LTTNG_LIST_CHANNELS:
2024 {
2025 /*
2026 * TODO: Only kernel channels are listed here. UST listing
2027 * is needed on lttng-ust 2.0 release.
2028 */
2029 size_t nb_chan = 0;
2030 if (cmd_ctx->session->kernel_session != NULL) {
2031 nb_chan += cmd_ctx->session->kernel_session->channel_count;
2032 }
2033
2034 ret = setup_lttng_msg(cmd_ctx,
2035 sizeof(struct lttng_channel) * nb_chan);
2036 if (ret < 0) {
2037 goto setup_error;
2038 }
2039
2040 list_lttng_channels(cmd_ctx->session,
2041 (struct lttng_channel *)(cmd_ctx->llm->payload));
2042
2043 ret = LTTCOMM_OK;
2044 break;
2045 }
2046 case LTTNG_LIST_EVENTS:
2047 {
2048 /*
2049 * TODO: Only kernel events are listed here. UST listing
2050 * is needed on lttng-ust 2.0 release.
2051 */
2052 size_t nb_event = 0;
2053 struct ltt_kernel_channel *kchan = NULL;
2054
2055 if (cmd_ctx->session->kernel_session != NULL) {
2056 kchan = get_kernel_channel_by_name(cmd_ctx->lsm->u.list.channel_name,
2057 cmd_ctx->session->kernel_session);
2058 if (kchan == NULL) {
2059 ret = LTTCOMM_KERN_CHAN_NOT_FOUND;
2060 goto error;
2061 }
2062 nb_event += kchan->event_count;
2063 }
2064
2065 ret = setup_lttng_msg(cmd_ctx,
2066 sizeof(struct lttng_event) * nb_event);
2067 if (ret < 0) {
2068 goto setup_error;
2069 }
2070
2071 DBG("Listing events (%zu events)", nb_event);
2072
2073 list_lttng_events(kchan,
2074 (struct lttng_event *)(cmd_ctx->llm->payload));
2075
2076 ret = LTTCOMM_OK;
2077 break;
2078 }
2079 case LTTNG_LIST_SESSIONS:
2080 {
2081 lock_session_list();
2082
2083 if (session_list_ptr->count == 0) {
2084 ret = LTTCOMM_NO_SESSION;
2085 unlock_session_list();
2086 goto error;
2087 }
2088
2089 ret = setup_lttng_msg(cmd_ctx, sizeof(struct lttng_session) *
2090 session_list_ptr->count);
2091 if (ret < 0) {
2092 unlock_session_list();
2093 goto setup_error;
2094 }
2095
2096 /* Filled the session array */
2097 list_lttng_sessions((struct lttng_session *)(cmd_ctx->llm->payload));
2098
2099 unlock_session_list();
2100
2101 ret = LTTCOMM_OK;
2102 break;
2103 }
2104
2105 case LTTNG_CALIBRATE:
2106 {
2107 /* Setup lttng message with no payload */
2108 ret = setup_lttng_msg(cmd_ctx, 0);
2109 if (ret < 0) {
2110 goto setup_error;
2111 }
2112
2113 switch (cmd_ctx->lsm->domain.type) {
2114 case LTTNG_DOMAIN_KERNEL:
2115 {
2116 struct lttng_kernel_calibrate kcalibrate;
2117
2118 kcalibrate.type = cmd_ctx->lsm->u.calibrate.type;
2119 ret = kernel_calibrate(kernel_tracer_fd, &kcalibrate);
2120 if (ret < 0) {
2121 ret = LTTCOMM_KERN_ENABLE_FAIL;
2122 goto error;
2123 }
2124 break;
2125 }
2126 default:
2127 /* TODO: Userspace tracing */
2128 ret = LTTCOMM_NOT_IMPLEMENTED;
2129 goto error;
2130 }
2131 ret = LTTCOMM_OK;
2132 break;
2133 }
2134
2135 default:
2136 /* Undefined command */
2137 ret = setup_lttng_msg(cmd_ctx, 0);
2138 if (ret < 0) {
2139 goto setup_error;
2140 }
2141
2142 ret = LTTCOMM_UND;
2143 break;
2144 }
2145
2146 /* Set return code */
2147 cmd_ctx->llm->ret_code = ret;
2148
2149 if (cmd_ctx->session) {
2150 unlock_session(cmd_ctx->session);
2151 }
2152
2153 return ret;
2154
2155 error:
2156 if (cmd_ctx->llm == NULL) {
2157 DBG("Missing llm structure. Allocating one.");
2158 if (setup_lttng_msg(cmd_ctx, 0) < 0) {
2159 goto setup_error;
2160 }
2161 }
2162 /* Notify client of error */
2163 cmd_ctx->llm->ret_code = ret;
2164
2165 setup_error:
2166 if (cmd_ctx->session) {
2167 unlock_session(cmd_ctx->session);
2168 }
2169 return ret;
2170 }
2171
2172 /*
2173 * This thread manage all clients request using the unix client socket for
2174 * communication.
2175 */
2176 static void *thread_manage_clients(void *data)
2177 {
2178 int sock = 0, ret;
2179 struct command_ctx *cmd_ctx = NULL;
2180 struct pollfd pollfd[2];
2181
2182 DBG("[thread] Manage client started");
2183
2184 ret = lttcomm_listen_unix_sock(client_sock);
2185 if (ret < 0) {
2186 goto error;
2187 }
2188
2189 /* First fd is always the quit pipe */
2190 pollfd[0].fd = thread_quit_pipe[0];
2191
2192 /* Apps socket */
2193 pollfd[1].fd = client_sock;
2194 pollfd[1].events = POLLIN;
2195
2196 /* Notify parent pid that we are ready
2197 * to accept command for client side.
2198 */
2199 if (opt_sig_parent) {
2200 kill(ppid, SIGCHLD);
2201 }
2202
2203 while (1) {
2204 DBG("Accepting client command ...");
2205
2206 /* Inifinite blocking call, waiting for transmission */
2207 ret = poll(pollfd, 2, -1);
2208 if (ret < 0) {
2209 perror("poll client thread");
2210 goto error;
2211 }
2212
2213 /* Thread quit pipe has been closed. Killing thread. */
2214 if (pollfd[0].revents == POLLNVAL) {
2215 goto error;
2216 } else if (pollfd[1].revents == POLLERR) {
2217 ERR("Client socket poll error");
2218 goto error;
2219 }
2220
2221 sock = lttcomm_accept_unix_sock(client_sock);
2222 if (sock < 0) {
2223 goto error;
2224 }
2225
2226 /* Allocate context command to process the client request */
2227 cmd_ctx = malloc(sizeof(struct command_ctx));
2228
2229 /* Allocate data buffer for reception */
2230 cmd_ctx->lsm = malloc(sizeof(struct lttcomm_session_msg));
2231 cmd_ctx->llm = NULL;
2232 cmd_ctx->session = NULL;
2233
2234 /*
2235 * Data is received from the lttng client. The struct
2236 * lttcomm_session_msg (lsm) contains the command and data request of
2237 * the client.
2238 */
2239 DBG("Receiving data from client ...");
2240 ret = lttcomm_recv_unix_sock(sock, cmd_ctx->lsm, sizeof(struct lttcomm_session_msg));
2241 if (ret <= 0) {
2242 continue;
2243 }
2244
2245 // TODO: Validate cmd_ctx including sanity check for security purpose.
2246
2247 /*
2248 * This function dispatch the work to the kernel or userspace tracer
2249 * libs and fill the lttcomm_lttng_msg data structure of all the needed
2250 * informations for the client. The command context struct contains
2251 * everything this function may needs.
2252 */
2253 ret = process_client_msg(cmd_ctx);
2254 if (ret < 0) {
2255 /* TODO: Inform client somehow of the fatal error. At this point,
2256 * ret < 0 means that a malloc failed (ENOMEM). */
2257 /* Error detected but still accept command */
2258 clean_command_ctx(&cmd_ctx);
2259 continue;
2260 }
2261
2262 DBG("Sending response (size: %d, retcode: %d)",
2263 cmd_ctx->lttng_msg_size, cmd_ctx->llm->ret_code);
2264 ret = send_unix_sock(sock, cmd_ctx->llm, cmd_ctx->lttng_msg_size);
2265 if (ret < 0) {
2266 ERR("Failed to send data back to client");
2267 }
2268
2269 clean_command_ctx(&cmd_ctx);
2270
2271 /* End of transmission */
2272 close(sock);
2273 }
2274
2275 error:
2276 DBG("Client thread dying");
2277 if (client_sock) {
2278 close(client_sock);
2279 }
2280 if (sock) {
2281 close(sock);
2282 }
2283
2284 unlink(client_unix_sock_path);
2285
2286 clean_command_ctx(&cmd_ctx);
2287 return NULL;
2288 }
2289
2290
2291 /*
2292 * usage function on stderr
2293 */
2294 static void usage(void)
2295 {
2296 fprintf(stderr, "Usage: %s OPTIONS\n\nOptions:\n", progname);
2297 fprintf(stderr, " -h, --help Display this usage.\n");
2298 fprintf(stderr, " -c, --client-sock PATH Specify path for the client unix socket\n");
2299 fprintf(stderr, " -a, --apps-sock PATH Specify path for apps unix socket\n");
2300 fprintf(stderr, " --kconsumerd-err-sock PATH Specify path for the kernel consumer error socket\n");
2301 fprintf(stderr, " --kconsumerd-cmd-sock PATH Specify path for the kernel consumer command socket\n");
2302 fprintf(stderr, " -d, --daemonize Start as a daemon.\n");
2303 fprintf(stderr, " -g, --group NAME Specify the tracing group name. (default: tracing)\n");
2304 fprintf(stderr, " -V, --version Show version number.\n");
2305 fprintf(stderr, " -S, --sig-parent Send SIGCHLD to parent pid to notify readiness.\n");
2306 fprintf(stderr, " -q, --quiet No output at all.\n");
2307 fprintf(stderr, " -v, --verbose Verbose mode. Activate DBG() macro.\n");
2308 fprintf(stderr, " --verbose-kconsumerd Verbose mode for kconsumerd. Activate DBG() macro.\n");
2309 }
2310
2311 /*
2312 * daemon argument parsing
2313 */
2314 static int parse_args(int argc, char **argv)
2315 {
2316 int c;
2317
2318 static struct option long_options[] = {
2319 { "client-sock", 1, 0, 'c' },
2320 { "apps-sock", 1, 0, 'a' },
2321 { "kconsumerd-cmd-sock", 1, 0, 0 },
2322 { "kconsumerd-err-sock", 1, 0, 0 },
2323 { "daemonize", 0, 0, 'd' },
2324 { "sig-parent", 0, 0, 'S' },
2325 { "help", 0, 0, 'h' },
2326 { "group", 1, 0, 'g' },
2327 { "version", 0, 0, 'V' },
2328 { "quiet", 0, 0, 'q' },
2329 { "verbose", 0, 0, 'v' },
2330 { "verbose-kconsumerd", 0, 0, 'Z' },
2331 { NULL, 0, 0, 0 }
2332 };
2333
2334 while (1) {
2335 int option_index = 0;
2336 c = getopt_long(argc, argv, "dhqvVS" "a:c:g:s:E:C:Z", long_options, &option_index);
2337 if (c == -1) {
2338 break;
2339 }
2340
2341 switch (c) {
2342 case 0:
2343 fprintf(stderr, "option %s", long_options[option_index].name);
2344 if (optarg) {
2345 fprintf(stderr, " with arg %s\n", optarg);
2346 }
2347 break;
2348 case 'c':
2349 snprintf(client_unix_sock_path, PATH_MAX, "%s", optarg);
2350 break;
2351 case 'a':
2352 snprintf(apps_unix_sock_path, PATH_MAX, "%s", optarg);
2353 break;
2354 case 'd':
2355 opt_daemon = 1;
2356 break;
2357 case 'g':
2358 opt_tracing_group = strdup(optarg);
2359 break;
2360 case 'h':
2361 usage();
2362 exit(EXIT_FAILURE);
2363 case 'V':
2364 fprintf(stdout, "%s\n", VERSION);
2365 exit(EXIT_SUCCESS);
2366 case 'S':
2367 opt_sig_parent = 1;
2368 break;
2369 case 'E':
2370 snprintf(kconsumerd_err_unix_sock_path, PATH_MAX, "%s", optarg);
2371 break;
2372 case 'C':
2373 snprintf(kconsumerd_cmd_unix_sock_path, PATH_MAX, "%s", optarg);
2374 break;
2375 case 'q':
2376 opt_quiet = 1;
2377 break;
2378 case 'v':
2379 /* Verbose level can increase using multiple -v */
2380 opt_verbose += 1;
2381 break;
2382 case 'Z':
2383 opt_verbose_kconsumerd += 1;
2384 break;
2385 default:
2386 /* Unknown option or other error.
2387 * Error is printed by getopt, just return */
2388 return -1;
2389 }
2390 }
2391
2392 return 0;
2393 }
2394
2395 /*
2396 * Creates the two needed socket by the daemon.
2397 * apps_sock - The communication socket for all UST apps.
2398 * client_sock - The communication of the cli tool (lttng).
2399 */
2400 static int init_daemon_socket(void)
2401 {
2402 int ret = 0;
2403 mode_t old_umask;
2404
2405 old_umask = umask(0);
2406
2407 /* Create client tool unix socket */
2408 client_sock = lttcomm_create_unix_sock(client_unix_sock_path);
2409 if (client_sock < 0) {
2410 ERR("Create unix sock failed: %s", client_unix_sock_path);
2411 ret = -1;
2412 goto end;
2413 }
2414
2415 /* File permission MUST be 660 */
2416 ret = chmod(client_unix_sock_path, S_IRUSR | S_IWUSR | S_IRGRP | S_IWGRP);
2417 if (ret < 0) {
2418 ERR("Set file permissions failed: %s", client_unix_sock_path);
2419 perror("chmod");
2420 goto end;
2421 }
2422
2423 /* Create the application unix socket */
2424 apps_sock = lttcomm_create_unix_sock(apps_unix_sock_path);
2425 if (apps_sock < 0) {
2426 ERR("Create unix sock failed: %s", apps_unix_sock_path);
2427 ret = -1;
2428 goto end;
2429 }
2430
2431 /* File permission MUST be 666 */
2432 ret = chmod(apps_unix_sock_path, S_IRUSR | S_IWUSR | S_IRGRP | S_IWGRP | S_IROTH | S_IWOTH);
2433 if (ret < 0) {
2434 ERR("Set file permissions failed: %s", apps_unix_sock_path);
2435 perror("chmod");
2436 goto end;
2437 }
2438
2439 end:
2440 umask(old_umask);
2441 return ret;
2442 }
2443
2444 /*
2445 * Check if the global socket is available, and if a daemon is answering
2446 * at the other side. If yes, error is returned.
2447 */
2448 static int check_existing_daemon(void)
2449 {
2450 if (access(client_unix_sock_path, F_OK) < 0 &&
2451 access(apps_unix_sock_path, F_OK) < 0)
2452 return 0;
2453 /* Is there anybody out there ? */
2454 if (lttng_session_daemon_alive())
2455 return -EEXIST;
2456 else
2457 return 0;
2458 }
2459
2460 /*
2461 * Set the tracing group gid onto the client socket.
2462 *
2463 * Race window between mkdir and chown is OK because we are going from more
2464 * permissive (root.root) to les permissive (root.tracing).
2465 */
2466 static int set_permissions(void)
2467 {
2468 int ret;
2469 gid_t gid;
2470
2471 gid = allowed_group();
2472 if (gid < 0) {
2473 if (is_root) {
2474 WARN("No tracing group detected");
2475 ret = 0;
2476 } else {
2477 ERR("Missing tracing group. Aborting execution.");
2478 ret = -1;
2479 }
2480 goto end;
2481 }
2482
2483 /* Set lttng run dir */
2484 ret = chown(LTTNG_RUNDIR, 0, gid);
2485 if (ret < 0) {
2486 ERR("Unable to set group on " LTTNG_RUNDIR);
2487 perror("chown");
2488 }
2489
2490 /* lttng client socket path */
2491 ret = chown(client_unix_sock_path, 0, gid);
2492 if (ret < 0) {
2493 ERR("Unable to set group on %s", client_unix_sock_path);
2494 perror("chown");
2495 }
2496
2497 /* kconsumerd error socket path */
2498 ret = chown(kconsumerd_err_unix_sock_path, 0, gid);
2499 if (ret < 0) {
2500 ERR("Unable to set group on %s", kconsumerd_err_unix_sock_path);
2501 perror("chown");
2502 }
2503
2504 DBG("All permissions are set");
2505
2506 end:
2507 return ret;
2508 }
2509
2510 /*
2511 * Create the pipe used to wake up the kernel thread.
2512 */
2513 static int create_kernel_poll_pipe(void)
2514 {
2515 return pipe2(kernel_poll_pipe, O_CLOEXEC);
2516 }
2517
2518 /*
2519 * Create the lttng run directory needed for all global sockets and pipe.
2520 */
2521 static int create_lttng_rundir(void)
2522 {
2523 int ret;
2524
2525 ret = mkdir(LTTNG_RUNDIR, S_IRWXU | S_IRWXG );
2526 if (ret < 0) {
2527 if (errno != EEXIST) {
2528 ERR("Unable to create " LTTNG_RUNDIR);
2529 goto error;
2530 } else {
2531 ret = 0;
2532 }
2533 }
2534
2535 error:
2536 return ret;
2537 }
2538
2539 /*
2540 * Setup sockets and directory needed by the kconsumerd communication with the
2541 * session daemon.
2542 */
2543 static int set_kconsumerd_sockets(void)
2544 {
2545 int ret;
2546
2547 if (strlen(kconsumerd_err_unix_sock_path) == 0) {
2548 snprintf(kconsumerd_err_unix_sock_path, PATH_MAX, KCONSUMERD_ERR_SOCK_PATH);
2549 }
2550
2551 if (strlen(kconsumerd_cmd_unix_sock_path) == 0) {
2552 snprintf(kconsumerd_cmd_unix_sock_path, PATH_MAX, KCONSUMERD_CMD_SOCK_PATH);
2553 }
2554
2555 ret = mkdir(KCONSUMERD_PATH, S_IRWXU | S_IRWXG);
2556 if (ret < 0) {
2557 if (errno != EEXIST) {
2558 ERR("Failed to create " KCONSUMERD_PATH);
2559 goto error;
2560 }
2561 ret = 0;
2562 }
2563
2564 /* Create the kconsumerd error unix socket */
2565 kconsumerd_err_sock = lttcomm_create_unix_sock(kconsumerd_err_unix_sock_path);
2566 if (kconsumerd_err_sock < 0) {
2567 ERR("Create unix sock failed: %s", kconsumerd_err_unix_sock_path);
2568 ret = -1;
2569 goto error;
2570 }
2571
2572 /* File permission MUST be 660 */
2573 ret = chmod(kconsumerd_err_unix_sock_path, S_IRUSR | S_IWUSR | S_IRGRP | S_IWGRP);
2574 if (ret < 0) {
2575 ERR("Set file permissions failed: %s", kconsumerd_err_unix_sock_path);
2576 perror("chmod");
2577 goto error;
2578 }
2579
2580 error:
2581 return ret;
2582 }
2583
2584 /*
2585 * Signal handler for the daemon
2586 *
2587 * Simply stop all worker threads, leaving main() return gracefully
2588 * after joining all threads and calling cleanup().
2589 */
2590 static void sighandler(int sig)
2591 {
2592 switch (sig) {
2593 case SIGPIPE:
2594 DBG("SIGPIPE catched");
2595 return;
2596 case SIGINT:
2597 DBG("SIGINT catched");
2598 stop_threads();
2599 break;
2600 case SIGTERM:
2601 DBG("SIGTERM catched");
2602 stop_threads();
2603 break;
2604 default:
2605 break;
2606 }
2607 }
2608
2609 /*
2610 * Setup signal handler for :
2611 * SIGINT, SIGTERM, SIGPIPE
2612 */
2613 static int set_signal_handler(void)
2614 {
2615 int ret = 0;
2616 struct sigaction sa;
2617 sigset_t sigset;
2618
2619 if ((ret = sigemptyset(&sigset)) < 0) {
2620 perror("sigemptyset");
2621 return ret;
2622 }
2623
2624 sa.sa_handler = sighandler;
2625 sa.sa_mask = sigset;
2626 sa.sa_flags = 0;
2627 if ((ret = sigaction(SIGTERM, &sa, NULL)) < 0) {
2628 perror("sigaction");
2629 return ret;
2630 }
2631
2632 if ((ret = sigaction(SIGINT, &sa, NULL)) < 0) {
2633 perror("sigaction");
2634 return ret;
2635 }
2636
2637 if ((ret = sigaction(SIGPIPE, &sa, NULL)) < 0) {
2638 perror("sigaction");
2639 return ret;
2640 }
2641
2642 DBG("Signal handler set for SIGTERM, SIGPIPE and SIGINT");
2643
2644 return ret;
2645 }
2646
2647 /*
2648 * Set open files limit to unlimited. This daemon can open a large number of
2649 * file descriptors in order to consumer multiple kernel traces.
2650 */
2651 static void set_ulimit(void)
2652 {
2653 int ret;
2654 struct rlimit lim;
2655
2656 /* The kernel does not allowed an infinite limit for open files */
2657 lim.rlim_cur = 65535;
2658 lim.rlim_max = 65535;
2659
2660 ret = setrlimit(RLIMIT_NOFILE, &lim);
2661 if (ret < 0) {
2662 perror("failed to set open files limit");
2663 }
2664 }
2665
2666 /*
2667 * main
2668 */
2669 int main(int argc, char **argv)
2670 {
2671 int ret = 0;
2672 void *status;
2673 const char *home_path;
2674
2675 /* Create thread quit pipe */
2676 if ((ret = init_thread_quit_pipe()) < 0) {
2677 goto error;
2678 }
2679
2680 /* Parse arguments */
2681 progname = argv[0];
2682 if ((ret = parse_args(argc, argv) < 0)) {
2683 goto error;
2684 }
2685
2686 /* Daemonize */
2687 if (opt_daemon) {
2688 ret = daemon(0, 0);
2689 if (ret < 0) {
2690 perror("daemon");
2691 goto error;
2692 }
2693 }
2694
2695 /* Check if daemon is UID = 0 */
2696 is_root = !getuid();
2697
2698 if (is_root) {
2699 ret = create_lttng_rundir();
2700 if (ret < 0) {
2701 goto error;
2702 }
2703
2704 if (strlen(apps_unix_sock_path) == 0) {
2705 snprintf(apps_unix_sock_path, PATH_MAX,
2706 DEFAULT_GLOBAL_APPS_UNIX_SOCK);
2707 }
2708
2709 if (strlen(client_unix_sock_path) == 0) {
2710 snprintf(client_unix_sock_path, PATH_MAX,
2711 DEFAULT_GLOBAL_CLIENT_UNIX_SOCK);
2712 }
2713 } else {
2714 home_path = get_home_dir();
2715 if (home_path == NULL) {
2716 /* TODO: Add --socket PATH option */
2717 ERR("Can't get HOME directory for sockets creation.");
2718 ret = -EPERM;
2719 goto error;
2720 }
2721
2722 if (strlen(apps_unix_sock_path) == 0) {
2723 snprintf(apps_unix_sock_path, PATH_MAX,
2724 DEFAULT_HOME_APPS_UNIX_SOCK, home_path);
2725 }
2726
2727 /* Set the cli tool unix socket path */
2728 if (strlen(client_unix_sock_path) == 0) {
2729 snprintf(client_unix_sock_path, PATH_MAX,
2730 DEFAULT_HOME_CLIENT_UNIX_SOCK, home_path);
2731 }
2732 }
2733
2734 DBG("Client socket path %s", client_unix_sock_path);
2735 DBG("Application socket path %s", apps_unix_sock_path);
2736
2737 /*
2738 * See if daemon already exist.
2739 */
2740 if ((ret = check_existing_daemon()) < 0) {
2741 ERR("Already running daemon.\n");
2742 /*
2743 * We do not goto exit because we must not cleanup()
2744 * because a daemon is already running.
2745 */
2746 goto error;
2747 }
2748
2749 /* After this point, we can safely call cleanup() so goto error is used */
2750
2751 /*
2752 * These actions must be executed as root. We do that *after* setting up
2753 * the sockets path because we MUST make the check for another daemon using
2754 * those paths *before* trying to set the kernel consumer sockets and init
2755 * kernel tracer.
2756 */
2757 if (is_root) {
2758 ret = set_kconsumerd_sockets();
2759 if (ret < 0) {
2760 goto exit;
2761 }
2762
2763 /* Setup kernel tracer */
2764 init_kernel_tracer();
2765
2766 /* Set ulimit for open files */
2767 set_ulimit();
2768 }
2769
2770 if ((ret = set_signal_handler()) < 0) {
2771 goto exit;
2772 }
2773
2774 /* Setup the needed unix socket */
2775 if ((ret = init_daemon_socket()) < 0) {
2776 goto exit;
2777 }
2778
2779 /* Set credentials to socket */
2780 if (is_root && ((ret = set_permissions()) < 0)) {
2781 goto exit;
2782 }
2783
2784 /* Get parent pid if -S, --sig-parent is specified. */
2785 if (opt_sig_parent) {
2786 ppid = getppid();
2787 }
2788
2789 /* Setup the kernel pipe for waking up the kernel thread */
2790 if ((ret = create_kernel_poll_pipe()) < 0) {
2791 goto exit;
2792 }
2793
2794 /*
2795 * Get session list pointer. This pointer MUST NOT be free().
2796 * This list is statically declared in session.c
2797 */
2798 session_list_ptr = get_session_list();
2799
2800 /* Create thread to manage the client socket */
2801 ret = pthread_create(&client_thread, NULL, thread_manage_clients, (void *) NULL);
2802 if (ret != 0) {
2803 perror("pthread_create");
2804 goto exit_client;
2805 }
2806
2807 /* Create thread to manage application socket */
2808 ret = pthread_create(&apps_thread, NULL, thread_manage_apps, (void *) NULL);
2809 if (ret != 0) {
2810 perror("pthread_create");
2811 goto exit_apps;
2812 }
2813
2814 /* Create kernel thread to manage kernel event */
2815 ret = pthread_create(&kernel_thread, NULL, thread_manage_kernel, (void *) NULL);
2816 if (ret != 0) {
2817 perror("pthread_create");
2818 goto exit_kernel;
2819 }
2820
2821 ret = pthread_join(kernel_thread, &status);
2822 if (ret != 0) {
2823 perror("pthread_join");
2824 goto error; /* join error, exit without cleanup */
2825 }
2826
2827 exit_kernel:
2828 ret = pthread_join(apps_thread, &status);
2829 if (ret != 0) {
2830 perror("pthread_join");
2831 goto error; /* join error, exit without cleanup */
2832 }
2833
2834 exit_apps:
2835 ret = pthread_join(client_thread, &status);
2836 if (ret != 0) {
2837 perror("pthread_join");
2838 goto error; /* join error, exit without cleanup */
2839 }
2840
2841 ret = join_kconsumerd_thread();
2842 if (ret != 0) {
2843 perror("join_kconsumerd");
2844 goto error; /* join error, exit without cleanup */
2845 }
2846
2847 exit_client:
2848 exit:
2849 /*
2850 * cleanup() is called when no other thread is running.
2851 */
2852 cleanup();
2853 if (!ret)
2854 exit(EXIT_SUCCESS);
2855 error:
2856 exit(EXIT_FAILURE);
2857 }
This page took 0.128395 seconds and 4 git commands to generate.