lttd support splice
[ltt-control.git] / trunk / ltt-control / lttd / lttd.c
CommitLineData
617de8e1 1/* lttd
2 *
3 * Linux Trace Toolkit Daemon
4 *
c2ffa20f 5 * This is a simple daemon that reads a few relay+debugfs channels and save
6 * them in a trace.
617de8e1 7 *
31482529 8 * CPU hot-plugging is supported using inotify.
617de8e1 9 *
10 * Copyright 2005 -
11 * Mathieu Desnoyers <mathieu.desnoyers@polymtl.ca>
12 */
13
0bb647f5 14#ifdef HAVE_CONFIG_H
469206ed 15#include <config.h>
0bb647f5 16#endif
17
e54e1d5d 18#define _REENTRANT
0bb647f5 19#define _GNU_SOURCE
e54e1d5d 20#include <features.h>
617de8e1 21#include <stdio.h>
1d483eea 22#include <unistd.h>
617de8e1 23#include <errno.h>
24#include <sys/types.h>
25#include <sys/stat.h>
617de8e1 26#include <stdlib.h>
27#include <dirent.h>
28#include <string.h>
90ccaa9a 29#include <fcntl.h>
30#include <sys/poll.h>
1d483eea 31#include <sys/mman.h>
32#include <signal.h>
e54e1d5d 33#include <pthread.h>
357915bb 34#include <sys/syscall.h>
35#include <unistd.h>
36#include <asm/ioctls.h>
37
38#include <linux/version.h>
1d483eea 39
40/* Relayfs IOCTL */
41#include <asm/ioctl.h>
42#include <asm/types.h>
43
44/* Get the next sub buffer that can be read. */
766632ac 45#define RELAY_GET_SUBBUF _IOR(0xF5, 0x00,__u32)
1d483eea 46/* Release the oldest reserved (by "get") sub buffer. */
766632ac 47#define RELAY_PUT_SUBBUF _IOW(0xF5, 0x01,__u32)
1d483eea 48/* returns the number of sub buffers in the per cpu channel. */
766632ac 49#define RELAY_GET_N_SUBBUFS _IOR(0xF5, 0x02,__u32)
1d483eea 50/* returns the size of the sub buffers. */
766632ac 51#define RELAY_GET_SUBBUF_SIZE _IOR(0xF5, 0x03,__u32)
1d483eea 52
357915bb 53#if LINUX_VERSION_CODE >= KERNEL_VERSION(2,6,14)
54#include <linux/inotify.h>
55/* From the inotify-tools 2.6 package */
56static inline int inotify_init (void)
57{
58 return syscall (__NR_inotify_init);
59}
60
61static inline int inotify_add_watch (int fd, const char *name, __u32 mask)
62{
63 return syscall (__NR_inotify_add_watch, fd, name, mask);
64}
65
66static inline int inotify_rm_watch (int fd, __u32 wd)
67{
68 return syscall (__NR_inotify_rm_watch, fd, wd);
69}
70#define HAS_INOTIFY
71#else
72static inline int inotify_init (void)
73{
74 return -1;
75}
1d483eea 76
357915bb 77static inline int inotify_add_watch (int fd, const char *name, __u32 mask)
78{
79 return 0;
80}
81
82static inline int inotify_rm_watch (int fd, __u32 wd)
83{
84 return 0;
85}
86#undef HAS_INOTIFY
87#endif
617de8e1 88
89enum {
90 GET_SUBBUF,
91 PUT_SUBBUF,
92 GET_N_BUBBUFS,
93 GET_SUBBUF_SIZE
94};
95
96struct fd_pair {
97 int channel;
98 int trace;
1d483eea 99 unsigned int n_subbufs;
100 unsigned int subbuf_size;
101 void *mmap;
5ffb77aa 102 pthread_mutex_t mutex;
617de8e1 103};
104
105struct channel_trace_fd {
106 struct fd_pair *pair;
107 int num_pairs;
108};
109
357915bb 110struct inotify_watch {
111 int wd;
112 char path_channel[PATH_MAX];
113 char path_trace[PATH_MAX];
114};
115
116struct inotify_watch_array {
117 struct inotify_watch *elem;
118 int num;
119};
120
f01152ea 121static __thread int thread_pipe[2];
31482529 122
123struct channel_trace_fd fd_pairs = { NULL, 0 };
124int inotify_fd = -1;
125struct inotify_watch_array inotify_watch_array = { NULL, 0 };
126
127/* protects fd_pairs and inotify_watch_array */
128pthread_rwlock_t fd_pairs_lock = PTHREAD_RWLOCK_INITIALIZER;
129
130
89565b43 131static char *trace_name = NULL;
132static char *channel_name = NULL;
133static int daemon_mode = 0;
134static int append_mode = 0;
135static unsigned long num_threads = 1;
1d483eea 136volatile static int quit_program = 0; /* For signal handler */
89565b43 137static int dump_flight_only = 0;
138static int dump_normal_only = 0;
617de8e1 139
140/* Args :
141 *
142 * -t directory Directory name of the trace to write to. Will be created.
c2ffa20f 143 * -c directory Root directory of the debugfs trace channels.
617de8e1 144 * -d Run in background (daemon).
90ccaa9a 145 * -a Trace append mode.
ce2b5176 146 * -s Send SIGUSR1 to parent when ready for IO.
617de8e1 147 */
148void show_arguments(void)
149{
150 printf("Please use the following arguments :\n");
151 printf("\n");
152 printf("-t directory Directory name of the trace to write to.\n"
153 " It will be created.\n");
c2ffa20f 154 printf("-c directory Root directory of the debugfs trace channels.\n");
617de8e1 155 printf("-d Run in background (daemon).\n");
90ccaa9a 156 printf("-a Append to an possibly existing trace.\n");
5ffb77aa 157 printf("-N Number of threads to start.\n");
89565b43 158 printf("-f Dump only flight recorder channels.\n");
159 printf("-n Dump only normal channels.\n");
617de8e1 160 printf("\n");
161}
162
163
164/* parse_arguments
165 *
166 * Parses the command line arguments.
167 *
168 * Returns 1 if the arguments were correct, but doesn't ask for program
169 * continuation. Returns -1 if the arguments are incorrect, or 0 if OK.
170 */
171int parse_arguments(int argc, char **argv)
172{
173 int ret = 0;
174 int argn = 1;
175
176 if(argc == 2) {
177 if(strcmp(argv[1], "-h") == 0) {
178 return 1;
179 }
180 }
181
90ccaa9a 182 while(argn < argc) {
617de8e1 183
184 switch(argv[argn][0]) {
185 case '-':
186 switch(argv[argn][1]) {
187 case 't':
90ccaa9a 188 if(argn+1 < argc) {
189 trace_name = argv[argn+1];
190 argn++;
191 }
617de8e1 192 break;
193 case 'c':
90ccaa9a 194 if(argn+1 < argc) {
195 channel_name = argv[argn+1];
196 argn++;
197 }
617de8e1 198 break;
199 case 'd':
200 daemon_mode = 1;
201 break;
90ccaa9a 202 case 'a':
203 append_mode = 1;
204 break;
5ffb77aa 205 case 'N':
e54e1d5d 206 if(argn+1 < argc) {
207 num_threads = strtoul(argv[argn+1], NULL, 0);
208 argn++;
209 }
210 break;
89565b43 211 case 'f':
212 dump_flight_only = 1;
213 break;
214 case 'n':
215 dump_normal_only = 1;
216 break;
617de8e1 217 default:
218 printf("Invalid argument '%s'.\n", argv[argn]);
219 printf("\n");
220 ret = -1;
221 }
222 break;
223 default:
224 printf("Invalid argument '%s'.\n", argv[argn]);
225 printf("\n");
226 ret = -1;
227 }
228 argn++;
229 }
230
231 if(trace_name == NULL) {
232 printf("Please specify a trace name.\n");
233 printf("\n");
234 ret = -1;
235 }
236
237 if(channel_name == NULL) {
238 printf("Please specify a channel name.\n");
239 printf("\n");
240 ret = -1;
241 }
242
243 return ret;
244}
245
246void show_info(void)
247{
15061ecb 248 printf("Linux Trace Toolkit Trace Daemon " VERSION "\n");
617de8e1 249 printf("\n");
c2ffa20f 250 printf("Reading from debugfs directory : %s\n", channel_name);
617de8e1 251 printf("Writing to trace directory : %s\n", trace_name);
252 printf("\n");
253}
254
255
1d483eea 256/* signal handling */
257
258static void handler(int signo)
259{
260 printf("Signal %d received : exiting cleanly\n", signo);
261 quit_program = 1;
262}
263
264
357915bb 265int open_buffer_file(char *filename, char *path_channel, char *path_trace,
266 struct channel_trace_fd *fd_pairs)
267{
268 int open_ret = 0;
269 int ret = 0;
270 struct stat stat_buf;
271
272 if(strncmp(filename, "flight-", sizeof("flight-")-1) != 0) {
273 if(dump_flight_only) {
274 printf("Skipping normal channel %s\n", path_channel);
275 return 0;
276 }
277 } else {
278 if(dump_normal_only) {
279 printf("Skipping flight channel %s\n", path_channel);
280 return 0;
281 }
282 }
283 printf("Opening file.\n");
284
285 fd_pairs->pair = realloc(fd_pairs->pair,
286 ++fd_pairs->num_pairs * sizeof(struct fd_pair));
287
288 /* Open the channel in read mode */
289 fd_pairs->pair[fd_pairs->num_pairs-1].channel =
290 open(path_channel, O_RDONLY | O_NONBLOCK);
291 if(fd_pairs->pair[fd_pairs->num_pairs-1].channel == -1) {
292 perror(path_channel);
293 fd_pairs->num_pairs--;
294 return 0; /* continue */
295 }
296 /* Open the trace in write mode, only append if append_mode */
297 ret = stat(path_trace, &stat_buf);
298 if(ret == 0) {
299 if(append_mode) {
300 printf("Appending to file %s as requested\n", path_trace);
301
302 fd_pairs->pair[fd_pairs->num_pairs-1].trace =
303 open(path_trace, O_WRONLY|O_APPEND,
304 S_IRWXU|S_IRWXG|S_IRWXO);
305
306 if(fd_pairs->pair[fd_pairs->num_pairs-1].trace == -1) {
307 perror(path_trace);
308 }
309 } else {
310 printf("File %s exists, cannot open. Try append mode.\n", path_trace);
311 open_ret = -1;
312 goto end;
313 }
314 } else {
315 if(errno == ENOENT) {
316 fd_pairs->pair[fd_pairs->num_pairs-1].trace =
317 open(path_trace, O_WRONLY|O_CREAT|O_EXCL,
318 S_IRWXU|S_IRWXG|S_IRWXO);
319 if(fd_pairs->pair[fd_pairs->num_pairs-1].trace == -1) {
320 perror(path_trace);
321 }
322 }
323 }
324end:
325 return open_ret;
326}
1d483eea 327
617de8e1 328int open_channel_trace_pairs(char *subchannel_name, char *subtrace_name,
357915bb 329 struct channel_trace_fd *fd_pairs, int *inotify_fd,
330 struct inotify_watch_array *iwatch_array)
617de8e1 331{
332 DIR *channel_dir = opendir(subchannel_name);
333 struct dirent *entry;
334 struct stat stat_buf;
335 int ret;
336 char path_channel[PATH_MAX];
337 int path_channel_len;
338 char *path_channel_ptr;
339 char path_trace[PATH_MAX];
340 int path_trace_len;
341 char *path_trace_ptr;
002f91bb 342 int open_ret = 0;
617de8e1 343
344 if(channel_dir == NULL) {
345 perror(subchannel_name);
d304b1dd 346 open_ret = ENOENT;
002f91bb 347 goto end;
617de8e1 348 }
349
617de8e1 350 printf("Creating trace subdirectory %s\n", subtrace_name);
351 ret = mkdir(subtrace_name, S_IRWXU|S_IRWXG|S_IRWXO);
352 if(ret == -1) {
b1e3e7c7 353 if(errno != EEXIST) {
90ccaa9a 354 perror(subtrace_name);
002f91bb 355 open_ret = -1;
d304b1dd 356 goto end;
90ccaa9a 357 }
617de8e1 358 }
359
360 strncpy(path_channel, subchannel_name, PATH_MAX-1);
361 path_channel_len = strlen(path_channel);
362 path_channel[path_channel_len] = '/';
363 path_channel_len++;
364 path_channel_ptr = path_channel + path_channel_len;
365
366 strncpy(path_trace, subtrace_name, PATH_MAX-1);
367 path_trace_len = strlen(path_trace);
368 path_trace[path_trace_len] = '/';
369 path_trace_len++;
370 path_trace_ptr = path_trace + path_trace_len;
371
357915bb 372#ifdef HAS_INOTIFY
373 iwatch_array->elem = realloc(iwatch_array->elem,
374 ++iwatch_array->num * sizeof(struct inotify_watch));
375
376 printf("Adding inotify for channel %s\n", path_channel);
377 iwatch_array->elem[iwatch_array->num-1].wd = inotify_add_watch(*inotify_fd, path_channel, IN_CREATE);
378 strcpy(iwatch_array->elem[iwatch_array->num-1].path_channel, path_channel);
379 strcpy(iwatch_array->elem[iwatch_array->num-1].path_trace, path_trace);
380 printf("Added inotify for channel %s, wd %u\n", iwatch_array->elem[iwatch_array->num-1].path_channel,
381 iwatch_array->elem[iwatch_array->num-1].wd);
382#endif
383
617de8e1 384 while((entry = readdir(channel_dir)) != NULL) {
385
386 if(entry->d_name[0] == '.') continue;
387
388 strncpy(path_channel_ptr, entry->d_name, PATH_MAX - path_channel_len);
389 strncpy(path_trace_ptr, entry->d_name, PATH_MAX - path_trace_len);
390
391 ret = stat(path_channel, &stat_buf);
392 if(ret == -1) {
393 perror(path_channel);
394 continue;
395 }
396
397 printf("Channel file : %s\n", path_channel);
398
399 if(S_ISDIR(stat_buf.st_mode)) {
400
401 printf("Entering channel subdirectory...\n");
357915bb 402 ret = open_channel_trace_pairs(path_channel, path_trace, fd_pairs,
403 inotify_fd, iwatch_array);
617de8e1 404 if(ret < 0) continue;
90ccaa9a 405 } else if(S_ISREG(stat_buf.st_mode)) {
357915bb 406 open_ret = open_buffer_file(entry->d_name, path_channel, path_trace,
407 fd_pairs);
408 if(open_ret)
409 goto end;
617de8e1 410 }
617de8e1 411 }
412
d304b1dd 413end:
617de8e1 414 closedir(channel_dir);
415
d304b1dd 416 return open_ret;
617de8e1 417}
418
1d483eea 419
420int read_subbuffer(struct fd_pair *pair)
421{
f01152ea 422 unsigned int consumed_old;
423 int err;
424 long ret;
425 unsigned long len, offset;
1d483eea 426
427
f01152ea 428 err = ioctl(pair->channel, RELAY_GET_SUBBUF, &consumed_old);
4f31148b 429 printf("cookie : %u\n", consumed_old);
469206ed 430 if(err != 0) {
5ffb77aa 431 ret = errno;
30478a4d 432 perror("Reserving sub buffer failed (everything is normal, it is due to concurrency)");
469206ed 433 goto get_error;
1d483eea 434 }
f01152ea 435#if 0
469206ed 436 err = TEMP_FAILURE_RETRY(write(pair->trace,
e4bed64a 437 pair->mmap
438 + (consumed_old & ((pair->n_subbufs * pair->subbuf_size)-1)),
1d483eea 439 pair->subbuf_size));
469206ed 440
441 if(err < 0) {
5ffb77aa 442 ret = errno;
1d483eea 443 perror("Error in writing to file");
469206ed 444 goto write_error;
1d483eea 445 }
f01152ea 446#endif //0
447 len = pair->subbuf_size;
448 offset = 0;
449 while (len > 0) {
450 printf("splice chan to pipe offset %lu\n", offset);
451 ret = splice(pair->channel, &offset, thread_pipe[1], NULL,
452 len, SPLICE_F_MOVE);
453 printf("splice chan to pipe ret %ld\n", ret);
454 if (ret < 0) {
455 perror("Error in relay splice");
456 goto write_error;
457 }
458 ret = splice(thread_pipe[0], NULL, pair->trace, NULL,
459 ret, SPLICE_F_MOVE);
460 printf("splice pipe to file %ld\n", ret);
461 if (ret < 0) {
462 perror("Error in file splice");
463 goto write_error;
464 }
465 len -= ret;
466 }
467
a7eb8aa2 468#if 0
469 err = fsync(pair->trace);
470 if(err < 0) {
471 ret = errno;
472 perror("Error in writing to file");
473 goto write_error;
474 }
475#endif //0
469206ed 476write_error:
f01152ea 477 ret = 0;
c2ffa20f 478 err = ioctl(pair->channel, RELAY_PUT_SUBBUF, &consumed_old);
469206ed 479 if(err != 0) {
5ffb77aa 480 ret = errno;
30478a4d 481 if(errno == EFAULT) {
5ffb77aa 482 perror("Error in unreserving sub buffer\n");
30478a4d 483 } else if(errno == EIO) {
4f31148b 484 perror("Reader has been pushed by the writer, last subbuffer corrupted.");
ec8cce5a 485 /* FIXME : we may delete the last written buffer if we wish. */
4f31148b 486 }
469206ed 487 goto get_error;
1d483eea 488 }
489
469206ed 490get_error:
491 return ret;
1d483eea 492}
493
494
357915bb 495int map_channels(struct channel_trace_fd *fd_pairs,
496 int idx_begin, int idx_end)
617de8e1 497{
1d483eea 498 int i,j;
e54e1d5d 499 int ret=0;
1d483eea 500
469206ed 501 if(fd_pairs->num_pairs <= 0) {
502 printf("No channel to read\n");
503 goto end;
504 }
505
1d483eea 506 /* Get the subbuf sizes and number */
507
357915bb 508 for(i=idx_begin;i<idx_end;i++) {
1d483eea 509 struct fd_pair *pair = &fd_pairs->pair[i];
90ccaa9a 510
c2ffa20f 511 ret = ioctl(pair->channel, RELAY_GET_N_SUBBUFS,
1d483eea 512 &pair->n_subbufs);
513 if(ret != 0) {
514 perror("Error in getting the number of subbuffers");
515 goto end;
516 }
c2ffa20f 517 ret = ioctl(pair->channel, RELAY_GET_SUBBUF_SIZE,
1d483eea 518 &pair->subbuf_size);
519 if(ret != 0) {
520 perror("Error in getting the size of the subbuffers");
521 goto end;
522 }
5ffb77aa 523 ret = pthread_mutex_init(&pair->mutex, NULL); /* Fast mutex */
524 if(ret != 0) {
525 perror("Error in mutex init");
526 goto end;
527 }
1d483eea 528 }
529
f01152ea 530#if 0
1d483eea 531 /* Mmap each FD */
357915bb 532 for(i=idx_begin;i<idx_end;i++) {
1d483eea 533 struct fd_pair *pair = &fd_pairs->pair[i];
534
535 pair->mmap = mmap(0, pair->subbuf_size * pair->n_subbufs, PROT_READ,
536 MAP_SHARED, pair->channel, 0);
537 if(pair->mmap == MAP_FAILED) {
538 perror("Mmap error");
539 goto munmap;
540 }
541 }
542
5ffb77aa 543 goto end; /* success */
1d483eea 544
e54e1d5d 545 /* Error handling */
546 /* munmap only the successfully mmapped indexes */
547munmap:
548 /* Munmap each FD */
357915bb 549 for(j=idx_begin;j<i;j++) {
e54e1d5d 550 struct fd_pair *pair = &fd_pairs->pair[j];
551 int err_ret;
552
553 err_ret = munmap(pair->mmap, pair->subbuf_size * pair->n_subbufs);
554 if(err_ret != 0) {
555 perror("Error in munmap");
556 }
557 ret |= err_ret;
558 }
559
f01152ea 560#endif //0
e54e1d5d 561end:
562 return ret;
e54e1d5d 563}
564
e54e1d5d 565int unmap_channels(struct channel_trace_fd *fd_pairs)
566{
567 int j;
568 int ret=0;
569
570 /* Munmap each FD */
571 for(j=0;j<fd_pairs->num_pairs;j++) {
572 struct fd_pair *pair = &fd_pairs->pair[j];
573 int err_ret;
574
f01152ea 575#if 0
e54e1d5d 576 err_ret = munmap(pair->mmap, pair->subbuf_size * pair->n_subbufs);
577 if(err_ret != 0) {
578 perror("Error in munmap");
579 }
580 ret |= err_ret;
f01152ea 581#endif //0
5ffb77aa 582 err_ret = pthread_mutex_destroy(&pair->mutex);
583 if(err_ret != 0) {
584 perror("Error in mutex destroy");
585 }
586 ret |= err_ret;
e54e1d5d 587 }
588
589 return ret;
590}
591
357915bb 592#ifdef HAS_INOTIFY
593/* Inotify event arrived.
594 *
595 * Only support add file for now.
596 */
597
598int read_inotify(int inotify_fd,
599 struct channel_trace_fd *fd_pairs,
600 struct inotify_watch_array *iwatch_array)
601{
602 char buf[sizeof(struct inotify_event) + PATH_MAX];
603 char path_channel[PATH_MAX];
604 char path_trace[PATH_MAX];
605 ssize_t len;
606 struct inotify_event *ievent;
607 size_t offset;
608 unsigned int i;
609 int ret;
610 int old_num;
611
612 offset = 0;
613 len = read(inotify_fd, buf, sizeof(struct inotify_event) + PATH_MAX);
614 if(len < 0) {
31482529 615
616 if(errno == EAGAIN)
617 return 0; /* another thread got the data before us */
618
357915bb 619 printf("Error in read from inotify FD %s.\n", strerror(len));
620 return -1;
621 }
622 while(offset < len) {
623 ievent = (struct inotify_event *)&(buf[offset]);
624 for(i=0; i<iwatch_array->num; i++) {
625 if(iwatch_array->elem[i].wd == ievent->wd &&
626 ievent->mask == IN_CREATE) {
627 printf("inotify wd %u event mask : %u for %s%s\n",
628 ievent->wd, ievent->mask,
629 iwatch_array->elem[i].path_channel, ievent->name);
630 old_num = fd_pairs->num_pairs;
631 strcpy(path_channel, iwatch_array->elem[i].path_channel);
632 strcat(path_channel, ievent->name);
633 strcpy(path_trace, iwatch_array->elem[i].path_trace);
634 strcat(path_trace, ievent->name);
635 if(ret = open_buffer_file(ievent->name, path_channel,
636 path_trace, fd_pairs)) {
637 printf("Error opening buffer file\n");
638 return -1;
639 }
640 if(ret = map_channels(fd_pairs, old_num, fd_pairs->num_pairs)) {
641 printf("Error mapping channel\n");
642 return -1;
643 }
644
645 }
646 }
647 offset += sizeof(*ievent) + ievent->len;
648 }
649}
650#endif //HAS_INOTIFY
e54e1d5d 651
652/* read_channels
5ffb77aa 653 *
654 * Thread worker.
e54e1d5d 655 *
c2ffa20f 656 * Read the debugfs channels and write them in the paired tracefiles.
e54e1d5d 657 *
658 * @fd_pairs : paired channels and trace files.
659 *
357915bb 660 * returns 0 on success, -1 on error.
e54e1d5d 661 *
662 * Note that the high priority polled channels are consumed first. We then poll
663 * again to see if these channels are still in priority. Only when no
664 * high priority channel is left, we start reading low priority channels.
665 *
666 * Note that a channel is considered high priority when the buffer is almost
667 * full.
668 */
669
31482529 670int read_channels(unsigned long thread_num, struct channel_trace_fd *fd_pairs,
357915bb 671 int inotify_fd, struct inotify_watch_array *iwatch_array)
e54e1d5d 672{
357915bb 673 struct pollfd *pollfd = NULL;
31482529 674 int num_pollfd;
e54e1d5d 675 int i,j;
676 int num_rdy, num_hup;
677 int high_prio;
5ffb77aa 678 int ret = 0;
357915bb 679 int inotify_fds;
680 unsigned int old_num;
e54e1d5d 681
357915bb 682#ifdef HAS_INOTIFY
683 inotify_fds = 1;
684#else
685 inotify_fds = 0;
686#endif
687
31482529 688 pthread_rwlock_rdlock(&fd_pairs_lock);
689
357915bb 690 /* Start polling the FD. Keep one fd for inotify */
691 pollfd = malloc((inotify_fds + fd_pairs->num_pairs) * sizeof(struct pollfd));
692
693#ifdef HAS_INOTIFY
694 pollfd[0].fd = inotify_fd;
695 pollfd[0].events = POLLIN|POLLPRI;
696#endif
90ccaa9a 697
698 for(i=0;i<fd_pairs->num_pairs;i++) {
357915bb 699 pollfd[inotify_fds+i].fd = fd_pairs->pair[i].channel;
700 pollfd[inotify_fds+i].events = POLLIN|POLLPRI;
90ccaa9a 701 }
31482529 702 num_pollfd = inotify_fds + fd_pairs->num_pairs;
703
704
705 pthread_rwlock_unlock(&fd_pairs_lock);
706
90ccaa9a 707 while(1) {
4f45ea55 708 high_prio = 0;
1d483eea 709 num_hup = 0;
710#ifdef DEBUG
711 printf("Press a key for next poll...\n");
712 char buf[1];
713 read(STDIN_FILENO, &buf, 1);
31482529 714 printf("Next poll (polling %d fd) :\n", num_pollfd);
1d483eea 715#endif //DEBUG
357915bb 716
1d483eea 717 /* Have we received a signal ? */
718 if(quit_program) break;
719
31482529 720 num_rdy = poll(pollfd, num_pollfd, -1);
721
90ccaa9a 722 if(num_rdy == -1) {
723 perror("Poll error");
1d483eea 724 goto free_fd;
90ccaa9a 725 }
726
727 printf("Data received\n");
357915bb 728#ifdef HAS_INOTIFY
729 switch(pollfd[0].revents) {
730 case POLLERR:
731 printf("Error returned in polling inotify fd %d.\n", pollfd[0].fd);
732 break;
733 case POLLHUP:
734 printf("Polling inotify fd %d tells it has hung up.\n", pollfd[0].fd);
735 break;
736 case POLLNVAL:
737 printf("Polling inotify fd %d tells fd is not open.\n", pollfd[0].fd);
738 break;
739 case POLLPRI:
740 case POLLIN:
31482529 741
357915bb 742 printf("Polling inotify fd %d : data ready.\n", pollfd[0].fd);
31482529 743
744 pthread_rwlock_wrlock(&fd_pairs_lock);
357915bb 745 read_inotify(inotify_fd, fd_pairs, iwatch_array);
31482529 746 pthread_rwlock_unlock(&fd_pairs_lock);
747
357915bb 748 break;
749 }
750#endif
90ccaa9a 751
31482529 752 for(i=inotify_fds;i<num_pollfd;i++) {
90ccaa9a 753 switch(pollfd[i].revents) {
754 case POLLERR:
755 printf("Error returned in polling fd %d.\n", pollfd[i].fd);
1d483eea 756 num_hup++;
90ccaa9a 757 break;
758 case POLLHUP:
759 printf("Polling fd %d tells it has hung up.\n", pollfd[i].fd);
1d483eea 760 num_hup++;
90ccaa9a 761 break;
762 case POLLNVAL:
763 printf("Polling fd %d tells fd is not open.\n", pollfd[i].fd);
1d483eea 764 num_hup++;
90ccaa9a 765 break;
766 case POLLPRI:
31482529 767 pthread_rwlock_rdlock(&fd_pairs_lock);
357915bb 768 if(pthread_mutex_trylock(&fd_pairs->pair[i-inotify_fds].mutex) == 0) {
5ffb77aa 769 printf("Urgent read on fd %d\n", pollfd[i].fd);
770 /* Take care of high priority channels first. */
771 high_prio = 1;
772 /* it's ok to have an unavailable subbuffer */
357915bb 773 ret = read_subbuffer(&fd_pairs->pair[i-inotify_fds]);
30478a4d 774 if(ret == EAGAIN) ret = 0;
cdad9787 775
357915bb 776 ret = pthread_mutex_unlock(&fd_pairs->pair[i-inotify_fds].mutex);
5ffb77aa 777 if(ret)
778 printf("Error in mutex unlock : %s\n", strerror(ret));
779 }
31482529 780 pthread_rwlock_unlock(&fd_pairs_lock);
90ccaa9a 781 break;
4f45ea55 782 }
90ccaa9a 783 }
357915bb 784 /* If every buffer FD has hung up, we end the read loop here */
31482529 785 if(num_hup == num_pollfd - inotify_fds) break;
90ccaa9a 786
4f45ea55 787 if(!high_prio) {
31482529 788 for(i=inotify_fds;i<num_pollfd;i++) {
4f45ea55 789 switch(pollfd[i].revents) {
790 case POLLIN:
31482529 791 pthread_rwlock_rdlock(&fd_pairs_lock);
357915bb 792 if(pthread_mutex_trylock(&fd_pairs->pair[i-inotify_fds].mutex) == 0) {
5ffb77aa 793 /* Take care of low priority channels. */
794 printf("Normal read on fd %d\n", pollfd[i].fd);
795 /* it's ok to have an unavailable subbuffer */
357915bb 796 ret = read_subbuffer(&fd_pairs->pair[i-inotify_fds]);
30478a4d 797 if(ret == EAGAIN) ret = 0;
cdad9787 798
357915bb 799 ret = pthread_mutex_unlock(&fd_pairs->pair[i-inotify_fds].mutex);
5ffb77aa 800 if(ret)
801 printf("Error in mutex unlock : %s\n", strerror(ret));
802 }
31482529 803 pthread_rwlock_unlock(&fd_pairs_lock);
4f45ea55 804 break;
805 }
806 }
90ccaa9a 807 }
808
31482529 809 /* Update pollfd array if an entry was added to fd_pairs */
810 pthread_rwlock_rdlock(&fd_pairs_lock);
811 if((inotify_fds + fd_pairs->num_pairs) != num_pollfd) {
812 pollfd = realloc(pollfd,
813 (inotify_fds + fd_pairs->num_pairs) * sizeof(struct pollfd));
814 for(i=num_pollfd-inotify_fds;i<fd_pairs->num_pairs;i++) {
815 pollfd[inotify_fds+i].fd = fd_pairs->pair[i].channel;
816 pollfd[inotify_fds+i].events = POLLIN|POLLPRI;
817 }
818 num_pollfd = fd_pairs->num_pairs + inotify_fds;
819 }
820 pthread_rwlock_unlock(&fd_pairs_lock);
821
822 /* NB: If the fd_pairs structure is updated by another thread from this
823 * point forward, the current thread will wait in the poll without
824 * monitoring the new channel. However, this thread will add the
825 * new channel on next poll (and this should not take too much time
826 * on a loaded system).
827 *
828 * This event is quite unlikely and can only occur if a CPU is
829 * hot-plugged while multple lttd threads are running.
830 */
90ccaa9a 831 }
832
1d483eea 833free_fd:
90ccaa9a 834 free(pollfd);
835
1d483eea 836end:
357915bb 837 return ret;
617de8e1 838}
839
840
357915bb 841void close_channel_trace_pairs(struct channel_trace_fd *fd_pairs, int inotify_fd,
842 struct inotify_watch_array *iwatch_array)
617de8e1 843{
90ccaa9a 844 int i;
845 int ret;
617de8e1 846
90ccaa9a 847 for(i=0;i<fd_pairs->num_pairs;i++) {
848 ret = close(fd_pairs->pair[i].channel);
849 if(ret == -1) perror("Close error on channel");
850 ret = close(fd_pairs->pair[i].trace);
851 if(ret == -1) perror("Close error on trace");
852 }
853 free(fd_pairs->pair);
357915bb 854 free(iwatch_array->elem);
855}
856
857/* Thread worker */
858void * thread_main(void *arg)
859{
31482529 860 long ret;
861 unsigned long thread_num = (unsigned long)arg;
862
f01152ea 863 ret = pipe(thread_pipe);
864 if (ret < 0) {
865 perror("Error creating pipe");
866 return (void*)ret;
867 }
31482529 868 ret = read_channels(thread_num, &fd_pairs, inotify_fd, &inotify_watch_array);
f01152ea 869 close(thread_pipe[0]); /* close read end */
870 close(thread_pipe[1]); /* close write end */
31482529 871 return (void*)ret;
872}
873
874
875int channels_init()
876{
357915bb 877 int ret = 0;
357915bb 878
879 inotify_fd = inotify_init();
31482529 880 fcntl(inotify_fd, F_SETFL, O_NONBLOCK);
357915bb 881
882 if(ret = open_channel_trace_pairs(channel_name, trace_name, &fd_pairs,
883 &inotify_fd, &inotify_watch_array))
884 goto close_channel;
885
886 if(ret = map_channels(&fd_pairs, 0, fd_pairs.num_pairs))
887 goto close_channel;
31482529 888 return 0;
357915bb 889
890close_channel:
891 close_channel_trace_pairs(&fd_pairs, inotify_fd, &inotify_watch_array);
892 if(inotify_fd >= 0)
893 close(inotify_fd);
31482529 894 return ret;
617de8e1 895}
896
31482529 897
617de8e1 898int main(int argc, char ** argv)
899{
e54e1d5d 900 int ret = 0;
1d483eea 901 struct sigaction act;
5ffb77aa 902 pthread_t *tids;
31482529 903 unsigned long i;
5ffb77aa 904 void *tret;
617de8e1 905
906 ret = parse_arguments(argc, argv);
907
908 if(ret != 0) show_arguments();
909 if(ret < 0) return EINVAL;
910 if(ret > 0) return 0;
911
912 show_info();
913
914 if(daemon_mode) {
2253bb8e 915 ret = daemon(0, 0);
002f91bb 916
917 if(ret == -1) {
918 perror("An error occured while daemonizing.");
919 exit(-1);
920 }
921 }
617de8e1 922
1d483eea 923 /* Connect the signal handlers */
924 act.sa_handler = handler;
925 act.sa_flags = 0;
926 sigemptyset(&(act.sa_mask));
927 sigaddset(&(act.sa_mask), SIGTERM);
928 sigaddset(&(act.sa_mask), SIGQUIT);
929 sigaddset(&(act.sa_mask), SIGINT);
930 sigaction(SIGTERM, &act, NULL);
931 sigaction(SIGQUIT, &act, NULL);
932 sigaction(SIGINT, &act, NULL);
933
31482529 934 if(ret = channels_init())
935 return ret;
936
5ffb77aa 937 tids = malloc(sizeof(pthread_t) * num_threads);
938 for(i=0; i<num_threads; i++) {
ae410d24 939
357915bb 940 ret = pthread_create(&tids[i], NULL, thread_main, (void*)i);
5ffb77aa 941 if(ret) {
942 perror("Error creating thread");
943 break;
944 }
945 }
617de8e1 946
5ffb77aa 947 for(i=0; i<num_threads; i++) {
948 ret = pthread_join(tids[i], &tret);
949 if(ret) {
950 perror("Error joining thread");
951 break;
952 }
31482529 953 if((long)tret != 0) {
954 printf("Error %s occured in thread %u\n",
955 strerror((long)tret), i);
5ffb77aa 956 }
957 }
958
959 free(tids);
31482529 960 ret = unmap_channels(&fd_pairs);
961 close_channel_trace_pairs(&fd_pairs, inotify_fd, &inotify_watch_array);
962 if(inotify_fd >= 0)
963 close(inotify_fd);
5ffb77aa 964
617de8e1 965 return ret;
966}
This page took 0.066417 seconds and 4 git commands to generate.