Commit | Line | Data |
---|---|---|
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> |
fb3a43a9 | 47 | #include <common/compat/poll.h> |
10a8a223 | 48 | #include <common/sessiond-comm/sessiond-comm.h> |
10a8a223 DG |
49 | |
50 | #include "lttng-consumerd.h" | |
d4a1283e | 51 | |
99bab54f | 52 | /* TODO : support UST (all direct kernel-ctl accesses). */ |
3bd1e081 | 53 | |
fb3a43a9 DG |
54 | /* the two threads (receive fd, poll and metadata) */ |
55 | static pthread_t threads[3]; | |
d4a1283e | 56 | |
3183dbb0 | 57 | /* to count the number of times the user pressed ctrl+c */ |
13e44745 JD |
58 | static int sigintcount = 0; |
59 | ||
d4a1283e | 60 | /* Argument variables */ |
97e19046 DG |
61 | int lttng_opt_quiet; /* not static in error.h */ |
62 | int lttng_opt_verbose; /* not static in error.h */ | |
d4a1283e JD |
63 | static int opt_daemon; |
64 | static const char *progname; | |
6533b585 DG |
65 | static char command_sock_path[PATH_MAX]; /* Global command socket path */ |
66 | static char error_sock_path[PATH_MAX]; /* Global error path */ | |
3bd1e081 | 67 | static enum lttng_consumer_type opt_type = LTTNG_CONSUMER_KERNEL; |
d4a1283e | 68 | |
7753dea8 | 69 | /* the liblttngconsumerd context */ |
3bd1e081 | 70 | static struct lttng_consumer_local_data *ctx; |
cb040cc1 | 71 | |
d4a1283e | 72 | /* |
6533b585 | 73 | * Signal handler for the daemon |
d4a1283e JD |
74 | */ |
75 | static void sighandler(int sig) | |
76 | { | |
13e44745 JD |
77 | if (sig == SIGINT && sigintcount++ == 0) { |
78 | DBG("ignoring first SIGINT"); | |
79 | return; | |
80 | } | |
81 | ||
3bd1e081 | 82 | lttng_consumer_should_exit(ctx); |
d4a1283e JD |
83 | } |
84 | ||
85 | /* | |
6533b585 | 86 | * Setup signal handler for : |
d4a1283e JD |
87 | * SIGINT, SIGTERM, SIGPIPE |
88 | */ | |
89 | static int set_signal_handler(void) | |
90 | { | |
91 | int ret = 0; | |
92 | struct sigaction sa; | |
93 | sigset_t sigset; | |
94 | ||
95 | if ((ret = sigemptyset(&sigset)) < 0) { | |
96 | perror("sigemptyset"); | |
97 | return ret; | |
98 | } | |
99 | ||
100 | sa.sa_handler = sighandler; | |
101 | sa.sa_mask = sigset; | |
102 | sa.sa_flags = 0; | |
103 | if ((ret = sigaction(SIGTERM, &sa, NULL)) < 0) { | |
104 | perror("sigaction"); | |
105 | return ret; | |
106 | } | |
107 | ||
108 | if ((ret = sigaction(SIGINT, &sa, NULL)) < 0) { | |
109 | perror("sigaction"); | |
110 | return ret; | |
111 | } | |
112 | ||
113 | if ((ret = sigaction(SIGPIPE, &sa, NULL)) < 0) { | |
114 | perror("sigaction"); | |
115 | return ret; | |
116 | } | |
117 | ||
118 | return ret; | |
119 | } | |
120 | ||
d4a1283e | 121 | /* |
3183dbb0 | 122 | * Usage function on stream file. |
d4a1283e | 123 | */ |
3183dbb0 | 124 | static void usage(FILE *fp) |
d4a1283e | 125 | { |
3183dbb0 DG |
126 | fprintf(fp, "Usage: %s OPTIONS\n\nOptions:\n", progname); |
127 | fprintf(fp, " -h, --help " | |
d4a1283e | 128 | "Display this usage.\n"); |
3183dbb0 | 129 | fprintf(fp, " -c, --consumerd-cmd-sock PATH " |
d4a1283e | 130 | "Specify path for the command socket\n"); |
3183dbb0 | 131 | fprintf(fp, " -e, --consumerd-err-sock PATH " |
d4a1283e | 132 | "Specify path for the error socket\n"); |
3183dbb0 | 133 | fprintf(fp, " -d, --daemonize " |
d4a1283e | 134 | "Start as a daemon.\n"); |
3183dbb0 | 135 | fprintf(fp, " -q, --quiet " |
d4a1283e | 136 | "No output at all.\n"); |
3183dbb0 | 137 | fprintf(fp, " -v, --verbose " |
d4a1283e | 138 | "Verbose mode. Activate DBG() macro.\n"); |
3183dbb0 | 139 | fprintf(fp, " -V, --version " |
d4a1283e | 140 | "Show version number.\n"); |
3183dbb0 | 141 | fprintf(fp, " -k, --kernel " |
3bd1e081 | 142 | "Consumer kernel buffers (default).\n"); |
3183dbb0 | 143 | fprintf(fp, " -u, --ust " |
3bd1e081 | 144 | "Consumer UST buffers.%s\n", |
74d0b642 | 145 | #ifdef HAVE_LIBLTTNG_UST_CTL |
3bd1e081 MD |
146 | "" |
147 | #else | |
148 | " (support not compiled in)" | |
149 | #endif | |
150 | ); | |
d4a1283e JD |
151 | } |
152 | ||
153 | /* | |
154 | * daemon argument parsing | |
155 | */ | |
156 | static void parse_args(int argc, char **argv) | |
157 | { | |
158 | int c; | |
159 | ||
160 | static struct option long_options[] = { | |
7753dea8 MD |
161 | { "consumerd-cmd-sock", 1, 0, 'c' }, |
162 | { "consumerd-err-sock", 1, 0, 'e' }, | |
d4a1283e JD |
163 | { "daemonize", 0, 0, 'd' }, |
164 | { "help", 0, 0, 'h' }, | |
165 | { "quiet", 0, 0, 'q' }, | |
166 | { "verbose", 0, 0, 'v' }, | |
167 | { "version", 0, 0, 'V' }, | |
3bd1e081 | 168 | { "kernel", 0, 0, 'k' }, |
74d0b642 | 169 | #ifdef HAVE_LIBLTTNG_UST_CTL |
3bd1e081 MD |
170 | { "ust", 0, 0, 'u' }, |
171 | #endif | |
d4a1283e JD |
172 | { NULL, 0, 0, 0 } |
173 | }; | |
174 | ||
175 | while (1) { | |
176 | int option_index = 0; | |
3bd1e081 | 177 | c = getopt_long(argc, argv, "dhqvVku" "c:e:", long_options, &option_index); |
d4a1283e JD |
178 | if (c == -1) { |
179 | break; | |
180 | } | |
181 | ||
182 | switch (c) { | |
914a571b JD |
183 | case 0: |
184 | fprintf(stderr, "option %s", long_options[option_index].name); | |
185 | if (optarg) { | |
186 | fprintf(stderr, " with arg %s\n", optarg); | |
187 | } | |
188 | break; | |
189 | case 'c': | |
190 | snprintf(command_sock_path, PATH_MAX, "%s", optarg); | |
191 | break; | |
192 | case 'e': | |
193 | snprintf(error_sock_path, PATH_MAX, "%s", optarg); | |
194 | break; | |
195 | case 'd': | |
196 | opt_daemon = 1; | |
197 | break; | |
198 | case 'h': | |
3183dbb0 DG |
199 | usage(stdout); |
200 | exit(EXIT_SUCCESS); | |
914a571b | 201 | case 'q': |
97e19046 | 202 | lttng_opt_quiet = 1; |
914a571b JD |
203 | break; |
204 | case 'v': | |
97e19046 | 205 | lttng_opt_verbose = 1; |
914a571b JD |
206 | break; |
207 | case 'V': | |
208 | fprintf(stdout, "%s\n", VERSION); | |
209 | exit(EXIT_SUCCESS); | |
3bd1e081 MD |
210 | case 'k': |
211 | opt_type = LTTNG_CONSUMER_KERNEL; | |
212 | break; | |
74d0b642 | 213 | #ifdef HAVE_LIBLTTNG_UST_CTL |
3bd1e081 | 214 | case 'u': |
7753dea8 MD |
215 | # if (CAA_BITS_PER_LONG == 64) |
216 | opt_type = LTTNG_CONSUMER64_UST; | |
217 | # elif (CAA_BITS_PER_LONG == 32) | |
218 | opt_type = LTTNG_CONSUMER32_UST; | |
219 | # else | |
220 | # error "Unknown bitness" | |
221 | # endif | |
3bd1e081 MD |
222 | break; |
223 | #endif | |
914a571b | 224 | default: |
3183dbb0 | 225 | usage(stderr); |
914a571b | 226 | exit(EXIT_FAILURE); |
d4a1283e JD |
227 | } |
228 | } | |
229 | } | |
230 | ||
1ccfc0e3 DG |
231 | /* |
232 | * Set open files limit to unlimited. This daemon can open a large number of | |
233 | * file descriptors in order to consumer multiple kernel traces. | |
234 | */ | |
235 | static void set_ulimit(void) | |
236 | { | |
237 | int ret; | |
238 | struct rlimit lim; | |
239 | ||
240 | /* The kernel does not allowed an infinite limit for open files */ | |
241 | lim.rlim_cur = 65535; | |
242 | lim.rlim_max = 65535; | |
243 | ||
244 | ret = setrlimit(RLIMIT_NOFILE, &lim); | |
245 | if (ret < 0) { | |
246 | PERROR("failed to set open files limit"); | |
247 | } | |
248 | } | |
249 | ||
d4a1283e JD |
250 | /* |
251 | * main | |
252 | */ | |
253 | int main(int argc, char **argv) | |
254 | { | |
255 | int i; | |
256 | int ret = 0; | |
257 | void *status; | |
258 | ||
259 | /* Parse arguments */ | |
260 | progname = argv[0]; | |
261 | parse_args(argc, argv); | |
262 | ||
263 | /* Daemonize */ | |
264 | if (opt_daemon) { | |
ceed52b5 MD |
265 | int i; |
266 | ||
267 | /* | |
268 | * fork | |
269 | * child: setsid, close FD 0, 1, 2, chdir / | |
270 | * parent: exit (if fork is successful) | |
271 | */ | |
d4a1283e JD |
272 | ret = daemon(0, 0); |
273 | if (ret < 0) { | |
ceed52b5 | 274 | PERROR("daemon"); |
d4a1283e JD |
275 | goto error; |
276 | } | |
ceed52b5 MD |
277 | /* |
278 | * We are in the child. Make sure all other file | |
279 | * descriptors are closed, in case we are called with | |
280 | * more opened file descriptors than the standard ones. | |
281 | */ | |
282 | for (i = 3; i < sysconf(_SC_OPEN_MAX); i++) { | |
283 | (void) close(i); | |
284 | } | |
d4a1283e JD |
285 | } |
286 | ||
fb3a43a9 DG |
287 | /* Set up max poll set size */ |
288 | lttng_poll_set_max_size(); | |
289 | ||
d4a1283e | 290 | if (strlen(command_sock_path) == 0) { |
7753dea8 MD |
291 | switch (opt_type) { |
292 | case LTTNG_CONSUMER_KERNEL: | |
60922cb0 | 293 | snprintf(command_sock_path, PATH_MAX, DEFAULT_KCONSUMERD_CMD_SOCK_PATH, |
990570ed | 294 | DEFAULT_LTTNG_RUNDIR); |
7753dea8 MD |
295 | break; |
296 | case LTTNG_CONSUMER64_UST: | |
67e40797 | 297 | snprintf(command_sock_path, PATH_MAX, |
60922cb0 | 298 | DEFAULT_USTCONSUMERD64_CMD_SOCK_PATH, DEFAULT_LTTNG_RUNDIR); |
7753dea8 MD |
299 | break; |
300 | case LTTNG_CONSUMER32_UST: | |
67e40797 | 301 | snprintf(command_sock_path, PATH_MAX, |
60922cb0 | 302 | DEFAULT_USTCONSUMERD32_CMD_SOCK_PATH, DEFAULT_LTTNG_RUNDIR); |
7753dea8 MD |
303 | break; |
304 | default: | |
305 | WARN("Unknown consumerd type"); | |
306 | goto error; | |
307 | } | |
d4a1283e | 308 | } |
e4421fec DG |
309 | |
310 | /* Init */ | |
311 | lttng_consumer_init(); | |
312 | ||
1ccfc0e3 DG |
313 | if (!getuid()) { |
314 | /* Set limit for open files */ | |
315 | set_ulimit(); | |
316 | } | |
317 | ||
5348b470 | 318 | /* create the consumer instance with and assign the callbacks */ |
d41f73b7 MD |
319 | ctx = lttng_consumer_create(opt_type, lttng_consumer_read_subbuffer, |
320 | NULL, lttng_consumer_on_recv_stream, NULL); | |
cb040cc1 JD |
321 | if (ctx == NULL) { |
322 | goto error; | |
323 | } | |
324 | ||
3bd1e081 | 325 | lttng_consumer_set_command_sock_path(ctx, command_sock_path); |
d4a1283e | 326 | if (strlen(error_sock_path) == 0) { |
7753dea8 MD |
327 | switch (opt_type) { |
328 | case LTTNG_CONSUMER_KERNEL: | |
60922cb0 | 329 | snprintf(error_sock_path, PATH_MAX, DEFAULT_KCONSUMERD_ERR_SOCK_PATH, |
990570ed | 330 | DEFAULT_LTTNG_RUNDIR); |
7753dea8 MD |
331 | break; |
332 | case LTTNG_CONSUMER64_UST: | |
67e40797 | 333 | snprintf(error_sock_path, PATH_MAX, |
60922cb0 | 334 | DEFAULT_USTCONSUMERD64_ERR_SOCK_PATH, DEFAULT_LTTNG_RUNDIR); |
7753dea8 MD |
335 | break; |
336 | case LTTNG_CONSUMER32_UST: | |
67e40797 | 337 | snprintf(error_sock_path, PATH_MAX, |
60922cb0 | 338 | DEFAULT_USTCONSUMERD32_ERR_SOCK_PATH, DEFAULT_LTTNG_RUNDIR); |
7753dea8 MD |
339 | break; |
340 | default: | |
341 | WARN("Unknown consumerd type"); | |
342 | goto error; | |
343 | } | |
d4a1283e JD |
344 | } |
345 | ||
346 | if (set_signal_handler() < 0) { | |
347 | goto error; | |
348 | } | |
349 | ||
32258573 | 350 | /* Connect to the socket created by lttng-sessiond to report errors */ |
d4a1283e | 351 | DBG("Connecting to error socket %s", error_sock_path); |
1ce86c9a | 352 | ret = lttcomm_connect_unix_sock(error_sock_path); |
32258573 | 353 | /* not a fatal error, but all communication with lttng-sessiond will fail */ |
1ce86c9a | 354 | if (ret < 0) { |
99bab54f | 355 | WARN("Cannot connect to error socket (is lttng-sessiond started?)"); |
d4a1283e | 356 | } |
3bd1e081 | 357 | lttng_consumer_set_error_sock(ctx, ret); |
d4a1283e | 358 | |
7d980def DG |
359 | /* Create thread to manage the polling/writing of trace metadata */ |
360 | ret = pthread_create(&threads[0], NULL, consumer_thread_metadata_poll, | |
361 | (void *) ctx); | |
362 | if (ret != 0) { | |
363 | perror("pthread_create"); | |
364 | goto error; | |
365 | } | |
366 | ||
367 | /* Create thread to manage the polling/writing of trace data */ | |
368 | ret = pthread_create(&threads[1], NULL, consumer_thread_data_poll, | |
cb040cc1 | 369 | (void *) ctx); |
d4a1283e JD |
370 | if (ret != 0) { |
371 | perror("pthread_create"); | |
372 | goto error; | |
373 | } | |
374 | ||
7d980def DG |
375 | /* Create the thread to manage the receive of fd */ |
376 | ret = pthread_create(&threads[2], NULL, consumer_thread_sessiond_poll, | |
cb040cc1 | 377 | (void *) ctx); |
d4a1283e JD |
378 | if (ret != 0) { |
379 | perror("pthread_create"); | |
380 | goto error; | |
381 | } | |
382 | ||
7d980def | 383 | for (i = 0; i < 3; i++) { |
d4a1283e JD |
384 | ret = pthread_join(threads[i], &status); |
385 | if (ret != 0) { | |
386 | perror("pthread_join"); | |
387 | goto error; | |
388 | } | |
389 | } | |
390 | ret = EXIT_SUCCESS; | |
f73fabfd | 391 | lttng_consumer_send_error(ctx, LTTCOMM_CONSUMERD_EXIT_SUCCESS); |
d4a1283e JD |
392 | goto end; |
393 | ||
394 | error: | |
395 | ret = EXIT_FAILURE; | |
f73fabfd | 396 | lttng_consumer_send_error(ctx, LTTCOMM_CONSUMERD_EXIT_FAILURE); |
d4a1283e JD |
397 | |
398 | end: | |
3bd1e081 MD |
399 | lttng_consumer_destroy(ctx); |
400 | lttng_consumer_cleanup(); | |
d4a1283e JD |
401 | |
402 | return ret; | |
403 | } |