Fix: consumerd: HT init/teardown with program
[lttng-tools.git] / src / bin / lttng-consumerd / lttng-consumerd.c
... / ...
CommitLineData
1/*
2 * Copyright (C) 2011 - Julien Desfossez <julien.desfossez@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 <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>
30#include <sys/resource.h>
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>
38#include <sys/mman.h>
39#include <assert.h>
40#include <config.h>
41#include <urcu/compiler.h>
42#include <ulimit.h>
43
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
51#include "lttng-consumerd.h"
52
53/* TODO : support UST (all direct kernel-ctl accesses). */
54
55/* threads (channel handling, poll, metadata, sessiond) */
56
57static pthread_t channel_thread, data_thread, metadata_thread, sessiond_thread;
58static pthread_t metadata_timer_thread;
59
60/* to count the number of times the user pressed ctrl+c */
61static int sigintcount = 0;
62
63/* Argument variables */
64int lttng_opt_quiet; /* not static in error.h */
65int lttng_opt_verbose; /* not static in error.h */
66static int opt_daemon;
67static const char *progname;
68static char command_sock_path[PATH_MAX]; /* Global command socket path */
69static char error_sock_path[PATH_MAX]; /* Global error path */
70static enum lttng_consumer_type opt_type = LTTNG_CONSUMER_KERNEL;
71
72/* the liblttngconsumerd context */
73static struct lttng_consumer_local_data *ctx;
74
75/*
76 * Signal handler for the daemon
77 */
78static void sighandler(int sig)
79{
80 if (sig == SIGINT && sigintcount++ == 0) {
81 DBG("ignoring first SIGINT");
82 return;
83 }
84
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
93 lttng_consumer_should_exit(ctx);
94}
95
96/*
97 * Setup signal handler for :
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
132/*
133 * Usage function on stream file.
134 */
135static void usage(FILE *fp)
136{
137 fprintf(fp, "Usage: %s OPTIONS\n\nOptions:\n", progname);
138 fprintf(fp, " -h, --help "
139 "Display this usage.\n");
140 fprintf(fp, " -c, --consumerd-cmd-sock PATH "
141 "Specify path for the command socket\n");
142 fprintf(fp, " -e, --consumerd-err-sock PATH "
143 "Specify path for the error socket\n");
144 fprintf(fp, " -d, --daemonize "
145 "Start as a daemon.\n");
146 fprintf(fp, " -q, --quiet "
147 "No output at all.\n");
148 fprintf(fp, " -v, --verbose "
149 "Verbose mode. Activate DBG() macro.\n");
150 fprintf(fp, " -V, --version "
151 "Show version number.\n");
152 fprintf(fp, " -k, --kernel "
153 "Consumer kernel buffers (default).\n");
154 fprintf(fp, " -u, --ust "
155 "Consumer UST buffers.%s\n",
156#ifdef HAVE_LIBLTTNG_UST_CTL
157 ""
158#else
159 " (support not compiled in)"
160#endif
161 );
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[] = {
172 { "consumerd-cmd-sock", 1, 0, 'c' },
173 { "consumerd-err-sock", 1, 0, 'e' },
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' },
179 { "kernel", 0, 0, 'k' },
180#ifdef HAVE_LIBLTTNG_UST_CTL
181 { "ust", 0, 0, 'u' },
182#endif
183 { NULL, 0, 0, 0 }
184 };
185
186 while (1) {
187 int option_index = 0;
188 c = getopt_long(argc, argv, "dhqvVku" "c:e:", long_options, &option_index);
189 if (c == -1) {
190 break;
191 }
192
193 switch (c) {
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':
210 usage(stdout);
211 exit(EXIT_SUCCESS);
212 case 'q':
213 lttng_opt_quiet = 1;
214 break;
215 case 'v':
216 lttng_opt_verbose = 1;
217 break;
218 case 'V':
219 fprintf(stdout, "%s\n", VERSION);
220 exit(EXIT_SUCCESS);
221 case 'k':
222 opt_type = LTTNG_CONSUMER_KERNEL;
223 break;
224#ifdef HAVE_LIBLTTNG_UST_CTL
225 case 'u':
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
233 break;
234#endif
235 default:
236 usage(stderr);
237 exit(EXIT_FAILURE);
238 }
239 }
240}
241
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
261/*
262 * main
263 */
264int main(int argc, char **argv)
265{
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) {
275 int i;
276
277 /*
278 * fork
279 * child: setsid, close FD 0, 1, 2, chdir /
280 * parent: exit (if fork is successful)
281 */
282 ret = daemon(0, 0);
283 if (ret < 0) {
284 PERROR("daemon");
285 goto error;
286 }
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 }
295 }
296
297 /* Set up max poll set size */
298 lttng_poll_set_max_size();
299
300 if (*command_sock_path == '\0') {
301 switch (opt_type) {
302 case LTTNG_CONSUMER_KERNEL:
303 snprintf(command_sock_path, PATH_MAX, DEFAULT_KCONSUMERD_CMD_SOCK_PATH,
304 DEFAULT_LTTNG_RUNDIR);
305 break;
306 case LTTNG_CONSUMER64_UST:
307 snprintf(command_sock_path, PATH_MAX,
308 DEFAULT_USTCONSUMERD64_CMD_SOCK_PATH, DEFAULT_LTTNG_RUNDIR);
309 break;
310 case LTTNG_CONSUMER32_UST:
311 snprintf(command_sock_path, PATH_MAX,
312 DEFAULT_USTCONSUMERD32_CMD_SOCK_PATH, DEFAULT_LTTNG_RUNDIR);
313 break;
314 default:
315 WARN("Unknown consumerd type");
316 goto error;
317 }
318 }
319
320 /* Init */
321 if (lttng_consumer_init() < 0) {
322 goto error;
323 }
324
325 /* Init socket timeouts */
326 lttcomm_init();
327 lttcomm_inet_init();
328
329 if (!getuid()) {
330 /* Set limit for open files */
331 set_ulimit();
332 }
333
334 /* create the consumer instance with and assign the callbacks */
335 ctx = lttng_consumer_create(opt_type, lttng_consumer_read_subbuffer,
336 NULL, lttng_consumer_on_recv_stream, NULL);
337 if (ctx == NULL) {
338 goto error;
339 }
340
341 lttng_consumer_set_command_sock_path(ctx, command_sock_path);
342 if (*error_sock_path == '\0') {
343 switch (opt_type) {
344 case LTTNG_CONSUMER_KERNEL:
345 snprintf(error_sock_path, PATH_MAX, DEFAULT_KCONSUMERD_ERR_SOCK_PATH,
346 DEFAULT_LTTNG_RUNDIR);
347 break;
348 case LTTNG_CONSUMER64_UST:
349 snprintf(error_sock_path, PATH_MAX,
350 DEFAULT_USTCONSUMERD64_ERR_SOCK_PATH, DEFAULT_LTTNG_RUNDIR);
351 break;
352 case LTTNG_CONSUMER32_UST:
353 snprintf(error_sock_path, PATH_MAX,
354 DEFAULT_USTCONSUMERD32_ERR_SOCK_PATH, DEFAULT_LTTNG_RUNDIR);
355 break;
356 default:
357 WARN("Unknown consumerd type");
358 goto error;
359 }
360 }
361
362 if (set_signal_handler() < 0) {
363 goto error;
364 }
365
366 /* Connect to the socket created by lttng-sessiond to report errors */
367 DBG("Connecting to error socket %s", error_sock_path);
368 ret = lttcomm_connect_unix_sock(error_sock_path);
369 /* not a fatal error, but all communication with lttng-sessiond will fail */
370 if (ret < 0) {
371 WARN("Cannot connect to error socket (is lttng-sessiond started?)");
372 }
373 lttng_consumer_set_error_sock(ctx, ret);
374
375 /*
376 * For UST consumer, we block RT signals used for periodical metadata flush
377 * in main and create a dedicated thread to handle these signals.
378 */
379 switch (opt_type) {
380 case LTTNG_CONSUMER32_UST:
381 case LTTNG_CONSUMER64_UST:
382 consumer_signal_init();
383 break;
384 default:
385 break;
386 }
387 ctx->type = opt_type;
388
389 /* Initialize communication library */
390 lttcomm_init();
391
392 /* Create thread to manage channels */
393 ret = pthread_create(&channel_thread, NULL, consumer_thread_channel_poll,
394 (void *) ctx);
395 if (ret != 0) {
396 perror("pthread_create");
397 goto error;
398 }
399
400 /* Create thread to manage the polling/writing of trace metadata */
401 ret = pthread_create(&metadata_thread, NULL, consumer_thread_metadata_poll,
402 (void *) ctx);
403 if (ret != 0) {
404 perror("pthread_create");
405 goto metadata_error;
406 }
407
408 /* Create thread to manage the polling/writing of trace data */
409 ret = pthread_create(&data_thread, NULL, consumer_thread_data_poll,
410 (void *) ctx);
411 if (ret != 0) {
412 perror("pthread_create");
413 goto data_error;
414 }
415
416 /* Create the thread to manage the receive of fd */
417 ret = pthread_create(&sessiond_thread, NULL, consumer_thread_sessiond_poll,
418 (void *) ctx);
419 if (ret != 0) {
420 perror("pthread_create");
421 goto sessiond_error;
422 }
423
424 switch (opt_type) {
425 case LTTNG_CONSUMER32_UST:
426 case LTTNG_CONSUMER64_UST:
427 /* Create the thread to manage the metadata periodic timers */
428 ret = pthread_create(&metadata_timer_thread, NULL,
429 consumer_timer_metadata_thread, (void *) ctx);
430 if (ret != 0) {
431 perror("pthread_create");
432 goto metadata_timer_error;
433 }
434
435 ret = pthread_detach(metadata_timer_thread);
436 if (ret) {
437 errno = ret;
438 perror("pthread_detach");
439 }
440 break;
441 default:
442 break;
443 }
444
445metadata_timer_error:
446 ret = pthread_join(sessiond_thread, &status);
447 if (ret != 0) {
448 perror("pthread_join");
449 goto error;
450 }
451
452sessiond_error:
453 ret = pthread_join(data_thread, &status);
454 if (ret != 0) {
455 perror("pthread_join");
456 goto error;
457 }
458
459data_error:
460 ret = pthread_join(metadata_thread, &status);
461 if (ret != 0) {
462 perror("pthread_join");
463 goto error;
464 }
465
466metadata_error:
467 ret = pthread_join(channel_thread, &status);
468 if (ret != 0) {
469 perror("pthread_join");
470 goto error;
471 }
472
473 if (!ret) {
474 ret = EXIT_SUCCESS;
475 lttng_consumer_send_error(ctx, LTTCOMM_CONSUMERD_EXIT_SUCCESS);
476 goto end;
477 }
478
479error:
480 ret = EXIT_FAILURE;
481 if (ctx) {
482 lttng_consumer_send_error(ctx, LTTCOMM_CONSUMERD_EXIT_FAILURE);
483 }
484
485end:
486 lttng_consumer_destroy(ctx);
487 lttng_consumer_cleanup();
488
489 return ret;
490}
This page took 0.02451 seconds and 4 git commands to generate.