seek time revert
[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(const LttTracefile *tf)
1321 {
1322 return tf->name;
1323 }
1324
1325 GQuark ltt_tracefile_long_name(const LttTracefile *tf)
1326 {
1327 return tf->long_name;
1328 }
1329
1330
1331
1332 guint ltt_tracefile_num(LttTracefile *tf)
1333 {
1334 return tf->cpu_num;
1335 }
1336
1337 /*****************************************************************************
1338 * Get the number of blocks in the tracefile
1339 ****************************************************************************/
1340
1341 guint ltt_tracefile_block_number(LttTracefile *tf)
1342 {
1343 return tf->num_blocks;
1344 }
1345
1346
1347 /* Seek to the first event in a tracefile that has a time equal or greater than
1348 * the time passed in parameter.
1349 *
1350 * If the time parameter is outside the tracefile time span, seek to the first
1351 * event or if after, return ERANGE.
1352 *
1353 * If the time parameter is before the first event, we have to seek specially to
1354 * there.
1355 *
1356 * If the time is after the end of the trace, return ERANGE.
1357 *
1358 * Do a binary search to find the right block, then a sequential search in the
1359 * block to find the event.
1360 *
1361 * In the special case where the time requested fits inside a block that has no
1362 * event corresponding to the requested time, the first event of the next block
1363 * will be seeked.
1364 *
1365 * IMPORTANT NOTE : // FIXME everywhere...
1366 *
1367 * You MUST NOT do a ltt_tracefile_read right after a ltt_tracefile_seek_time :
1368 * you will jump over an event if you do.
1369 *
1370 * Return value : 0 : no error, the tf->event can be used
1371 * ERANGE : time if after the last event of the trace
1372 * otherwise : this is an error.
1373 *
1374 * */
1375
1376 int ltt_tracefile_seek_time(LttTracefile *tf, LttTime time)
1377 {
1378 int ret = 0;
1379 int err;
1380 unsigned int block_num, high, low;
1381
1382 /* seek at the beginning of trace */
1383 err = map_block(tf, 0); /* First block */
1384 if(unlikely(err)) {
1385 g_error("Can not map block");
1386 goto fail;
1387 }
1388
1389 /* If the time is lower or equal the beginning of the trace,
1390 * go to the first event. */
1391 if(ltt_time_compare(time, tf->buffer.begin.timestamp) <= 0) {
1392 ret = ltt_tracefile_read(tf);
1393 if(ret == ERANGE) goto range;
1394 else if (ret) goto fail;
1395 goto found; /* There is either no event in the trace or the event points
1396 to the first event in the trace */
1397 }
1398
1399 err = map_block(tf, tf->num_blocks - 1); /* Last block */
1400 if(unlikely(err)) {
1401 g_error("Can not map block");
1402 goto fail;
1403 }
1404
1405 /* If the time is after the end of the trace, return ERANGE. */
1406 if(ltt_time_compare(time, tf->buffer.end.timestamp) > 0) {
1407 goto range;
1408 }
1409
1410 /* Binary search the block */
1411 high = tf->num_blocks - 1;
1412 low = 0;
1413
1414 while(1) {
1415 block_num = ((high-low) / 2) + low;
1416
1417 err = map_block(tf, block_num);
1418 if(unlikely(err)) {
1419 g_error("Can not map block");
1420 goto fail;
1421 }
1422 if(high == low) {
1423 /* We cannot divide anymore : this is what would happen if the time
1424 * requested was exactly between two consecutive buffers'end and start
1425 * timestamps. This is also what would happend if we didn't deal with out
1426 * of span cases prior in this function. */
1427 /* The event is right in the buffer!
1428 * (or in the next buffer first event) */
1429 while(1) {
1430 ret = ltt_tracefile_read(tf);
1431 if(ret == ERANGE) goto range; /* ERANGE or EPERM */
1432 else if(ret) goto fail;
1433
1434 if(ltt_time_compare(time, tf->event.event_time) >= 0)
1435 goto found;
1436 }
1437
1438 } else if(ltt_time_compare(time, tf->buffer.begin.timestamp) < 0) {
1439 /* go to lower part */
1440 high = block_num - 1;
1441 } else if(ltt_time_compare(time, tf->buffer.end.timestamp) > 0) {
1442 /* go to higher part */
1443 low = block_num + 1;
1444 } else {/* The event is right in the buffer!
1445 (or in the next buffer first event) */
1446 while(1) {
1447 ret = ltt_tracefile_read(tf);
1448 if(ret == ERANGE) goto range; /* ERANGE or EPERM */
1449 else if(ret) goto fail;
1450
1451 if(ltt_time_compare(time, tf->event.event_time) >= 0)
1452 break;
1453 }
1454 goto found;
1455 }
1456 }
1457
1458 found:
1459 return 0;
1460 range:
1461 return ERANGE;
1462
1463 /* Error handling */
1464 fail:
1465 g_error("ltt_tracefile_seek_time failed on tracefile %s",
1466 g_quark_to_string(tf->name));
1467 return EPERM;
1468 }
1469
1470
1471 int ltt_tracefile_seek_position(LttTracefile *tf, const LttEventPosition *ep) {
1472
1473 int err;
1474
1475 if(ep->tracefile != tf) {
1476 goto fail;
1477 }
1478
1479 err = map_block(tf, ep->block);
1480 if(unlikely(err)) {
1481 g_error("Can not map block");
1482 goto fail;
1483 }
1484
1485 tf->event.offset = ep->offset;
1486
1487 err = ltt_tracefile_read_update_event(tf);
1488 if(err) goto fail;
1489 err = ltt_tracefile_read_op(tf);
1490 if(err) goto fail;
1491
1492 return 0;
1493
1494 fail:
1495 g_error("ltt_tracefile_seek_time failed on tracefile %s",
1496 g_quark_to_string(tf->name));
1497 return 1;
1498 }
1499
1500 /* Calculate the real event time based on the buffer boundaries */
1501 LttTime ltt_interpolate_time(LttTracefile *tf, LttEvent *event)
1502 {
1503 LttTime time;
1504
1505 g_assert(tf->trace->has_tsc);
1506
1507 time = ltt_time_from_uint64(
1508 (guint64)(tf->buffer.tsc - tf->buffer.begin.cycle_count) *
1509 tf->buffer.nsecs_per_cycle);
1510 time = ltt_time_add(tf->buffer.begin.timestamp, time);
1511
1512 return time;
1513 }
1514
1515
1516 /* Get the current event of the tracefile : valid until the next read */
1517 LttEvent *ltt_tracefile_get_event(LttTracefile *tf)
1518 {
1519 return &tf->event;
1520 }
1521
1522
1523
1524 /*****************************************************************************
1525 *Function name
1526 * ltt_tracefile_read : Read the next event in the tracefile
1527 *Input params
1528 * t : tracefile
1529 *Return value
1530 *
1531 * Returns 0 if an event can be used in tf->event.
1532 * Returns ERANGE on end of trace. The event in tf->event still can be used
1533 * (if the last block was not empty).
1534 * Returns EPERM on error.
1535 *
1536 * This function does make the tracefile event structure point to the event
1537 * currently pointed to by the tf->event.
1538 *
1539 * Note : you must call a ltt_tracefile_seek to the beginning of the trace to
1540 * reinitialize it after an error if you want results to be coherent.
1541 * It would be the case if a end of trace last buffer has no event : the end
1542 * of trace wouldn't be returned, but an error.
1543 * We make the assumption there is at least one event per buffer.
1544 ****************************************************************************/
1545
1546 int ltt_tracefile_read(LttTracefile *tf)
1547 {
1548 int err;
1549
1550 err = ltt_tracefile_read_seek(tf);
1551 if(err) return err;
1552 err = ltt_tracefile_read_update_event(tf);
1553 if(err) return err;
1554 err = ltt_tracefile_read_op(tf);
1555 if(err) return err;
1556
1557 return 0;
1558 }
1559
1560 int ltt_tracefile_read_seek(LttTracefile *tf)
1561 {
1562 int err;
1563
1564 /* Get next buffer until we finally have an event, or end of trace */
1565 while(1) {
1566 err = ltt_seek_next_event(tf);
1567 if(unlikely(err == ENOPROTOOPT)) {
1568 return EPERM;
1569 }
1570
1571 /* Are we at the end of the buffer ? */
1572 if(err == ERANGE) {
1573 if(unlikely(tf->buffer.index == tf->num_blocks-1)){ /* end of trace ? */
1574 return ERANGE;
1575 } else {
1576 /* get next block */
1577 err = map_block(tf, tf->buffer.index + 1);
1578 if(unlikely(err)) {
1579 g_error("Can not map block");
1580 return EPERM;
1581 }
1582 }
1583 } else break; /* We found an event ! */
1584 }
1585
1586 return 0;
1587 }
1588
1589
1590 /* do specific operation on events */
1591 int ltt_tracefile_read_op(LttTracefile *tf)
1592 {
1593 LttEvent *event;
1594
1595 event = &tf->event;
1596
1597 /* do event specific operation */
1598
1599 /* do something if its an heartbeat event : increment the heartbeat count */
1600 //if(event->facility_id == LTT_FACILITY_CORE)
1601 // if(event->event_id == LTT_EVENT_HEARTBEAT)
1602 // tf->cur_heart_beat_number++;
1603
1604 return 0;
1605 }
1606
1607
1608 /* same as ltt_tracefile_read, but does not seek to the next event nor call
1609 * event specific operation. */
1610 int ltt_tracefile_read_update_event(LttTracefile *tf)
1611 {
1612 void * pos;
1613 LttEvent *event;
1614
1615 event = &tf->event;
1616 pos = tf->buffer.head + event->offset;
1617
1618 /* Read event header */
1619
1620 //TODO align
1621
1622 if(tf->trace->has_tsc) {
1623 if(tf->trace->has_heartbeat) {
1624 event->time.timestamp = ltt_get_uint32(LTT_GET_BO(tf),
1625 pos);
1626 /* 32 bits -> 64 bits tsc */
1627 /* note : still works for seek and non seek cases. */
1628 if(event->time.timestamp < (0xFFFFFFFFULL&tf->buffer.tsc)) {
1629 tf->buffer.tsc = ((tf->buffer.tsc&0xFFFFFFFF00000000ULL)
1630 + 0x100000000ULL)
1631 | (guint64)event->time.timestamp;
1632 event->tsc = tf->buffer.tsc;
1633 } else {
1634 /* no overflow */
1635 tf->buffer.tsc = (tf->buffer.tsc&0xFFFFFFFF00000000ULL)
1636 | (guint64)event->time.timestamp;
1637 event->tsc = tf->buffer.tsc;
1638 }
1639 pos += sizeof(guint32);
1640 } else {
1641 event->tsc = ltt_get_uint64(LTT_GET_BO(tf), pos);
1642 tf->buffer.tsc = event->tsc;
1643 pos += sizeof(guint64);
1644 }
1645
1646 event->event_time = ltt_interpolate_time(tf, event);
1647 } else {
1648 event->time.delta.tv_sec = 0;
1649 event->time.delta.tv_nsec = ltt_get_uint32(LTT_GET_BO(tf),
1650 pos) * NSEC_PER_USEC;
1651 tf->buffer.tsc = 0;
1652 event->tsc = tf->buffer.tsc;
1653
1654 event->event_time = ltt_time_add(tf->buffer.begin.timestamp,
1655 event->time.delta);
1656 pos += sizeof(guint32);
1657 }
1658
1659 event->facility_id = *(guint8*)pos;
1660 pos += sizeof(guint8);
1661
1662 event->event_id = *(guint8*)pos;
1663 pos += sizeof(guint8);
1664
1665 event->event_size = ltt_get_uint16(LTT_GET_BO(tf), pos);
1666 pos += sizeof(guint16);
1667
1668 event->data = pos;
1669
1670 /* get the data size and update the event fields with the current
1671 * information */
1672 ltt_update_event_size(tf);
1673
1674 return 0;
1675 }
1676
1677
1678 /****************************************************************************
1679 *Function name
1680 * map_block : map a block from the file
1681 *Input Params
1682 * lttdes : ltt trace file
1683 * whichBlock : the block which will be read
1684 *return value
1685 * 0 : success
1686 * EINVAL : lseek fail
1687 * EIO : can not read from the file
1688 ****************************************************************************/
1689
1690 static gint map_block(LttTracefile * tf, guint block_num)
1691 {
1692 int page_size = getpagesize();
1693 struct ltt_block_start_header *header;
1694
1695 g_assert(block_num < tf->num_blocks);
1696
1697 if(tf->buffer.head != NULL) {
1698 if(munmap(tf->buffer.head, PAGE_ALIGN(tf->buf_size))) {
1699 g_warning("unmap size : %u\n",
1700 PAGE_ALIGN(tf->buf_size));
1701 perror("munmap error");
1702 g_assert(0);
1703 }
1704 }
1705
1706
1707 /* Multiple of pages aligned head */
1708 tf->buffer.head = mmap(0,
1709 PAGE_ALIGN(tf->buf_size),
1710 PROT_READ, MAP_PRIVATE, tf->fd,
1711 PAGE_ALIGN((off_t)tf->buf_size * (off_t)block_num));
1712
1713 if(tf->buffer.head == MAP_FAILED) {
1714 perror("Error in allocating memory for buffer of tracefile");
1715 g_assert(0);
1716 goto map_error;
1717 }
1718 g_assert( ( (guint)tf->buffer.head&(8-1) ) == 0); // make sure it's aligned.
1719
1720
1721 tf->buffer.index = block_num;
1722
1723 header = (struct ltt_block_start_header*)tf->buffer.head;
1724
1725 tf->buffer.begin.timestamp = ltt_get_time(LTT_GET_BO(tf),
1726 &header->begin.timestamp);
1727 tf->buffer.begin.timestamp.tv_nsec *= NSEC_PER_USEC;
1728 //g_debug("block %u begin : %lu.%lu", block_num,
1729 // tf->buffer.begin.timestamp.tv_sec, tf->buffer.begin.timestamp.tv_nsec);
1730 tf->buffer.begin.cycle_count = ltt_get_uint64(LTT_GET_BO(tf),
1731 &header->begin.cycle_count);
1732 tf->buffer.end.timestamp = ltt_get_time(LTT_GET_BO(tf),
1733 &header->end.timestamp);
1734 tf->buffer.end.timestamp.tv_nsec *= NSEC_PER_USEC;
1735 //g_debug("block %u end : %lu.%lu", block_num,
1736 // tf->buffer.end.timestamp.tv_sec, tf->buffer.end.timestamp.tv_nsec);
1737 tf->buffer.end.cycle_count = ltt_get_uint64(LTT_GET_BO(tf),
1738 &header->end.cycle_count);
1739 tf->buffer.lost_size = ltt_get_uint32(LTT_GET_BO(tf),
1740 &header->lost_size);
1741
1742 tf->buffer.tsc = tf->buffer.begin.cycle_count;
1743 tf->event.tsc = tf->buffer.tsc;
1744
1745 /* FIXME
1746 * eventually support variable buffer size : will need a partial pre-read of
1747 * the headers to create an index when we open the trace... eventually. */
1748 g_assert(tf->buf_size == ltt_get_uint32(LTT_GET_BO(tf),
1749 &header->buf_size));
1750
1751 /* Now that the buffer is mapped, calculate the time interpolation for the
1752 * block. */
1753
1754 tf->buffer.nsecs_per_cycle = calc_nsecs_per_cycle(tf);
1755
1756 /* Make the current event point to the beginning of the buffer :
1757 * it means that the event read must get the first event. */
1758 tf->event.tracefile = tf;
1759 tf->event.block = block_num;
1760 tf->event.offset = 0;
1761
1762 return 0;
1763
1764 map_error:
1765 return -errno;
1766
1767 }
1768
1769 /* It will update the fields offsets too */
1770 void ltt_update_event_size(LttTracefile *tf)
1771 {
1772 ssize_t size = 0;
1773
1774 /* Specific handling of core events : necessary to read the facility control
1775 * tracefile. */
1776 LttFacility *f = ltt_trace_get_facility_by_num(tf->trace,
1777 tf->event.facility_id);
1778
1779 if(likely(tf->event.facility_id == LTT_FACILITY_CORE)) {
1780 switch((enum ltt_core_events)tf->event.event_id) {
1781 case LTT_EVENT_FACILITY_LOAD:
1782 size = strlen((char*)tf->event.data) + 1;
1783 //g_debug("Update Event facility load of facility %s", (char*)tf->event.data);
1784 size += sizeof(struct LttFacilityLoad);
1785 break;
1786 case LTT_EVENT_FACILITY_UNLOAD:
1787 //g_debug("Update Event facility unload");
1788 size = sizeof(struct LttFacilityUnload);
1789 break;
1790 case LTT_EVENT_STATE_DUMP_FACILITY_LOAD:
1791 size = strlen((char*)tf->event.data) + 1;
1792 //g_debug("Update Event facility load state dump of facility %s",
1793 // (char*)tf->event.data);
1794 size += sizeof(struct LttStateDumpFacilityLoad);
1795 break;
1796 case LTT_EVENT_HEARTBEAT:
1797 //g_debug("Update Event heartbeat");
1798 size = sizeof(TimeHeartbeat);
1799 break;
1800 default:
1801 g_warning("Error in getting event size : tracefile %s, "
1802 "unknown event id %hhu in core facility.",
1803 g_quark_to_string(tf->name),
1804 tf->event.event_id);
1805 goto event_id_error;
1806
1807 }
1808 } else {
1809 if(!f->exists) {
1810 g_error("Unknown facility %hhu (0x%hhx) in tracefile %s",
1811 tf->event.facility_id,
1812 tf->event.facility_id,
1813 g_quark_to_string(tf->name));
1814 goto facility_error;
1815 }
1816
1817 LttEventType *event_type =
1818 ltt_facility_eventtype_get(f, tf->event.event_id);
1819
1820 if(!event_type) {
1821 g_error("Unknown event id %hhu in facility %s in tracefile %s",
1822 tf->event.event_id,
1823 g_quark_to_string(f->name),
1824 g_quark_to_string(tf->name));
1825 goto event_type_error;
1826 }
1827
1828 if(event_type->root_field)
1829 size = get_field_type_size(tf, event_type,
1830 0, 0, event_type->root_field, tf->event.data);
1831 else
1832 size = 0;
1833
1834 //g_debug("Event root field : f.e %hhu.%hhu size %zd",
1835 // tf->event.facility_id,
1836 // tf->event.event_id, size);
1837 }
1838
1839 tf->event.data_size = size;
1840
1841 /* Check consistency between kernel and LTTV structure sizes */
1842 g_assert(tf->event.data_size == tf->event.event_size);
1843
1844 return;
1845
1846 facility_error:
1847 event_type_error:
1848 event_id_error:
1849 tf->event.data_size = 0;
1850 }
1851
1852
1853 /* Take the tf current event offset and use the event facility id and event id
1854 * to figure out where is the next event offset.
1855 *
1856 * This is an internal function not aiming at being used elsewhere : it will
1857 * not jump over the current block limits. Please consider using
1858 * ltt_tracefile_read to do this.
1859 *
1860 * Returns 0 on success
1861 * ERANGE if we are at the end of the buffer.
1862 * ENOPROTOOPT if an error occured when getting the current event size.
1863 */
1864 static int ltt_seek_next_event(LttTracefile *tf)
1865 {
1866 int ret = 0;
1867 void *pos;
1868
1869 /* seek over the buffer header if we are at the buffer start */
1870 if(tf->event.offset == 0) {
1871 tf->event.offset += tf->buffer_header_size;
1872
1873 if(tf->event.offset == tf->buf_size - tf->buffer.lost_size) {
1874 ret = ERANGE;
1875 }
1876 goto found;
1877 }
1878
1879
1880 pos = tf->event.data;
1881
1882 if(tf->event.data_size < 0) goto error;
1883
1884 pos += (size_t)tf->event.data_size;
1885
1886 tf->event.offset = pos - tf->buffer.head;
1887
1888 if(tf->event.offset == tf->buf_size - tf->buffer.lost_size) {
1889 ret = ERANGE;
1890 goto found;
1891 }
1892 g_assert(tf->event.offset < tf->buf_size - tf->buffer.lost_size);
1893
1894 found:
1895 return ret;
1896
1897 error:
1898 g_error("Error in ltt_seek_next_event for tracefile %s",
1899 g_quark_to_string(tf->name));
1900 return ENOPROTOOPT;
1901 }
1902
1903
1904 /*****************************************************************************
1905 *Function name
1906 * calc_nsecs_per_cycle : calculate nsecs per cycle for current block
1907 *Input Params
1908 * t : tracefile
1909 ****************************************************************************/
1910
1911 static double calc_nsecs_per_cycle(LttTracefile * tf)
1912 {
1913 LttTime lBufTotalTime; /* Total time for this buffer */
1914 double lBufTotalNSec; /* Total time for this buffer in nsecs */
1915 LttCycleCount lBufTotalCycle;/* Total cycles for this buffer */
1916
1917 /* Calculate the total time for this buffer */
1918 lBufTotalTime = ltt_time_sub(tf->buffer.end.timestamp,
1919 tf->buffer.begin.timestamp);
1920
1921 /* Calculate the total cycles for this bufffer */
1922 lBufTotalCycle = tf->buffer.end.cycle_count;
1923 lBufTotalCycle -= tf->buffer.begin.cycle_count;
1924
1925 /* Convert the total time to double */
1926 lBufTotalNSec = ltt_time_to_double(lBufTotalTime);
1927
1928 return lBufTotalNSec / (double)lBufTotalCycle;
1929
1930 }
1931 #if 0
1932 void setFieldsOffset(LttTracefile *tf, LttEventType *evT,void *evD)
1933 {
1934 LttField * rootFld = evT->root_field;
1935 // rootFld->base_address = evD;
1936
1937 if(likely(rootFld))
1938 rootFld->field_size = getFieldtypeSize(tf, evT->facility,
1939 evT, 0,0,rootFld, evD);
1940 }
1941 #endif //0
1942
1943 /*****************************************************************************
1944 *Function name
1945 * set_fields_offsets : set the precomputable offset of the fields
1946 *Input params
1947 * tracefile : opened trace file
1948 * event_type : the event type
1949 ****************************************************************************/
1950
1951 void set_fields_offsets(LttTracefile *tf, LttEventType *event_type)
1952 {
1953 LttField *field = event_type->root_field;
1954 enum field_status fixed_root = FIELD_FIXED, fixed_parent = FIELD_FIXED;
1955
1956 if(likely(field))
1957 preset_field_type_size(tf, event_type, 0, 0,
1958 &fixed_root, &fixed_parent,
1959 field);
1960
1961 }
1962
1963
1964 /*****************************************************************************
1965 *Function name
1966 * preset_field_type_size : set the fixed sizes of the field type
1967 *Input params
1968 * tf : tracefile
1969 * event_type : event type
1970 * offset_root : offset from the root
1971 * offset_parent : offset from the parent
1972 * fixed_root : Do we know a fixed offset to the root ?
1973 * fixed_parent : Do we know a fixed offset to the parent ?
1974 * field : field
1975 ****************************************************************************/
1976 void preset_field_type_size(LttTracefile *tf, LttEventType *event_type,
1977 off_t offset_root, off_t offset_parent,
1978 enum field_status *fixed_root, enum field_status *fixed_parent,
1979 LttField *field)
1980 {
1981 enum field_status local_fixed_root, local_fixed_parent;
1982 guint i;
1983 LttType *type;
1984
1985 g_assert(field->fixed_root == FIELD_UNKNOWN);
1986 g_assert(field->fixed_parent == FIELD_UNKNOWN);
1987 g_assert(field->fixed_size == FIELD_UNKNOWN);
1988
1989 type = field->field_type;
1990
1991 field->fixed_root = *fixed_root;
1992 if(field->fixed_root == FIELD_FIXED)
1993 field->offset_root = offset_root;
1994 else
1995 field->offset_root = 0;
1996
1997 field->fixed_parent = *fixed_parent;
1998 if(field->fixed_parent == FIELD_FIXED)
1999 field->offset_parent = offset_parent;
2000 else
2001 field->offset_parent = 0;
2002
2003 size_t current_root_offset;
2004 size_t current_offset;
2005 enum field_status current_child_status, final_child_status;
2006 size_t max_size;
2007
2008 switch(type->type_class) {
2009 case LTT_INT:
2010 case LTT_UINT:
2011 case LTT_FLOAT:
2012 case LTT_ENUM:
2013 field->field_size = ltt_type_size(tf->trace, type);
2014 field->fixed_size = FIELD_FIXED;
2015 break;
2016 case LTT_POINTER:
2017 field->field_size = (off_t)event_type->facility->pointer_size;
2018 field->fixed_size = FIELD_FIXED;
2019 break;
2020 case LTT_LONG:
2021 case LTT_ULONG:
2022 field->field_size = (off_t)event_type->facility->long_size;
2023 field->fixed_size = FIELD_FIXED;
2024 break;
2025 case LTT_SIZE_T:
2026 case LTT_SSIZE_T:
2027 case LTT_OFF_T:
2028 field->field_size = (off_t)event_type->facility->size_t_size;
2029 field->fixed_size = FIELD_FIXED;
2030 break;
2031 case LTT_SEQUENCE:
2032 local_fixed_root = FIELD_VARIABLE;
2033 local_fixed_parent = FIELD_VARIABLE;
2034 preset_field_type_size(tf, event_type,
2035 0, 0,
2036 &local_fixed_root, &local_fixed_parent,
2037 field->child[0]);
2038 field->fixed_size = FIELD_VARIABLE;
2039 field->field_size = 0;
2040 *fixed_root = FIELD_VARIABLE;
2041 *fixed_parent = FIELD_VARIABLE;
2042 break;
2043 case LTT_STRING:
2044 field->fixed_size = FIELD_VARIABLE;
2045 field->field_size = 0;
2046 *fixed_root = FIELD_VARIABLE;
2047 *fixed_parent = FIELD_VARIABLE;
2048 break;
2049 case LTT_ARRAY:
2050 local_fixed_root = FIELD_VARIABLE;
2051 local_fixed_parent = FIELD_VARIABLE;
2052 preset_field_type_size(tf, event_type,
2053 0, 0,
2054 &local_fixed_root, &local_fixed_parent,
2055 field->child[0]);
2056 field->fixed_size = field->child[0]->fixed_size;
2057 if(field->fixed_size == FIELD_FIXED) {
2058 field->field_size = type->element_number * field->child[0]->field_size;
2059 } else {
2060 field->field_size = 0;
2061 *fixed_root = FIELD_VARIABLE;
2062 *fixed_parent = FIELD_VARIABLE;
2063 }
2064 break;
2065 case LTT_STRUCT:
2066 current_root_offset = field->offset_root;
2067 current_offset = 0;
2068 current_child_status = FIELD_FIXED;
2069 for(i=0;i<type->element_number;i++) {
2070 preset_field_type_size(tf, event_type,
2071 current_root_offset, current_offset,
2072 fixed_root, &current_child_status,
2073 field->child[i]);
2074 if(current_child_status == FIELD_FIXED) {
2075 current_root_offset += field->child[i]->field_size;
2076 current_offset += field->child[i]->field_size;
2077 } else {
2078 current_root_offset = 0;
2079 current_offset = 0;
2080 }
2081 }
2082 if(current_child_status != FIELD_FIXED) {
2083 *fixed_parent = current_child_status;
2084 field->field_size = 0;
2085 field->fixed_size = current_child_status;
2086 } else {
2087 field->field_size = current_offset;
2088 field->fixed_size = FIELD_FIXED;
2089 }
2090 break;
2091 case LTT_UNION:
2092 current_root_offset = field->offset_root;
2093 current_offset = 0;
2094 max_size = 0;
2095 final_child_status = FIELD_FIXED;
2096 for(i=0;i<type->element_number;i++) {
2097 enum field_status current_root_child_status = FIELD_FIXED;
2098 enum field_status current_child_status = FIELD_FIXED;
2099 preset_field_type_size(tf, event_type,
2100 current_root_offset, current_offset,
2101 &current_root_child_status, &current_child_status,
2102 field->child[i]);
2103 if(current_child_status != FIELD_FIXED)
2104 final_child_status = current_child_status;
2105 else
2106 max_size = max(max_size, field->child[i]->field_size);
2107 }
2108 if(final_child_status != FIELD_FIXED) {
2109 *fixed_root = final_child_status;
2110 *fixed_parent = final_child_status;
2111 field->field_size = 0;
2112 field->fixed_size = current_child_status;
2113 } else {
2114 field->field_size = max_size;
2115 field->fixed_size = FIELD_FIXED;
2116 }
2117 break;
2118 }
2119
2120 }
2121
2122
2123 /*****************************************************************************
2124 *Function name
2125 * check_fields_compatibility : Check for compatibility between two fields :
2126 * do they use the same inner structure ?
2127 *Input params
2128 * event_type1 : event type
2129 * event_type2 : event type
2130 * field1 : field
2131 * field2 : field
2132 *Returns : 0 if identical
2133 * 1 if not.
2134 ****************************************************************************/
2135 gint check_fields_compatibility(LttEventType *event_type1,
2136 LttEventType *event_type2,
2137 LttField *field1, LttField *field2)
2138 {
2139 guint different = 0;
2140 guint i;
2141 LttType *type1;
2142 LttType *type2;
2143
2144 if(field1 == NULL) {
2145 if(field2 == NULL) goto end;
2146 else {
2147 different = 1;
2148 goto end;
2149 }
2150 } else if(field2 == NULL) {
2151 different = 1;
2152 goto end;
2153 }
2154
2155 g_assert(field1->fixed_root != FIELD_UNKNOWN);
2156 g_assert(field2->fixed_root != FIELD_UNKNOWN);
2157 g_assert(field1->fixed_parent != FIELD_UNKNOWN);
2158 g_assert(field2->fixed_parent != FIELD_UNKNOWN);
2159 g_assert(field1->fixed_size != FIELD_UNKNOWN);
2160 g_assert(field2->fixed_size != FIELD_UNKNOWN);
2161
2162 type1 = field1->field_type;
2163 type2 = field2->field_type;
2164
2165 if(type1->type_class != type2->type_class) {
2166 different = 1;
2167 goto end;
2168 }
2169 if(type1->element_name != type2->element_name) {
2170 different = 1;
2171 goto end;
2172 }
2173
2174 switch(type1->type_class) {
2175 case LTT_INT:
2176 case LTT_UINT:
2177 case LTT_FLOAT:
2178 case LTT_POINTER:
2179 case LTT_LONG:
2180 case LTT_ULONG:
2181 case LTT_SIZE_T:
2182 case LTT_SSIZE_T:
2183 case LTT_OFF_T:
2184 if(field1->field_size != field2->field_size) {
2185 different = 1;
2186 goto end;
2187 }
2188 break;
2189 case LTT_ENUM:
2190 if(type1->element_number != type2->element_number) {
2191 different = 1;
2192 goto end;
2193 }
2194 for(i=0;i<type1->element_number;i++) {
2195 if(type1->enum_strings[i] != type2->enum_strings[i]) {
2196 different = 1;
2197 goto end;
2198 }
2199 }
2200 break;
2201 case LTT_SEQUENCE:
2202 /* Two elements : size and child */
2203 g_assert(type1->element_number != type2->element_number);
2204 for(i=0;i<type1->element_number;i++) {
2205 if(check_fields_compatibility(event_type1, event_type2,
2206 field1->child[0], field2->child[0])) {
2207 different = 1;
2208 goto end;
2209 }
2210 }
2211 break;
2212 case LTT_STRING:
2213 break;
2214 case LTT_ARRAY:
2215 if(field1->field_size != field2->field_size) {
2216 different = 1;
2217 goto end;
2218 }
2219 /* Two elements : size and child */
2220 g_assert(type1->element_number != type2->element_number);
2221 for(i=0;i<type1->element_number;i++) {
2222 if(check_fields_compatibility(event_type1, event_type2,
2223 field1->child[0], field2->child[0])) {
2224 different = 1;
2225 goto end;
2226 }
2227 }
2228 break;
2229 case LTT_STRUCT:
2230 case LTT_UNION:
2231 if(type1->element_number != type2->element_number) {
2232 different = 1;
2233 break;
2234 }
2235 for(i=0;i<type1->element_number;i++) {
2236 if(check_fields_compatibility(event_type1, event_type2,
2237 field1->child[0], field2->child[0])) {
2238 different = 1;
2239 goto end;
2240 }
2241 }
2242 break;
2243 }
2244 end:
2245 return different;
2246 }
2247
2248
2249
2250
2251 #if 0
2252 /*****************************************************************************
2253 *Function name
2254 * getFieldtypeSize: get the size of the field type (primitive type)
2255 *Input params
2256 * evT : event type
2257 * offsetRoot : offset from the root
2258 * offsetParent : offset from the parrent
2259 * fld : field
2260 * evD : event data, it may be NULL
2261 *Return value
2262 * int : size of the field
2263 ****************************************************************************/
2264
2265 static inline gint getFieldtypeSize(LttTracefile *tf,
2266 LttEventType * evT, gint offsetRoot,
2267 gint offsetParent, LttField * fld, void *evD)
2268 {
2269 gint size, size1, element_number, i, offset1, offset2;
2270 LttType * type = fld->field_type;
2271
2272 /* This likely has been tested with gcov : half of them.. */
2273 if(unlikely(fld->field_fixed == 1)){
2274 /* tested : none */
2275 if(unlikely(fld == evT->root_field)) {
2276 size = fld->field_size;
2277 goto end_getFieldtypeSize;
2278 }
2279 }
2280
2281 /* From gcov profiling : half string, half struct, can we gain something
2282 * from that ? (Mathieu) */
2283 switch(type->type_class) {
2284 case LTT_ARRAY:
2285 element_number = (int) type->element_number;
2286 if(fld->field_fixed == -1){
2287 size = getFieldtypeSize(tf, evT, offsetRoot,
2288 0,fld->child[0], NULL);
2289 if(size == 0){ //has string or sequence
2290 fld->field_fixed = 0;
2291 }else{
2292 fld->field_fixed = 1;
2293 size *= element_number;
2294 }
2295 }else if(fld->field_fixed == 0){// has string or sequence
2296 size = 0;
2297 for(i=0;i<element_number;i++){
2298 size += getFieldtypeSize(tf, evT, offsetRoot+size,size,
2299 fld->child[0], evD+size);
2300 }
2301 }else size = fld->field_size;
2302 if(unlikely(!evD)){
2303 fld->fixed_root = (offsetRoot==-1) ? 0 : 1;
2304 fld->fixed_parent = (offsetParent==-1) ? 0 : 1;
2305 }
2306
2307 break;
2308
2309 case LTT_SEQUENCE:
2310 size1 = (int) ltt_type_size(fac, type);
2311 if(fld->field_fixed == -1){
2312 fld->sequ_number_size = size1;
2313 fld->field_fixed = 0;
2314 size = getFieldtypeSize(evT, offsetRoot,
2315 0,fld->child[0], NULL);
2316 fld->element_size = size;
2317 }else{//0: sequence
2318 element_number = getIntNumber(tf,size1,evD);
2319 type->element_number = element_number;
2320 if(fld->element_size > 0){
2321 size = element_number * fld->element_size;
2322 }else{//sequence has string or sequence
2323 size = 0;
2324 for(i=0;i<element_number;i++){
2325 size += getFieldtypeSize(tf, evT,
2326 offsetRoot+size+size1,size+size1,
2327 fld->child[0], evD+size+size1);
2328 }
2329 }
2330 size += size1;
2331 }
2332 if(unlikely(!evD)){
2333 fld->fixed_root = (offsetRoot==-1) ? 0 : 1;
2334 fld->fixed_parent = (offsetParent==-1) ? 0 : 1;
2335 }
2336
2337 break;
2338
2339 case LTT_STRING:
2340 size = 0;
2341 if(fld->field_fixed == -1){
2342 fld->field_fixed = 0;
2343 }else{//0: string
2344 /* Hope my implementation is faster than strlen (Mathieu) */
2345 char *ptr=(char*)evD;
2346 size = 1;
2347 /* from gcov : many many strings are empty, make it the common case.*/
2348 while(unlikely(*ptr != '\0')) { size++; ptr++; }
2349 //size = ptr - (char*)evD + 1; //include end : '\0'
2350 }
2351 fld->fixed_root = (offsetRoot==-1) ? 0 : 1;
2352 fld->fixed_parent = (offsetParent==-1) ? 0 : 1;
2353
2354 break;
2355
2356 case LTT_STRUCT:
2357 element_number = (int) type->element_number;
2358 size = 0;
2359 /* tested with gcov */
2360 if(unlikely(fld->field_fixed == -1)){
2361 offset1 = offsetRoot;
2362 offset2 = 0;
2363 for(i=0;i<element_number;i++){
2364 size1=getFieldtypeSize(tf, evT,offset1,offset2,
2365 fld->child[i], NULL);
2366 if(likely(size1 > 0 && size >= 0)){
2367 size += size1;
2368 if(likely(offset1 >= 0)) offset1 += size1;
2369 offset2 += size1;
2370 }else{
2371 size = -1;
2372 offset1 = -1;
2373 offset2 = -1;
2374 }
2375 }
2376 if(unlikely(size == -1)){
2377 fld->field_fixed = 0;
2378 size = 0;
2379 }else fld->field_fixed = 1;
2380 }else if(likely(fld->field_fixed == 0)){
2381 offset1 = offsetRoot;
2382 offset2 = 0;
2383 for(i=0;unlikely(i<element_number);i++){
2384 size=getFieldtypeSize(tf, evT, offset1, offset2,
2385 fld->child[i], evD+offset2);
2386 offset1 += size;
2387 offset2 += size;
2388 }
2389 size = offset2;
2390 }else size = fld->field_size;
2391 fld->fixed_root = (offsetRoot==-1) ? 0 : 1;
2392 fld->fixed_parent = (offsetParent==-1) ? 0 : 1;
2393 break;
2394
2395 default:
2396 if(unlikely(fld->field_fixed == -1)){
2397 size = (int) ltt_type_size(LTT_GET_BO(tf), type);
2398 fld->field_fixed = 1;
2399 }else size = fld->field_size;
2400 if(unlikely(!evD)){
2401 fld->fixed_root = (offsetRoot==-1) ? 0 : 1;
2402 fld->fixed_parent = (offsetParent==-1) ? 0 : 1;
2403 }
2404 break;
2405 }
2406
2407 fld->offset_root = offsetRoot;
2408 fld->offset_parent = offsetParent;
2409 fld->field_size = size;
2410
2411 end_getFieldtypeSize:
2412
2413 return size;
2414 }
2415 #endif //0
2416
2417 /*****************************************************************************
2418 *Function name
2419 * ltt_get_int : get an integer number
2420 *Input params
2421 * reverse_byte_order: must we reverse the byte order ?
2422 * size : the size of the integer
2423 * ptr : the data pointer
2424 *Return value
2425 * gint64 : a 64 bits integer
2426 ****************************************************************************/
2427
2428 gint64 ltt_get_int(gboolean reverse_byte_order, gint size, void *data)
2429 {
2430 gint64 val;
2431
2432 switch(size) {
2433 case 1: val = *((gint8*)data); break;
2434 case 2: val = ltt_get_int16(reverse_byte_order, data); break;
2435 case 4: val = ltt_get_int32(reverse_byte_order, data); break;
2436 case 8: val = ltt_get_int64(reverse_byte_order, data); break;
2437 default: val = ltt_get_int64(reverse_byte_order, data);
2438 g_critical("get_int : integer size %d unknown", size);
2439 break;
2440 }
2441
2442 return val;
2443 }
2444
2445 /*****************************************************************************
2446 *Function name
2447 * ltt_get_uint : get an unsigned integer number
2448 *Input params
2449 * reverse_byte_order: must we reverse the byte order ?
2450 * size : the size of the integer
2451 * ptr : the data pointer
2452 *Return value
2453 * guint64 : a 64 bits unsigned integer
2454 ****************************************************************************/
2455
2456 guint64 ltt_get_uint(gboolean reverse_byte_order, gint size, void *data)
2457 {
2458 guint64 val;
2459
2460 switch(size) {
2461 case 1: val = *((gint8*)data); break;
2462 case 2: val = ltt_get_uint16(reverse_byte_order, data); break;
2463 case 4: val = ltt_get_uint32(reverse_byte_order, data); break;
2464 case 8: val = ltt_get_uint64(reverse_byte_order, data); break;
2465 default: val = ltt_get_uint64(reverse_byte_order, data);
2466 g_critical("get_uint : unsigned integer size %d unknown",
2467 size);
2468 break;
2469 }
2470
2471 return val;
2472 }
2473
2474
2475 /* get the node name of the system */
2476
2477 char * ltt_trace_system_description_node_name (LttSystemDescription * s)
2478 {
2479 return s->node_name;
2480 }
2481
2482
2483 /* get the domain name of the system */
2484
2485 char * ltt_trace_system_description_domain_name (LttSystemDescription * s)
2486 {
2487 return s->domain_name;
2488 }
2489
2490
2491 /* get the description of the system */
2492
2493 char * ltt_trace_system_description_description (LttSystemDescription * s)
2494 {
2495 return s->description;
2496 }
2497
2498
2499 /* get the start time of the trace */
2500
2501 LttTime ltt_trace_system_description_trace_start_time(LttSystemDescription *s)
2502 {
2503 return s->trace_start;
2504 }
2505
2506
2507 LttTracefile *ltt_tracefile_new()
2508 {
2509 return g_new(LttTracefile, 1);
2510 }
2511
2512 void ltt_tracefile_destroy(LttTracefile *tf)
2513 {
2514 g_free(tf);
2515 }
2516
2517 void ltt_tracefile_copy(LttTracefile *dest, const LttTracefile *src)
2518 {
2519 *dest = *src;
2520 }
2521
2522 /* Before library loading... */
2523
2524 static void __attribute__((constructor)) init(void)
2525 {
2526 LTT_FACILITY_NAME_HEARTBEAT = g_quark_from_string("heartbeat");
2527 LTT_EVENT_NAME_HEARTBEAT = g_quark_from_string("heartbeat");
2528
2529 LTT_TRACEFILE_NAME_FACILITIES = g_quark_from_string("/control/facilities");
2530 }
2531
This page took 0.07911 seconds and 5 git commands to generate.