Fix variable sized sb, update version
[lttv.git] / ltt / tracefile.c
1 /* This file is part of the Linux Trace Toolkit viewer
2 * Copyright (C) 2005 Mathieu Desnoyers
3 *
4 * Complete rewrite from the original version made by XangXiu Yang.
5 *
6 * This library is free software; you can redistribute it and/or
7 * modify it under the terms of the GNU Lesser General Public
8 * License Version 2.1 as published by the Free Software Foundation.
9 *
10 * This library is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
13 * Lesser General Public License for more details.
14 *
15 * You should have received a copy of the GNU Lesser General Public
16 * License along with this library; if not, write to the
17 * Free Software Foundation, Inc., 59 Temple Place - Suite 330,
18 * Boston, MA 02111-1307, USA.
19 */
20
21 #ifdef HAVE_CONFIG_H
22 #include <config.h>
23 #endif
24
25 #include <stdio.h>
26 #include <fcntl.h>
27 #include <string.h>
28 #include <dirent.h>
29 #include <sys/stat.h>
30 #include <sys/types.h>
31 #include <errno.h>
32 #include <unistd.h>
33 #include <math.h>
34 #include <glib.h>
35 #include <glib/gprintf.h>
36 #include <malloc.h>
37 #include <sys/mman.h>
38 #include <string.h>
39 #include <ctype.h>
40 #include <inttypes.h>
41
42 // For realpath
43 #include <limits.h>
44 #include <stdlib.h>
45
46
47 #include <ltt/ltt.h>
48 #include "ltt-private.h"
49 #include <ltt/trace.h>
50 #include <ltt/event.h>
51 #include <ltt/ltt-types.h>
52 #include <ltt/marker.h>
53
54 #define DEFAULT_N_BLOCKS 32
55
56 /* from marker.c */
57 extern long marker_update_fields_offsets(struct marker_info *info, const char *data);
58
59 /* Tracefile names used in this file */
60
61 GQuark LTT_TRACEFILE_NAME_METADATA;
62
63 #ifndef g_open
64 #define g_open open
65 #endif
66
67
68 #define __UNUSED__ __attribute__((__unused__))
69
70 #define g_info(format...) g_log (G_LOG_DOMAIN, G_LOG_LEVEL_INFO, format)
71
72 #ifndef g_debug
73 #define g_debug(format...) g_log (G_LOG_DOMAIN, G_LOG_LEVEL_DEBUG, format)
74 #endif
75
76 #define g_close close
77
78 /* Those macros must be called from within a function where page_size is a known
79 * variable */
80 #define PAGE_MASK (~(page_size-1))
81 #define PAGE_ALIGN(addr) (((addr)+page_size-1)&PAGE_MASK)
82
83 LttTrace *father_trace = NULL;
84
85 /* set the offset of the fields belonging to the event,
86 need the information of the archecture */
87 //void set_fields_offsets(LttTracefile *tf, LttEventType *event_type);
88 //size_t get_fields_offsets(LttTracefile *tf, LttEventType *event_type, void *data);
89
90 /* map a fixed size or a block information from the file (fd) */
91 static gint map_block(LttTracefile * tf, guint block_num);
92
93 /* calculate nsec per cycles for current block */
94 #if 0
95 static guint32 calc_nsecs_per_cycle(LttTracefile * t);
96 static guint64 cycles_2_ns(LttTracefile *tf, guint64 cycles);
97 #endif //0
98
99 /* go to the next event */
100 static int ltt_seek_next_event(LttTracefile *tf);
101
102 static int open_tracefiles(LttTrace *trace, gchar *root_path,
103 gchar *relative_path);
104 static int ltt_process_metadata_tracefile(LttTracefile *tf);
105 static void ltt_tracefile_time_span_get(LttTracefile *tf,
106 LttTime *start, LttTime *end);
107 static void group_time_span_get(GQuark name, gpointer data, gpointer user_data);
108 static gint map_block(LttTracefile * tf, guint block_num);
109 static void ltt_update_event_size(LttTracefile *tf);
110
111 /* Enable event debugging */
112 static int a_event_debug = 0;
113
114 void ltt_event_debug(int state)
115 {
116 a_event_debug = state;
117 }
118
119 /* trace can be NULL
120 *
121 * Return value : 0 success, 1 bad tracefile
122 */
123 static int parse_trace_header(ltt_subbuffer_header_t *header,
124 LttTracefile *tf, LttTrace *t)
125 {
126 if (header->magic_number == LTT_MAGIC_NUMBER)
127 tf->reverse_bo = 0;
128 else if(header->magic_number == LTT_REV_MAGIC_NUMBER)
129 tf->reverse_bo = 1;
130 else /* invalid magic number, bad tracefile ! */
131 return 1;
132
133 if(t) {
134 t->ltt_major_version = header->major_version;
135 t->ltt_minor_version = header->minor_version;
136 t->arch_size = header->arch_size;
137 }
138 tf->alignment = header->alignment;
139
140 /* Get float byte order : might be different from int byte order
141 * (or is set to 0 if the trace has no float (kernel trace)) */
142 tf->float_word_order = 0;
143
144 switch(header->major_version) {
145 case 0:
146 case 1:
147 g_warning("Unsupported trace version : %hhu.%hhu",
148 header->major_version, header->minor_version);
149 return 1;
150 break;
151 case 2:
152 switch(header->minor_version) {
153 case 5:
154 {
155 struct ltt_subbuffer_header_2_5 *vheader = header;
156 tf->buffer_header_size = ltt_subbuffer_header_size();
157 tf->tscbits = 27;
158 tf->eventbits = 5;
159 tf->tsc_mask = ((1ULL << tf->tscbits) - 1);
160 tf->tsc_mask_next_bit = (1ULL << tf->tscbits);
161
162 if(t) {
163 t->start_freq = ltt_get_uint64(LTT_GET_BO(tf),
164 &vheader->start_freq);
165 t->freq_scale = ltt_get_uint32(LTT_GET_BO(tf),
166 &vheader->freq_scale);
167 if(father_trace) {
168 t->start_freq = father_trace->start_freq;
169 t->freq_scale = father_trace->freq_scale;
170 } else {
171 father_trace = t;
172 }
173 t->start_tsc = ltt_get_uint64(LTT_GET_BO(tf),
174 &vheader->cycle_count_begin);
175 t->start_monotonic = 0;
176 t->start_time.tv_sec = ltt_get_uint64(LTT_GET_BO(tf),
177 &vheader->start_time_sec);
178 t->start_time.tv_nsec = ltt_get_uint64(LTT_GET_BO(tf),
179 &vheader->start_time_usec);
180 t->start_time.tv_nsec *= 1000; /* microsec to nanosec */
181
182 t->start_time_from_tsc = ltt_time_from_uint64(
183 (double)t->start_tsc
184 * 1000000000.0 * tf->trace->freq_scale
185 / (double)t->start_freq);
186 }
187 }
188 break;
189 default:
190 g_warning("Unsupported trace version : %hhu.%hhu",
191 header->major_version, header->minor_version);
192 return 1;
193 }
194 break;
195 default:
196 g_warning("Unsupported trace version : %hhu.%hhu",
197 header->major_version, header->minor_version);
198 return 1;
199 }
200 return 0;
201 }
202
203 int get_block_offset_size(LttTracefile *tf, guint block_num,
204 uint64_t *offset, uint32_t *size)
205 {
206 uint64_t offa, offb;
207
208 if (unlikely(block_num >= tf->num_blocks))
209 return -1;
210
211 offa = g_array_index(tf->buf_index, uint64_t, block_num);
212 if (likely(block_num < tf->num_blocks - 1))
213 offb = g_array_index(tf->buf_index, uint64_t, block_num + 1);
214 else
215 offb = tf->file_size;
216 *offset = offa;
217 *size = offb - offa;
218 return 0;
219 }
220
221 int ltt_trace_create_block_index(LttTracefile *tf)
222 {
223 int page_size = getpagesize();
224 uint64_t offset = 0;
225 unsigned long i = 0;
226 unsigned int header_map_size = PAGE_ALIGN(ltt_subbuffer_header_size());
227
228 tf->buf_index = g_array_sized_new(FALSE, TRUE, sizeof(uint64_t),
229 DEFAULT_N_BLOCKS);
230
231 g_assert(tf->buf_index->len == i);
232
233 while (offset < tf->file_size) {
234 ltt_subbuffer_header_t *header;
235 uint64_t *off;
236
237 tf->buf_index = g_array_set_size(tf->buf_index, i + 1);
238 off = &g_array_index(tf->buf_index, uint64_t, i);
239 *off = offset;
240
241 /* map block header */
242 header = mmap(0, header_map_size, PROT_READ,
243 MAP_PRIVATE, tf->fd, (off_t)offset);
244 if(header == MAP_FAILED) {
245 perror("Error in allocating memory for buffer of tracefile");
246 return -1;
247 }
248
249 /* read len, offset += len */
250 offset += ltt_get_uint32(LTT_GET_BO(tf), &header->sb_size);
251
252 /* unmap block header */
253 if(munmap(header, header_map_size)) {
254 g_warning("unmap size : %u\n", header_map_size);
255 perror("munmap error");
256 return -1;
257 }
258 ++i;
259 }
260 tf->num_blocks = i;
261
262 return 0;
263 }
264
265 /*****************************************************************************
266 *Function name
267 * ltt_tracefile_open : open a trace file, construct a LttTracefile
268 *Input params
269 * t : the trace containing the tracefile
270 * fileName : path name of the trace file
271 * tf : the tracefile structure
272 *Return value
273 * : 0 for success, -1 otherwise.
274 ****************************************************************************/
275
276 static gint ltt_tracefile_open(LttTrace *t, gchar * fileName, LttTracefile *tf)
277 {
278 struct stat lTDFStat; /* Trace data file status */
279 ltt_subbuffer_header_t *header;
280 int page_size = getpagesize();
281
282 //open the file
283 tf->long_name = g_quark_from_string(fileName);
284 tf->trace = t;
285 tf->fd = open(fileName, O_RDONLY);
286 tf->buf_index = NULL;
287 if(tf->fd < 0){
288 g_warning("Unable to open input data file %s\n", fileName);
289 goto end;
290 }
291
292 // Get the file's status
293 if(fstat(tf->fd, &lTDFStat) < 0){
294 g_warning("Unable to get the status of the input data file %s\n", fileName);
295 goto close_file;
296 }
297
298 // Is the file large enough to contain a trace
299 if(lTDFStat.st_size <
300 (off_t)(ltt_subbuffer_header_size())){
301 g_print("The input data file %s does not contain a trace\n", fileName);
302 goto close_file;
303 }
304
305 /* Temporarily map the buffer start header to get trace information */
306 /* Multiple of pages aligned head */
307 tf->buffer.head = mmap(0,
308 PAGE_ALIGN(ltt_subbuffer_header_size()), PROT_READ,
309 MAP_PRIVATE, tf->fd, 0);
310 if(tf->buffer.head == MAP_FAILED) {
311 perror("Error in allocating memory for buffer of tracefile");
312 goto close_file;
313 }
314 g_assert( ( (gulong)tf->buffer.head&(8-1) ) == 0); // make sure it's aligned.
315
316 header = (ltt_subbuffer_header_t *)tf->buffer.head;
317
318 if(parse_trace_header(header, tf, NULL)) {
319 g_warning("parse_trace_header error");
320 goto unmap_file;
321 }
322
323 //store the size of the file
324 tf->file_size = lTDFStat.st_size;
325 tf->events_lost = 0;
326 tf->subbuf_corrupt = 0;
327
328 if(munmap(tf->buffer.head,
329 PAGE_ALIGN(ltt_subbuffer_header_size()))) {
330 g_warning("unmap size : %zu\n",
331 PAGE_ALIGN(ltt_subbuffer_header_size()));
332 perror("munmap error");
333 g_assert(0);
334 }
335 tf->buffer.head = NULL;
336
337 /* Create block index */
338 ltt_trace_create_block_index(tf);
339
340 //read the first block
341 if(map_block(tf,0)) {
342 perror("Cannot map block for tracefile");
343 goto close_file;
344 }
345
346 return 0;
347
348 /* Error */
349 unmap_file:
350 if(munmap(tf->buffer.head,
351 PAGE_ALIGN(ltt_subbuffer_header_size()))) {
352 g_warning("unmap size : %zu\n",
353 PAGE_ALIGN(ltt_subbuffer_header_size()));
354 perror("munmap error");
355 g_assert(0);
356 }
357 close_file:
358 close(tf->fd);
359 end:
360 if (tf->buf_index)
361 g_array_free(tf->buf_index, TRUE);
362 return -1;
363 }
364
365
366 /*****************************************************************************
367 *Function name
368 * ltt_tracefile_close: close a trace file,
369 *Input params
370 * t : tracefile which will be closed
371 ****************************************************************************/
372
373 static void ltt_tracefile_close(LttTracefile *t)
374 {
375 int page_size = getpagesize();
376
377 if(t->buffer.head != NULL)
378 if(munmap(t->buffer.head, PAGE_ALIGN(t->buffer.size))) {
379 g_warning("unmap size : %u\n",
380 PAGE_ALIGN(t->buffer.size));
381 perror("munmap error");
382 g_assert(0);
383 }
384
385 close(t->fd);
386 if (t->buf_index)
387 g_array_free(t->buf_index, TRUE);
388 }
389
390 /****************************************************************************
391 * get_absolute_pathname
392 *
393 * return the unique pathname in the system
394 *
395 * MD : Fixed this function so it uses realpath, dealing well with
396 * forgotten cases (.. were not used correctly before).
397 *
398 ****************************************************************************/
399 void get_absolute_pathname(const gchar *pathname, gchar * abs_pathname)
400 {
401 abs_pathname[0] = '\0';
402
403 if (realpath(pathname, abs_pathname) != NULL)
404 return;
405 else
406 {
407 /* error, return the original path unmodified */
408 strcpy(abs_pathname, pathname);
409 return;
410 }
411 return;
412 }
413
414 /* Search for something like : .*_.*
415 *
416 * The left side is the name, the right side is the number.
417 * Exclude leading /.
418 * Exclude flight- prefix.
419 */
420
421 static int get_tracefile_name_number(gchar *raw_name,
422 GQuark *name,
423 guint *num,
424 gulong *tid,
425 gulong *pgid,
426 guint64 *creation)
427 {
428 guint raw_name_len = strlen(raw_name);
429 gchar char_name[PATH_MAX];
430 int i;
431 int underscore_pos;
432 long int cpu_num;
433 gchar *endptr;
434 gchar *tmpptr;
435
436 /* skip leading / */
437 for(i = 0; i < raw_name_len-1;i++) {
438 if(raw_name[i] != '/')
439 break;
440 }
441 raw_name = &raw_name[i];
442 raw_name_len = strlen(raw_name);
443
444 for(i=raw_name_len-1;i>=0;i--) {
445 if(raw_name[i] == '_') break;
446 }
447 if(i==-1) { /* Either not found or name length is 0 */
448 /* This is a userspace tracefile */
449 strncpy(char_name, raw_name, raw_name_len);
450 char_name[raw_name_len] = '\0';
451 *name = g_quark_from_string(char_name);
452 *num = 0; /* unknown cpu */
453 for(i=0;i<raw_name_len;i++) {
454 if(raw_name[i] == '/') {
455 break;
456 }
457 }
458 i++;
459 for(;i<raw_name_len;i++) {
460 if(raw_name[i] == '/') {
461 break;
462 }
463 }
464 i++;
465 for(;i<raw_name_len;i++) {
466 if(raw_name[i] == '-') {
467 break;
468 }
469 }
470 if(i == raw_name_len) return -1;
471 i++;
472 tmpptr = &raw_name[i];
473 for(;i<raw_name_len;i++) {
474 if(raw_name[i] == '.') {
475 raw_name[i] = ' ';
476 break;
477 }
478 }
479 *tid = strtoul(tmpptr, &endptr, 10);
480 if(endptr == tmpptr)
481 return -1; /* No digit */
482 if(*tid == ULONG_MAX)
483 return -1; /* underflow / overflow */
484 i++;
485 tmpptr = &raw_name[i];
486 for(;i<raw_name_len;i++) {
487 if(raw_name[i] == '.') {
488 raw_name[i] = ' ';
489 break;
490 }
491 }
492 *pgid = strtoul(tmpptr, &endptr, 10);
493 if(endptr == tmpptr)
494 return -1; /* No digit */
495 if(*pgid == ULONG_MAX)
496 return -1; /* underflow / overflow */
497 i++;
498 tmpptr = &raw_name[i];
499 *creation = strtoull(tmpptr, &endptr, 10);
500 if(endptr == tmpptr)
501 return -1; /* No digit */
502 if(*creation == G_MAXUINT64)
503 return -1; /* underflow / overflow */
504 } else {
505 underscore_pos = i;
506
507 cpu_num = strtol(raw_name+underscore_pos+1, &endptr, 10);
508
509 if(endptr == raw_name+underscore_pos+1)
510 return -1; /* No digit */
511 if(cpu_num == LONG_MIN || cpu_num == LONG_MAX)
512 return -1; /* underflow / overflow */
513
514 if (!strncmp(raw_name, "flight-", sizeof("flight-") - 1)) {
515 raw_name += sizeof("flight-") - 1;
516 underscore_pos -= sizeof("flight-") - 1;
517 }
518 strncpy(char_name, raw_name, underscore_pos);
519 char_name[underscore_pos] = '\0';
520 *name = g_quark_from_string(char_name);
521 *num = cpu_num;
522 }
523
524
525 return 0;
526 }
527
528
529 GData **ltt_trace_get_tracefiles_groups(LttTrace *trace)
530 {
531 return &trace->tracefiles;
532 }
533
534
535 void compute_tracefile_group(GQuark key_id,
536 GArray *group,
537 struct compute_tracefile_group_args *args)
538 {
539 unsigned int i;
540 LttTracefile *tf;
541
542 for(i=0; i<group->len; i++) {
543 tf = &g_array_index (group, LttTracefile, i);
544 if(tf->cpu_online)
545 args->func(tf, args->func_args);
546 }
547 }
548
549
550 static void ltt_tracefile_group_destroy(gpointer data)
551 {
552 GArray *group = (GArray *)data;
553 unsigned int i;
554 LttTracefile *tf;
555
556 if (group->len > 0)
557 destroy_marker_data(g_array_index (group, LttTracefile, 0).mdata);
558 for(i=0; i<group->len; i++) {
559 tf = &g_array_index (group, LttTracefile, i);
560 if(tf->cpu_online)
561 ltt_tracefile_close(tf);
562 }
563 g_array_free(group, TRUE);
564 }
565
566 static __attribute__ ((__unused__)) gboolean ltt_tracefile_group_has_cpu_online(gpointer data)
567 {
568 GArray *group = (GArray *)data;
569 unsigned int i;
570 LttTracefile *tf;
571
572 for(i=0; i<group->len; i++) {
573 tf = &g_array_index (group, LttTracefile, i);
574 if(tf->cpu_online)
575 return 1;
576 }
577 return 0;
578 }
579
580
581 /* Open each tracefile under a specific directory. Put them in a
582 * GData : permits to access them using their tracefile group pathname.
583 * i.e. access control/modules tracefile group by index :
584 * "control/module".
585 *
586 * relative path is the path relative to the trace root
587 * root path is the full path
588 *
589 * A tracefile group is simply an array where all the per cpu tracefiles sit.
590 */
591
592 static int open_tracefiles(LttTrace *trace, gchar *root_path, gchar *relative_path)
593 {
594 DIR *dir = opendir(root_path);
595 struct dirent *entry;
596 struct stat stat_buf;
597 int ret, i;
598 struct marker_data *mdata;
599
600 gchar path[PATH_MAX];
601 int path_len;
602 gchar *path_ptr;
603
604 int rel_path_len;
605 gchar rel_path[PATH_MAX];
606 gchar *rel_path_ptr;
607 LttTracefile tmp_tf;
608
609 if(dir == NULL) {
610 perror(root_path);
611 return ENOENT;
612 }
613
614 strncpy(path, root_path, PATH_MAX-1);
615 path_len = strlen(path);
616 path[path_len] = '/';
617 path_len++;
618 path_ptr = path + path_len;
619
620 strncpy(rel_path, relative_path, PATH_MAX-1);
621 rel_path_len = strlen(rel_path);
622 rel_path[rel_path_len] = '/';
623 rel_path_len++;
624 rel_path_ptr = rel_path + rel_path_len;
625
626 while((entry = readdir(dir)) != NULL) {
627
628 if(entry->d_name[0] == '.') continue;
629
630 strncpy(path_ptr, entry->d_name, PATH_MAX - path_len);
631 strncpy(rel_path_ptr, entry->d_name, PATH_MAX - rel_path_len);
632
633 ret = stat(path, &stat_buf);
634 if(ret == -1) {
635 perror(path);
636 continue;
637 }
638
639 g_debug("Tracefile file or directory : %s\n", path);
640
641 // if(strcmp(rel_path, "/eventdefs") == 0) continue;
642
643 if(S_ISDIR(stat_buf.st_mode)) {
644
645 g_debug("Entering subdirectory...\n");
646 ret = open_tracefiles(trace, path, rel_path);
647 if(ret < 0) continue;
648 } else if(S_ISREG(stat_buf.st_mode)) {
649 GQuark name;
650 guint num;
651 gulong tid, pgid;
652 guint64 creation;
653 GArray *group;
654 num = 0;
655 tid = pgid = 0;
656 creation = 0;
657 if(get_tracefile_name_number(rel_path, &name, &num, &tid, &pgid, &creation))
658 continue; /* invalid name */
659
660 g_debug("Opening file.\n");
661 if(ltt_tracefile_open(trace, path, &tmp_tf)) {
662 g_info("Error opening tracefile %s", path);
663
664 continue; /* error opening the tracefile : bad magic number ? */
665 }
666
667 g_debug("Tracefile name is %s and number is %u",
668 g_quark_to_string(name), num);
669
670 mdata = NULL;
671 tmp_tf.cpu_online = 1;
672 tmp_tf.cpu_num = num;
673 tmp_tf.name = name;
674 tmp_tf.tid = tid;
675 tmp_tf.pgid = pgid;
676 tmp_tf.creation = creation;
677 group = g_datalist_id_get_data(&trace->tracefiles, name);
678 if(group == NULL) {
679 /* Elements are automatically cleared when the array is allocated.
680 * It makes the cpu_online variable set to 0 : cpu offline, by default.
681 */
682 group = g_array_sized_new (FALSE, TRUE, sizeof(LttTracefile), 10);
683 g_datalist_id_set_data_full(&trace->tracefiles, name,
684 group, ltt_tracefile_group_destroy);
685 mdata = allocate_marker_data();
686 if (!mdata)
687 g_error("Error in allocating marker data");
688 }
689
690 /* Add the per cpu tracefile to the named group */
691 unsigned int old_len = group->len;
692 if(num+1 > old_len)
693 group = g_array_set_size(group, num+1);
694
695 g_assert(group->len > 0);
696 if (!mdata)
697 mdata = g_array_index (group, LttTracefile, 0).mdata;
698
699 g_array_index (group, LttTracefile, num) = tmp_tf;
700 g_array_index (group, LttTracefile, num).event.tracefile =
701 &g_array_index (group, LttTracefile, num);
702 for (i = 0; i < group->len; i++)
703 g_array_index (group, LttTracefile, i).mdata = mdata;
704 }
705 }
706
707 closedir(dir);
708
709 return 0;
710 }
711
712
713 /* Presumes the tracefile is already seeked at the beginning. It makes sense,
714 * because it must be done just after the opening */
715 static int ltt_process_metadata_tracefile(LttTracefile *tf)
716 {
717 int err;
718
719 while(1) {
720 err = ltt_tracefile_read_seek(tf);
721 if(err == EPERM) goto seek_error;
722 else if(err == ERANGE) break; /* End of tracefile */
723
724 err = ltt_tracefile_read_update_event(tf);
725 if(err) goto update_error;
726
727 /* The rules are :
728 * It contains only core events :
729 * 0 : set_marker_id
730 * 1 : set_marker_format
731 */
732 if(tf->event.event_id >= MARKER_CORE_IDS) {
733 /* Should only contain core events */
734 g_warning("Error in processing metadata file %s, "
735 "should not contain event id %u.", g_quark_to_string(tf->name),
736 tf->event.event_id);
737 err = EPERM;
738 goto event_id_error;
739 } else {
740 char *pos;
741 const char *channel_name, *marker_name, *format;
742 uint16_t id;
743 guint8 int_size, long_size, pointer_size, size_t_size, alignment;
744
745 switch((enum marker_id)tf->event.event_id) {
746 case MARKER_ID_SET_MARKER_ID:
747 channel_name = pos = tf->event.data;
748 pos += strlen(channel_name) + 1;
749 marker_name = pos;
750 g_debug("Doing MARKER_ID_SET_MARKER_ID of marker %s.%s",
751 channel_name, marker_name);
752 pos += strlen(marker_name) + 1;
753 pos += ltt_align((size_t)pos, sizeof(guint16), tf->alignment);
754 id = ltt_get_uint16(LTT_GET_BO(tf), pos);
755 g_debug("In MARKER_ID_SET_MARKER_ID of marker %s.%s id %hu",
756 channel_name, marker_name, id);
757 pos += sizeof(guint16);
758 int_size = *(guint8*)pos;
759 pos += sizeof(guint8);
760 long_size = *(guint8*)pos;
761 pos += sizeof(guint8);
762 pointer_size = *(guint8*)pos;
763 pos += sizeof(guint8);
764 size_t_size = *(guint8*)pos;
765 pos += sizeof(guint8);
766 alignment = *(guint8*)pos;
767 pos += sizeof(guint8);
768 marker_id_event(tf->trace,
769 g_quark_from_string(channel_name),
770 g_quark_from_string(marker_name),
771 id, int_size, long_size,
772 pointer_size, size_t_size, alignment);
773 break;
774 case MARKER_ID_SET_MARKER_FORMAT:
775 channel_name = pos = tf->event.data;
776 pos += strlen(channel_name) + 1;
777 marker_name = pos;
778 g_debug("Doing MARKER_ID_SET_MARKER_FORMAT of marker %s.%s",
779 channel_name, marker_name);
780 pos += strlen(marker_name) + 1;
781 format = pos;
782 pos += strlen(format) + 1;
783 marker_format_event(tf->trace,
784 g_quark_from_string(channel_name),
785 g_quark_from_string(marker_name),
786 format);
787 /* get information from dictionary TODO */
788 break;
789 default:
790 g_warning("Error in processing metadata file %s, "
791 "unknown event id %hhu.",
792 g_quark_to_string(tf->name),
793 tf->event.event_id);
794 err = EPERM;
795 goto event_id_error;
796 }
797 }
798 }
799 return 0;
800
801 /* Error handling */
802 event_id_error:
803 update_error:
804 seek_error:
805 g_warning("An error occured in metadata tracefile parsing");
806 return err;
807 }
808
809 /*
810 * Open a trace and return its LttTrace handle.
811 *
812 * pathname must be the directory of the trace
813 */
814
815 LttTrace *ltt_trace_open(const gchar *pathname)
816 {
817 gchar abs_path[PATH_MAX];
818 LttTrace * t;
819 LttTracefile *tf;
820 GArray *group;
821 unsigned int i;
822 int ret;
823 ltt_subbuffer_header_t *header;
824 DIR *dir;
825 struct dirent *entry;
826 struct stat stat_buf;
827 gchar path[PATH_MAX];
828
829 t = g_new(LttTrace, 1);
830 if(!t) goto alloc_error;
831
832 get_absolute_pathname(pathname, abs_path);
833 t->pathname = g_quark_from_string(abs_path);
834
835 g_datalist_init(&t->tracefiles);
836
837 /* Test to see if it looks like a trace */
838 dir = opendir(abs_path);
839 if(dir == NULL) {
840 perror(abs_path);
841 goto open_error;
842 }
843 while((entry = readdir(dir)) != NULL) {
844 strcpy(path, abs_path);
845 strcat(path, "/");
846 strcat(path, entry->d_name);
847 ret = stat(path, &stat_buf);
848 if(ret == -1) {
849 perror(path);
850 continue;
851 }
852 }
853 closedir(dir);
854
855 /* Open all the tracefiles */
856 t->start_freq= 0;
857 if(open_tracefiles(t, abs_path, "")) {
858 g_warning("Error opening tracefile %s", abs_path);
859 goto find_error;
860 }
861
862 /* Parse each trace metadata_N files : get runtime fac. info */
863 group = g_datalist_id_get_data(&t->tracefiles, LTT_TRACEFILE_NAME_METADATA);
864 if(group == NULL) {
865 g_warning("Trace %s has no metadata tracefile", abs_path);
866 goto find_error;
867 }
868
869 /*
870 * Get the trace information for the metadata_0 tracefile.
871 * Getting a correct trace start_time and start_tsc is insured by the fact
872 * that no subbuffers are supposed to be lost in the metadata channel.
873 * Therefore, the first subbuffer contains the start_tsc timestamp in its
874 * buffer header.
875 */
876 g_assert(group->len > 0);
877 tf = &g_array_index (group, LttTracefile, 0);
878 header = (ltt_subbuffer_header_t *)tf->buffer.head;
879 ret = parse_trace_header(header, tf, t);
880 g_assert(!ret);
881
882 t->num_cpu = group->len;
883
884 //ret = allocate_marker_data(t);
885 //if (ret)
886 // g_error("Error in allocating marker data");
887
888 for(i=0; i<group->len; i++) {
889 tf = &g_array_index (group, LttTracefile, i);
890 if (tf->cpu_online)
891 if(ltt_process_metadata_tracefile(tf))
892 goto find_error;
893 // goto metadata_error;
894 }
895
896 return t;
897
898 /* Error handling */
899 //metadata_error:
900 // destroy_marker_data(t);
901 find_error:
902 g_datalist_clear(&t->tracefiles);
903 open_error:
904 g_free(t);
905 alloc_error:
906 return NULL;
907
908 }
909
910 /* Open another, completely independant, instance of a trace.
911 *
912 * A read on this new instance will read the first event of the trace.
913 *
914 * When we copy a trace, we want all the opening actions to happen again :
915 * the trace will be reopened and totally independant from the original.
916 * That's why we call ltt_trace_open.
917 */
918 LttTrace *ltt_trace_copy(LttTrace *self)
919 {
920 return ltt_trace_open(g_quark_to_string(self->pathname));
921 }
922
923 /*
924 * Close a trace
925 */
926
927 void ltt_trace_close(LttTrace *t)
928 {
929 g_datalist_clear(&t->tracefiles);
930 g_free(t);
931 }
932
933
934 /*****************************************************************************
935 * Get the start time and end time of the trace
936 ****************************************************************************/
937
938 void ltt_tracefile_time_span_get(LttTracefile *tf,
939 LttTime *start, LttTime *end)
940 {
941 int err;
942
943 err = map_block(tf, 0);
944 if(unlikely(err)) {
945 g_error("Can not map block");
946 *start = ltt_time_infinite;
947 } else
948 *start = tf->buffer.begin.timestamp;
949
950 err = map_block(tf, tf->num_blocks - 1); /* Last block */
951 if(unlikely(err)) {
952 g_error("Can not map block");
953 *end = ltt_time_zero;
954 } else
955 *end = tf->buffer.end.timestamp;
956
957 g_assert(end->tv_sec <= G_MAXUINT);
958 }
959
960 struct tracefile_time_span_get_args {
961 LttTrace *t;
962 LttTime *start;
963 LttTime *end;
964 };
965
966 static void group_time_span_get(GQuark name, gpointer data, gpointer user_data)
967 {
968 struct tracefile_time_span_get_args *args =
969 (struct tracefile_time_span_get_args*)user_data;
970
971 GArray *group = (GArray *)data;
972 unsigned int i;
973 LttTracefile *tf;
974 LttTime tmp_start;
975 LttTime tmp_end;
976
977 for(i=0; i<group->len; i++) {
978 tf = &g_array_index (group, LttTracefile, i);
979 if(tf->cpu_online) {
980 ltt_tracefile_time_span_get(tf, &tmp_start, &tmp_end);
981 if(ltt_time_compare(*args->start, tmp_start)>0) *args->start = tmp_start;
982 if(ltt_time_compare(*args->end, tmp_end)<0) *args->end = tmp_end;
983 }
984 }
985 }
986
987 /* return the start and end time of a trace */
988
989 void ltt_trace_time_span_get(LttTrace *t, LttTime *start, LttTime *end)
990 {
991 LttTime min_start = ltt_time_infinite;
992 LttTime max_end = ltt_time_zero;
993 struct tracefile_time_span_get_args args = { t, &min_start, &max_end };
994
995 g_datalist_foreach(&t->tracefiles, &group_time_span_get, &args);
996
997 if(start != NULL) *start = min_start;
998 if(end != NULL) *end = max_end;
999
1000 }
1001
1002
1003 /* Seek to the first event in a tracefile that has a time equal or greater than
1004 * the time passed in parameter.
1005 *
1006 * If the time parameter is outside the tracefile time span, seek to the first
1007 * event or if after, return ERANGE.
1008 *
1009 * If the time parameter is before the first event, we have to seek specially to
1010 * there.
1011 *
1012 * If the time is after the end of the trace, return ERANGE.
1013 *
1014 * Do a binary search to find the right block, then a sequential search in the
1015 * block to find the event.
1016 *
1017 * In the special case where the time requested fits inside a block that has no
1018 * event corresponding to the requested time, the first event of the next block
1019 * will be seeked.
1020 *
1021 * IMPORTANT NOTE : // FIXME everywhere...
1022 *
1023 * You MUST NOT do a ltt_tracefile_read right after a ltt_tracefile_seek_time :
1024 * you will jump over an event if you do.
1025 *
1026 * Return value : 0 : no error, the tf->event can be used
1027 * ERANGE : time if after the last event of the trace
1028 * otherwise : this is an error.
1029 *
1030 * */
1031
1032 int ltt_tracefile_seek_time(LttTracefile *tf, LttTime time)
1033 {
1034 int ret = 0;
1035 int err;
1036 unsigned int block_num, high, low;
1037
1038 /* seek at the beginning of trace */
1039 err = map_block(tf, 0); /* First block */
1040 if(unlikely(err)) {
1041 g_error("Can not map block");
1042 goto fail;
1043 }
1044
1045 /* If the time is lower or equal the beginning of the trace,
1046 * go to the first event. */
1047 if(ltt_time_compare(time, tf->buffer.begin.timestamp) <= 0) {
1048 ret = ltt_tracefile_read(tf);
1049 if(ret == ERANGE) goto range;
1050 else if (ret) goto fail;
1051 goto found; /* There is either no event in the trace or the event points
1052 to the first event in the trace */
1053 }
1054
1055 err = map_block(tf, tf->num_blocks - 1); /* Last block */
1056 if(unlikely(err)) {
1057 g_error("Can not map block");
1058 goto fail;
1059 }
1060
1061 /* If the time is after the end of the trace, return ERANGE. */
1062 if(ltt_time_compare(time, tf->buffer.end.timestamp) > 0) {
1063 goto range;
1064 }
1065
1066 /* Binary search the block */
1067 high = tf->num_blocks - 1;
1068 low = 0;
1069
1070 while(1) {
1071 block_num = ((high-low) / 2) + low;
1072
1073 err = map_block(tf, block_num);
1074 if(unlikely(err)) {
1075 g_error("Can not map block");
1076 goto fail;
1077 }
1078 if(high == low) {
1079 /* We cannot divide anymore : this is what would happen if the time
1080 * requested was exactly between two consecutive buffers'end and start
1081 * timestamps. This is also what would happend if we didn't deal with out
1082 * of span cases prior in this function. */
1083 /* The event is right in the buffer!
1084 * (or in the next buffer first event) */
1085 while(1) {
1086 ret = ltt_tracefile_read(tf);
1087 if(ret == ERANGE) goto range; /* ERANGE or EPERM */
1088 else if(ret) goto fail;
1089
1090 if(ltt_time_compare(time, tf->event.event_time) <= 0)
1091 goto found;
1092 }
1093
1094 } else if(ltt_time_compare(time, tf->buffer.begin.timestamp) < 0) {
1095 /* go to lower part */
1096 high = block_num - 1;
1097 } else if(ltt_time_compare(time, tf->buffer.end.timestamp) > 0) {
1098 /* go to higher part */
1099 low = block_num + 1;
1100 } else {/* The event is right in the buffer!
1101 (or in the next buffer first event) */
1102 while(1) {
1103 ret = ltt_tracefile_read(tf);
1104 if(ret == ERANGE) goto range; /* ERANGE or EPERM */
1105 else if(ret) goto fail;
1106
1107 if(ltt_time_compare(time, tf->event.event_time) <= 0)
1108 break;
1109 }
1110 goto found;
1111 }
1112 }
1113
1114 found:
1115 return 0;
1116 range:
1117 return ERANGE;
1118
1119 /* Error handling */
1120 fail:
1121 g_error("ltt_tracefile_seek_time failed on tracefile %s",
1122 g_quark_to_string(tf->name));
1123 return EPERM;
1124 }
1125
1126 /* Seek to a position indicated by an LttEventPosition
1127 */
1128
1129 int ltt_tracefile_seek_position(LttTracefile *tf, const LttEventPosition *ep)
1130 {
1131 int err;
1132
1133 if(ep->tracefile != tf) {
1134 goto fail;
1135 }
1136
1137 err = map_block(tf, ep->block);
1138 if(unlikely(err)) {
1139 g_error("Can not map block");
1140 goto fail;
1141 }
1142
1143 tf->event.offset = ep->offset;
1144
1145 /* Put back the event real tsc */
1146 tf->event.tsc = ep->tsc;
1147 tf->buffer.tsc = ep->tsc;
1148
1149 err = ltt_tracefile_read_update_event(tf);
1150 if(err) goto fail;
1151
1152 /* deactivate this, as it does nothing for now
1153 err = ltt_tracefile_read_op(tf);
1154 if(err) goto fail;
1155 */
1156
1157 return 0;
1158
1159 fail:
1160 g_error("ltt_tracefile_seek_time failed on tracefile %s",
1161 g_quark_to_string(tf->name));
1162 return 1;
1163 }
1164
1165 /* Given a TSC value, return the LttTime (seconds,nanoseconds) it
1166 * corresponds to.
1167 */
1168
1169 LttTime ltt_interpolate_time_from_tsc(LttTracefile *tf, guint64 tsc)
1170 {
1171 LttTime time;
1172
1173 if(tsc > tf->trace->start_tsc) {
1174 time = ltt_time_from_uint64(
1175 (double)(tsc - tf->trace->start_tsc)
1176 * 1000000000.0 * tf->trace->freq_scale
1177 / (double)tf->trace->start_freq);
1178 time = ltt_time_add(tf->trace->start_time_from_tsc, time);
1179 } else {
1180 time = ltt_time_from_uint64(
1181 (double)(tf->trace->start_tsc - tsc)
1182 * 1000000000.0 * tf->trace->freq_scale
1183 / (double)tf->trace->start_freq);
1184 time = ltt_time_sub(tf->trace->start_time_from_tsc, time);
1185 }
1186 return time;
1187 }
1188
1189 /* Calculate the real event time based on the buffer boundaries */
1190 LttTime ltt_interpolate_time(LttTracefile *tf, LttEvent *event)
1191 {
1192 return ltt_interpolate_time_from_tsc(tf, tf->buffer.tsc);
1193 }
1194
1195
1196 /* Get the current event of the tracefile : valid until the next read */
1197 LttEvent *ltt_tracefile_get_event(LttTracefile *tf)
1198 {
1199 return &tf->event;
1200 }
1201
1202
1203
1204 /*****************************************************************************
1205 *Function name
1206 * ltt_tracefile_read : Read the next event in the tracefile
1207 *Input params
1208 * t : tracefile
1209 *Return value
1210 *
1211 * Returns 0 if an event can be used in tf->event.
1212 * Returns ERANGE on end of trace. The event in tf->event still can be used
1213 * (if the last block was not empty).
1214 * Returns EPERM on error.
1215 *
1216 * This function does make the tracefile event structure point to the event
1217 * currently pointed to by the tf->event.
1218 *
1219 * Note : you must call a ltt_tracefile_seek to the beginning of the trace to
1220 * reinitialize it after an error if you want results to be coherent.
1221 * It would be the case if a end of trace last buffer has no event : the end
1222 * of trace wouldn't be returned, but an error.
1223 * We make the assumption there is at least one event per buffer.
1224 ****************************************************************************/
1225
1226 int ltt_tracefile_read(LttTracefile *tf)
1227 {
1228 int err;
1229
1230 err = ltt_tracefile_read_seek(tf);
1231 if(err) return err;
1232 err = ltt_tracefile_read_update_event(tf);
1233 if(err) return err;
1234
1235 /* deactivate this, as it does nothing for now
1236 err = ltt_tracefile_read_op(tf);
1237 if(err) return err;
1238 */
1239
1240 return 0;
1241 }
1242
1243 int ltt_tracefile_read_seek(LttTracefile *tf)
1244 {
1245 int err;
1246
1247 /* Get next buffer until we finally have an event, or end of trace */
1248 while(1) {
1249 err = ltt_seek_next_event(tf);
1250 if(unlikely(err == ENOPROTOOPT)) {
1251 return EPERM;
1252 }
1253
1254 /* Are we at the end of the buffer ? */
1255 if(err == ERANGE) {
1256 if(unlikely(tf->buffer.index == tf->num_blocks-1)){ /* end of trace ? */
1257 return ERANGE;
1258 } else {
1259 /* get next block */
1260 err = map_block(tf, tf->buffer.index + 1);
1261 if(unlikely(err)) {
1262 g_error("Can not map block");
1263 return EPERM;
1264 }
1265 }
1266 } else break; /* We found an event ! */
1267 }
1268
1269 return 0;
1270 }
1271
1272 /* do an operation when reading a new event */
1273
1274 /* This function does nothing for now */
1275 #if 0
1276 int ltt_tracefile_read_op(LttTracefile *tf)
1277 {
1278 LttEvent *event;
1279
1280 event = &tf->event;
1281
1282 /* do event specific operation */
1283
1284 /* nothing */
1285
1286 return 0;
1287 }
1288 #endif
1289
1290 static void print_debug_event_header(LttEvent *ev, void *start_pos, void *end_pos)
1291 {
1292 unsigned int offset = 0;
1293 int i, j;
1294
1295 g_printf("Event header (tracefile %s offset %" PRIx64 "):\n",
1296 g_quark_to_string(ev->tracefile->long_name),
1297 (uint64_t)ev->tracefile->buffer.offset +
1298 (long)start_pos - (long)ev->tracefile->buffer.head);
1299
1300 while (offset < (long)end_pos - (long)start_pos) {
1301 g_printf("%8lx", (long)start_pos - (long)ev->tracefile->buffer.head + offset);
1302 g_printf(" ");
1303
1304 for (i = 0; i < 4 ; i++) {
1305 for (j = 0; j < 4; j++) {
1306 if (offset + ((i * 4) + j) <
1307 (long)end_pos - (long)start_pos)
1308 g_printf("%02hhX",
1309 ((char*)start_pos)[offset + ((i * 4) + j)]);
1310 else
1311 g_printf(" ");
1312 g_printf(" ");
1313 }
1314 if (i < 4)
1315 g_printf(" ");
1316 }
1317 offset+=16;
1318 g_printf("\n");
1319 }
1320 }
1321
1322
1323 /* same as ltt_tracefile_read, but does not seek to the next event nor call
1324 * event specific operation. */
1325 int ltt_tracefile_read_update_event(LttTracefile *tf)
1326 {
1327 void * pos;
1328 LttEvent *event;
1329 void *pos_aligned;
1330 guint16 packed_evid; /* event id reader from the 5 bits in header */
1331
1332 event = &tf->event;
1333 pos = tf->buffer.head + event->offset;
1334
1335 /* Read event header */
1336
1337 /* Align the head */
1338 pos += ltt_align((size_t)pos, sizeof(guint32), tf->alignment);
1339 pos_aligned = pos;
1340
1341 event->timestamp = ltt_get_uint32(LTT_GET_BO(tf), pos);
1342 event->event_id = packed_evid = event->timestamp >> tf->tscbits;
1343 event->timestamp = event->timestamp & tf->tsc_mask;
1344 pos += sizeof(guint32);
1345
1346 switch (packed_evid) {
1347 case 29: /* LTT_RFLAG_ID_SIZE_TSC */
1348 event->event_id = ltt_get_uint16(LTT_GET_BO(tf), pos);
1349 pos += sizeof(guint16);
1350 event->event_size = ltt_get_uint16(LTT_GET_BO(tf), pos);
1351 pos += sizeof(guint16);
1352 if (event->event_size == 0xFFFF) {
1353 event->event_size = ltt_get_uint32(LTT_GET_BO(tf), pos);
1354 pos += sizeof(guint32);
1355 }
1356 pos += ltt_align((size_t)pos, sizeof(guint64), tf->alignment);
1357 tf->buffer.tsc = ltt_get_uint64(LTT_GET_BO(tf), pos);
1358 pos += sizeof(guint64);
1359 break;
1360 case 30: /* LTT_RFLAG_ID_SIZE */
1361 event->event_id = ltt_get_uint16(LTT_GET_BO(tf), pos);
1362 pos += sizeof(guint16);
1363 event->event_size = ltt_get_uint16(LTT_GET_BO(tf), pos);
1364 pos += sizeof(guint16);
1365 if (event->event_size == 0xFFFF) {
1366 event->event_size = ltt_get_uint32(LTT_GET_BO(tf), pos);
1367 pos += sizeof(guint32);
1368 }
1369 break;
1370 case 31: /* LTT_RFLAG_ID */
1371 event->event_id = ltt_get_uint16(LTT_GET_BO(tf), pos);
1372 pos += sizeof(guint16);
1373 event->event_size = G_MAXUINT;
1374 break;
1375 default:
1376 event->event_size = G_MAXUINT;
1377 break;
1378 }
1379
1380 if (likely(packed_evid != 29)) {
1381 /* No extended timestamp */
1382 if (event->timestamp < (tf->buffer.tsc & tf->tsc_mask))
1383 tf->buffer.tsc = ((tf->buffer.tsc & ~tf->tsc_mask) /* overflow */
1384 + tf->tsc_mask_next_bit)
1385 | (guint64)event->timestamp;
1386 else
1387 tf->buffer.tsc = (tf->buffer.tsc & ~tf->tsc_mask) /* no overflow */
1388 | (guint64)event->timestamp;
1389 }
1390 event->tsc = tf->buffer.tsc;
1391
1392 event->event_time = ltt_interpolate_time(tf, event);
1393
1394 if (a_event_debug)
1395 print_debug_event_header(event, pos_aligned, pos);
1396
1397 event->data = pos;
1398
1399 /*
1400 * Let ltt_update_event_size update event->data according to the largest
1401 * alignment within the payload.
1402 * Get the data size and update the event fields with the current
1403 * information. */
1404 ltt_update_event_size(tf);
1405
1406 return 0;
1407 }
1408
1409
1410 /****************************************************************************
1411 *Function name
1412 * map_block : map a block from the file
1413 *Input Params
1414 * lttdes : ltt trace file
1415 * whichBlock : the block which will be read
1416 *return value
1417 * 0 : success
1418 * EINVAL : lseek fail
1419 * EIO : can not read from the file
1420 ****************************************************************************/
1421
1422 static gint map_block(LttTracefile * tf, guint block_num)
1423 {
1424 int page_size = getpagesize();
1425 ltt_subbuffer_header_t *header;
1426 uint64_t offset;
1427 uint32_t size;
1428 int ret;
1429
1430 g_assert(block_num < tf->num_blocks);
1431
1432 if(tf->buffer.head != NULL) {
1433 if(munmap(tf->buffer.head, PAGE_ALIGN(tf->buffer.size))) {
1434 g_warning("unmap size : %u\n",
1435 PAGE_ALIGN(tf->buffer.size));
1436 perror("munmap error");
1437 g_assert(0);
1438 }
1439 }
1440
1441 ret = get_block_offset_size(tf, block_num, &offset, &size);
1442 g_assert(!ret);
1443
1444 g_debug("Map block %u, offset %llu, size %u\n", block_num,
1445 (unsigned long long)offset, (unsigned int)size);
1446
1447 /* Multiple of pages aligned head */
1448 tf->buffer.head = mmap(0, (size_t)size, PROT_READ, MAP_PRIVATE,
1449 tf->fd, (off_t)offset);
1450
1451 if(tf->buffer.head == MAP_FAILED) {
1452 perror("Error in allocating memory for buffer of tracefile");
1453 g_assert(0);
1454 goto map_error;
1455 }
1456 g_assert( ( (gulong)tf->buffer.head&(8-1) ) == 0); // make sure it's aligned.
1457
1458 tf->buffer.index = block_num;
1459
1460 header = (ltt_subbuffer_header_t *)tf->buffer.head;
1461
1462 tf->buffer.begin.cycle_count = ltt_get_uint64(LTT_GET_BO(tf),
1463 &header->cycle_count_begin);
1464 tf->buffer.end.cycle_count = ltt_get_uint64(LTT_GET_BO(tf),
1465 &header->cycle_count_end);
1466 tf->buffer.offset = offset;
1467 tf->buffer.size = ltt_get_uint32(LTT_GET_BO(tf),
1468 &header->sb_size);
1469 tf->buffer.data_size = ltt_get_uint32(LTT_GET_BO(tf),
1470 &header->data_size);
1471 tf->buffer.tsc = tf->buffer.begin.cycle_count;
1472 tf->event.tsc = tf->buffer.tsc;
1473 tf->buffer.freq = tf->buffer.begin.freq;
1474
1475 g_assert(size == tf->buffer.size);
1476 g_assert(tf->buffer.data_size <= tf->buffer.size);
1477
1478 if (tf->trace->start_freq)
1479 {
1480 tf->buffer.begin.freq = tf->trace->start_freq;
1481 tf->buffer.begin.timestamp = ltt_interpolate_time_from_tsc(tf,
1482 tf->buffer.begin.cycle_count);
1483 tf->buffer.end.freq = tf->trace->start_freq;
1484 tf->buffer.end.timestamp = ltt_interpolate_time_from_tsc(tf,
1485 tf->buffer.end.cycle_count);
1486 }
1487
1488 /* Make the current event point to the beginning of the buffer :
1489 * it means that the event read must get the first event. */
1490 tf->event.tracefile = tf;
1491 tf->event.block = block_num;
1492 tf->event.offset = 0;
1493
1494 if (header->events_lost) {
1495 g_warning("%d events lost so far in tracefile %s at block %u",
1496 (guint)header->events_lost,
1497 g_quark_to_string(tf->long_name),
1498 block_num);
1499 tf->events_lost = header->events_lost;
1500 }
1501 if (header->subbuf_corrupt) {
1502 g_warning("%d subbuffer(s) corrupted so far in tracefile %s at block %u",
1503 (guint)header->subbuf_corrupt,
1504 g_quark_to_string(tf->long_name),
1505 block_num);
1506 tf->subbuf_corrupt = header->subbuf_corrupt;
1507 }
1508
1509 return 0;
1510
1511 map_error:
1512 return -errno;
1513 }
1514
1515 static void print_debug_event_data(LttEvent *ev)
1516 {
1517 unsigned int offset = 0;
1518 int i, j;
1519
1520 if (!max(ev->event_size, ev->data_size))
1521 return;
1522
1523 g_printf("Event data (tracefile %s offset %" PRIx64 "):\n",
1524 g_quark_to_string(ev->tracefile->long_name),
1525 (uint64_t)ev->tracefile->buffer.offset
1526 + (long)ev->data - (long)ev->tracefile->buffer.head);
1527
1528 while (offset < max(ev->event_size, ev->data_size)) {
1529 g_printf("%8lx", (long)ev->data + offset
1530 - (long)ev->tracefile->buffer.head);
1531 g_printf(" ");
1532
1533 for (i = 0; i < 4 ; i++) {
1534 for (j = 0; j < 4; j++) {
1535 if (offset + ((i * 4) + j) < max(ev->event_size, ev->data_size))
1536 g_printf("%02hhX", ((char*)ev->data)[offset + ((i * 4) + j)]);
1537 else
1538 g_printf(" ");
1539 g_printf(" ");
1540 }
1541 if (i < 4)
1542 g_printf(" ");
1543 }
1544
1545 g_printf(" ");
1546
1547 for (i = 0; i < 4; i++) {
1548 for (j = 0; j < 4; j++) {
1549 if (offset + ((i * 4) + j) < max(ev->event_size, ev->data_size)) {
1550 if (isprint(((char*)ev->data)[offset + ((i * 4) + j)]))
1551 g_printf("%c", ((char*)ev->data)[offset + ((i * 4) + j)]);
1552 else
1553 g_printf(".");
1554 } else
1555 g_printf(" ");
1556 }
1557 }
1558 offset+=16;
1559 g_printf("\n");
1560 }
1561 }
1562
1563 /* It will update the fields offsets too */
1564 void ltt_update_event_size(LttTracefile *tf)
1565 {
1566 off_t size = 0;
1567 struct marker_info *info;
1568
1569 if (tf->name == LTT_TRACEFILE_NAME_METADATA) {
1570 switch((enum marker_id)tf->event.event_id) {
1571 case MARKER_ID_SET_MARKER_ID:
1572 size = strlen((char*)tf->event.data) + 1;
1573 g_debug("marker %s id set", (char*)tf->event.data + size);
1574 size += strlen((char*)tf->event.data + size) + 1;
1575 size += ltt_align(size, sizeof(guint16), tf->alignment);
1576 size += sizeof(guint16);
1577 size += sizeof(guint8);
1578 size += sizeof(guint8);
1579 size += sizeof(guint8);
1580 size += sizeof(guint8);
1581 size += sizeof(guint8);
1582 break;
1583 case MARKER_ID_SET_MARKER_FORMAT:
1584 size = strlen((char*)tf->event.data) + 1;
1585 g_debug("marker %s format set", (char*)tf->event.data);
1586 size += strlen((char*)tf->event.data + size) + 1;
1587 size += strlen((char*)tf->event.data + size) + 1;
1588 break;
1589 }
1590 }
1591
1592 info = marker_get_info_from_id(tf->mdata, tf->event.event_id);
1593
1594 if (tf->event.event_id >= MARKER_CORE_IDS)
1595 g_assert(info != NULL);
1596
1597 /* Do not update field offsets of core markers when initially reading the
1598 * metadata tracefile when the infos about these markers do not exist yet.
1599 */
1600 if (likely(info && info->fields)) {
1601 /* alignment */
1602 tf->event.data += ltt_align((off_t)(unsigned long)tf->event.data,
1603 info->largest_align,
1604 info->alignment);
1605 /* size, dynamically computed */
1606 if (info->size != -1)
1607 size = info->size;
1608 else
1609 size = marker_update_fields_offsets(marker_get_info_from_id(tf->mdata,
1610 tf->event.event_id), tf->event.data);
1611 }
1612
1613 tf->event.data_size = size;
1614
1615 /* Check consistency between kernel and LTTV structure sizes */
1616 if(tf->event.event_size == G_MAXUINT) {
1617 /* Event size too big to fit in the event size field */
1618 tf->event.event_size = tf->event.data_size;
1619 }
1620
1621 if (a_event_debug)
1622 print_debug_event_data(&tf->event);
1623
1624 if (tf->event.data_size != tf->event.event_size) {
1625 struct marker_info *info = marker_get_info_from_id(tf->mdata,
1626 tf->event.event_id);
1627 if (!info)
1628 g_error("Undescribed event %hhu in channel %s", tf->event.event_id,
1629 g_quark_to_string(tf->name));
1630 g_error("Kernel/LTTV event size differs for event %s: kernel %u, LTTV %u",
1631 g_quark_to_string(info->name),
1632 tf->event.event_size, tf->event.data_size);
1633 exit(-1);
1634 }
1635 }
1636
1637
1638 /* Take the tf current event offset and use the event id to figure out where is
1639 * the next event offset.
1640 *
1641 * This is an internal function not aiming at being used elsewhere : it will
1642 * not jump over the current block limits. Please consider using
1643 * ltt_tracefile_read to do this.
1644 *
1645 * Returns 0 on success
1646 * ERANGE if we are at the end of the buffer.
1647 * ENOPROTOOPT if an error occured when getting the current event size.
1648 */
1649 static int ltt_seek_next_event(LttTracefile *tf)
1650 {
1651 int ret = 0;
1652 void *pos;
1653
1654 /* seek over the buffer header if we are at the buffer start */
1655 if(tf->event.offset == 0) {
1656 tf->event.offset += tf->buffer_header_size;
1657
1658 if(tf->event.offset == tf->buffer.data_size) {
1659 ret = ERANGE;
1660 }
1661 goto found;
1662 }
1663
1664 pos = tf->event.data;
1665
1666 if(tf->event.data_size < 0) goto error;
1667
1668 pos += (size_t)tf->event.data_size;
1669
1670 tf->event.offset = pos - tf->buffer.head;
1671
1672 if(tf->event.offset == tf->buffer.data_size) {
1673 ret = ERANGE;
1674 goto found;
1675 }
1676 g_assert(tf->event.offset < tf->buffer.data_size);
1677
1678 found:
1679 return ret;
1680
1681 error:
1682 g_error("Error in ltt_seek_next_event for tracefile %s",
1683 g_quark_to_string(tf->name));
1684 return ENOPROTOOPT;
1685 }
1686
1687
1688 /*****************************************************************************
1689 *Function name
1690 * ltt_get_int : get an integer number
1691 *Input params
1692 * reverse_byte_order: must we reverse the byte order ?
1693 * size : the size of the integer
1694 * ptr : the data pointer
1695 *Return value
1696 * gint64 : a 64 bits integer
1697 ****************************************************************************/
1698
1699 gint64 ltt_get_int(gboolean reverse_byte_order, gint size, void *data)
1700 {
1701 gint64 val;
1702
1703 switch(size) {
1704 case 1: val = *((gint8*)data); break;
1705 case 2: val = ltt_get_int16(reverse_byte_order, data); break;
1706 case 4: val = ltt_get_int32(reverse_byte_order, data); break;
1707 case 8: val = ltt_get_int64(reverse_byte_order, data); break;
1708 default: val = ltt_get_int64(reverse_byte_order, data);
1709 g_critical("get_int : integer size %d unknown", size);
1710 break;
1711 }
1712
1713 return val;
1714 }
1715
1716 /*****************************************************************************
1717 *Function name
1718 * ltt_get_uint : get an unsigned integer number
1719 *Input params
1720 * reverse_byte_order: must we reverse the byte order ?
1721 * size : the size of the integer
1722 * ptr : the data pointer
1723 *Return value
1724 * guint64 : a 64 bits unsigned integer
1725 ****************************************************************************/
1726
1727 guint64 ltt_get_uint(gboolean reverse_byte_order, gint size, void *data)
1728 {
1729 guint64 val;
1730
1731 switch(size) {
1732 case 1: val = *((gint8*)data); break;
1733 case 2: val = ltt_get_uint16(reverse_byte_order, data); break;
1734 case 4: val = ltt_get_uint32(reverse_byte_order, data); break;
1735 case 8: val = ltt_get_uint64(reverse_byte_order, data); break;
1736 default: val = ltt_get_uint64(reverse_byte_order, data);
1737 g_critical("get_uint : unsigned integer size %d unknown",
1738 size);
1739 break;
1740 }
1741
1742 return val;
1743 }
1744
1745
1746 /* get the node name of the system */
1747
1748 char * ltt_trace_system_description_node_name (LttSystemDescription * s)
1749 {
1750 return s->node_name;
1751 }
1752
1753
1754 /* get the domain name of the system */
1755
1756 char * ltt_trace_system_description_domain_name (LttSystemDescription * s)
1757 {
1758 return s->domain_name;
1759 }
1760
1761
1762 /* get the description of the system */
1763
1764 char * ltt_trace_system_description_description (LttSystemDescription * s)
1765 {
1766 return s->description;
1767 }
1768
1769
1770 /* get the NTP corrected start time of the trace */
1771 LttTime ltt_trace_start_time(LttTrace *t)
1772 {
1773 return t->start_time;
1774 }
1775
1776 /* get the monotonic start time of the trace */
1777 LttTime ltt_trace_start_time_monotonic(LttTrace *t)
1778 {
1779 return t->start_time_from_tsc;
1780 }
1781
1782 static __attribute__ ((__unused__)) LttTracefile *ltt_tracefile_new()
1783 {
1784 LttTracefile *tf;
1785 tf = g_new(LttTracefile, 1);
1786 tf->event.tracefile = tf;
1787 return tf;
1788 }
1789
1790 static __attribute__ ((__unused__)) void ltt_tracefile_destroy(LttTracefile *tf)
1791 {
1792 g_free(tf);
1793 }
1794
1795 static __attribute__ ((__unused__)) void ltt_tracefile_copy(LttTracefile *dest, const LttTracefile *src)
1796 {
1797 *dest = *src;
1798 }
1799
1800 /* Before library loading... */
1801
1802 static __attribute__((constructor)) void init(void)
1803 {
1804 LTT_TRACEFILE_NAME_METADATA = g_quark_from_string("metadata");
1805 }
This page took 0.100062 seconds and 4 git commands to generate.