relayd: add health instrumentation to threads
[lttng-tools.git] / src / bin / lttng-consumerd / lttng-consumerd.c
CommitLineData
d4a1283e
JD
1/*
2 * Copyright (C) 2011 - Julien Desfossez <julien.desfossez@polymtl.ca>
3 * Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
4 *
d14d33bf
AM
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.
d4a1283e
JD
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 *
d14d33bf
AM
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.
d4a1283e
JD
17 */
18
19#define _GNU_SOURCE
20#include <fcntl.h>
21#include <getopt.h>
22#include <grp.h>
23#include <limits.h>
24#include <pthread.h>
25#include <signal.h>
26#include <stdio.h>
27#include <stdlib.h>
28#include <string.h>
29#include <sys/ipc.h>
1ccfc0e3 30#include <sys/resource.h>
d4a1283e
JD
31#include <sys/shm.h>
32#include <sys/socket.h>
33#include <sys/stat.h>
34#include <sys/types.h>
35#include <urcu/list.h>
36#include <poll.h>
37#include <unistd.h>
03424a9b 38#include <sys/mman.h>
5348b470 39#include <assert.h>
3bd1e081 40#include <config.h>
7753dea8 41#include <urcu/compiler.h>
1ccfc0e3 42#include <ulimit.h>
d4a1283e 43
db758600
DG
44#include <common/defaults.h>
45#include <common/common.h>
f02e1e8a 46#include <common/consumer.h>
331744e3 47#include <common/consumer-timer.h>
fb3a43a9 48#include <common/compat/poll.h>
10a8a223 49#include <common/sessiond-comm/sessiond-comm.h>
10a8a223
DG
50
51#include "lttng-consumerd.h"
d4a1283e 52
99bab54f 53/* TODO : support UST (all direct kernel-ctl accesses). */
3bd1e081 54
d8ef542d 55/* threads (channel handling, poll, metadata, sessiond) */
331744e3 56
d8ef542d 57static pthread_t channel_thread, data_thread, metadata_thread, sessiond_thread;
331744e3 58static pthread_t metadata_timer_thread;
d4a1283e 59
3183dbb0 60/* to count the number of times the user pressed ctrl+c */
13e44745
JD
61static int sigintcount = 0;
62
d4a1283e 63/* Argument variables */
97e19046
DG
64int lttng_opt_quiet; /* not static in error.h */
65int lttng_opt_verbose; /* not static in error.h */
d4a1283e
JD
66static int opt_daemon;
67static const char *progname;
6533b585
DG
68static char command_sock_path[PATH_MAX]; /* Global command socket path */
69static char error_sock_path[PATH_MAX]; /* Global error path */
3bd1e081 70static enum lttng_consumer_type opt_type = LTTNG_CONSUMER_KERNEL;
d4a1283e 71
7753dea8 72/* the liblttngconsumerd context */
3bd1e081 73static struct lttng_consumer_local_data *ctx;
cb040cc1 74
d4a1283e 75/*
6533b585 76 * Signal handler for the daemon
d4a1283e
JD
77 */
78static void sighandler(int sig)
79{
13e44745
JD
80 if (sig == SIGINT && sigintcount++ == 0) {
81 DBG("ignoring first SIGINT");
82 return;
83 }
84
ab1027f4
DG
85 /*
86 * Ignore SIGPIPE because it should not stop the consumer whenever a
87 * SIGPIPE is catched through a FD operation.
88 */
89 if (sig == SIGPIPE) {
90 return;
91 }
92
3bd1e081 93 lttng_consumer_should_exit(ctx);
d4a1283e
JD
94}
95
96/*
6533b585 97 * Setup signal handler for :
d4a1283e
JD
98 * SIGINT, SIGTERM, SIGPIPE
99 */
100static int set_signal_handler(void)
101{
102 int ret = 0;
103 struct sigaction sa;
104 sigset_t sigset;
105
106 if ((ret = sigemptyset(&sigset)) < 0) {
107 perror("sigemptyset");
108 return ret;
109 }
110
111 sa.sa_handler = sighandler;
112 sa.sa_mask = sigset;
113 sa.sa_flags = 0;
114 if ((ret = sigaction(SIGTERM, &sa, NULL)) < 0) {
115 perror("sigaction");
116 return ret;
117 }
118
119 if ((ret = sigaction(SIGINT, &sa, NULL)) < 0) {
120 perror("sigaction");
121 return ret;
122 }
123
124 if ((ret = sigaction(SIGPIPE, &sa, NULL)) < 0) {
125 perror("sigaction");
126 return ret;
127 }
128
129 return ret;
130}
131
d4a1283e 132/*
3183dbb0 133 * Usage function on stream file.
d4a1283e 134 */
3183dbb0 135static void usage(FILE *fp)
d4a1283e 136{
3183dbb0
DG
137 fprintf(fp, "Usage: %s OPTIONS\n\nOptions:\n", progname);
138 fprintf(fp, " -h, --help "
d4a1283e 139 "Display this usage.\n");
3183dbb0 140 fprintf(fp, " -c, --consumerd-cmd-sock PATH "
d4a1283e 141 "Specify path for the command socket\n");
3183dbb0 142 fprintf(fp, " -e, --consumerd-err-sock PATH "
d4a1283e 143 "Specify path for the error socket\n");
3183dbb0 144 fprintf(fp, " -d, --daemonize "
d4a1283e 145 "Start as a daemon.\n");
3183dbb0 146 fprintf(fp, " -q, --quiet "
d4a1283e 147 "No output at all.\n");
3183dbb0 148 fprintf(fp, " -v, --verbose "
d4a1283e 149 "Verbose mode. Activate DBG() macro.\n");
3183dbb0 150 fprintf(fp, " -V, --version "
d4a1283e 151 "Show version number.\n");
3183dbb0 152 fprintf(fp, " -k, --kernel "
3bd1e081 153 "Consumer kernel buffers (default).\n");
3183dbb0 154 fprintf(fp, " -u, --ust "
3bd1e081 155 "Consumer UST buffers.%s\n",
74d0b642 156#ifdef HAVE_LIBLTTNG_UST_CTL
3bd1e081
MD
157 ""
158#else
159 " (support not compiled in)"
160#endif
161 );
d4a1283e
JD
162}
163
164/*
165 * daemon argument parsing
166 */
167static void parse_args(int argc, char **argv)
168{
169 int c;
170
171 static struct option long_options[] = {
7753dea8
MD
172 { "consumerd-cmd-sock", 1, 0, 'c' },
173 { "consumerd-err-sock", 1, 0, 'e' },
d4a1283e
JD
174 { "daemonize", 0, 0, 'd' },
175 { "help", 0, 0, 'h' },
176 { "quiet", 0, 0, 'q' },
177 { "verbose", 0, 0, 'v' },
178 { "version", 0, 0, 'V' },
3bd1e081 179 { "kernel", 0, 0, 'k' },
74d0b642 180#ifdef HAVE_LIBLTTNG_UST_CTL
3bd1e081
MD
181 { "ust", 0, 0, 'u' },
182#endif
d4a1283e
JD
183 { NULL, 0, 0, 0 }
184 };
185
186 while (1) {
187 int option_index = 0;
3bd1e081 188 c = getopt_long(argc, argv, "dhqvVku" "c:e:", long_options, &option_index);
d4a1283e
JD
189 if (c == -1) {
190 break;
191 }
192
193 switch (c) {
914a571b
JD
194 case 0:
195 fprintf(stderr, "option %s", long_options[option_index].name);
196 if (optarg) {
197 fprintf(stderr, " with arg %s\n", optarg);
198 }
199 break;
200 case 'c':
201 snprintf(command_sock_path, PATH_MAX, "%s", optarg);
202 break;
203 case 'e':
204 snprintf(error_sock_path, PATH_MAX, "%s", optarg);
205 break;
206 case 'd':
207 opt_daemon = 1;
208 break;
209 case 'h':
3183dbb0
DG
210 usage(stdout);
211 exit(EXIT_SUCCESS);
914a571b 212 case 'q':
97e19046 213 lttng_opt_quiet = 1;
914a571b
JD
214 break;
215 case 'v':
97e19046 216 lttng_opt_verbose = 1;
914a571b
JD
217 break;
218 case 'V':
219 fprintf(stdout, "%s\n", VERSION);
220 exit(EXIT_SUCCESS);
3bd1e081
MD
221 case 'k':
222 opt_type = LTTNG_CONSUMER_KERNEL;
223 break;
74d0b642 224#ifdef HAVE_LIBLTTNG_UST_CTL
3bd1e081 225 case 'u':
7753dea8
MD
226# if (CAA_BITS_PER_LONG == 64)
227 opt_type = LTTNG_CONSUMER64_UST;
228# elif (CAA_BITS_PER_LONG == 32)
229 opt_type = LTTNG_CONSUMER32_UST;
230# else
231# error "Unknown bitness"
232# endif
3bd1e081
MD
233 break;
234#endif
914a571b 235 default:
3183dbb0 236 usage(stderr);
914a571b 237 exit(EXIT_FAILURE);
d4a1283e
JD
238 }
239 }
240}
241
1ccfc0e3
DG
242/*
243 * Set open files limit to unlimited. This daemon can open a large number of
244 * file descriptors in order to consumer multiple kernel traces.
245 */
246static void set_ulimit(void)
247{
248 int ret;
249 struct rlimit lim;
250
251 /* The kernel does not allowed an infinite limit for open files */
252 lim.rlim_cur = 65535;
253 lim.rlim_max = 65535;
254
255 ret = setrlimit(RLIMIT_NOFILE, &lim);
256 if (ret < 0) {
257 PERROR("failed to set open files limit");
258 }
259}
260
d4a1283e
JD
261/*
262 * main
263 */
264int main(int argc, char **argv)
265{
d4a1283e
JD
266 int ret = 0;
267 void *status;
268
269 /* Parse arguments */
270 progname = argv[0];
271 parse_args(argc, argv);
272
273 /* Daemonize */
274 if (opt_daemon) {
ceed52b5
MD
275 int i;
276
277 /*
278 * fork
279 * child: setsid, close FD 0, 1, 2, chdir /
280 * parent: exit (if fork is successful)
281 */
d4a1283e
JD
282 ret = daemon(0, 0);
283 if (ret < 0) {
ceed52b5 284 PERROR("daemon");
d4a1283e
JD
285 goto error;
286 }
ceed52b5
MD
287 /*
288 * We are in the child. Make sure all other file
289 * descriptors are closed, in case we are called with
290 * more opened file descriptors than the standard ones.
291 */
292 for (i = 3; i < sysconf(_SC_OPEN_MAX); i++) {
293 (void) close(i);
294 }
d4a1283e
JD
295 }
296
fb3a43a9
DG
297 /* Set up max poll set size */
298 lttng_poll_set_max_size();
299
9d035200 300 if (*command_sock_path == '\0') {
7753dea8
MD
301 switch (opt_type) {
302 case LTTNG_CONSUMER_KERNEL:
60922cb0 303 snprintf(command_sock_path, PATH_MAX, DEFAULT_KCONSUMERD_CMD_SOCK_PATH,
990570ed 304 DEFAULT_LTTNG_RUNDIR);
7753dea8
MD
305 break;
306 case LTTNG_CONSUMER64_UST:
67e40797 307 snprintf(command_sock_path, PATH_MAX,
60922cb0 308 DEFAULT_USTCONSUMERD64_CMD_SOCK_PATH, DEFAULT_LTTNG_RUNDIR);
7753dea8
MD
309 break;
310 case LTTNG_CONSUMER32_UST:
67e40797 311 snprintf(command_sock_path, PATH_MAX,
60922cb0 312 DEFAULT_USTCONSUMERD32_CMD_SOCK_PATH, DEFAULT_LTTNG_RUNDIR);
7753dea8
MD
313 break;
314 default:
315 WARN("Unknown consumerd type");
316 goto error;
317 }
d4a1283e 318 }
e4421fec
DG
319
320 /* Init */
321 lttng_consumer_init();
322
1ccfc0e3
DG
323 if (!getuid()) {
324 /* Set limit for open files */
325 set_ulimit();
326 }
327
5348b470 328 /* create the consumer instance with and assign the callbacks */
d41f73b7
MD
329 ctx = lttng_consumer_create(opt_type, lttng_consumer_read_subbuffer,
330 NULL, lttng_consumer_on_recv_stream, NULL);
cb040cc1
JD
331 if (ctx == NULL) {
332 goto error;
333 }
334
3bd1e081 335 lttng_consumer_set_command_sock_path(ctx, command_sock_path);
9d035200 336 if (*error_sock_path == '\0') {
7753dea8
MD
337 switch (opt_type) {
338 case LTTNG_CONSUMER_KERNEL:
60922cb0 339 snprintf(error_sock_path, PATH_MAX, DEFAULT_KCONSUMERD_ERR_SOCK_PATH,
990570ed 340 DEFAULT_LTTNG_RUNDIR);
7753dea8
MD
341 break;
342 case LTTNG_CONSUMER64_UST:
67e40797 343 snprintf(error_sock_path, PATH_MAX,
60922cb0 344 DEFAULT_USTCONSUMERD64_ERR_SOCK_PATH, DEFAULT_LTTNG_RUNDIR);
7753dea8
MD
345 break;
346 case LTTNG_CONSUMER32_UST:
67e40797 347 snprintf(error_sock_path, PATH_MAX,
60922cb0 348 DEFAULT_USTCONSUMERD32_ERR_SOCK_PATH, DEFAULT_LTTNG_RUNDIR);
7753dea8
MD
349 break;
350 default:
351 WARN("Unknown consumerd type");
352 goto error;
353 }
d4a1283e
JD
354 }
355
356 if (set_signal_handler() < 0) {
357 goto error;
358 }
359
32258573 360 /* Connect to the socket created by lttng-sessiond to report errors */
d4a1283e 361 DBG("Connecting to error socket %s", error_sock_path);
1ce86c9a 362 ret = lttcomm_connect_unix_sock(error_sock_path);
32258573 363 /* not a fatal error, but all communication with lttng-sessiond will fail */
1ce86c9a 364 if (ret < 0) {
99bab54f 365 WARN("Cannot connect to error socket (is lttng-sessiond started?)");
d4a1283e 366 }
3bd1e081 367 lttng_consumer_set_error_sock(ctx, ret);
d4a1283e 368
331744e3 369 /*
d3e2ba59
JD
370 * Block RT signals used for UST periodical metadata flush and the live
371 * timer in main, and create a dedicated thread to handle these signals.
331744e3 372 */
d3e2ba59
JD
373 consumer_signal_init();
374
331744e3
JD
375 ctx->type = opt_type;
376
554831e7
MD
377 /* Initialize communication library */
378 lttcomm_init();
379
d8ef542d
MD
380 /* Create thread to manage channels */
381 ret = pthread_create(&channel_thread, NULL, consumer_thread_channel_poll,
382 (void *) ctx);
383 if (ret != 0) {
384 perror("pthread_create");
385 goto error;
386 }
387
7d980def 388 /* Create thread to manage the polling/writing of trace metadata */
df27ef7b 389 ret = pthread_create(&metadata_thread, NULL, consumer_thread_metadata_poll,
7d980def
DG
390 (void *) ctx);
391 if (ret != 0) {
392 perror("pthread_create");
d8ef542d 393 goto metadata_error;
7d980def
DG
394 }
395
396 /* Create thread to manage the polling/writing of trace data */
df27ef7b 397 ret = pthread_create(&data_thread, NULL, consumer_thread_data_poll,
cb040cc1 398 (void *) ctx);
d4a1283e
JD
399 if (ret != 0) {
400 perror("pthread_create");
df27ef7b 401 goto data_error;
d4a1283e
JD
402 }
403
7d980def 404 /* Create the thread to manage the receive of fd */
df27ef7b 405 ret = pthread_create(&sessiond_thread, NULL, consumer_thread_sessiond_poll,
cb040cc1 406 (void *) ctx);
d4a1283e
JD
407 if (ret != 0) {
408 perror("pthread_create");
df27ef7b
DG
409 goto sessiond_error;
410 }
411
d3e2ba59
JD
412 /*
413 * Create the thread to manage the UST metadata periodic timer and
414 * live timer.
415 */
416 ret = pthread_create(&metadata_timer_thread, NULL,
417 consumer_timer_thread, (void *) ctx);
418 if (ret != 0) {
419 perror("pthread_create");
420 goto metadata_timer_error;
421 }
331744e3 422
d3e2ba59
JD
423 ret = pthread_detach(metadata_timer_thread);
424 if (ret) {
425 errno = ret;
426 perror("pthread_detach");
331744e3
JD
427 }
428
429metadata_timer_error:
df27ef7b
DG
430 ret = pthread_join(sessiond_thread, &status);
431 if (ret != 0) {
432 perror("pthread_join");
d4a1283e
JD
433 goto error;
434 }
435
df27ef7b
DG
436sessiond_error:
437 ret = pthread_join(data_thread, &status);
438 if (ret != 0) {
439 perror("pthread_join");
440 goto error;
441 }
442
443data_error:
444 ret = pthread_join(metadata_thread, &status);
445 if (ret != 0) {
446 perror("pthread_join");
447 goto error;
448 }
449
d8ef542d
MD
450metadata_error:
451 ret = pthread_join(channel_thread, &status);
452 if (ret != 0) {
453 perror("pthread_join");
454 goto error;
455 }
456
df27ef7b
DG
457 if (!ret) {
458 ret = EXIT_SUCCESS;
459 lttng_consumer_send_error(ctx, LTTCOMM_CONSUMERD_EXIT_SUCCESS);
460 goto end;
d4a1283e 461 }
d4a1283e
JD
462
463error:
464 ret = EXIT_FAILURE;
094d1690
DG
465 if (ctx) {
466 lttng_consumer_send_error(ctx, LTTCOMM_CONSUMERD_EXIT_FAILURE);
467 }
d4a1283e
JD
468
469end:
3bd1e081
MD
470 lttng_consumer_destroy(ctx);
471 lttng_consumer_cleanup();
d4a1283e
JD
472
473 return ret;
474}
This page took 0.057223 seconds and 4 git commands to generate.