lttd mkdir ok
[ltt-control.git] / ltt / branches / poly / lttd / lttd.c
CommitLineData
617de8e1 1/* lttd
2 *
3 * Linux Trace Toolkit Daemon
4 *
5 * This is a simple daemon that reads a few relayfs channels and save them in a
6 * trace.
7 *
8 *
9 * Copyright 2005 -
10 * Mathieu Desnoyers <mathieu.desnoyers@polymtl.ca>
11 */
12
0bb647f5 13#ifdef HAVE_CONFIG_H
469206ed 14#include <config.h>
0bb647f5 15#endif
16
17#define _GNU_SOURCE
617de8e1 18#include <stdio.h>
1d483eea 19#include <unistd.h>
617de8e1 20#include <errno.h>
21#include <sys/types.h>
22#include <sys/stat.h>
617de8e1 23#include <stdlib.h>
24#include <dirent.h>
25#include <string.h>
90ccaa9a 26#include <fcntl.h>
27#include <sys/poll.h>
1d483eea 28#include <sys/mman.h>
29#include <signal.h>
30
31/* Relayfs IOCTL */
32#include <asm/ioctl.h>
33#include <asm/types.h>
34
35/* Get the next sub buffer that can be read. */
36#define RELAYFS_GET_SUBBUF _IOR(0xF4, 0x00,__u32)
37/* Release the oldest reserved (by "get") sub buffer. */
38#define RELAYFS_PUT_SUBBUF _IO(0xF4, 0x01)
39/* returns the number of sub buffers in the per cpu channel. */
40#define RELAYFS_GET_N_SUBBUFS _IOR(0xF4, 0x02,__u32)
41/* returns the size of the sub buffers. */
42#define RELAYFS_GET_SUBBUF_SIZE _IOR(0xF4, 0x03,__u32)
43
44
617de8e1 45
46enum {
47 GET_SUBBUF,
48 PUT_SUBBUF,
49 GET_N_BUBBUFS,
50 GET_SUBBUF_SIZE
51};
52
53struct fd_pair {
54 int channel;
55 int trace;
1d483eea 56 unsigned int n_subbufs;
57 unsigned int subbuf_size;
58 void *mmap;
617de8e1 59};
60
61struct channel_trace_fd {
62 struct fd_pair *pair;
63 int num_pairs;
64};
65
66static char *trace_name = NULL;
67static char *channel_name = NULL;
68static int daemon_mode = 0;
90ccaa9a 69static int append_mode = 0;
469206ed 70static int sig_parent = 0;
1d483eea 71volatile static int quit_program = 0; /* For signal handler */
617de8e1 72
73/* Args :
74 *
75 * -t directory Directory name of the trace to write to. Will be created.
76 * -c directory Root directory of the relayfs trace channels.
77 * -d Run in background (daemon).
90ccaa9a 78 * -a Trace append mode.
469206ed 79 * -s Send SIGIO to parent when ready for IO.
617de8e1 80 */
81void show_arguments(void)
82{
83 printf("Please use the following arguments :\n");
84 printf("\n");
85 printf("-t directory Directory name of the trace to write to.\n"
86 " It will be created.\n");
87 printf("-c directory Root directory of the relayfs trace channels.\n");
88 printf("-d Run in background (daemon).\n");
90ccaa9a 89 printf("-a Append to an possibly existing trace.\n");
469206ed 90 printf("-s Send SIGIO to parent when ready for IO.\n");
617de8e1 91 printf("\n");
92}
93
94
95/* parse_arguments
96 *
97 * Parses the command line arguments.
98 *
99 * Returns 1 if the arguments were correct, but doesn't ask for program
100 * continuation. Returns -1 if the arguments are incorrect, or 0 if OK.
101 */
102int parse_arguments(int argc, char **argv)
103{
104 int ret = 0;
105 int argn = 1;
106
107 if(argc == 2) {
108 if(strcmp(argv[1], "-h") == 0) {
109 return 1;
110 }
111 }
112
90ccaa9a 113 while(argn < argc) {
617de8e1 114
115 switch(argv[argn][0]) {
116 case '-':
117 switch(argv[argn][1]) {
118 case 't':
90ccaa9a 119 if(argn+1 < argc) {
120 trace_name = argv[argn+1];
121 argn++;
122 }
617de8e1 123 break;
124 case 'c':
90ccaa9a 125 if(argn+1 < argc) {
126 channel_name = argv[argn+1];
127 argn++;
128 }
617de8e1 129 break;
130 case 'd':
131 daemon_mode = 1;
132 break;
90ccaa9a 133 case 'a':
134 append_mode = 1;
135 break;
469206ed 136 case 's':
137 sig_parent = 1;
138 break;
617de8e1 139 default:
140 printf("Invalid argument '%s'.\n", argv[argn]);
141 printf("\n");
142 ret = -1;
143 }
144 break;
145 default:
146 printf("Invalid argument '%s'.\n", argv[argn]);
147 printf("\n");
148 ret = -1;
149 }
150 argn++;
151 }
152
153 if(trace_name == NULL) {
154 printf("Please specify a trace name.\n");
155 printf("\n");
156 ret = -1;
157 }
158
159 if(channel_name == NULL) {
160 printf("Please specify a channel name.\n");
161 printf("\n");
162 ret = -1;
163 }
164
165 return ret;
166}
167
168void show_info(void)
169{
170 printf("Linux Trace Toolkit Trace Daemon\n");
171 printf("\n");
172 printf("Reading from relayfs directory : %s\n", channel_name);
173 printf("Writing to trace directory : %s\n", trace_name);
174 printf("\n");
175}
176
177
1d483eea 178/* signal handling */
179
180static void handler(int signo)
181{
182 printf("Signal %d received : exiting cleanly\n", signo);
183 quit_program = 1;
184}
185
186
187
617de8e1 188int open_channel_trace_pairs(char *subchannel_name, char *subtrace_name,
189 struct channel_trace_fd *fd_pairs)
190{
191 DIR *channel_dir = opendir(subchannel_name);
192 struct dirent *entry;
193 struct stat stat_buf;
194 int ret;
195 char path_channel[PATH_MAX];
196 int path_channel_len;
197 char *path_channel_ptr;
198 char path_trace[PATH_MAX];
199 int path_trace_len;
200 char *path_trace_ptr;
d304b1dd 201 int open_ret = 0;
617de8e1 202
203 if(channel_dir == NULL) {
204 perror(subchannel_name);
d304b1dd 205 open_ret = ENOENT;
206 goto end;
617de8e1 207 }
208
617de8e1 209 printf("Creating trace subdirectory %s\n", subtrace_name);
210 ret = mkdir(subtrace_name, S_IRWXU|S_IRWXG|S_IRWXO);
211 if(ret == -1) {
b1e3e7c7 212 if(errno != EEXIST) {
90ccaa9a 213 perror(subtrace_name);
d304b1dd 214 open_ret = -1;
215 goto end;
90ccaa9a 216 }
617de8e1 217 }
218
219 strncpy(path_channel, subchannel_name, PATH_MAX-1);
220 path_channel_len = strlen(path_channel);
221 path_channel[path_channel_len] = '/';
222 path_channel_len++;
223 path_channel_ptr = path_channel + path_channel_len;
224
225 strncpy(path_trace, subtrace_name, PATH_MAX-1);
226 path_trace_len = strlen(path_trace);
227 path_trace[path_trace_len] = '/';
228 path_trace_len++;
229 path_trace_ptr = path_trace + path_trace_len;
230
231 while((entry = readdir(channel_dir)) != NULL) {
232
233 if(entry->d_name[0] == '.') continue;
234
235 strncpy(path_channel_ptr, entry->d_name, PATH_MAX - path_channel_len);
236 strncpy(path_trace_ptr, entry->d_name, PATH_MAX - path_trace_len);
237
238 ret = stat(path_channel, &stat_buf);
239 if(ret == -1) {
240 perror(path_channel);
241 continue;
242 }
243
244 printf("Channel file : %s\n", path_channel);
245
246 if(S_ISDIR(stat_buf.st_mode)) {
247
248 printf("Entering channel subdirectory...\n");
249 ret = open_channel_trace_pairs(path_channel, path_trace, fd_pairs);
250 if(ret < 0) continue;
90ccaa9a 251 } else if(S_ISREG(stat_buf.st_mode)) {
252 printf("Opening file.\n");
253
254 fd_pairs->pair = realloc(fd_pairs->pair,
255 ++fd_pairs->num_pairs * sizeof(struct fd_pair));
256
257 /* Open the channel in read mode */
258 fd_pairs->pair[fd_pairs->num_pairs-1].channel =
259 open(path_channel, O_RDONLY | O_NONBLOCK);
260 if(fd_pairs->pair[fd_pairs->num_pairs-1].channel == -1) {
261 perror(path_channel);
469206ed 262 fd_pairs->num_pairs--;
263 continue;
90ccaa9a 264 }
265 /* Open the trace in write mode, only append if append_mode */
266 ret = stat(path_trace, &stat_buf);
267 if(ret == 0) {
268 if(append_mode) {
3357d360 269 printf("Appending to file %s as requested\n", path_trace);
90ccaa9a 270
271 fd_pairs->pair[fd_pairs->num_pairs-1].trace =
272 open(path_trace, O_WRONLY|O_APPEND,
273 S_IRWXU|S_IRWXG|S_IRWXO);
274
275 if(fd_pairs->pair[fd_pairs->num_pairs-1].trace == -1) {
276 perror(path_trace);
277 }
278 } else {
279 printf("File %s exists, cannot open. Try append mode.\n", path_trace);
d304b1dd 280 open_ret = -1;
281 goto end;
90ccaa9a 282 }
283 } else {
284 if(errno == ENOENT) {
285 fd_pairs->pair[fd_pairs->num_pairs-1].trace =
286 open(path_trace, O_WRONLY|O_CREAT|O_EXCL,
287 S_IRWXU|S_IRWXG|S_IRWXO);
288 if(fd_pairs->pair[fd_pairs->num_pairs-1].trace == -1) {
289 perror(path_trace);
290 }
291 }
292 }
617de8e1 293 }
617de8e1 294 }
295
d304b1dd 296end:
617de8e1 297 closedir(channel_dir);
298
d304b1dd 299 return open_ret;
617de8e1 300}
301
1d483eea 302
303int read_subbuffer(struct fd_pair *pair)
304{
305 unsigned int subbuf_index;
469206ed 306 int err, ret;
1d483eea 307
308
469206ed 309 err = ioctl(pair->channel, RELAYFS_GET_SUBBUF,
1d483eea 310 &subbuf_index);
469206ed 311 printf("index : %u\n", subbuf_index);
312 if(err != 0) {
1d483eea 313 perror("Error in reserving sub buffer");
469206ed 314 ret = -EPERM;
315 goto get_error;
1d483eea 316 }
469206ed 317
318 err = TEMP_FAILURE_RETRY(write(pair->trace,
1d483eea 319 pair->mmap + (subbuf_index * pair->subbuf_size),
320 pair->subbuf_size));
469206ed 321
322 if(err < 0) {
1d483eea 323 perror("Error in writing to file");
469206ed 324 ret = err;
325 goto write_error;
1d483eea 326 }
327
328
469206ed 329write_error:
330 err = ioctl(pair->channel, RELAYFS_PUT_SUBBUF);
331 if(err != 0) {
1d483eea 332 perror("Error in unreserving sub buffer");
469206ed 333 ret = -EPERM;
334 goto get_error;
1d483eea 335 }
336
469206ed 337get_error:
338 return ret;
1d483eea 339}
340
341
90ccaa9a 342/* read_channels
343 *
344 * Read the realyfs channels and write them in the paired tracefiles.
345 *
346 * @fd_pairs : paired channels and trace files.
347 *
348 * returns 0 on success, -1 on error.
349 *
350 * Note that the high priority polled channels are consumed first. We then poll
351 * again to see if these channels are still in priority. Only when no
352 * high priority channel is left, we start reading low priority channels.
353 *
354 * Note that a channel is considered high priority when the buffer is almost
355 * full.
356 */
617de8e1 357
358int read_channels(struct channel_trace_fd *fd_pairs)
359{
90ccaa9a 360 struct pollfd *pollfd;
1d483eea 361 int i,j;
362 int num_rdy, num_hup;
4f45ea55 363 int high_prio;
1d483eea 364 int ret;
365
469206ed 366 if(fd_pairs->num_pairs <= 0) {
367 printf("No channel to read\n");
368 goto end;
369 }
370
1d483eea 371 /* Get the subbuf sizes and number */
372
373 for(i=0;i<fd_pairs->num_pairs;i++) {
374 struct fd_pair *pair = &fd_pairs->pair[i];
90ccaa9a 375
1d483eea 376 ret = ioctl(pair->channel, RELAYFS_GET_N_SUBBUFS,
377 &pair->n_subbufs);
378 if(ret != 0) {
379 perror("Error in getting the number of subbuffers");
380 goto end;
381 }
382 ret = ioctl(pair->channel, RELAYFS_GET_SUBBUF_SIZE,
383 &pair->subbuf_size);
384 if(ret != 0) {
385 perror("Error in getting the size of the subbuffers");
386 goto end;
387 }
388 }
389
390 /* Mmap each FD */
391 for(i=0;i<fd_pairs->num_pairs;i++) {
392 struct fd_pair *pair = &fd_pairs->pair[i];
393
394 pair->mmap = mmap(0, pair->subbuf_size * pair->n_subbufs, PROT_READ,
395 MAP_SHARED, pair->channel, 0);
396 if(pair->mmap == MAP_FAILED) {
397 perror("Mmap error");
398 goto munmap;
399 }
400 }
401
402
403 /* Start polling the FD */
404
90ccaa9a 405 pollfd = malloc(fd_pairs->num_pairs * sizeof(struct pollfd));
406
1d483eea 407 /* Note : index in pollfd is the same index as fd_pair->pair */
90ccaa9a 408 for(i=0;i<fd_pairs->num_pairs;i++) {
409 pollfd[i].fd = fd_pairs->pair[i].channel;
410 pollfd[i].events = POLLIN|POLLPRI;
411 }
412
469206ed 413 /* Signal the parent that ready for IO */
414 if(sig_parent) kill(getppid(), SIGIO);
415
90ccaa9a 416 while(1) {
4f45ea55 417 high_prio = 0;
1d483eea 418 num_hup = 0;
419#ifdef DEBUG
420 printf("Press a key for next poll...\n");
421 char buf[1];
422 read(STDIN_FILENO, &buf, 1);
469206ed 423 printf("Next poll (polling %d fd) :\n", fd_pairs->num_pairs);
1d483eea 424#endif //DEBUG
425
426 /* Have we received a signal ? */
427 if(quit_program) break;
428
90ccaa9a 429 num_rdy = poll(pollfd, fd_pairs->num_pairs, -1);
430 if(num_rdy == -1) {
431 perror("Poll error");
1d483eea 432 goto free_fd;
90ccaa9a 433 }
434
435 printf("Data received\n");
436
437 for(i=0;i<fd_pairs->num_pairs;i++) {
438 switch(pollfd[i].revents) {
439 case POLLERR:
440 printf("Error returned in polling fd %d.\n", pollfd[i].fd);
1d483eea 441 num_hup++;
90ccaa9a 442 break;
443 case POLLHUP:
444 printf("Polling fd %d tells it has hung up.\n", pollfd[i].fd);
1d483eea 445 num_hup++;
90ccaa9a 446 break;
447 case POLLNVAL:
448 printf("Polling fd %d tells fd is not open.\n", pollfd[i].fd);
1d483eea 449 num_hup++;
90ccaa9a 450 break;
451 case POLLPRI:
1d483eea 452 printf("Urgent read on fd %d\n", pollfd[i].fd);
90ccaa9a 453 /* Take care of high priority channels first. */
4f45ea55 454 high_prio = 1;
1d483eea 455 ret |= read_subbuffer(&fd_pairs->pair[i]);
90ccaa9a 456 break;
4f45ea55 457 }
90ccaa9a 458 }
1d483eea 459 /* If every FD has hung up, we end the read loop here */
460 if(num_hup == fd_pairs->num_pairs) break;
90ccaa9a 461
4f45ea55 462 if(!high_prio) {
463 for(i=0;i<fd_pairs->num_pairs;i++) {
464 switch(pollfd[i].revents) {
465 case POLLIN:
466 /* Take care of low priority channels. */
1d483eea 467 printf("Normal read on fd %d\n", pollfd[i].fd);
468 ret |= read_subbuffer(&fd_pairs->pair[i]);
4f45ea55 469 break;
470 }
471 }
90ccaa9a 472 }
473
474 }
475
1d483eea 476free_fd:
90ccaa9a 477 free(pollfd);
478
1d483eea 479 /* munmap only the successfully mmapped indexes */
480 i = fd_pairs->num_pairs;
481munmap:
482 /* Munmap each FD */
483 for(j=0;j<i;j++) {
484 struct fd_pair *pair = &fd_pairs->pair[j];
485 int err_ret;
486
487 err_ret = munmap(pair->mmap, pair->subbuf_size * pair->n_subbufs);
488 if(err_ret != 0) {
489 perror("Error in munmap");
490 }
491 ret |= err_ret;
492 }
493
494end:
495 return ret;
617de8e1 496}
497
498
499void close_channel_trace_pairs(struct channel_trace_fd *fd_pairs)
500{
90ccaa9a 501 int i;
502 int ret;
617de8e1 503
90ccaa9a 504 for(i=0;i<fd_pairs->num_pairs;i++) {
505 ret = close(fd_pairs->pair[i].channel);
506 if(ret == -1) perror("Close error on channel");
507 ret = close(fd_pairs->pair[i].trace);
508 if(ret == -1) perror("Close error on trace");
509 }
510 free(fd_pairs->pair);
617de8e1 511}
512
513int main(int argc, char ** argv)
514{
515 int ret;
516 pid_t pid;
517 struct channel_trace_fd fd_pairs = { NULL, 0 };
1d483eea 518 struct sigaction act;
617de8e1 519
520 ret = parse_arguments(argc, argv);
521
522 if(ret != 0) show_arguments();
523 if(ret < 0) return EINVAL;
524 if(ret > 0) return 0;
525
526 show_info();
527
528 if(daemon_mode) {
529 pid = fork();
530
531 if(pid > 0) {
532 /* parent */
533 return 0;
534 } else if(pid < 0) {
535 /* error */
536 printf("An error occured while forking.\n");
537 return -1;
538 }
539 /* else, we are the child, continue... */
540 }
541
1d483eea 542 /* Connect the signal handlers */
543 act.sa_handler = handler;
544 act.sa_flags = 0;
545 sigemptyset(&(act.sa_mask));
546 sigaddset(&(act.sa_mask), SIGTERM);
547 sigaddset(&(act.sa_mask), SIGQUIT);
548 sigaddset(&(act.sa_mask), SIGINT);
549 sigaction(SIGTERM, &act, NULL);
550 sigaction(SIGQUIT, &act, NULL);
551 sigaction(SIGINT, &act, NULL);
552
553 //return 0;
617de8e1 554 if(ret = open_channel_trace_pairs(channel_name, trace_name, &fd_pairs))
90ccaa9a 555 goto close_channel;
617de8e1 556
557 ret = read_channels(&fd_pairs);
558
90ccaa9a 559close_channel:
617de8e1 560 close_channel_trace_pairs(&fd_pairs);
561
617de8e1 562 return ret;
563}
This page took 0.046675 seconds and 4 git commands to generate.