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