2 * Copyright (C) 2011 - Julien Desfossez <julien.desfossez@polymtl.ca>
3 * Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
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.
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.
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.
30 #include <sys/resource.h>
32 #include <sys/socket.h>
34 #include <sys/types.h>
35 #include <urcu/list.h>
41 #include <urcu/compiler.h>
44 #include <common/defaults.h>
45 #include <common/common.h>
46 #include <common/consumer.h>
47 #include <common/consumer-timer.h>
48 #include <common/compat/poll.h>
49 #include <common/sessiond-comm/sessiond-comm.h>
50 #include <common/utils.h>
52 #include "lttng-consumerd.h"
53 #include "health-consumerd.h"
55 /* TODO : support UST (all direct kernel-ctl accesses). */
57 /* threads (channel handling, poll, metadata, sessiond) */
59 static pthread_t channel_thread
, data_thread
, metadata_thread
,
60 sessiond_thread
, metadata_timer_thread
, health_thread
;
62 /* to count the number of times the user pressed ctrl+c */
63 static int sigintcount
= 0;
65 /* Argument variables */
66 int lttng_opt_quiet
; /* not static in error.h */
67 int lttng_opt_verbose
; /* not static in error.h */
68 int lttng_opt_mi
; /* not static in error.h */
70 static int opt_daemon
;
71 static const char *progname
;
72 static char command_sock_path
[PATH_MAX
]; /* Global command socket path */
73 static char error_sock_path
[PATH_MAX
]; /* Global error path */
74 static enum lttng_consumer_type opt_type
= LTTNG_CONSUMER_KERNEL
;
76 /* the liblttngconsumerd context */
77 static struct lttng_consumer_local_data
*ctx
;
79 /* Consumerd health monitoring */
80 struct health_app
*health_consumerd
;
82 const char *tracing_group_name
= DEFAULT_TRACING_GROUP
;
84 int lttng_consumer_ready
= NR_LTTNG_CONSUMER_READY
;
86 enum lttng_consumer_type
lttng_consumer_get_type(void)
89 return LTTNG_CONSUMER_UNKNOWN
;
95 * Signal handler for the daemon
97 static void sighandler(int sig
)
99 if (sig
== SIGINT
&& sigintcount
++ == 0) {
100 DBG("ignoring first SIGINT");
105 * Ignore SIGPIPE because it should not stop the consumer whenever a
106 * SIGPIPE is catched through a FD operation.
108 if (sig
== SIGPIPE
) {
112 lttng_consumer_should_exit(ctx
);
116 * Setup signal handler for :
117 * SIGINT, SIGTERM, SIGPIPE
119 static int set_signal_handler(void)
125 if ((ret
= sigemptyset(&sigset
)) < 0) {
126 perror("sigemptyset");
130 sa
.sa_handler
= sighandler
;
133 if ((ret
= sigaction(SIGTERM
, &sa
, NULL
)) < 0) {
138 if ((ret
= sigaction(SIGINT
, &sa
, NULL
)) < 0) {
143 if ((ret
= sigaction(SIGPIPE
, &sa
, NULL
)) < 0) {
152 * Usage function on stream file.
154 static void usage(FILE *fp
)
156 fprintf(fp
, "Usage: %s OPTIONS\n\nOptions:\n", progname
);
157 fprintf(fp
, " -h, --help "
158 "Display this usage.\n");
159 fprintf(fp
, " -c, --consumerd-cmd-sock PATH "
160 "Specify path for the command socket\n");
161 fprintf(fp
, " -e, --consumerd-err-sock PATH "
162 "Specify path for the error socket\n");
163 fprintf(fp
, " -d, --daemonize "
164 "Start as a daemon.\n");
165 fprintf(fp
, " -q, --quiet "
166 "No output at all.\n");
167 fprintf(fp
, " -v, --verbose "
168 "Verbose mode. Activate DBG() macro.\n");
169 fprintf(fp
, " -V, --version "
170 "Show version number.\n");
171 fprintf(fp
, " -g, --group NAME "
172 "Specify the tracing group name. (default: tracing)\n");
173 fprintf(fp
, " -k, --kernel "
174 "Consumer kernel buffers (default).\n");
175 fprintf(fp
, " -u, --ust "
176 "Consumer UST buffers.%s\n",
177 #ifdef HAVE_LIBLTTNG_UST_CTL
180 " (support not compiled in)"
186 * daemon argument parsing
188 static void parse_args(int argc
, char **argv
)
192 static struct option long_options
[] = {
193 { "consumerd-cmd-sock", 1, 0, 'c' },
194 { "consumerd-err-sock", 1, 0, 'e' },
195 { "daemonize", 0, 0, 'd' },
196 { "group", 1, 0, 'g' },
197 { "help", 0, 0, 'h' },
198 { "quiet", 0, 0, 'q' },
199 { "verbose", 0, 0, 'v' },
200 { "version", 0, 0, 'V' },
201 { "kernel", 0, 0, 'k' },
202 #ifdef HAVE_LIBLTTNG_UST_CTL
203 { "ust", 0, 0, 'u' },
209 int option_index
= 0;
210 c
= getopt_long(argc
, argv
, "dhqvVku" "c:e:g:", long_options
, &option_index
);
217 fprintf(stderr
, "option %s", long_options
[option_index
].name
);
219 fprintf(stderr
, " with arg %s\n", optarg
);
223 snprintf(command_sock_path
, PATH_MAX
, "%s", optarg
);
226 snprintf(error_sock_path
, PATH_MAX
, "%s", optarg
);
232 tracing_group_name
= optarg
;
241 lttng_opt_verbose
= 1;
244 fprintf(stdout
, "%s\n", VERSION
);
247 opt_type
= LTTNG_CONSUMER_KERNEL
;
249 #ifdef HAVE_LIBLTTNG_UST_CTL
251 # if (CAA_BITS_PER_LONG == 64)
252 opt_type
= LTTNG_CONSUMER64_UST
;
253 # elif (CAA_BITS_PER_LONG == 32)
254 opt_type
= LTTNG_CONSUMER32_UST
;
256 # error "Unknown bitness"
268 * Set open files limit to unlimited. This daemon can open a large number of
269 * file descriptors in order to consumer multiple kernel traces.
271 static void set_ulimit(void)
276 /* The kernel does not allowed an infinite limit for open files */
277 lim
.rlim_cur
= 65535;
278 lim
.rlim_max
= 65535;
280 ret
= setrlimit(RLIMIT_NOFILE
, &lim
);
282 PERROR("failed to set open files limit");
289 int main(int argc
, char **argv
)
294 /* Parse arguments */
296 parse_args(argc
, argv
);
304 * child: setsid, close FD 0, 1, 2, chdir /
305 * parent: exit (if fork is successful)
313 * We are in the child. Make sure all other file
314 * descriptors are closed, in case we are called with
315 * more opened file descriptors than the standard ones.
317 for (i
= 3; i
< sysconf(_SC_OPEN_MAX
); i
++) {
322 /* Set up max poll set size */
323 lttng_poll_set_max_size();
325 if (*command_sock_path
== '\0') {
327 case LTTNG_CONSUMER_KERNEL
:
328 snprintf(command_sock_path
, PATH_MAX
, DEFAULT_KCONSUMERD_CMD_SOCK_PATH
,
329 DEFAULT_LTTNG_RUNDIR
);
331 case LTTNG_CONSUMER64_UST
:
332 snprintf(command_sock_path
, PATH_MAX
,
333 DEFAULT_USTCONSUMERD64_CMD_SOCK_PATH
, DEFAULT_LTTNG_RUNDIR
);
335 case LTTNG_CONSUMER32_UST
:
336 snprintf(command_sock_path
, PATH_MAX
,
337 DEFAULT_USTCONSUMERD32_CMD_SOCK_PATH
, DEFAULT_LTTNG_RUNDIR
);
340 WARN("Unknown consumerd type");
346 if (lttng_consumer_init() < 0) {
350 /* Init socket timeouts */
355 /* Set limit for open files */
359 health_consumerd
= health_app_create(NR_HEALTH_CONSUMERD_TYPES
);
360 if (!health_consumerd
) {
364 /* create the consumer instance with and assign the callbacks */
365 ctx
= lttng_consumer_create(opt_type
, lttng_consumer_read_subbuffer
,
366 NULL
, lttng_consumer_on_recv_stream
, NULL
);
371 lttng_consumer_set_command_sock_path(ctx
, command_sock_path
);
372 if (*error_sock_path
== '\0') {
374 case LTTNG_CONSUMER_KERNEL
:
375 snprintf(error_sock_path
, PATH_MAX
, DEFAULT_KCONSUMERD_ERR_SOCK_PATH
,
376 DEFAULT_LTTNG_RUNDIR
);
378 case LTTNG_CONSUMER64_UST
:
379 snprintf(error_sock_path
, PATH_MAX
,
380 DEFAULT_USTCONSUMERD64_ERR_SOCK_PATH
, DEFAULT_LTTNG_RUNDIR
);
382 case LTTNG_CONSUMER32_UST
:
383 snprintf(error_sock_path
, PATH_MAX
,
384 DEFAULT_USTCONSUMERD32_ERR_SOCK_PATH
, DEFAULT_LTTNG_RUNDIR
);
387 WARN("Unknown consumerd type");
392 if (set_signal_handler() < 0) {
396 /* Connect to the socket created by lttng-sessiond to report errors */
397 DBG("Connecting to error socket %s", error_sock_path
);
398 ret
= lttcomm_connect_unix_sock(error_sock_path
);
399 /* not a fatal error, but all communication with lttng-sessiond will fail */
401 WARN("Cannot connect to error socket (is lttng-sessiond started?)");
403 lttng_consumer_set_error_sock(ctx
, ret
);
406 * Block RT signals used for UST periodical metadata flush and the live
407 * timer in main, and create a dedicated thread to handle these signals.
409 consumer_signal_init();
411 ctx
->type
= opt_type
;
413 ret
= utils_create_pipe(health_quit_pipe
);
415 goto error_health_pipe
;
418 /* Create thread to manage the client socket */
419 ret
= pthread_create(&health_thread
, NULL
,
420 thread_manage_health
, (void *) NULL
);
422 PERROR("pthread_create health");
427 * Wait for health thread to be initialized before letting the
428 * sessiond thread reply to the sessiond that we are ready.
430 while (uatomic_read(<tng_consumer_ready
)) {
433 cmm_smp_mb(); /* Read ready before following operations */
435 /* Create thread to manage channels */
436 ret
= pthread_create(&channel_thread
, NULL
, consumer_thread_channel_poll
,
439 perror("pthread_create");
443 /* Create thread to manage the polling/writing of trace metadata */
444 ret
= pthread_create(&metadata_thread
, NULL
, consumer_thread_metadata_poll
,
447 perror("pthread_create");
451 /* Create thread to manage the polling/writing of trace data */
452 ret
= pthread_create(&data_thread
, NULL
, consumer_thread_data_poll
,
455 perror("pthread_create");
459 /* Create the thread to manage the receive of fd */
460 ret
= pthread_create(&sessiond_thread
, NULL
, consumer_thread_sessiond_poll
,
463 perror("pthread_create");
468 * Create the thread to manage the UST metadata periodic timer and
471 ret
= pthread_create(&metadata_timer_thread
, NULL
,
472 consumer_timer_thread
, (void *) ctx
);
474 perror("pthread_create");
475 goto metadata_timer_error
;
478 ret
= pthread_detach(metadata_timer_thread
);
481 perror("pthread_detach");
484 metadata_timer_error
:
485 ret
= pthread_join(sessiond_thread
, &status
);
487 perror("pthread_join");
492 ret
= pthread_join(data_thread
, &status
);
494 perror("pthread_join");
499 ret
= pthread_join(metadata_thread
, &status
);
501 perror("pthread_join");
506 ret
= pthread_join(channel_thread
, &status
);
508 perror("pthread_join");
513 ret
= pthread_join(health_thread
, &status
);
515 PERROR("pthread_join health thread");
516 goto error
; /* join error, exit without cleanup */
520 utils_close_pipe(health_quit_pipe
);
532 lttng_consumer_destroy(ctx
);
533 lttng_consumer_cleanup();
534 if (health_consumerd
) {
535 health_app_destroy(health_consumerd
);