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