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