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