fix multiversion traces handling
[lttv.git] / ltt / branches / poly / 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 program is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License Version 2 as
8 * published by the Free Software Foundation;
9 *
10 * This program 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
13 * GNU General Public License for more details.
14 *
15 * You should have received a copy of the GNU General Public License
16 * along with this program; if not, write to the Free Software
17 * Foundation, Inc., 59 Temple Place - Suite 330, Boston,
18 * 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 <malloc.h>
36 #include <sys/mman.h>
37
38 // For realpath
39 #include <limits.h>
40 #include <stdlib.h>
41
42
43 #include "parser.h"
44 #include <ltt/ltt.h>
45 #include "ltt-private.h"
46 #include <ltt/trace.h>
47 #include <ltt/facility.h>
48 #include <ltt/event.h>
49 #include <ltt/type.h>
50 #include <ltt/ltt-types.h>
51
52
53 /* Facility names used in this file */
54
55 GQuark LTT_FACILITY_NAME_HEARTBEAT,
56 LTT_EVENT_NAME_HEARTBEAT;
57 GQuark LTT_TRACEFILE_NAME_FACILITIES;
58
59 #ifndef g_open
60 #define g_open open
61 #endif
62
63
64 #define __UNUSED__ __attribute__((__unused__))
65
66 #define g_info(format...) g_log (G_LOG_DOMAIN, G_LOG_LEVEL_INFO, format)
67
68 #ifndef g_debug
69 #define g_debug(format...) g_log (G_LOG_DOMAIN, G_LOG_LEVEL_DEBUG, format)
70 #endif
71
72 #define g_close close
73
74 /* Those macros must be called from within a function where page_size is a known
75 * variable */
76 #define PAGE_MASK (~(page_size-1))
77 #define PAGE_ALIGN(addr) (((addr)+page_size-1)&PAGE_MASK)
78
79 /* set the offset of the fields belonging to the event,
80 need the information of the archecture */
81 void set_fields_offsets(LttTracefile *tf, LttEventType *event_type);
82 //size_t get_fields_offsets(LttTracefile *tf, LttEventType *event_type, void *data);
83
84 /* get the size of the field type according to
85 * The facility size information. */
86 static inline void preset_field_type_size(LttTracefile *tf,
87 LttEventType *event_type,
88 off_t offset_root, off_t offset_parent,
89 enum field_status *fixed_root, enum field_status *fixed_parent,
90 LttField *field);
91
92 /* map a fixed size or a block information from the file (fd) */
93 static gint map_block(LttTracefile * tf, guint block_num);
94
95 /* calculate nsec per cycles for current block */
96 static double calc_nsecs_per_cycle(LttTracefile * t);
97
98 /* go to the next event */
99 static int ltt_seek_next_event(LttTracefile *tf);
100
101 void ltt_update_event_size(LttTracefile *tf);
102
103 #if 0
104 /* Functions to parse system.xml file (using glib xml parser) */
105 static void parser_start_element (GMarkupParseContext __UNUSED__ *context,
106 const gchar *element_name,
107 const gchar **attribute_names,
108 const gchar **attribute_values,
109 gpointer user_data,
110 GError **error)
111 {
112 int i=0;
113 LttSystemDescription* des = (LttSystemDescription* )user_data;
114 if(strcmp("system", element_name)){
115 *error = g_error_new(G_MARKUP_ERROR,
116 G_LOG_LEVEL_WARNING,
117 "This is not system.xml file");
118 return;
119 }
120
121 while(attribute_names[i]){
122 if(strcmp("node_name", attribute_names[i])==0){
123 des->node_name = g_strdup(attribute_values[i]);
124 }else if(strcmp("domainname", attribute_names[i])==0){
125 des->domain_name = g_strdup(attribute_values[i]);
126 }else if(strcmp("cpu", attribute_names[i])==0){
127 des->nb_cpu = atoi(attribute_values[i]);
128 }else if(strcmp("arch_size", attribute_names[i])==0){
129 if(strcmp(attribute_values[i],"LP32") == 0) des->size = LTT_LP32;
130 else if(strcmp(attribute_values[i],"ILP32") == 0) des->size = LTT_ILP32;
131 else if(strcmp(attribute_values[i],"LP64") == 0) des->size = LTT_LP64;
132 else if(strcmp(attribute_values[i],"ILP64") == 0) des->size = LTT_ILP64;
133 else if(strcmp(attribute_values[i],"UNKNOWN") == 0) des->size = LTT_UNKNOWN;
134 }else if(strcmp("endian", attribute_names[i])==0){
135 if(strcmp(attribute_values[i],"LITTLE_ENDIAN") == 0)
136 des->endian = LTT_LITTLE_ENDIAN;
137 else if(strcmp(attribute_values[i],"BIG_ENDIAN") == 0)
138 des->endian = LTT_BIG_ENDIAN;
139 }else if(strcmp("kernel_name", attribute_names[i])==0){
140 des->kernel_name = g_strdup(attribute_values[i]);
141 }else if(strcmp("kernel_release", attribute_names[i])==0){
142 des->kernel_release = g_strdup(attribute_values[i]);
143 }else if(strcmp("kernel_version", attribute_names[i])==0){
144 des->kernel_version = g_strdup(attribute_values[i]);
145 }else if(strcmp("machine", attribute_names[i])==0){
146 des->machine = g_strdup(attribute_values[i]);
147 }else if(strcmp("processor", attribute_names[i])==0){
148 des->processor = g_strdup(attribute_values[i]);
149 }else if(strcmp("hardware_platform", attribute_names[i])==0){
150 des->hardware_platform = g_strdup(attribute_values[i]);
151 }else if(strcmp("operating_system", attribute_names[i])==0){
152 des->operating_system = g_strdup(attribute_values[i]);
153 }else if(strcmp("ltt_major_version", attribute_names[i])==0){
154 des->ltt_major_version = atoi(attribute_values[i]);
155 }else if(strcmp("ltt_minor_version", attribute_names[i])==0){
156 des->ltt_minor_version = atoi(attribute_values[i]);
157 }else if(strcmp("ltt_block_size", attribute_names[i])==0){
158 des->ltt_block_size = atoi(attribute_values[i]);
159 }else{
160 *error = g_error_new(G_MARKUP_ERROR,
161 G_LOG_LEVEL_WARNING,
162 "Not a valid attribute");
163 return;
164 }
165 i++;
166 }
167 }
168
169 static void parser_characters (GMarkupParseContext __UNUSED__ *context,
170 const gchar *text,
171 gsize __UNUSED__ text_len,
172 gpointer user_data,
173 GError __UNUSED__ **error)
174 {
175 LttSystemDescription* des = (LttSystemDescription* )user_data;
176 des->description = g_strdup(text);
177 }
178 #endif //0
179 LttFacility *ltt_trace_get_facility_by_num(LttTrace *t,
180 guint num)
181 {
182 g_assert(num < t->facilities_by_num->len);
183
184 return &g_array_index(t->facilities_by_num, LttFacility, num);
185
186 }
187
188 guint ltt_trace_get_num_cpu(LttTrace *t)
189 {
190 return t->num_cpu;
191 }
192
193
194 /* trace can be NULL
195 *
196 * Return value : 0 success, 1 bad tracefile
197 */
198 int parse_trace_header(void *header, LttTracefile *tf, LttTrace *t)
199 {
200 guint32 *magic_number = (guint32*)header;
201 struct ltt_trace_header_any *any = (struct ltt_trace_header_any *)header;
202
203 if(*magic_number == LTT_MAGIC_NUMBER)
204 tf->reverse_bo = 0;
205 else if(*magic_number == LTT_REV_MAGIC_NUMBER)
206 tf->reverse_bo = 1;
207 else /* invalid magic number, bad tracefile ! */
208 return 1;
209
210 /* Get float byte order : might be different from int byte order
211 * (or is set to 0 if the trace has no float (kernel trace)) */
212 tf->float_word_order = any->float_word_order;
213
214 if(t) {
215 t->arch_type = ltt_get_uint32(LTT_GET_BO(tf),
216 &any->arch_type);
217 t->arch_variant = ltt_get_uint32(LTT_GET_BO(tf),
218 &any->arch_variant);
219 t->arch_size = any->arch_size;
220 t->ltt_major_version = any->major_version;
221 t->ltt_minor_version = any->minor_version;
222 t->flight_recorder = any->flight_recorder;
223 t->has_heartbeat = any->has_heartbeat;
224 t->has_alignment = any->has_alignment;
225 t->has_tsc = any->has_tsc;
226 }
227
228
229 switch(any->major_version) {
230
231 case 0:
232 switch(any->minor_version) {
233 case 3:
234 {
235 tf->buffer_header_size =
236 sizeof(struct ltt_block_start_header)
237 + sizeof(struct ltt_trace_header_0_3);
238 }
239 break;
240 default:
241 g_warning("Unsupported trace version : %hhu.%hhu",
242 any->major_version, any->minor_version);
243 return 1;
244 }
245 break;
246
247 default:
248 g_warning("Unsupported trace version : %hhu.%hhu",
249 any->major_version, any->minor_version);
250 return 1;
251 }
252
253
254 return 0;
255 }
256
257
258
259 /*****************************************************************************
260 *Function name
261 * ltt_tracefile_open : open a trace file, construct a LttTracefile
262 *Input params
263 * t : the trace containing the tracefile
264 * fileName : path name of the trace file
265 * tf : the tracefile structure
266 *Return value
267 * : 0 for success, -1 otherwise.
268 ****************************************************************************/
269
270 gint ltt_tracefile_open(LttTrace *t, gchar * fileName, LttTracefile *tf)
271 {
272 struct stat lTDFStat; /* Trace data file status */
273 struct ltt_block_start_header *header;
274 int page_size = getpagesize();
275
276 //open the file
277 tf->long_name = g_quark_from_string(fileName);
278 tf->trace = t;
279 tf->fd = open(fileName, O_RDONLY);
280 if(tf->fd < 0){
281 g_warning("Unable to open input data file %s\n", fileName);
282 goto end;
283 }
284
285 // Get the file's status
286 if(fstat(tf->fd, &lTDFStat) < 0){
287 g_warning("Unable to get the status of the input data file %s\n", fileName);
288 goto close_file;
289 }
290
291 // Is the file large enough to contain a trace
292 if(lTDFStat.st_size <
293 (off_t)(sizeof(struct ltt_block_start_header)
294 + sizeof(struct ltt_trace_header_any))){
295 g_print("The input data file %s does not contain a trace\n", fileName);
296 goto close_file;
297 }
298
299 /* Temporarily map the buffer start header to get trace information */
300 /* Multiple of pages aligned head */
301 tf->buffer.head = mmap(0,
302 PAGE_ALIGN(sizeof(struct ltt_block_start_header)
303 + sizeof(struct ltt_trace_header_any)), PROT_READ,
304 MAP_PRIVATE, tf->fd, 0);
305 if(tf->buffer.head == MAP_FAILED) {
306 perror("Error in allocating memory for buffer of tracefile");
307 goto close_file;
308 }
309 g_assert( ( (guint)tf->buffer.head&(8-1) ) == 0); // make sure it's aligned.
310
311 header = (struct ltt_block_start_header*)tf->buffer.head;
312
313 if(parse_trace_header(header->trace, tf, NULL)) {
314 g_warning("parse_trace_header error");
315 goto unmap_file;
316 }
317
318 //store the size of the file
319 tf->file_size = lTDFStat.st_size;
320 tf->buf_size = ltt_get_uint32(LTT_GET_BO(tf), &header->buf_size);
321 tf->num_blocks = tf->file_size / tf->buf_size;
322
323 if(munmap(tf->buffer.head,
324 PAGE_ALIGN(sizeof(struct ltt_block_start_header)
325 + sizeof(struct ltt_trace_header_any)))) {
326 g_warning("unmap size : %u\n",
327 PAGE_ALIGN(sizeof(struct ltt_block_start_header)
328 + sizeof(struct ltt_trace_header_any)));
329 perror("munmap error");
330 g_assert(0);
331 }
332 tf->buffer.head = NULL;
333
334 //read the first block
335 if(map_block(tf,0)) {
336 perror("Cannot map block for tracefile");
337 goto close_file;
338 }
339
340 return 0;
341
342 /* Error */
343 unmap_file:
344 if(munmap(tf->buffer.head,
345 PAGE_ALIGN(sizeof(struct ltt_block_start_header)
346 + sizeof(struct ltt_trace_header_any)))) {
347 g_warning("unmap size : %u\n",
348 PAGE_ALIGN(sizeof(struct ltt_block_start_header)
349 + sizeof(struct ltt_trace_header_any)));
350 perror("munmap error");
351 g_assert(0);
352 }
353 close_file:
354 close(tf->fd);
355 end:
356 return -1;
357 }
358
359 LttTrace *ltt_tracefile_get_trace(LttTracefile *tf)
360 {
361 return tf->trace;
362 }
363
364 #if 0
365 /*****************************************************************************
366 *Open control and per cpu tracefiles
367 ****************************************************************************/
368
369 void ltt_tracefile_open_cpu(LttTrace *t, gchar * tracefile_name)
370 {
371 LttTracefile * tf;
372 tf = ltt_tracefile_open(t,tracefile_name);
373 if(!tf) return;
374 t->per_cpu_tracefile_number++;
375 g_ptr_array_add(t->per_cpu_tracefiles, tf);
376 }
377
378 gint ltt_tracefile_open_control(LttTrace *t, gchar * control_name)
379 {
380 LttTracefile * tf;
381 LttEvent ev;
382 LttFacility * f;
383 void * pos;
384 FacilityLoad fLoad;
385 unsigned int i;
386
387 tf = ltt_tracefile_open(t,control_name);
388 if(!tf) {
389 g_warning("ltt_tracefile_open_control : bad file descriptor");
390 return -1;
391 }
392 t->control_tracefile_number++;
393 g_ptr_array_add(t->control_tracefiles,tf);
394
395 //parse facilities tracefile to get base_id
396 if(strcmp(&control_name[strlen(control_name)-10],"facilities") ==0){
397 while(1){
398 if(!ltt_tracefile_read(tf,&ev)) return 0; // end of file
399
400 if(ev.event_id == TRACE_FACILITY_LOAD){
401 pos = ev.data;
402 fLoad.name = (gchar*)pos;
403 fLoad.checksum = *(LttChecksum*)(pos + strlen(fLoad.name));
404 fLoad.base_code = *(guint32 *)(pos + strlen(fLoad.name) + sizeof(LttChecksum));
405
406 for(i=0;i<t->facility_number;i++){
407 f = (LttFacility*)g_ptr_array_index(t->facilities,i);
408 if(strcmp(f->name,fLoad.name)==0 && fLoad.checksum==f->checksum){
409 f->base_id = fLoad.base_code;
410 break;
411 }
412 }
413 if(i==t->facility_number) {
414 g_warning("Facility: %s, checksum: %u is not found",
415 fLoad.name,(unsigned int)fLoad.checksum);
416 return -1;
417 }
418 }else if(ev.event_id == TRACE_BLOCK_START){
419 continue;
420 }else if(ev.event_id == TRACE_BLOCK_END){
421 break;
422 }else {
423 g_warning("Not valid facilities trace file");
424 return -1;
425 }
426 }
427 }
428 return 0;
429 }
430 #endif //0
431
432 /*****************************************************************************
433 *Function name
434 * ltt_tracefile_close: close a trace file,
435 *Input params
436 * t : tracefile which will be closed
437 ****************************************************************************/
438
439 void ltt_tracefile_close(LttTracefile *t)
440 {
441 int page_size = getpagesize();
442
443 if(t->buffer.head != NULL)
444 if(munmap(t->buffer.head, PAGE_ALIGN(t->buf_size))) {
445 g_warning("unmap size : %u\n",
446 PAGE_ALIGN(t->buf_size));
447 perror("munmap error");
448 g_assert(0);
449 }
450
451 close(t->fd);
452 }
453
454
455 /*****************************************************************************
456 *Get system information
457 ****************************************************************************/
458 #if 0
459 gint getSystemInfo(LttSystemDescription* des, gchar * pathname)
460 {
461 int fd;
462 GIOChannel *iochan;
463 gchar *buf = NULL;
464 gsize length;
465
466 GMarkupParseContext * context;
467 GError * error = NULL;
468 GMarkupParser markup_parser =
469 {
470 parser_start_element,
471 NULL,
472 parser_characters,
473 NULL, /* passthrough */
474 NULL /* error */
475 };
476
477 fd = g_open(pathname, O_RDONLY, 0);
478 if(fd == -1){
479 g_warning("Can not open file : %s\n", pathname);
480 return -1;
481 }
482
483 iochan = g_io_channel_unix_new(fd);
484
485 context = g_markup_parse_context_new(&markup_parser, 0, des,NULL);
486
487 //while(fgets(buf,DIR_NAME_SIZE, fp) != NULL){
488 while(g_io_channel_read_line(iochan, &buf, &length, NULL, &error)
489 != G_IO_STATUS_EOF) {
490
491 if(error != NULL) {
492 g_warning("Can not read xml file: \n%s\n", error->message);
493 g_error_free(error);
494 }
495 if(!g_markup_parse_context_parse(context, buf, length, &error)){
496 if(error != NULL) {
497 g_warning("Can not parse xml file: \n%s\n", error->message);
498 g_error_free(error);
499 }
500 g_markup_parse_context_free(context);
501
502 g_io_channel_shutdown(iochan, FALSE, &error); /* No flush */
503 if(error != NULL) {
504 g_warning("Can not close file: \n%s\n", error->message);
505 g_error_free(error);
506 }
507
508 close(fd);
509 return -1;
510 }
511 }
512 g_markup_parse_context_free(context);
513
514 g_io_channel_shutdown(iochan, FALSE, &error); /* No flush */
515 if(error != NULL) {
516 g_warning("Can not close file: \n%s\n", error->message);
517 g_error_free(error);
518 }
519
520 g_close(fd);
521
522 g_free(buf);
523 return 0;
524 }
525 #endif //0
526
527 /*****************************************************************************
528 *The following functions get facility/tracefile information
529 ****************************************************************************/
530 #if 0
531 gint getFacilityInfo(LttTrace *t, gchar* eventdefs)
532 {
533 GDir * dir;
534 const gchar * name;
535 unsigned int i,j;
536 LttFacility * f;
537 LttEventType * et;
538 gchar fullname[DIR_NAME_SIZE];
539 GError * error = NULL;
540
541 dir = g_dir_open(eventdefs, 0, &error);
542
543 if(error != NULL) {
544 g_warning("Can not open directory: %s, %s\n", eventdefs, error->message);
545 g_error_free(error);
546 return -1;
547 }
548
549 while((name = g_dir_read_name(dir)) != NULL){
550 if(!g_pattern_match_simple("*.xml", name)) continue;
551 strcpy(fullname,eventdefs);
552 strcat(fullname,name);
553 ltt_facility_open(t,fullname);
554 }
555 g_dir_close(dir);
556
557 for(j=0;j<t->facility_number;j++){
558 f = (LttFacility*)g_ptr_array_index(t->facilities, j);
559 for(i=0; i<f->event_number; i++){
560 et = f->events[i];
561 setFieldsOffset(NULL, et, NULL, t);
562 }
563 }
564 return 0;
565 }
566 #endif //0
567
568 /*****************************************************************************
569 *A trace is specified as a pathname to the directory containing all the
570 *associated data (control tracefiles, per cpu tracefiles, event
571 *descriptions...).
572 *
573 *When a trace is closed, all the associated facilities, types and fields
574 *are released as well.
575 */
576
577
578 /****************************************************************************
579 * get_absolute_pathname
580 *
581 * return the unique pathname in the system
582 *
583 * MD : Fixed this function so it uses realpath, dealing well with
584 * forgotten cases (.. were not used correctly before).
585 *
586 ****************************************************************************/
587 void get_absolute_pathname(const gchar *pathname, gchar * abs_pathname)
588 {
589 abs_pathname[0] = '\0';
590
591 if ( realpath (pathname, abs_pathname) != NULL)
592 return;
593 else
594 {
595 /* error, return the original path unmodified */
596 strcpy(abs_pathname, pathname);
597 return;
598 }
599 return;
600 }
601
602 /* Search for something like : .*_.*
603 *
604 * The left side is the name, the right side is the number.
605 */
606
607 int get_tracefile_name_number(const gchar *raw_name,
608 GQuark *name,
609 guint *num)
610 {
611 guint raw_name_len = strlen(raw_name);
612 gchar char_name[PATH_MAX];
613 int i;
614 int underscore_pos;
615 long int cpu_num;
616 gchar *endptr;
617
618 for(i=raw_name_len-1;i>=0;i--) {
619 if(raw_name[i] == '_') break;
620 }
621 if(i==0) /* Either not found or name length is 0 */
622 return -1;
623 underscore_pos = i;
624
625 cpu_num = strtol(raw_name+underscore_pos+1, &endptr, 10);
626
627 if(endptr == raw_name+underscore_pos+1)
628 return -1; /* No digit */
629 if(cpu_num == LONG_MIN || cpu_num == LONG_MAX)
630 return -1; /* underflow / overflow */
631
632 strncpy(char_name, raw_name, underscore_pos);
633
634 char_name[underscore_pos] = '\0';
635
636 *name = g_quark_from_string(char_name);
637 *num = cpu_num;
638
639 return 0;
640 }
641
642
643 GData **ltt_trace_get_tracefiles_groups(LttTrace *trace)
644 {
645 return &trace->tracefiles;
646 }
647
648
649 void compute_tracefile_group(GQuark key_id,
650 GArray *group,
651 struct compute_tracefile_group_args *args)
652 {
653 int i;
654 LttTracefile *tf;
655
656 for(i=0; i<group->len; i++) {
657 tf = &g_array_index (group, LttTracefile, i);
658 if(tf->cpu_online)
659 args->func(tf, args->func_args);
660 }
661 }
662
663
664 void ltt_tracefile_group_destroy(gpointer data)
665 {
666 GArray *group = (GArray *)data;
667 int i;
668 LttTracefile *tf;
669
670 for(i=0; i<group->len; i++) {
671 tf = &g_array_index (group, LttTracefile, i);
672 if(tf->cpu_online)
673 ltt_tracefile_close(tf);
674 }
675 g_array_free(group, TRUE);
676 }
677
678 gboolean ltt_tracefile_group_has_cpu_online(gpointer data)
679 {
680 GArray *group = (GArray *)data;
681 int i;
682 LttTracefile *tf;
683
684 for(i=0; i<group->len; i++) {
685 tf = &g_array_index (group, LttTracefile, i);
686 if(tf->cpu_online) return 1;
687 }
688 return 0;
689 }
690
691
692 /* Open each tracefile under a specific directory. Put them in a
693 * GData : permits to access them using their tracefile group pathname.
694 * i.e. access control/modules tracefile group by index :
695 * "control/module".
696 *
697 * relative path is the path relative to the trace root
698 * root path is the full path
699 *
700 * A tracefile group is simply an array where all the per cpu tracefiles sits.
701 */
702
703 static int open_tracefiles(LttTrace *trace, gchar *root_path,
704 gchar *relative_path)
705 {
706 DIR *dir = opendir(root_path);
707 struct dirent *entry;
708 struct stat stat_buf;
709 int ret;
710
711 gchar path[PATH_MAX];
712 int path_len;
713 gchar *path_ptr;
714
715 int rel_path_len;
716 gchar rel_path[PATH_MAX];
717 gchar *rel_path_ptr;
718 LttTracefile tmp_tf;
719
720 if(dir == NULL) {
721 perror(root_path);
722 return ENOENT;
723 }
724
725 strncpy(path, root_path, PATH_MAX-1);
726 path_len = strlen(path);
727 path[path_len] = '/';
728 path_len++;
729 path_ptr = path + path_len;
730
731 strncpy(rel_path, relative_path, PATH_MAX-1);
732 rel_path_len = strlen(rel_path);
733 rel_path[rel_path_len] = '/';
734 rel_path_len++;
735 rel_path_ptr = rel_path + rel_path_len;
736
737 while((entry = readdir(dir)) != NULL) {
738
739 if(entry->d_name[0] == '.') continue;
740
741 strncpy(path_ptr, entry->d_name, PATH_MAX - path_len);
742 strncpy(rel_path_ptr, entry->d_name, PATH_MAX - rel_path_len);
743
744 ret = stat(path, &stat_buf);
745 if(ret == -1) {
746 perror(path);
747 continue;
748 }
749
750 g_debug("Tracefile file or directory : %s\n", path);
751
752 if(strcmp(rel_path, "/eventdefs") == 0) continue;
753
754 if(S_ISDIR(stat_buf.st_mode)) {
755
756 g_debug("Entering subdirectory...\n");
757 ret = open_tracefiles(trace, path, rel_path);
758 if(ret < 0) continue;
759 } else if(S_ISREG(stat_buf.st_mode)) {
760 GQuark name;
761 guint num;
762 GArray *group;
763
764 if(get_tracefile_name_number(rel_path, &name, &num))
765 continue; /* invalid name */
766
767 g_debug("Opening file.\n");
768 if(ltt_tracefile_open(trace, path, &tmp_tf)) {
769 g_info("Error opening tracefile %s", path);
770
771 continue; /* error opening the tracefile : bad magic number ? */
772 }
773
774 g_debug("Tracefile name is %s and number is %u",
775 g_quark_to_string(name), num);
776
777 tmp_tf.cpu_online = 1;
778 tmp_tf.cpu_num = num;
779 tmp_tf.name = name;
780
781 group = g_datalist_id_get_data(&trace->tracefiles, name);
782 if(group == NULL) {
783 /* Elements are automatically cleared when the array is allocated.
784 * It makes the cpu_online variable set to 0 : cpu offline, by default.
785 */
786 group = g_array_sized_new (FALSE, TRUE, sizeof(LttTracefile), 10);
787 g_datalist_id_set_data_full(&trace->tracefiles, name,
788 group, ltt_tracefile_group_destroy);
789 }
790
791 /* Add the per cpu tracefile to the named group */
792 unsigned int old_len = group->len;
793 if(num+1 > old_len)
794 group = g_array_set_size(group, num+1);
795 g_array_index (group, LttTracefile, num) = tmp_tf;
796
797 }
798 }
799
800 closedir(dir);
801
802 return 0;
803 }
804
805 /* ltt_get_facility_description
806 *
807 * Opens the trace corresponding to the requested facility (identified by fac_id
808 * and checksum).
809 *
810 * The name searched is : %trace root%/eventdefs/facname_checksum.xml
811 *
812 * Returns 0 on success, or 1 on failure.
813 */
814
815 static int ltt_get_facility_description(LttFacility *f,
816 LttTrace *t,
817 LttTracefile *fac_tf)
818 {
819 char desc_file_name[PATH_MAX];
820 const gchar *text;
821 guint textlen;
822 gint err;
823
824 text = g_quark_to_string(t->pathname);
825 textlen = strlen(text);
826
827 if(textlen >= PATH_MAX) goto name_error;
828 strcpy(desc_file_name, text);
829
830 text = "/eventdefs/";
831 textlen+=strlen(text);
832 if(textlen >= PATH_MAX) goto name_error;
833 strcat(desc_file_name, text);
834
835 text = g_quark_to_string(f->name);
836 textlen+=strlen(text);
837 if(textlen >= PATH_MAX) goto name_error;
838 strcat(desc_file_name, text);
839
840 text = "_";
841 textlen+=strlen(text);
842 if(textlen >= PATH_MAX) goto name_error;
843 strcat(desc_file_name, text);
844
845 err = snprintf(desc_file_name+textlen, PATH_MAX-textlen-1,
846 "%u", f->checksum);
847 if(err < 0) goto name_error;
848
849 textlen=strlen(desc_file_name);
850
851 text = ".xml";
852 textlen+=strlen(text);
853 if(textlen >= PATH_MAX) goto name_error;
854 strcat(desc_file_name, text);
855
856 err = ltt_facility_open(f, t, desc_file_name);
857 if(err) goto facility_error;
858
859 return 0;
860
861 facility_error:
862 name_error:
863 return 1;
864 }
865
866 static void ltt_fac_ids_destroy(gpointer data)
867 {
868 GArray *fac_ids = (GArray *)data;
869
870 g_array_free(fac_ids, TRUE);
871 }
872
873
874 /* Presumes the tracefile is already seeked at the beginning. It makes sense,
875 * because it must be done just after the opening */
876 static int ltt_process_facility_tracefile(LttTracefile *tf)
877 {
878 int err;
879 LttFacility *fac;
880 GArray *fac_ids;
881 guint i;
882 LttEventType *et;
883
884 while(1) {
885 err = ltt_tracefile_read_seek(tf);
886 if(err == EPERM) goto seek_error;
887 else if(err == ERANGE) break; /* End of tracefile */
888
889 err = ltt_tracefile_read_update_event(tf);
890 if(err) goto update_error;
891
892 /* We are on a facility load/or facility unload/ or heartbeat event */
893 /* The rules are :
894 * * facility 0 is hardcoded : this is the core facility. It will be shown
895 * in the facility array though, and is shown as "loaded builtin" in the
896 * trace.
897 * It contains event :
898 * 0 : facility load
899 * 1 : facility unload
900 * 2 : state dump facility load
901 * 3 : heartbeat
902 */
903 if(tf->event.facility_id != LTT_FACILITY_CORE) {
904 /* Should only contain core facility */
905 g_warning("Error in processing facility file %s, "
906 "should not contain facility id %u.", g_quark_to_string(tf->name),
907 tf->event.facility_id);
908 err = EPERM;
909 goto fac_id_error;
910 } else {
911
912 struct LttFacilityLoad *fac_load_data;
913 struct LttStateDumpFacilityLoad *fac_state_dump_load_data;
914 char *fac_name;
915
916 // FIXME align
917 switch((enum ltt_core_events)tf->event.event_id) {
918 case LTT_EVENT_FACILITY_LOAD:
919 fac_name = (char*)(tf->event.data);
920 g_debug("Doing LTT_EVENT_FACILITY_LOAD of facility %s",
921 fac_name);
922 fac_load_data =
923 (struct LttFacilityLoad *)
924 (tf->event.data + strlen(fac_name) + 1);
925 fac = &g_array_index (tf->trace->facilities_by_num, LttFacility,
926 ltt_get_uint32(LTT_GET_BO(tf), &fac_load_data->id));
927 g_assert(fac->exists == 0);
928 fac->name = g_quark_from_string(fac_name);
929 fac->checksum = ltt_get_uint32(LTT_GET_BO(tf),
930 &fac_load_data->checksum);
931 fac->id = ltt_get_uint32(LTT_GET_BO(tf), &fac_load_data->id);
932 fac->pointer_size = ltt_get_uint32(LTT_GET_BO(tf),
933 &fac_load_data->pointer_size);
934 fac->long_size = ltt_get_uint32(LTT_GET_BO(tf),
935 &fac_load_data->long_size);
936 fac->size_t_size = ltt_get_uint32(LTT_GET_BO(tf),
937 &fac_load_data->size_t_size);
938 fac->alignment = ltt_get_uint32(LTT_GET_BO(tf),
939 &fac_load_data->alignment);
940
941 if(ltt_get_facility_description(fac, tf->trace, tf))
942 continue; /* error opening description */
943
944 fac->trace = tf->trace;
945
946 /* Preset the field offsets */
947 for(i=0; i<fac->events->len; i++){
948 et = &g_array_index(fac->events, LttEventType, i);
949 set_fields_offsets(tf, et);
950 }
951
952 fac->exists = 1;
953
954 fac_ids = g_datalist_id_get_data(&tf->trace->facilities_by_name,
955 fac->name);
956 if(fac_ids == NULL) {
957 fac_ids = g_array_sized_new (FALSE, TRUE, sizeof(guint), 1);
958 g_datalist_id_set_data_full(&tf->trace->facilities_by_name,
959 fac->name,
960 fac_ids, ltt_fac_ids_destroy);
961 }
962 g_array_append_val(fac_ids, fac->id);
963
964 break;
965 case LTT_EVENT_FACILITY_UNLOAD:
966 g_debug("Doing LTT_EVENT_FACILITY_UNLOAD");
967 /* We don't care about unload : facilities ID are valid for the whole
968 * trace. They simply won't be used after the unload. */
969 break;
970 case LTT_EVENT_STATE_DUMP_FACILITY_LOAD:
971 fac_name = (char*)(tf->event.data);
972 g_debug("Doing LTT_EVENT_STATE_DUMP_FACILITY_LOAD of facility %s",
973 fac_name);
974 fac_state_dump_load_data =
975 (struct LttStateDumpFacilityLoad *)
976 (tf->event.data + strlen(fac_name) + 1);
977 fac = &g_array_index (tf->trace->facilities_by_num, LttFacility,
978 ltt_get_uint32(LTT_GET_BO(tf), &fac_state_dump_load_data->id));
979 g_assert(fac->exists == 0);
980 fac->name = g_quark_from_string(fac_name);
981 fac->checksum = ltt_get_uint32(LTT_GET_BO(tf),
982 &fac_state_dump_load_data->checksum);
983 fac->id = fac_state_dump_load_data->id;
984 fac->pointer_size = ltt_get_uint32(LTT_GET_BO(tf),
985 &fac_state_dump_load_data->pointer_size);
986 fac->long_size = ltt_get_uint32(LTT_GET_BO(tf),
987 &fac_state_dump_load_data->long_size);
988 fac->size_t_size = ltt_get_uint32(LTT_GET_BO(tf),
989 &fac_state_dump_load_data->size_t_size);
990 fac->alignment = ltt_get_uint32(LTT_GET_BO(tf),
991 &fac_state_dump_load_data->alignment);
992 if(ltt_get_facility_description(fac, tf->trace, tf))
993 continue; /* error opening description */
994
995 fac->trace = tf->trace;
996
997 /* Preset the field offsets */
998 for(i=0; i<fac->events->len; i++){
999 et = &g_array_index(fac->events, LttEventType, i);
1000 set_fields_offsets(tf, et);
1001 }
1002
1003 fac->exists = 1;
1004
1005 fac_ids = g_datalist_id_get_data(&tf->trace->facilities_by_name,
1006 fac->name);
1007 if(fac_ids == NULL) {
1008 fac_ids = g_array_sized_new (FALSE, TRUE, sizeof(guint), 1);
1009 g_datalist_id_set_data_full(&tf->trace->facilities_by_name,
1010 fac->name,
1011 fac_ids, ltt_fac_ids_destroy);
1012 }
1013 g_array_append_val(fac_ids, fac->id);
1014
1015 break;
1016 case LTT_EVENT_HEARTBEAT:
1017 break;
1018 default:
1019 g_warning("Error in processing facility file %s, "
1020 "unknown event id %hhu in core facility.",
1021 g_quark_to_string(tf->name),
1022 tf->event.event_id);
1023 err = EPERM;
1024 goto event_id_error;
1025 }
1026 }
1027 }
1028 return 0;
1029
1030 /* Error handling */
1031 event_id_error:
1032 fac_id_error:
1033 update_error:
1034 seek_error:
1035 g_warning("An error occured in facility tracefile parsing");
1036 return err;
1037 }
1038
1039
1040 LttTrace *ltt_trace_open(const gchar *pathname)
1041 {
1042 gchar abs_path[PATH_MAX];
1043 LttTrace * t;
1044 LttTracefile *tf;
1045 GArray *group;
1046 int i, ret;
1047 struct ltt_block_start_header *header;
1048 DIR *dir;
1049 struct dirent *entry;
1050 guint control_found = 0;
1051 guint eventdefs_found = 0;
1052 struct stat stat_buf;
1053 gchar path[PATH_MAX];
1054
1055 t = g_new(LttTrace, 1);
1056 if(!t) goto alloc_error;
1057
1058 get_absolute_pathname(pathname, abs_path);
1059 t->pathname = g_quark_from_string(abs_path);
1060
1061 g_datalist_init(&t->tracefiles);
1062
1063 /* Test to see if it looks like a trace */
1064 dir = opendir(abs_path);
1065 if(dir == NULL) {
1066 perror(abs_path);
1067 goto open_error;
1068 }
1069 while((entry = readdir(dir)) != NULL) {
1070 strcpy(path, abs_path);
1071 strcat(path, "/");
1072 strcat(path, entry->d_name);
1073 ret = stat(path, &stat_buf);
1074 if(ret == -1) {
1075 perror(path);
1076 continue;
1077 }
1078 if(S_ISDIR(stat_buf.st_mode)) {
1079 if(strcmp(entry->d_name, "control") == 0) {
1080 control_found = 1;
1081 }
1082 if(strcmp(entry->d_name, "eventdefs") == 0) {
1083 eventdefs_found = 1;
1084 }
1085 }
1086 }
1087 closedir(dir);
1088
1089 if(!control_found || !eventdefs_found) goto find_error;
1090
1091 /* Open all the tracefiles */
1092 if(open_tracefiles(t, abs_path, "")) {
1093 g_warning("Error opening tracefile %s", abs_path);
1094 goto find_error;
1095 }
1096
1097 /* Prepare the facilities containers : array and mapping */
1098 /* Array is zeroed : the "exists" field is set to false by default */
1099 t->facilities_by_num = g_array_sized_new (FALSE,
1100 TRUE, sizeof(LttFacility),
1101 NUM_FACILITIES);
1102 t->facilities_by_num = g_array_set_size(t->facilities_by_num, NUM_FACILITIES);
1103
1104 g_datalist_init(&t->facilities_by_name);
1105
1106 /* Parse each trace control/facilitiesN files : get runtime fac. info */
1107 group = g_datalist_id_get_data(&t->tracefiles, LTT_TRACEFILE_NAME_FACILITIES);
1108 if(group == NULL) {
1109 g_error("Trace %s has no facility tracefile", abs_path);
1110 g_assert(0);
1111 goto facilities_error;
1112 }
1113
1114 /* Get the trace information for the control/facility 0 tracefile */
1115 g_assert(group->len > 0);
1116 tf = &g_array_index (group, LttTracefile, 0);
1117 header = (struct ltt_block_start_header*)tf->buffer.head;
1118 g_assert(parse_trace_header(header->trace,
1119 tf, t) == 0);
1120
1121 t->num_cpu = group->len;
1122
1123 for(i=0; i<group->len; i++) {
1124 tf = &g_array_index (group, LttTracefile, i);
1125 if(ltt_process_facility_tracefile(tf))
1126 goto facilities_error;
1127 }
1128
1129 return t;
1130
1131 /* Error handling */
1132 facilities_error:
1133 g_datalist_clear(&t->facilities_by_name);
1134 g_array_free(t->facilities_by_num, TRUE);
1135 find_error:
1136 g_datalist_clear(&t->tracefiles);
1137 open_error:
1138 g_free(t);
1139 alloc_error:
1140 return NULL;
1141
1142 }
1143
1144 GQuark ltt_trace_name(const LttTrace *t)
1145 {
1146 return t->pathname;
1147 }
1148
1149
1150 /******************************************************************************
1151 * When we copy a trace, we want all the opening actions to happen again :
1152 * the trace will be reopened and totally independant from the original.
1153 * That's why we call ltt_trace_open.
1154 *****************************************************************************/
1155 LttTrace *ltt_trace_copy(LttTrace *self)
1156 {
1157 return ltt_trace_open(g_quark_to_string(self->pathname));
1158 }
1159
1160 void ltt_trace_close(LttTrace *t)
1161 {
1162 guint i;
1163 LttFacility *fac;
1164
1165 for(i=0; i<t->facilities_by_num->len; i++) {
1166 fac = &g_array_index (t->facilities_by_num, LttFacility, i);
1167 if(fac->exists)
1168 ltt_facility_close(fac);
1169 }
1170
1171 g_datalist_clear(&t->facilities_by_name);
1172 g_array_free(t->facilities_by_num, TRUE);
1173 g_datalist_clear(&t->tracefiles);
1174 g_free(t);
1175 }
1176
1177
1178 /*****************************************************************************
1179 *Get the system description of the trace
1180 ****************************************************************************/
1181
1182 LttFacility *ltt_trace_facility_by_id(LttTrace *t, guint8 id)
1183 {
1184 g_assert(id < t->facilities_by_num->len);
1185 return &g_array_index(t->facilities_by_num, LttFacility, id);
1186 }
1187
1188 /* ltt_trace_facility_get_by_name
1189 *
1190 * Returns the GArray of facility indexes. All the fac_ids that matches the
1191 * requested facility name.
1192 *
1193 * If name is not found, returns NULL.
1194 */
1195 GArray *ltt_trace_facility_get_by_name(LttTrace *t, GQuark name)
1196 {
1197 return g_datalist_id_get_data(&t->facilities_by_name, name);
1198 }
1199
1200 /*****************************************************************************
1201 * Functions to discover all the event types in the trace
1202 ****************************************************************************/
1203
1204 #if 0
1205 unsigned ltt_trace_eventtype_number(LttTrace *t)
1206 {
1207 unsigned int i;
1208 unsigned count = 0;
1209 unsigned int num = t->facility_number;
1210 LttFacility * f;
1211
1212 for(i=0;i<num;i++){
1213 f = (LttFacility*)g_ptr_array_index(t->facilities, i);
1214 count += f->event_number;
1215 }
1216 return count;
1217 }
1218 #endif //0
1219
1220 #if 0
1221 //use an iteration on all the trace facilities, and inside iteration on all the
1222 //event types in each facilities instead.
1223 LttEventType *ltt_trace_eventtype_get(LttTrace *t, unsigned evId)
1224 {
1225 LttEventType *event_type;
1226
1227 LttFacility * f;
1228 f = ltt_trace_facility_by_id(t,evId);
1229
1230 if(unlikely(!f)) event_type = NULL;
1231 else event_type = f->events[evId - f->base_id];
1232
1233 return event_type;
1234 }
1235 #endif //0
1236
1237 #if 0
1238 /*****************************************************************************
1239 * ltt_trace_find_tracefile
1240 *
1241 * Find a tracefile by name and index in the group.
1242 *
1243 * Returns a pointer to the tracefiles, else NULL.
1244 ****************************************************************************/
1245
1246 LttTracefile *ltt_trace_find_tracefile(LttTrace *t, const gchar *name)
1247 {
1248 }
1249 #endif //0
1250
1251 /*****************************************************************************
1252 * Get the start time and end time of the trace
1253 ****************************************************************************/
1254
1255 static void ltt_tracefile_time_span_get(LttTracefile *tf,
1256 LttTime *start, LttTime *end)
1257 {
1258 int err;
1259
1260 err = map_block(tf, 0);
1261 if(unlikely(err)) {
1262 g_error("Can not map block");
1263 *start = ltt_time_infinite;
1264 } else
1265 *start = tf->buffer.begin.timestamp;
1266
1267 err = map_block(tf, tf->num_blocks - 1); /* Last block */
1268 if(unlikely(err)) {
1269 g_error("Can not map block");
1270 *end = ltt_time_zero;
1271 } else
1272 *end = tf->buffer.end.timestamp;
1273 }
1274
1275 struct tracefile_time_span_get_args {
1276 LttTrace *t;
1277 LttTime *start;
1278 LttTime *end;
1279 };
1280
1281 static void group_time_span_get(GQuark name, gpointer data, gpointer user_data)
1282 {
1283 struct tracefile_time_span_get_args *args =
1284 (struct tracefile_time_span_get_args*)user_data;
1285
1286 GArray *group = (GArray *)data;
1287 int i;
1288 LttTracefile *tf;
1289 LttTime tmp_start;
1290 LttTime tmp_end;
1291
1292 for(i=0; i<group->len; i++) {
1293 tf = &g_array_index (group, LttTracefile, i);
1294 if(tf->cpu_online) {
1295 ltt_tracefile_time_span_get(tf, &tmp_start, &tmp_end);
1296 if(ltt_time_compare(*args->start, tmp_start)>0) *args->start = tmp_start;
1297 if(ltt_time_compare(*args->end, tmp_end)<0) *args->end = tmp_end;
1298 }
1299 }
1300 }
1301
1302 void ltt_trace_time_span_get(LttTrace *t, LttTime *start, LttTime *end)
1303 {
1304 LttTime min_start = ltt_time_infinite;
1305 LttTime max_end = ltt_time_zero;
1306 struct tracefile_time_span_get_args args = { t, &min_start, &max_end };
1307
1308 g_datalist_foreach(&t->tracefiles, &group_time_span_get, &args);
1309
1310 if(start != NULL) *start = min_start;
1311 if(end != NULL) *end = max_end;
1312
1313 }
1314
1315
1316 /*****************************************************************************
1317 *Get the name of a tracefile
1318 ****************************************************************************/
1319
1320 GQuark ltt_tracefile_name(LttTracefile *tf)
1321 {
1322 return tf->name;
1323 }
1324
1325
1326 guint ltt_tracefile_num(LttTracefile *tf)
1327 {
1328 return tf->cpu_num;
1329 }
1330
1331 /*****************************************************************************
1332 * Get the number of blocks in the tracefile
1333 ****************************************************************************/
1334
1335 guint ltt_tracefile_block_number(LttTracefile *tf)
1336 {
1337 return tf->num_blocks;
1338 }
1339
1340
1341 /* Seek to the first event in a tracefile that has a time equal or greater than
1342 * the time passed in parameter.
1343 *
1344 * If the time parameter is outside the tracefile time span, seek to the first
1345 * event or if after, return ERANGE.
1346 *
1347 * If the time parameter is before the first event, we have to seek specially to
1348 * there.
1349 *
1350 * If the time is after the end of the trace, return ERANGE.
1351 *
1352 * Do a binary search to find the right block, then a sequential search in the
1353 * block to find the event.
1354 *
1355 * In the special case where the time requested fits inside a block that has no
1356 * event corresponding to the requested time, the first event of the next block
1357 * will be seeked.
1358 *
1359 * IMPORTANT NOTE : // FIXME everywhere...
1360 *
1361 * You MUST NOT do a ltt_tracefile_read right after a ltt_tracefile_seek_time :
1362 * you will jump over an event if you do.
1363 *
1364 * Return value : 0 : no error, the tf->event can be used
1365 * ERANGE : time if after the last event of the trace
1366 * otherwise : this is an error.
1367 *
1368 * */
1369
1370 int ltt_tracefile_seek_time(LttTracefile *tf, LttTime time)
1371 {
1372 int ret = 0;
1373 int err;
1374 unsigned int block_num, high, low;
1375
1376 /* seek at the beginning of trace */
1377 err = map_block(tf, 0); /* First block */
1378 if(unlikely(err)) {
1379 g_error("Can not map block");
1380 goto fail;
1381 }
1382
1383 /* If the time is lower or equal the beginning of the trace,
1384 * go to the first event. */
1385 if(ltt_time_compare(time, tf->buffer.begin.timestamp) <= 0) {
1386 ret = ltt_tracefile_read(tf);
1387 if(ret == ERANGE) goto range;
1388 else if (ret) goto fail;
1389 goto found; /* There is either no event in the trace or the event points
1390 to the first event in the trace */
1391 }
1392
1393 err = map_block(tf, tf->num_blocks - 1); /* Last block */
1394 if(unlikely(err)) {
1395 g_error("Can not map block");
1396 goto fail;
1397 }
1398
1399 /* If the time is after the end of the trace, return ERANGE. */
1400 if(ltt_time_compare(time, tf->buffer.end.timestamp) > 0) {
1401 goto range;
1402 }
1403
1404 /* Binary search the block */
1405 high = tf->num_blocks - 1;
1406 low = 0;
1407
1408 while(1) {
1409 block_num = ((high-low) / 2) + low;
1410
1411 err = map_block(tf, block_num);
1412 if(unlikely(err)) {
1413 g_error("Can not map block");
1414 goto fail;
1415 }
1416 if(high == low) {
1417 /* We cannot divide anymore : this is what would happen if the time
1418 * requested was exactly between two consecutive buffers'end and start
1419 * timestamps. This is also what would happend if we didn't deal with out
1420 * of span cases prior in this function. */
1421 /* The event is right in the buffer!
1422 * (or in the next buffer first event) */
1423 while(1) {
1424 ret = ltt_tracefile_read(tf);
1425 if(ret == ERANGE) goto range; /* ERANGE or EPERM */
1426 else if(ret) goto fail;
1427
1428 if(ltt_time_compare(time, tf->event.event_time) >= 0)
1429 goto found;
1430 }
1431
1432 } else if(ltt_time_compare(time, tf->buffer.begin.timestamp) < 0) {
1433 /* go to lower part */
1434 high = block_num;
1435 } else if(ltt_time_compare(time, tf->buffer.end.timestamp) > 0) {
1436 /* go to higher part */
1437 low = block_num;
1438 } else {/* The event is right in the buffer!
1439 (or in the next buffer first event) */
1440 while(1) {
1441 ret = ltt_tracefile_read(tf);
1442 if(ret == ERANGE) goto range; /* ERANGE or EPERM */
1443 else if(ret) goto fail;
1444
1445 if(ltt_time_compare(time, tf->event.event_time) >= 0)
1446 break;
1447 }
1448 goto found;
1449 }
1450 }
1451
1452 found:
1453 return 0;
1454 range:
1455 return ERANGE;
1456
1457 /* Error handling */
1458 fail:
1459 g_error("ltt_tracefile_seek_time failed on tracefile %s",
1460 g_quark_to_string(tf->name));
1461 return EPERM;
1462 }
1463
1464
1465 int ltt_tracefile_seek_position(LttTracefile *tf, const LttEventPosition *ep) {
1466
1467 int err;
1468
1469 if(ep->tracefile != tf) {
1470 goto fail;
1471 }
1472
1473 err = map_block(tf, ep->block);
1474 if(unlikely(err)) {
1475 g_error("Can not map block");
1476 goto fail;
1477 }
1478
1479 tf->event.offset = ep->offset;
1480
1481 err = ltt_tracefile_read_update_event(tf);
1482 if(err) goto fail;
1483 err = ltt_tracefile_read_op(tf);
1484 if(err) goto fail;
1485
1486 return 0;
1487
1488 fail:
1489 g_error("ltt_tracefile_seek_time failed on tracefile %s",
1490 g_quark_to_string(tf->name));
1491 return 1;
1492 }
1493
1494 /* Calculate the real event time based on the buffer boundaries */
1495 LttTime ltt_interpolate_time(LttTracefile *tf, LttEvent *event)
1496 {
1497 LttTime time;
1498
1499 g_assert(tf->trace->has_tsc);
1500
1501 time = ltt_time_from_uint64(
1502 (guint64)(tf->buffer.tsc - tf->buffer.begin.cycle_count) *
1503 tf->buffer.nsecs_per_cycle);
1504 time = ltt_time_add(tf->buffer.begin.timestamp, time);
1505
1506 return time;
1507 }
1508
1509
1510 /* Get the current event of the tracefile : valid until the next read */
1511 LttEvent *ltt_tracefile_get_event(LttTracefile *tf)
1512 {
1513 return &tf->event;
1514 }
1515
1516
1517
1518 /*****************************************************************************
1519 *Function name
1520 * ltt_tracefile_read : Read the next event in the tracefile
1521 *Input params
1522 * t : tracefile
1523 *Return value
1524 *
1525 * Returns 0 if an event can be used in tf->event.
1526 * Returns ERANGE on end of trace. The event in tf->event still can be used
1527 * (if the last block was not empty).
1528 * Returns EPERM on error.
1529 *
1530 * This function does make the tracefile event structure point to the event
1531 * currently pointed to by the tf->event.
1532 *
1533 * Note : you must call a ltt_tracefile_seek to the beginning of the trace to
1534 * reinitialize it after an error if you want results to be coherent.
1535 * It would be the case if a end of trace last buffer has no event : the end
1536 * of trace wouldn't be returned, but an error.
1537 * We make the assumption there is at least one event per buffer.
1538 ****************************************************************************/
1539
1540 int ltt_tracefile_read(LttTracefile *tf)
1541 {
1542 int err;
1543
1544 err = ltt_tracefile_read_seek(tf);
1545 if(err) return err;
1546 err = ltt_tracefile_read_update_event(tf);
1547 if(err) return err;
1548 err = ltt_tracefile_read_op(tf);
1549 if(err) return err;
1550
1551 return 0;
1552 }
1553
1554 int ltt_tracefile_read_seek(LttTracefile *tf)
1555 {
1556 int err;
1557
1558 /* Get next buffer until we finally have an event, or end of trace */
1559 while(1) {
1560 err = ltt_seek_next_event(tf);
1561 if(unlikely(err == ENOPROTOOPT)) {
1562 return EPERM;
1563 }
1564
1565 /* Are we at the end of the buffer ? */
1566 if(err == ERANGE) {
1567 if(unlikely(tf->buffer.index == tf->num_blocks-1)){ /* end of trace ? */
1568 return ERANGE;
1569 } else {
1570 /* get next block */
1571 err = map_block(tf, tf->buffer.index + 1);
1572 if(unlikely(err)) {
1573 g_error("Can not map block");
1574 return EPERM;
1575 }
1576 }
1577 } else break; /* We found an event ! */
1578 }
1579
1580 return 0;
1581 }
1582
1583
1584 /* do specific operation on events */
1585 int ltt_tracefile_read_op(LttTracefile *tf)
1586 {
1587 LttEvent *event;
1588
1589 event = &tf->event;
1590
1591 /* do event specific operation */
1592
1593 /* do something if its an heartbeat event : increment the heartbeat count */
1594 //if(event->facility_id == LTT_FACILITY_CORE)
1595 // if(event->event_id == LTT_EVENT_HEARTBEAT)
1596 // tf->cur_heart_beat_number++;
1597
1598 return 0;
1599 }
1600
1601
1602 /* same as ltt_tracefile_read, but does not seek to the next event nor call
1603 * event specific operation. */
1604 int ltt_tracefile_read_update_event(LttTracefile *tf)
1605 {
1606 void * pos;
1607 LttEvent *event;
1608
1609 event = &tf->event;
1610 pos = tf->buffer.head + event->offset;
1611
1612 /* Read event header */
1613
1614 //TODO align
1615
1616 if(tf->trace->has_tsc) {
1617 if(tf->trace->has_heartbeat) {
1618 event->time.timestamp = ltt_get_uint32(LTT_GET_BO(tf),
1619 pos);
1620 /* 32 bits -> 64 bits tsc */
1621 /* note : still works for seek and non seek cases. */
1622 if(event->time.timestamp < (0xFFFFFFFFULL&tf->buffer.tsc)) {
1623 tf->buffer.tsc = ((tf->buffer.tsc&0xFFFFFFFF00000000ULL)
1624 + 0x100000000ULL)
1625 | (guint64)event->time.timestamp;
1626 event->tsc = tf->buffer.tsc;
1627 } else {
1628 /* no overflow */
1629 tf->buffer.tsc = (tf->buffer.tsc&0xFFFFFFFF00000000ULL)
1630 | (guint64)event->time.timestamp;
1631 event->tsc = tf->buffer.tsc;
1632 }
1633 pos += sizeof(guint32);
1634 } else {
1635 event->tsc = ltt_get_uint64(LTT_GET_BO(tf), pos);
1636 tf->buffer.tsc = event->tsc;
1637 pos += sizeof(guint64);
1638 }
1639
1640 event->event_time = ltt_interpolate_time(tf, event);
1641 } else {
1642 event->time.delta.tv_sec = 0;
1643 event->time.delta.tv_nsec = ltt_get_uint32(LTT_GET_BO(tf),
1644 pos) * NSEC_PER_USEC;
1645 tf->buffer.tsc = 0;
1646 event->tsc = tf->buffer.tsc;
1647
1648 event->event_time = ltt_time_add(tf->buffer.begin.timestamp,
1649 event->time.delta);
1650 pos += sizeof(guint32);
1651 }
1652
1653 event->facility_id = *(guint8*)pos;
1654 pos += sizeof(guint8);
1655
1656 event->event_id = *(guint8*)pos;
1657 pos += sizeof(guint8);
1658
1659 event->event_size = ltt_get_uint16(LTT_GET_BO(tf), pos);
1660 pos += sizeof(guint16);
1661
1662 event->data = pos;
1663
1664 /* get the data size and update the event fields with the current
1665 * information */
1666 ltt_update_event_size(tf);
1667
1668 return 0;
1669 }
1670
1671
1672 /****************************************************************************
1673 *Function name
1674 * map_block : map a block from the file
1675 *Input Params
1676 * lttdes : ltt trace file
1677 * whichBlock : the block which will be read
1678 *return value
1679 * 0 : success
1680 * EINVAL : lseek fail
1681 * EIO : can not read from the file
1682 ****************************************************************************/
1683
1684 static gint map_block(LttTracefile * tf, guint block_num)
1685 {
1686 int page_size = getpagesize();
1687 struct ltt_block_start_header *header;
1688
1689 g_assert(block_num < tf->num_blocks);
1690
1691 if(tf->buffer.head != NULL) {
1692 if(munmap(tf->buffer.head, PAGE_ALIGN(tf->buf_size))) {
1693 g_warning("unmap size : %u\n",
1694 PAGE_ALIGN(tf->buf_size));
1695 perror("munmap error");
1696 g_assert(0);
1697 }
1698 }
1699
1700
1701 /* Multiple of pages aligned head */
1702 tf->buffer.head = mmap(0,
1703 PAGE_ALIGN(tf->buf_size),
1704 PROT_READ, MAP_PRIVATE, tf->fd,
1705 PAGE_ALIGN((off_t)tf->buf_size * (off_t)block_num));
1706
1707 if(tf->buffer.head == MAP_FAILED) {
1708 perror("Error in allocating memory for buffer of tracefile");
1709 g_assert(0);
1710 goto map_error;
1711 }
1712 g_assert( ( (guint)tf->buffer.head&(8-1) ) == 0); // make sure it's aligned.
1713
1714
1715 tf->buffer.index = block_num;
1716
1717 header = (struct ltt_block_start_header*)tf->buffer.head;
1718
1719 tf->buffer.begin.timestamp = ltt_get_time(LTT_GET_BO(tf),
1720 &header->begin.timestamp);
1721 tf->buffer.begin.timestamp.tv_nsec *= NSEC_PER_USEC;
1722 g_debug("block %u begin : %lu.%lu", block_num,
1723 tf->buffer.begin.timestamp.tv_sec, tf->buffer.begin.timestamp.tv_nsec);
1724 tf->buffer.begin.cycle_count = ltt_get_uint64(LTT_GET_BO(tf),
1725 &header->begin.cycle_count);
1726 tf->buffer.end.timestamp = ltt_get_time(LTT_GET_BO(tf),
1727 &header->end.timestamp);
1728 tf->buffer.end.timestamp.tv_nsec *= NSEC_PER_USEC;
1729 g_debug("block %u end : %lu.%lu", block_num,
1730 tf->buffer.end.timestamp.tv_sec, tf->buffer.end.timestamp.tv_nsec);
1731 tf->buffer.end.cycle_count = ltt_get_uint64(LTT_GET_BO(tf),
1732 &header->end.cycle_count);
1733 tf->buffer.lost_size = ltt_get_uint32(LTT_GET_BO(tf),
1734 &header->lost_size);
1735
1736 tf->buffer.tsc = tf->buffer.begin.cycle_count;
1737 tf->event.tsc = tf->buffer.tsc;
1738
1739 /* FIXME
1740 * eventually support variable buffer size : will need a partial pre-read of
1741 * the headers to create an index when we open the trace... eventually. */
1742 g_assert(tf->buf_size == ltt_get_uint32(LTT_GET_BO(tf),
1743 &header->buf_size));
1744
1745 /* Now that the buffer is mapped, calculate the time interpolation for the
1746 * block. */
1747
1748 tf->buffer.nsecs_per_cycle = calc_nsecs_per_cycle(tf);
1749
1750 /* Make the current event point to the beginning of the buffer :
1751 * it means that the event read must get the first event. */
1752 tf->event.tracefile = tf;
1753 tf->event.block = block_num;
1754 tf->event.offset = 0;
1755
1756 return 0;
1757
1758 map_error:
1759 return -errno;
1760
1761 }
1762
1763 /* It will update the fields offsets too */
1764 void ltt_update_event_size(LttTracefile *tf)
1765 {
1766 ssize_t size = 0;
1767
1768 /* Specific handling of core events : necessary to read the facility control
1769 * tracefile. */
1770 LttFacility *f = ltt_trace_get_facility_by_num(tf->trace,
1771 tf->event.facility_id);
1772
1773 if(likely(tf->event.facility_id == LTT_FACILITY_CORE)) {
1774 switch((enum ltt_core_events)tf->event.event_id) {
1775 case LTT_EVENT_FACILITY_LOAD:
1776 size = strlen((char*)tf->event.data) + 1;
1777 g_debug("Update Event facility load of facility %s", (char*)tf->event.data);
1778 size += sizeof(struct LttFacilityLoad);
1779 break;
1780 case LTT_EVENT_FACILITY_UNLOAD:
1781 g_debug("Update Event facility unload");
1782 size = sizeof(struct LttFacilityUnload);
1783 break;
1784 case LTT_EVENT_STATE_DUMP_FACILITY_LOAD:
1785 size = strlen((char*)tf->event.data) + 1;
1786 g_debug("Update Event facility load state dump of facility %s",
1787 (char*)tf->event.data);
1788 size += sizeof(struct LttStateDumpFacilityLoad);
1789 break;
1790 case LTT_EVENT_HEARTBEAT:
1791 g_debug("Update Event heartbeat");
1792 size = sizeof(TimeHeartbeat);
1793 break;
1794 default:
1795 g_warning("Error in getting event size : tracefile %s, "
1796 "unknown event id %hhu in core facility.",
1797 g_quark_to_string(tf->name),
1798 tf->event.event_id);
1799 goto event_id_error;
1800
1801 }
1802 } else {
1803 if(!f->exists) {
1804 g_error("Unknown facility %hhu (0x%hhx) in tracefile %s",
1805 tf->event.facility_id,
1806 tf->event.facility_id,
1807 g_quark_to_string(tf->name));
1808 goto facility_error;
1809 }
1810
1811 LttEventType *event_type =
1812 ltt_facility_eventtype_get(f, tf->event.event_id);
1813
1814 if(!event_type) {
1815 g_error("Unknown event id %hhu in facility %s in tracefile %s",
1816 tf->event.event_id,
1817 g_quark_to_string(f->name),
1818 g_quark_to_string(tf->name));
1819 goto event_type_error;
1820 }
1821
1822 if(event_type->root_field)
1823 size = get_field_type_size(tf, event_type,
1824 0, 0, event_type->root_field, tf->event.data);
1825 else
1826 size = 0;
1827
1828 g_debug("Event root field : f.e %hhu.%hhu size %zd",
1829 tf->event.facility_id,
1830 tf->event.event_id, size);
1831 }
1832
1833 tf->event.data_size = size;
1834
1835 /* Check consistency between kernel and LTTV structure sizes */
1836 g_assert(tf->event.data_size == tf->event.event_size);
1837
1838 return;
1839
1840 facility_error:
1841 event_type_error:
1842 event_id_error:
1843 tf->event.data_size = 0;
1844 }
1845
1846
1847 /* Take the tf current event offset and use the event facility id and event id
1848 * to figure out where is the next event offset.
1849 *
1850 * This is an internal function not aiming at being used elsewhere : it will
1851 * not jump over the current block limits. Please consider using
1852 * ltt_tracefile_read to do this.
1853 *
1854 * Returns 0 on success
1855 * ERANGE if we are at the end of the buffer.
1856 * ENOPROTOOPT if an error occured when getting the current event size.
1857 */
1858 static int ltt_seek_next_event(LttTracefile *tf)
1859 {
1860 int ret = 0;
1861 void *pos;
1862
1863 /* seek over the buffer header if we are at the buffer start */
1864 if(tf->event.offset == 0) {
1865 tf->event.offset += tf->buffer_header_size;
1866
1867 if(tf->event.offset == tf->buf_size - tf->buffer.lost_size) {
1868 ret = ERANGE;
1869 }
1870 goto found;
1871 }
1872
1873
1874 pos = tf->event.data;
1875
1876 if(tf->event.data_size < 0) goto error;
1877
1878 pos += (size_t)tf->event.data_size;
1879
1880 tf->event.offset = pos - tf->buffer.head;
1881
1882 if(tf->event.offset == tf->buf_size - tf->buffer.lost_size) {
1883 ret = ERANGE;
1884 goto found;
1885 }
1886
1887 found:
1888 return ret;
1889
1890 error:
1891 g_error("Error in ltt_seek_next_event for tracefile %s",
1892 g_quark_to_string(tf->name));
1893 return ENOPROTOOPT;
1894 }
1895
1896
1897 /*****************************************************************************
1898 *Function name
1899 * calc_nsecs_per_cycle : calculate nsecs per cycle for current block
1900 *Input Params
1901 * t : tracefile
1902 ****************************************************************************/
1903
1904 static double calc_nsecs_per_cycle(LttTracefile * tf)
1905 {
1906 LttTime lBufTotalTime; /* Total time for this buffer */
1907 double lBufTotalNSec; /* Total time for this buffer in nsecs */
1908 LttCycleCount lBufTotalCycle;/* Total cycles for this buffer */
1909
1910 /* Calculate the total time for this buffer */
1911 lBufTotalTime = ltt_time_sub(tf->buffer.end.timestamp,
1912 tf->buffer.begin.timestamp);
1913
1914 /* Calculate the total cycles for this bufffer */
1915 lBufTotalCycle = tf->buffer.end.cycle_count;
1916 lBufTotalCycle -= tf->buffer.begin.cycle_count;
1917
1918 /* Convert the total time to double */
1919 lBufTotalNSec = ltt_time_to_double(lBufTotalTime);
1920
1921 return lBufTotalNSec / (double)lBufTotalCycle;
1922
1923 }
1924 #if 0
1925 void setFieldsOffset(LttTracefile *tf, LttEventType *evT,void *evD)
1926 {
1927 LttField * rootFld = evT->root_field;
1928 // rootFld->base_address = evD;
1929
1930 if(likely(rootFld))
1931 rootFld->field_size = getFieldtypeSize(tf, evT->facility,
1932 evT, 0,0,rootFld, evD);
1933 }
1934 #endif //0
1935
1936 /*****************************************************************************
1937 *Function name
1938 * set_fields_offsets : set the precomputable offset of the fields
1939 *Input params
1940 * tracefile : opened trace file
1941 * event_type : the event type
1942 ****************************************************************************/
1943
1944 void set_fields_offsets(LttTracefile *tf, LttEventType *event_type)
1945 {
1946 LttField *field = event_type->root_field;
1947 enum field_status fixed_root = FIELD_FIXED, fixed_parent = FIELD_FIXED;
1948
1949 if(likely(field))
1950 preset_field_type_size(tf, event_type, 0, 0,
1951 &fixed_root, &fixed_parent,
1952 field);
1953
1954 }
1955
1956
1957 /*****************************************************************************
1958 *Function name
1959 * preset_field_type_size : set the fixed sizes of the field type
1960 *Input params
1961 * tf : tracefile
1962 * event_type : event type
1963 * offset_root : offset from the root
1964 * offset_parent : offset from the parent
1965 * fixed_root : Do we know a fixed offset to the root ?
1966 * fixed_parent : Do we know a fixed offset to the parent ?
1967 * field : field
1968 ****************************************************************************/
1969 void preset_field_type_size(LttTracefile *tf, LttEventType *event_type,
1970 off_t offset_root, off_t offset_parent,
1971 enum field_status *fixed_root, enum field_status *fixed_parent,
1972 LttField *field)
1973 {
1974 enum field_status local_fixed_root, local_fixed_parent;
1975 guint i;
1976 LttType *type;
1977
1978 g_assert(field->fixed_root == FIELD_UNKNOWN);
1979 g_assert(field->fixed_parent == FIELD_UNKNOWN);
1980 g_assert(field->fixed_size == FIELD_UNKNOWN);
1981
1982 type = field->field_type;
1983
1984 field->fixed_root = *fixed_root;
1985 if(field->fixed_root == FIELD_FIXED)
1986 field->offset_root = offset_root;
1987 else
1988 field->offset_root = 0;
1989
1990 field->fixed_parent = *fixed_parent;
1991 if(field->fixed_parent == FIELD_FIXED)
1992 field->offset_parent = offset_parent;
1993 else
1994 field->offset_parent = 0;
1995
1996 size_t current_root_offset;
1997 size_t current_offset;
1998 enum field_status current_child_status, final_child_status;
1999 size_t max_size;
2000
2001 switch(type->type_class) {
2002 case LTT_INT:
2003 case LTT_UINT:
2004 case LTT_FLOAT:
2005 case LTT_ENUM:
2006 field->field_size = ltt_type_size(tf->trace, type);
2007 field->fixed_size = FIELD_FIXED;
2008 break;
2009 case LTT_POINTER:
2010 field->field_size = (off_t)event_type->facility->pointer_size;
2011 field->fixed_size = FIELD_FIXED;
2012 break;
2013 case LTT_LONG:
2014 case LTT_ULONG:
2015 field->field_size = (off_t)event_type->facility->long_size;
2016 field->fixed_size = FIELD_FIXED;
2017 break;
2018 case LTT_SIZE_T:
2019 case LTT_SSIZE_T:
2020 case LTT_OFF_T:
2021 field->field_size = (off_t)event_type->facility->size_t_size;
2022 field->fixed_size = FIELD_FIXED;
2023 break;
2024 case LTT_SEQUENCE:
2025 local_fixed_root = FIELD_VARIABLE;
2026 local_fixed_parent = FIELD_VARIABLE;
2027 preset_field_type_size(tf, event_type,
2028 0, 0,
2029 &local_fixed_root, &local_fixed_parent,
2030 field->child[0]);
2031 field->fixed_size = FIELD_VARIABLE;
2032 field->field_size = 0;
2033 *fixed_root = FIELD_VARIABLE;
2034 *fixed_parent = FIELD_VARIABLE;
2035 break;
2036 case LTT_STRING:
2037 field->fixed_size = FIELD_VARIABLE;
2038 field->field_size = 0;
2039 *fixed_root = FIELD_VARIABLE;
2040 *fixed_parent = FIELD_VARIABLE;
2041 break;
2042 case LTT_ARRAY:
2043 local_fixed_root = FIELD_VARIABLE;
2044 local_fixed_parent = FIELD_VARIABLE;
2045 preset_field_type_size(tf, event_type,
2046 0, 0,
2047 &local_fixed_root, &local_fixed_parent,
2048 field->child[0]);
2049 field->fixed_size = field->child[0]->fixed_size;
2050 if(field->fixed_size == FIELD_FIXED) {
2051 field->field_size = type->element_number * field->child[0]->field_size;
2052 } else {
2053 field->field_size = 0;
2054 *fixed_root = FIELD_VARIABLE;
2055 *fixed_parent = FIELD_VARIABLE;
2056 }
2057 break;
2058 case LTT_STRUCT:
2059 current_root_offset = field->offset_root;
2060 current_offset = 0;
2061 current_child_status = FIELD_FIXED;
2062 for(i=0;i<type->element_number;i++) {
2063 preset_field_type_size(tf, event_type,
2064 current_root_offset, current_offset,
2065 fixed_root, &current_child_status,
2066 field->child[i]);
2067 if(current_child_status == FIELD_FIXED) {
2068 current_root_offset += field->child[i]->field_size;
2069 current_offset += field->child[i]->field_size;
2070 } else {
2071 current_root_offset = 0;
2072 current_offset = 0;
2073 }
2074 }
2075 if(current_child_status != FIELD_FIXED) {
2076 *fixed_parent = current_child_status;
2077 field->field_size = 0;
2078 field->fixed_size = current_child_status;
2079 } else {
2080 field->field_size = current_offset;
2081 field->fixed_size = FIELD_FIXED;
2082 }
2083 break;
2084 case LTT_UNION:
2085 current_root_offset = field->offset_root;
2086 current_offset = 0;
2087 max_size = 0;
2088 final_child_status = FIELD_FIXED;
2089 for(i=0;i<type->element_number;i++) {
2090 enum field_status current_root_child_status = FIELD_FIXED;
2091 enum field_status current_child_status = FIELD_FIXED;
2092 preset_field_type_size(tf, event_type,
2093 current_root_offset, current_offset,
2094 &current_root_child_status, &current_child_status,
2095 field->child[i]);
2096 if(current_child_status != FIELD_FIXED)
2097 final_child_status = current_child_status;
2098 else
2099 max_size = max(max_size, field->child[i]->field_size);
2100 }
2101 if(final_child_status != FIELD_FIXED) {
2102 *fixed_root = final_child_status;
2103 *fixed_parent = final_child_status;
2104 field->field_size = 0;
2105 field->fixed_size = current_child_status;
2106 } else {
2107 field->field_size = max_size;
2108 field->fixed_size = FIELD_FIXED;
2109 }
2110 break;
2111 }
2112
2113 }
2114
2115
2116 /*****************************************************************************
2117 *Function name
2118 * check_fields_compatibility : Check for compatibility between two fields :
2119 * do they use the same inner structure ?
2120 *Input params
2121 * event_type1 : event type
2122 * event_type2 : event type
2123 * field1 : field
2124 * field2 : field
2125 *Returns : 0 if identical
2126 * 1 if not.
2127 ****************************************************************************/
2128 gint check_fields_compatibility(LttEventType *event_type1,
2129 LttEventType *event_type2,
2130 LttField *field1, LttField *field2)
2131 {
2132 guint different = 0;
2133 guint i;
2134 LttType *type1;
2135 LttType *type2;
2136
2137 if(field1 == NULL) {
2138 if(field2 == NULL) goto end;
2139 else {
2140 different = 1;
2141 goto end;
2142 }
2143 } else if(field2 == NULL) {
2144 different = 1;
2145 goto end;
2146 }
2147
2148 g_assert(field1->fixed_root != FIELD_UNKNOWN);
2149 g_assert(field2->fixed_root != FIELD_UNKNOWN);
2150 g_assert(field1->fixed_parent != FIELD_UNKNOWN);
2151 g_assert(field2->fixed_parent != FIELD_UNKNOWN);
2152 g_assert(field1->fixed_size != FIELD_UNKNOWN);
2153 g_assert(field2->fixed_size != FIELD_UNKNOWN);
2154
2155 type1 = field1->field_type;
2156 type2 = field2->field_type;
2157
2158 if(type1->type_class != type2->type_class) {
2159 different = 1;
2160 goto end;
2161 }
2162 if(type1->element_name != type2->element_name) {
2163 different = 1;
2164 goto end;
2165 }
2166
2167 switch(type1->type_class) {
2168 case LTT_INT:
2169 case LTT_UINT:
2170 case LTT_FLOAT:
2171 case LTT_POINTER:
2172 case LTT_LONG:
2173 case LTT_ULONG:
2174 case LTT_SIZE_T:
2175 case LTT_SSIZE_T:
2176 case LTT_OFF_T:
2177 if(field1->field_size != field2->field_size) {
2178 different = 1;
2179 goto end;
2180 }
2181 break;
2182 case LTT_ENUM:
2183 if(type1->element_number != type2->element_number) {
2184 different = 1;
2185 goto end;
2186 }
2187 for(i=0;i<type1->element_number;i++) {
2188 if(type1->enum_strings[i] != type2->enum_strings[i]) {
2189 different = 1;
2190 goto end;
2191 }
2192 }
2193 break;
2194 case LTT_SEQUENCE:
2195 /* Two elements : size and child */
2196 g_assert(type1->element_number != type2->element_number);
2197 for(i=0;i<type1->element_number;i++) {
2198 if(check_fields_compatibility(event_type1, event_type2,
2199 field1->child[0], field2->child[0])) {
2200 different = 1;
2201 goto end;
2202 }
2203 }
2204 break;
2205 case LTT_STRING:
2206 break;
2207 case LTT_ARRAY:
2208 if(field1->field_size != field2->field_size) {
2209 different = 1;
2210 goto end;
2211 }
2212 /* Two elements : size and child */
2213 g_assert(type1->element_number != type2->element_number);
2214 for(i=0;i<type1->element_number;i++) {
2215 if(check_fields_compatibility(event_type1, event_type2,
2216 field1->child[0], field2->child[0])) {
2217 different = 1;
2218 goto end;
2219 }
2220 }
2221 break;
2222 case LTT_STRUCT:
2223 case LTT_UNION:
2224 if(type1->element_number != type2->element_number) {
2225 different = 1;
2226 break;
2227 }
2228 for(i=0;i<type1->element_number;i++) {
2229 if(check_fields_compatibility(event_type1, event_type2,
2230 field1->child[0], field2->child[0])) {
2231 different = 1;
2232 goto end;
2233 }
2234 }
2235 break;
2236 }
2237 end:
2238 return different;
2239 }
2240
2241
2242
2243
2244 #if 0
2245 /*****************************************************************************
2246 *Function name
2247 * getFieldtypeSize: get the size of the field type (primitive type)
2248 *Input params
2249 * evT : event type
2250 * offsetRoot : offset from the root
2251 * offsetParent : offset from the parrent
2252 * fld : field
2253 * evD : event data, it may be NULL
2254 *Return value
2255 * int : size of the field
2256 ****************************************************************************/
2257
2258 static inline gint getFieldtypeSize(LttTracefile *tf,
2259 LttEventType * evT, gint offsetRoot,
2260 gint offsetParent, LttField * fld, void *evD)
2261 {
2262 gint size, size1, element_number, i, offset1, offset2;
2263 LttType * type = fld->field_type;
2264
2265 /* This likely has been tested with gcov : half of them.. */
2266 if(unlikely(fld->field_fixed == 1)){
2267 /* tested : none */
2268 if(unlikely(fld == evT->root_field)) {
2269 size = fld->field_size;
2270 goto end_getFieldtypeSize;
2271 }
2272 }
2273
2274 /* From gcov profiling : half string, half struct, can we gain something
2275 * from that ? (Mathieu) */
2276 switch(type->type_class) {
2277 case LTT_ARRAY:
2278 element_number = (int) type->element_number;
2279 if(fld->field_fixed == -1){
2280 size = getFieldtypeSize(tf, evT, offsetRoot,
2281 0,fld->child[0], NULL);
2282 if(size == 0){ //has string or sequence
2283 fld->field_fixed = 0;
2284 }else{
2285 fld->field_fixed = 1;
2286 size *= element_number;
2287 }
2288 }else if(fld->field_fixed == 0){// has string or sequence
2289 size = 0;
2290 for(i=0;i<element_number;i++){
2291 size += getFieldtypeSize(tf, evT, offsetRoot+size,size,
2292 fld->child[0], evD+size);
2293 }
2294 }else size = fld->field_size;
2295 if(unlikely(!evD)){
2296 fld->fixed_root = (offsetRoot==-1) ? 0 : 1;
2297 fld->fixed_parent = (offsetParent==-1) ? 0 : 1;
2298 }
2299
2300 break;
2301
2302 case LTT_SEQUENCE:
2303 size1 = (int) ltt_type_size(fac, type);
2304 if(fld->field_fixed == -1){
2305 fld->sequ_number_size = size1;
2306 fld->field_fixed = 0;
2307 size = getFieldtypeSize(evT, offsetRoot,
2308 0,fld->child[0], NULL);
2309 fld->element_size = size;
2310 }else{//0: sequence
2311 element_number = getIntNumber(tf,size1,evD);
2312 type->element_number = element_number;
2313 if(fld->element_size > 0){
2314 size = element_number * fld->element_size;
2315 }else{//sequence has string or sequence
2316 size = 0;
2317 for(i=0;i<element_number;i++){
2318 size += getFieldtypeSize(tf, evT,
2319 offsetRoot+size+size1,size+size1,
2320 fld->child[0], evD+size+size1);
2321 }
2322 }
2323 size += size1;
2324 }
2325 if(unlikely(!evD)){
2326 fld->fixed_root = (offsetRoot==-1) ? 0 : 1;
2327 fld->fixed_parent = (offsetParent==-1) ? 0 : 1;
2328 }
2329
2330 break;
2331
2332 case LTT_STRING:
2333 size = 0;
2334 if(fld->field_fixed == -1){
2335 fld->field_fixed = 0;
2336 }else{//0: string
2337 /* Hope my implementation is faster than strlen (Mathieu) */
2338 char *ptr=(char*)evD;
2339 size = 1;
2340 /* from gcov : many many strings are empty, make it the common case.*/
2341 while(unlikely(*ptr != '\0')) { size++; ptr++; }
2342 //size = ptr - (char*)evD + 1; //include end : '\0'
2343 }
2344 fld->fixed_root = (offsetRoot==-1) ? 0 : 1;
2345 fld->fixed_parent = (offsetParent==-1) ? 0 : 1;
2346
2347 break;
2348
2349 case LTT_STRUCT:
2350 element_number = (int) type->element_number;
2351 size = 0;
2352 /* tested with gcov */
2353 if(unlikely(fld->field_fixed == -1)){
2354 offset1 = offsetRoot;
2355 offset2 = 0;
2356 for(i=0;i<element_number;i++){
2357 size1=getFieldtypeSize(tf, evT,offset1,offset2,
2358 fld->child[i], NULL);
2359 if(likely(size1 > 0 && size >= 0)){
2360 size += size1;
2361 if(likely(offset1 >= 0)) offset1 += size1;
2362 offset2 += size1;
2363 }else{
2364 size = -1;
2365 offset1 = -1;
2366 offset2 = -1;
2367 }
2368 }
2369 if(unlikely(size == -1)){
2370 fld->field_fixed = 0;
2371 size = 0;
2372 }else fld->field_fixed = 1;
2373 }else if(likely(fld->field_fixed == 0)){
2374 offset1 = offsetRoot;
2375 offset2 = 0;
2376 for(i=0;unlikely(i<element_number);i++){
2377 size=getFieldtypeSize(tf, evT, offset1, offset2,
2378 fld->child[i], evD+offset2);
2379 offset1 += size;
2380 offset2 += size;
2381 }
2382 size = offset2;
2383 }else size = fld->field_size;
2384 fld->fixed_root = (offsetRoot==-1) ? 0 : 1;
2385 fld->fixed_parent = (offsetParent==-1) ? 0 : 1;
2386 break;
2387
2388 default:
2389 if(unlikely(fld->field_fixed == -1)){
2390 size = (int) ltt_type_size(LTT_GET_BO(tf), type);
2391 fld->field_fixed = 1;
2392 }else size = fld->field_size;
2393 if(unlikely(!evD)){
2394 fld->fixed_root = (offsetRoot==-1) ? 0 : 1;
2395 fld->fixed_parent = (offsetParent==-1) ? 0 : 1;
2396 }
2397 break;
2398 }
2399
2400 fld->offset_root = offsetRoot;
2401 fld->offset_parent = offsetParent;
2402 fld->field_size = size;
2403
2404 end_getFieldtypeSize:
2405
2406 return size;
2407 }
2408 #endif //0
2409
2410 /*****************************************************************************
2411 *Function name
2412 * ltt_get_int : get an integer number
2413 *Input params
2414 * reverse_byte_order: must we reverse the byte order ?
2415 * size : the size of the integer
2416 * ptr : the data pointer
2417 *Return value
2418 * gint64 : a 64 bits integer
2419 ****************************************************************************/
2420
2421 gint64 ltt_get_int(gboolean reverse_byte_order, gint size, void *data)
2422 {
2423 gint64 val;
2424
2425 switch(size) {
2426 case 1: val = *((gint8*)data); break;
2427 case 2: val = ltt_get_int16(reverse_byte_order, data); break;
2428 case 4: val = ltt_get_int32(reverse_byte_order, data); break;
2429 case 8: val = ltt_get_int64(reverse_byte_order, data); break;
2430 default: val = ltt_get_int64(reverse_byte_order, data);
2431 g_critical("get_int : integer size %d unknown", size);
2432 break;
2433 }
2434
2435 return val;
2436 }
2437
2438 /*****************************************************************************
2439 *Function name
2440 * ltt_get_uint : get an unsigned integer number
2441 *Input params
2442 * reverse_byte_order: must we reverse the byte order ?
2443 * size : the size of the integer
2444 * ptr : the data pointer
2445 *Return value
2446 * guint64 : a 64 bits unsigned integer
2447 ****************************************************************************/
2448
2449 guint64 ltt_get_uint(gboolean reverse_byte_order, gint size, void *data)
2450 {
2451 guint64 val;
2452
2453 switch(size) {
2454 case 1: val = *((gint8*)data); break;
2455 case 2: val = ltt_get_uint16(reverse_byte_order, data); break;
2456 case 4: val = ltt_get_uint32(reverse_byte_order, data); break;
2457 case 8: val = ltt_get_uint64(reverse_byte_order, data); break;
2458 default: val = ltt_get_uint64(reverse_byte_order, data);
2459 g_critical("get_uint : unsigned integer size %d unknown",
2460 size);
2461 break;
2462 }
2463
2464 return val;
2465 }
2466
2467
2468 /* get the node name of the system */
2469
2470 char * ltt_trace_system_description_node_name (LttSystemDescription * s)
2471 {
2472 return s->node_name;
2473 }
2474
2475
2476 /* get the domain name of the system */
2477
2478 char * ltt_trace_system_description_domain_name (LttSystemDescription * s)
2479 {
2480 return s->domain_name;
2481 }
2482
2483
2484 /* get the description of the system */
2485
2486 char * ltt_trace_system_description_description (LttSystemDescription * s)
2487 {
2488 return s->description;
2489 }
2490
2491
2492 /* get the start time of the trace */
2493
2494 LttTime ltt_trace_system_description_trace_start_time(LttSystemDescription *s)
2495 {
2496 return s->trace_start;
2497 }
2498
2499
2500 LttTracefile *ltt_tracefile_new()
2501 {
2502 return g_new(LttTracefile, 1);
2503 }
2504
2505 void ltt_tracefile_destroy(LttTracefile *tf)
2506 {
2507 g_free(tf);
2508 }
2509
2510 void ltt_tracefile_copy(LttTracefile *dest, const LttTracefile *src)
2511 {
2512 *dest = *src;
2513 }
2514
2515 /* Before library loading... */
2516
2517 static void __attribute__((constructor)) init(void)
2518 {
2519 LTT_FACILITY_NAME_HEARTBEAT = g_quark_from_string("heartbeat");
2520 LTT_EVENT_NAME_HEARTBEAT = g_quark_from_string("heartbeat");
2521
2522 LTT_TRACEFILE_NAME_FACILITIES = g_quark_from_string("/control/facilities");
2523 }
2524
This page took 0.079314 seconds and 5 git commands to generate.