batchtest partially working
[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;
cb03932a 622 LttTracefile tmp_tf;
3865ea09 623
3aee1200 624 if(dir == NULL) {
625 perror(root_path);
626 return ENOENT;
627 }
628
629 strncpy(path, root_path, PATH_MAX-1);
630 path_len = strlen(path);
631 path[path_len] = '/';
632 path_len++;
633 path_ptr = path + path_len;
634
3865ea09 635 strncpy(rel_path, relative_path, PATH_MAX-1);
636 rel_path_len = strlen(rel_path);
637 rel_path[rel_path_len] = '/';
638 rel_path_len++;
639 rel_path_ptr = rel_path + rel_path_len;
640
3aee1200 641 while((entry = readdir(dir)) != NULL) {
642
643 if(entry->d_name[0] == '.') continue;
644
645 strncpy(path_ptr, entry->d_name, PATH_MAX - path_len);
3865ea09 646 strncpy(rel_path_ptr, entry->d_name, PATH_MAX - rel_path_len);
3aee1200 647
648 ret = stat(path, &stat_buf);
649 if(ret == -1) {
650 perror(path);
651 continue;
652 }
653
654 g_debug("Tracefile file or directory : %s\n", path);
655
656 if(S_ISDIR(stat_buf.st_mode)) {
657
658 g_debug("Entering subdirectory...\n");
3865ea09 659 ret = open_tracefiles(trace, path, rel_path);
3aee1200 660 if(ret < 0) continue;
661 } else if(S_ISREG(stat_buf.st_mode)) {
3aee1200 662 GQuark name;
663 guint num;
664 GArray *group;
665 LttTracefile *tf;
666 guint len;
667
3865ea09 668 if(get_tracefile_name_number(rel_path, &name, &num))
3aee1200 669 continue; /* invalid name */
3865ea09 670
cb03932a 671 g_debug("Opening file.\n");
672 if(ltt_tracefile_open(trace, path, &tmp_tf)) {
673 g_info("Error opening tracefile %s", path);
674
675 continue; /* error opening the tracefile : bad magic number ? */
676 }
677
3865ea09 678 g_debug("Tracefile name is %s and number is %u",
679 g_quark_to_string(name), num);
680
cb03932a 681 tmp_tf.cpu_online = 1;
682 tmp_tf.cpu_num = num;
683
3865ea09 684 group = g_datalist_id_get_data(&trace->tracefiles, name);
3aee1200 685 if(group == NULL) {
686 /* Elements are automatically cleared when the array is allocated.
687 * It makes the cpu_online variable set to 0 : cpu offline, by default.
688 */
689 group = g_array_sized_new (FALSE, TRUE, sizeof(LttTracefile), 10);
3865ea09 690 g_datalist_id_set_data_full(&trace->tracefiles, name,
3aee1200 691 group, ltt_tracefile_group_destroy);
692 }
cb03932a 693
3aee1200 694 /* Add the per cpu tracefile to the named group */
695 unsigned int old_len = group->len;
696 if(num+1 > old_len)
697 group = g_array_set_size(group, num+1);
cb03932a 698 g_array_index (group, LttTracefile, num) = tmp_tf;
3aee1200 699
3aee1200 700 }
701 }
702
703 closedir(dir);
704
705 return 0;
f7afe191 706}
707
3aee1200 708/* ltt_get_facility_description
709 *
710 * Opens the trace corresponding to the requested facility (identified by fac_id
711 * and checksum).
712 *
713 * The name searched is : %trace root%/eventdefs/facname_checksum.xml
714 *
715 * Returns 0 on success, or 1 on failure.
716 */
717
718static int ltt_get_facility_description(LttFacility *f,
719 LttTrace *t,
720 LttTracefile *fac_tf)
6cd62ccf 721{
3aee1200 722 char desc_file_name[PATH_MAX];
723 const gchar *text;
724 guint textlen;
725 gint err;
3aee1200 726
727 text = g_quark_to_string(t->pathname);
728 textlen = strlen(text);
729
730 if(textlen >= PATH_MAX) goto name_error;
731 strcpy(desc_file_name, text);
732
733 text = "/eventdefs/";
734 textlen+=strlen(text);
735 if(textlen >= PATH_MAX) goto name_error;
736 strcat(desc_file_name, text);
737
738 text = g_quark_to_string(f->name);
739 textlen+=strlen(text);
740 if(textlen >= PATH_MAX) goto name_error;
741 strcat(desc_file_name, text);
742
743 text = "_";
744 textlen+=strlen(text);
745 if(textlen >= PATH_MAX) goto name_error;
746 strcat(desc_file_name, text);
963b5f2d 747
3aee1200 748 err = snprintf(desc_file_name+textlen, PATH_MAX-textlen-1,
749 "%u", f->checksum);
d2083cab 750 if(err < 0) goto name_error;
3aee1200 751
752 textlen=strlen(desc_file_name);
753
754 text = ".xml";
755 textlen+=strlen(text);
756 if(textlen >= PATH_MAX) goto name_error;
757 strcat(desc_file_name, text);
963b5f2d 758
3aee1200 759 err = ltt_facility_open(f, t, desc_file_name);
760 if(err) goto facility_error;
3aee1200 761
762 return 0;
763
764facility_error:
765name_error:
766 return 1;
767}
768
769static void ltt_fac_ids_destroy(gpointer data)
770{
771 GArray *fac_ids = (GArray *)data;
963b5f2d 772
3aee1200 773 g_array_free(fac_ids, TRUE);
774}
775
776
777/* Presumes the tracefile is already seeked at the beginning. It makes sense,
778 * because it must be done just after the opening */
779static int ltt_process_facility_tracefile(LttTracefile *tf)
780{
781 int err;
782 LttFacility *fac;
783 GArray *fac_ids;
cb03932a 784 guint i;
785 LttEventType *et;
3aee1200 786
787 while(1) {
788 err = ltt_tracefile_read_seek(tf);
789 if(err == EPERM) goto seek_error;
790 else if(err == ERANGE) break; /* End of tracefile */
791
792 err = ltt_tracefile_read_update_event(tf);
793 if(err) goto update_error;
794
795 /* We are on a facility load/or facility unload/ or heartbeat event */
796 /* The rules are :
797 * * facility 0 is hardcoded : this is the core facility. It will be shown
798 * in the facility array though, and is shown as "loaded builtin" in the
799 * trace.
800 * It contains event :
801 * 0 : facility load
802 * 1 : facility unload
803 * 2 : state dump facility load
d2083cab 804 * 3 : heartbeat
3aee1200 805 */
d2083cab 806 if(tf->event.facility_id != LTT_FACILITY_CORE) {
807 /* Should only contain core facility */
3aee1200 808 g_warning("Error in processing facility file %s, "
809 "should not contain facility id %u.", g_quark_to_string(tf->name),
810 tf->event.facility_id);
811 err = EPERM;
812 goto fac_id_error;
d2083cab 813 } else {
3aee1200 814
815 struct LttFacilityLoad *fac_load_data;
b77d1b57 816 struct LttStateDumpFacilityLoad *fac_state_dump_load_data;
3aee1200 817 char *fac_name;
818
819 // FIXME align
820 switch((enum ltt_core_events)tf->event.event_id) {
821 case LTT_EVENT_FACILITY_LOAD:
b77d1b57 822 fac_name = (char*)(tf->event.data);
d2083cab 823 g_debug("Doing LTT_EVENT_FACILITY_LOAD of facility %s",
824 fac_name);
3aee1200 825 fac_load_data =
b77d1b57 826 (struct LttFacilityLoad *)
827 (tf->event.data + strlen(fac_name) + 1);
3aee1200 828 fac = &g_array_index (tf->trace->facilities_by_num, LttFacility,
829 ltt_get_uint32(LTT_GET_BO(tf), &fac_load_data->id));
830 g_assert(fac->exists == 0);
831 fac->name = g_quark_from_string(fac_name);
832 fac->checksum = ltt_get_uint32(LTT_GET_BO(tf),
833 &fac_load_data->checksum);
834 fac->id = ltt_get_uint32(LTT_GET_BO(tf), &fac_load_data->id);
835 fac->pointer_size = ltt_get_uint32(LTT_GET_BO(tf),
836 &fac_load_data->pointer_size);
cb03932a 837 fac->long_size = ltt_get_uint32(LTT_GET_BO(tf),
838 &fac_load_data->long_size);
eed2ef37 839 fac->size_t_size = ltt_get_uint32(LTT_GET_BO(tf),
3aee1200 840 &fac_load_data->size_t_size);
841 fac->alignment = ltt_get_uint32(LTT_GET_BO(tf),
842 &fac_load_data->alignment);
843
844 if(ltt_get_facility_description(fac, tf->trace, tf))
cb03932a 845 continue; /* error opening description */
3aee1200 846
847 fac->trace = tf->trace;
cb03932a 848
849 /* Preset the field offsets */
850 for(i=0; i<fac->events->len; i++){
851 et = &g_array_index(fac->events, LttEventType, i);
852 set_fields_offsets(tf, et);
853 }
854
3aee1200 855 fac->exists = 1;
856
77175651 857 fac_ids = g_datalist_id_get_data(&tf->trace->facilities_by_name,
858 fac->name);
3aee1200 859 if(fac_ids == NULL) {
860 fac_ids = g_array_sized_new (FALSE, TRUE, sizeof(guint), 1);
861 g_datalist_id_set_data_full(&tf->trace->facilities_by_name,
862 fac->name,
863 fac_ids, ltt_fac_ids_destroy);
864 }
865 g_array_append_val(fac_ids, fac->id);
866
867 break;
868 case LTT_EVENT_FACILITY_UNLOAD:
d2083cab 869 g_debug("Doing LTT_EVENT_FACILITY_UNLOAD");
3aee1200 870 /* We don't care about unload : facilities ID are valid for the whole
871 * trace. They simply won't be used after the unload. */
872 break;
873 case LTT_EVENT_STATE_DUMP_FACILITY_LOAD:
b77d1b57 874 fac_name = (char*)(tf->event.data);
d2083cab 875 g_debug("Doing LTT_EVENT_STATE_DUMP_FACILITY_LOAD of facility %s",
876 fac_name);
b77d1b57 877 fac_state_dump_load_data =
d2083cab 878 (struct LttStateDumpFacilityLoad *)
b77d1b57 879 (tf->event.data + strlen(fac_name) + 1);
3aee1200 880 fac = &g_array_index (tf->trace->facilities_by_num, LttFacility,
b77d1b57 881 ltt_get_uint32(LTT_GET_BO(tf), &fac_state_dump_load_data->id));
3aee1200 882 g_assert(fac->exists == 0);
883 fac->name = g_quark_from_string(fac_name);
884 fac->checksum = ltt_get_uint32(LTT_GET_BO(tf),
d2083cab 885 &fac_state_dump_load_data->checksum);
886 fac->id = fac_state_dump_load_data->id;
3aee1200 887 fac->pointer_size = ltt_get_uint32(LTT_GET_BO(tf),
d2083cab 888 &fac_state_dump_load_data->pointer_size);
cb03932a 889 fac->long_size = ltt_get_uint32(LTT_GET_BO(tf),
890 &fac_state_dump_load_data->long_size);
eed2ef37 891 fac->size_t_size = ltt_get_uint32(LTT_GET_BO(tf),
d2083cab 892 &fac_state_dump_load_data->size_t_size);
3aee1200 893 fac->alignment = ltt_get_uint32(LTT_GET_BO(tf),
d2083cab 894 &fac_state_dump_load_data->alignment);
3aee1200 895 if(ltt_get_facility_description(fac, tf->trace, tf))
cb03932a 896 continue; /* error opening description */
3aee1200 897
898 fac->trace = tf->trace;
899
cb03932a 900 /* Preset the field offsets */
901 for(i=0; i<fac->events->len; i++){
902 et = &g_array_index(fac->events, LttEventType, i);
903 set_fields_offsets(tf, et);
904 }
905
3aee1200 906 fac->exists = 1;
907
908 fac_ids = g_datalist_id_get_data(&tf->trace->facilities_by_name,
909 fac->name);
910 if(fac_ids == NULL) {
911 fac_ids = g_array_sized_new (FALSE, TRUE, sizeof(guint), 1);
912 g_datalist_id_set_data_full(&tf->trace->facilities_by_name,
913 fac->name,
914 fac_ids, ltt_fac_ids_destroy);
915 }
916 g_array_append_val(fac_ids, fac->id);
917
918 break;
919 case LTT_EVENT_HEARTBEAT:
920 break;
921 default:
922 g_warning("Error in processing facility file %s, "
923 "unknown event id %hhu in core facility.",
924 g_quark_to_string(tf->name),
925 tf->event.event_id);
926 err = EPERM;
927 goto event_id_error;
928 }
929 }
963b5f2d 930 }
3aee1200 931 return 0;
963b5f2d 932
3aee1200 933 /* Error handling */
934facility_error:
935event_id_error:
936fac_id_error:
937update_error:
938seek_error:
d2083cab 939 g_warning("An error occured in facility tracefile parsing");
3aee1200 940 return err;
6cd62ccf 941}
942
963b5f2d 943
3aee1200 944LttTrace *ltt_trace_open(const gchar *pathname)
945{
946 gchar abs_path[PATH_MAX];
947 LttTrace * t;
948 LttTracefile *tf;
949 GArray *group;
950 int i;
16fcbb80 951 struct ltt_block_start_header *header;
3aee1200 952
953 t = g_new(LttTrace, 1);
954 if(!t) goto alloc_error;
955
956 get_absolute_pathname(pathname, abs_path);
957 t->pathname = g_quark_from_string(abs_path);
958
959 /* Open all the tracefiles */
960 g_datalist_init(&t->tracefiles);
3865ea09 961 if(open_tracefiles(t, abs_path, ""))
3aee1200 962 goto open_error;
963
964 /* Prepare the facilities containers : array and mapping */
965 /* Array is zeroed : the "exists" field is set to false by default */
966 t->facilities_by_num = g_array_sized_new (FALSE,
967 TRUE, sizeof(LttFacility),
968 NUM_FACILITIES);
969 t->facilities_by_num = g_array_set_size(t->facilities_by_num, NUM_FACILITIES);
970
971 g_datalist_init(&t->facilities_by_name);
972
973 /* Parse each trace control/facilitiesN files : get runtime fac. info */
974 group = g_datalist_id_get_data(&t->tracefiles, LTT_TRACEFILE_NAME_FACILITIES);
975 if(group == NULL) {
976 g_error("Trace %s has no facility tracefile", abs_path);
3865ea09 977 g_assert(0);
3aee1200 978 goto facilities_error;
979 }
980
16fcbb80 981 /* Get the trace information for the control/facility 0 tracefile */
982 g_assert(group->len > 0);
983 tf = &g_array_index (group, LttTracefile, 0);
984 header = (struct ltt_block_start_header*)tf->buffer.head;
985 t->arch_type = ltt_get_uint32(LTT_GET_BO(tf), &header->trace.arch_type);
986 t->arch_variant = ltt_get_uint32(LTT_GET_BO(tf), &header->trace.arch_variant);
987 t->arch_size = header->trace.arch_size;
988 t->ltt_major_version = header->trace.major_version;
989 t->ltt_minor_version = header->trace.minor_version;
990 t->flight_recorder = header->trace.flight_recorder;
991 t->has_heartbeat = header->trace.has_heartbeat;
992 t->has_alignment = header->trace.has_alignment;
993 t->has_tsc = header->trace.has_tsc;
994
995
3aee1200 996 for(i=0; i<group->len; i++) {
997 tf = &g_array_index (group, LttTracefile, i);
998 if(ltt_process_facility_tracefile(tf))
999 goto facilities_error;
1000 }
3aee1200 1001
1002 return t;
1003
1004 /* Error handling */
1005facilities_error:
1006 g_datalist_clear(&t->facilities_by_name);
1007 g_array_free(t->facilities_by_num, TRUE);
1008open_error:
1009 g_datalist_clear(&t->tracefiles);
1010 g_free(t);
1011alloc_error:
1012 return NULL;
1013
1014}
6cd62ccf 1015
3aee1200 1016GQuark ltt_trace_name(LttTrace *t)
6cd62ccf 1017{
3aee1200 1018 return t->pathname;
6cd62ccf 1019}
1020
6cd62ccf 1021
3aee1200 1022/******************************************************************************
1023 * When we copy a trace, we want all the opening actions to happen again :
1024 * the trace will be reopened and totally independant from the original.
1025 * That's why we call ltt_trace_open.
1026 *****************************************************************************/
1027LttTrace *ltt_trace_copy(LttTrace *self)
963b5f2d 1028{
3aee1200 1029 return ltt_trace_open(g_quark_to_string(self->pathname));
963b5f2d 1030}
1031
3aee1200 1032void ltt_trace_close(LttTrace *t)
6cd62ccf 1033{
cb03932a 1034 guint i;
1035 LttFacility *fac;
1036
1037 for(i=0; i<t->facilities_by_num->len; i++) {
1038 fac = &g_array_index (t->facilities_by_num, LttFacility, i);
1039 if(fac->exists)
1040 ltt_facility_close(fac);
1041 }
1042
3aee1200 1043 g_datalist_clear(&t->facilities_by_name);
1044 g_array_free(t->facilities_by_num, TRUE);
1045 g_datalist_clear(&t->tracefiles);
1046 g_free(t);
6cd62ccf 1047}
1048
3aee1200 1049
6cd62ccf 1050/*****************************************************************************
3aee1200 1051 *Get the system description of the trace
6cd62ccf 1052 ****************************************************************************/
1053
3aee1200 1054LttFacility *ltt_trace_facility_by_id(LttTrace *t, guint8 id)
6cd62ccf 1055{
3aee1200 1056 g_assert(id < t->facilities_by_num->len);
1057 return &g_array_index(t->facilities_by_num, LttFacility, id);
1058}
1059
1060/* ltt_trace_facility_get_by_name
1061 *
1062 * Returns the GArray of facility indexes. All the fac_ids that matches the
1063 * requested facility name.
1064 *
1065 * If name is not found, returns NULL.
1066 */
1067GArray *ltt_trace_facility_get_by_name(LttTrace *t, GQuark name)
1068{
1069 return g_datalist_id_get_data(&t->facilities_by_name, name);
6cd62ccf 1070}
1071
1072/*****************************************************************************
963b5f2d 1073 * Functions to discover all the event types in the trace
6cd62ccf 1074 ****************************************************************************/
1075
3aee1200 1076#if 0
963b5f2d 1077unsigned ltt_trace_eventtype_number(LttTrace *t)
6cd62ccf 1078{
8d1e6362 1079 unsigned int i;
963b5f2d 1080 unsigned count = 0;
dc1cad90 1081 unsigned int num = t->facility_number;
963b5f2d 1082 LttFacility * f;
dc1cad90 1083
1084 for(i=0;i<num;i++){
963b5f2d 1085 f = (LttFacility*)g_ptr_array_index(t->facilities, i);
1086 count += f->event_number;
1087 }
1088 return count;
6cd62ccf 1089}
3aee1200 1090#endif //0
6cd62ccf 1091
3aee1200 1092#if 0
1093//use an iteration on all the trace facilities, and inside iteration on all the
1094//event types in each facilities instead.
963b5f2d 1095LttEventType *ltt_trace_eventtype_get(LttTrace *t, unsigned evId)
6cd62ccf 1096{
6e8c19d4 1097 LttEventType *event_type;
1098
963b5f2d 1099 LttFacility * f;
1100 f = ltt_trace_facility_by_id(t,evId);
6e8c19d4 1101
1102 if(unlikely(!f)) event_type = NULL;
1103 else event_type = f->events[evId - f->base_id];
1104
1105 return event_type;
6cd62ccf 1106}
3aee1200 1107#endif //0
6cd62ccf 1108
3aee1200 1109#if 0
6cd62ccf 1110/*****************************************************************************
3aee1200 1111 * ltt_trace_find_tracefile
1112 *
1113 * Find a tracefile by name and index in the group.
1114 *
1115 * Returns a pointer to the tracefiles, else NULL.
6cd62ccf 1116 ****************************************************************************/
6cd62ccf 1117
3aee1200 1118LttTracefile *ltt_trace_find_tracefile(LttTrace *t, const gchar *name)
6cd62ccf 1119{
6cd62ccf 1120}
3aee1200 1121#endif //0
6cd62ccf 1122
1123/*****************************************************************************
3aee1200 1124 * Get the start time and end time of the trace
6cd62ccf 1125 ****************************************************************************/
1126
3aee1200 1127static void ltt_tracefile_time_span_get(LttTracefile *tf,
1128 LttTime *start, LttTime *end)
6cd62ccf 1129{
3aee1200 1130 struct ltt_block_start_header * header;
1131 int err;
6cd62ccf 1132
3aee1200 1133 err = map_block(tf, 0);
1134 if(unlikely(err)) {
1135 g_error("Can not map block");
1136 *start = ltt_time_infinite;
1137 } else
1138 *start = tf->buffer.begin.timestamp;
1139
1140 err = map_block(tf, tf->num_blocks - 1); /* Last block */
1141 if(unlikely(err)) {
1142 g_error("Can not map block");
1143 *end = ltt_time_zero;
1144 } else
1145 *end = tf->buffer.end.timestamp;
6cd62ccf 1146}
1147
3aee1200 1148struct tracefile_time_span_get_args {
1149 LttTrace *t;
1150 LttTime *start;
1151 LttTime *end;
1152};
963b5f2d 1153
3aee1200 1154static void group_time_span_get(GQuark name, gpointer data, gpointer user_data)
963b5f2d 1155{
3aee1200 1156 struct tracefile_time_span_get_args *args =
1157 (struct tracefile_time_span_get_args*)user_data;
1158
1159 GArray *group = (GArray *)data;
1160 int i;
1161 LttTracefile *tf;
1162 LttTime tmp_start;
1163 LttTime tmp_end;
1164
1165 for(i=0; i<group->len; i++) {
1166 tf = &g_array_index (group, LttTracefile, i);
1167 if(tf->cpu_online) {
1168 ltt_tracefile_time_span_get(tf, &tmp_start, &tmp_end);
1169 if(ltt_time_compare(*args->start, tmp_start)>0) *args->start = tmp_start;
1170 if(ltt_time_compare(*args->end, tmp_end)<0) *args->end = tmp_end;
1171 }
1172 }
6cd62ccf 1173}
1174
487ad181 1175void ltt_trace_time_span_get(LttTrace *t, LttTime *start, LttTime *end)
1176{
3aee1200 1177 LttTime min_start = ltt_time_infinite;
1178 LttTime max_end = ltt_time_zero;
1179 struct tracefile_time_span_get_args args = { t, &min_start, &max_end };
487ad181 1180
3aee1200 1181 g_datalist_foreach(&t->tracefiles, &group_time_span_get, &args);
1182
1183 if(start != NULL) *start = min_start;
1184 if(end != NULL) *end = max_end;
1185
487ad181 1186}
1187
1188
6cd62ccf 1189/*****************************************************************************
963b5f2d 1190 *Get the name of a tracefile
6cd62ccf 1191 ****************************************************************************/
1192
3aee1200 1193GQuark ltt_tracefile_name(LttTracefile *tf)
6cd62ccf 1194{
963b5f2d 1195 return tf->name;
6cd62ccf 1196}
1197
80da81ad 1198/*****************************************************************************
1199 * Get the number of blocks in the tracefile
1200 ****************************************************************************/
1201
3aee1200 1202guint ltt_tracefile_block_number(LttTracefile *tf)
80da81ad 1203{
3aee1200 1204 return tf->num_blocks;
80da81ad 1205}
1206
caf7a67a 1207
3aee1200 1208/* Seek to the first event in a tracefile that has a time equal or greater than
1209 * the time passed in parameter.
1210 *
1211 * If the time parameter is outside the tracefile time span, seek to the first
27304273 1212 * event or if after, return ERANGE.
3aee1200 1213 *
1214 * If the time parameter is before the first event, we have to seek specially to
1215 * there.
1216 *
27304273 1217 * If the time is after the end of the trace, return ERANGE.
3aee1200 1218 *
1219 * Do a binary search to find the right block, then a sequential search in the
1220 * block to find the event.
1221 *
1222 * In the special case where the time requested fits inside a block that has no
1223 * event corresponding to the requested time, the first event of the next block
1224 * will be seeked.
1225 *
1226 * IMPORTANT NOTE : // FIXME everywhere...
1227 *
1228 * You MUST NOT do a ltt_tracefile_read right after a ltt_tracefile_seek_time :
1229 * you will jump over an event if you do.
1230 *
1231 * Return value : 0 : no error, the tf->event can be used
27304273 1232 * ERANGE : time if after the last event of the trace
3aee1200 1233 * otherwise : this is an error.
1234 *
1235 * */
1236
1237int ltt_tracefile_seek_time(LttTracefile *tf, LttTime time)
1238{
1239 int ret = 0;
1240 int err;
1241 unsigned int block_num, high, low;
1242
1243 /* seek at the beginning of trace */
1244 err = map_block(tf, 0); /* First block */
1245 if(unlikely(err)) {
1246 g_error("Can not map block");
1247 goto fail;
caf7a67a 1248 }
1249
3aee1200 1250 /* If the time is lower or equal the beginning of the trace,
1251 * go to the first event. */
1252 if(ltt_time_compare(time, tf->buffer.begin.timestamp) <= 0) {
1253 ret = ltt_tracefile_read(tf);
27304273 1254 if(ret == ERANGE) goto range;
1255 else if (ret) goto fail;
3aee1200 1256 goto found; /* There is either no event in the trace or the event points
1257 to the first event in the trace */
1258 }
caf7a67a 1259
3aee1200 1260 err = map_block(tf, tf->num_blocks - 1); /* Last block */
1261 if(unlikely(err)) {
1262 g_error("Can not map block");
1263 goto fail;
caf7a67a 1264 }
6cd62ccf 1265
27304273 1266 /* If the time is after the end of the trace, return ERANGE. */
1267 if(ltt_time_compare(time, tf->buffer.end.timestamp) > 0) {
1268 goto range;
3aee1200 1269 }
62e55dd6 1270
3aee1200 1271 /* Binary search the block */
1272 high = tf->num_blocks - 1;
1273 low = 0;
1274
1275 while(1) {
1276 block_num = ((high-low) / 2) + low;
1277
1278 err = map_block(tf, block_num);
1279 if(unlikely(err)) {
1280 g_error("Can not map block");
1281 goto fail;
db55eaae 1282 }
3aee1200 1283 if(high == low) {
1284 /* We cannot divide anymore : this is what would happen if the time
1285 * requested was exactly between two consecutive buffers'end and start
1286 * timestamps. This is also what would happend if we didn't deal with out
1287 * of span cases prior in this function. */
1288 /* The event is right in the buffer!
1289 * (or in the next buffer first event) */
1290 while(1) {
1291 ret = ltt_tracefile_read(tf);
27304273 1292 if(ret == ERANGE) goto range; /* ERANGE or EPERM */
3aee1200 1293 else if(ret) goto fail;
1294
1295 if(ltt_time_compare(time, tf->event.event_time) >= 0)
1296 break;
1297 }
1298
27304273 1299 } else if(ltt_time_compare(time, tf->buffer.begin.timestamp) < 0) {
3aee1200 1300 /* go to lower part */
1301 high = block_num;
1302 } else if(ltt_time_compare(time, tf->buffer.end.timestamp) > 0) {
1303 /* go to higher part */
1304 low = block_num;
1305 } else {/* The event is right in the buffer!
1306 (or in the next buffer first event) */
1307 while(1) {
27304273 1308 ret = ltt_tracefile_read(tf);
1309 if(ret == ERANGE) goto range; /* ERANGE or EPERM */
3aee1200 1310 else if(ret) goto fail;
1311
1312 if(ltt_time_compare(time, tf->event.event_time) >= 0)
1313 break;
6cd62ccf 1314 }
3aee1200 1315 goto found;
6cd62ccf 1316 }
6cd62ccf 1317 }
3aee1200 1318
1319found:
1320 return 0;
27304273 1321range:
1322 return ERANGE;
3aee1200 1323
1324 /* Error handling */
1325fail:
1326 g_error("ltt_tracefile_seek_time failed on tracefile %s",
1327 g_quark_to_string(tf->name));
1328 return EPERM;
6cd62ccf 1329}
1330
80da81ad 1331
3aee1200 1332int ltt_tracefile_seek_position(LttTracefile *tf, const LttEventPosition *ep) {
80da81ad 1333
3aee1200 1334 int err;
1335
1336 if(ep->tracefile != tf) {
1337 goto fail;
80da81ad 1338 }
1339
3aee1200 1340 err = map_block(tf, ep->block);
1341 if(unlikely(err)) {
1342 g_error("Can not map block");
1343 goto fail;
1344 }
1345
1346 tf->event.offset = ep->offset;
18206708 1347
3aee1200 1348 err = ltt_tracefile_read_update_event(tf);
1349 if(err) goto fail;
1350 err = ltt_tracefile_read_op(tf);
1351 if(err) goto fail;
80da81ad 1352
1353 return;
3aee1200 1354
1355fail:
1356 g_error("ltt_tracefile_seek_time failed on tracefile %s",
1357 g_quark_to_string(tf->name));
1358}
1359
1360/* Calculate the real event time based on the buffer boundaries */
1361LttTime ltt_interpolate_time(LttTracefile *tf, LttEvent *event)
1362{
1363 LttTime time;
1364
1365 g_assert(tf->trace->has_tsc);
1366
1367 time = ltt_time_from_uint64(
1368 (guint64)tf->buffer.tsc*tf->buffer.nsecs_per_cycle);
1369 time = ltt_time_add(tf->buffer.begin.timestamp, time);
1370
1371 return time;
80da81ad 1372}
1373
eed2ef37 1374
1375/* Get the current event of the tracefile : valid until the next read */
1376LttEvent *ltt_tracefile_get_event(LttTracefile *tf)
1377{
1378 return &tf->event;
1379}
1380
1381
1382
6cd62ccf 1383/*****************************************************************************
1384 *Function name
3aee1200 1385 * ltt_tracefile_read : Read the next event in the tracefile
6cd62ccf 1386 *Input params
1387 * t : tracefile
1388 *Return value
3aee1200 1389 *
1390 * Returns 0 if an event can be used in tf->event.
1391 * Returns ERANGE on end of trace. The event in tf->event still can be used.
1392 * Returns EPERM on error.
1393 *
1394 * This function does make the tracefile event structure point to the event
1395 * currently pointed to by the tf->event.
1396 *
1397 * Note : you must call a ltt_tracefile_seek to the beginning of the trace to
1398 * reinitialize it after an error if you want results to be coherent.
1399 * It would be the case if a end of trace last buffer has no event : the end
1400 * of trace wouldn't be returned, but an error.
1401 * We make the assumption there is at least one event per buffer.
6cd62ccf 1402 ****************************************************************************/
1403
3aee1200 1404int ltt_tracefile_read(LttTracefile *tf)
6cd62ccf 1405{
963b5f2d 1406 int err;
6cd62ccf 1407
3aee1200 1408 err = ltt_tracefile_read_seek(tf);
1409 if(err) return err;
1410 err = ltt_tracefile_read_update_event(tf);
1411 if(err) return err;
1412 err = ltt_tracefile_read_op(tf);
1413 if(err) return err;
1414
1415 return 0;
1416}
1417
1418int ltt_tracefile_read_seek(LttTracefile *tf)
1419{
1420 int err;
1421
1422 /* Get next buffer until we finally have an event, or end of trace */
1423 while(1) {
1424 err = ltt_seek_next_event(tf);
1425 if(unlikely(err == ENOPROTOOPT)) {
1426 return EPERM;
bdc36259 1427 }
bdc36259 1428
3aee1200 1429 /* Are we at the end of the buffer ? */
1430 if(err == ERANGE) {
1431 if(unlikely(tf->buffer.index == tf->num_blocks-1)){ /* end of trace ? */
1432 return ERANGE;
1433 } else {
1434 /* get next block */
1435 err = map_block(tf, tf->buffer.index + 1);
1436 if(unlikely(err)) {
1437 g_error("Can not map block");
1438 return EPERM;
1439 }
1440 }
1441 } else break; /* We found an event ! */
1442 }
2dee981d 1443
3aee1200 1444 return 0;
1445}
18206708 1446
1447
3aee1200 1448/* do specific operation on events */
1449int ltt_tracefile_read_op(LttTracefile *tf)
1450{
1451 int err;
1452 LttFacility *f;
1453 void * pos;
1454 LttEvent *event;
1455
1456 event = &tf->event;
18206708 1457
3aee1200 1458 /* do event specific operation */
40331ba8 1459
3aee1200 1460 /* do something if its an heartbeat event : increment the heartbeat count */
1461 //if(event->facility_id == LTT_FACILITY_CORE)
1462 // if(event->event_id == LTT_EVENT_HEARTBEAT)
1463 // tf->cur_heart_beat_number++;
1464
1465 return 0;
6cd62ccf 1466}
1467
6cd62ccf 1468
3aee1200 1469/* same as ltt_tracefile_read, but does not seek to the next event nor call
1470 * event specific operation. */
1471int ltt_tracefile_read_update_event(LttTracefile *tf)
6cd62ccf 1472{
3aee1200 1473 int err;
1474 LttFacility *f;
1475 void * pos;
1476 LttEvent *event;
1477
1478 event = &tf->event;
eed2ef37 1479 pos = tf->buffer.head + event->offset;
3aee1200 1480
1481 /* Read event header */
1482
1483 //TODO align
1484
1485 if(tf->trace->has_tsc) {
16fcbb80 1486 if(tf->trace->has_heartbeat) {
1487 event->time.timestamp = ltt_get_uint32(LTT_GET_BO(tf),
1488 pos);
1489 /* 32 bits -> 64 bits tsc */
1490 /* note : still works for seek and non seek cases. */
1491 if(event->time.timestamp < (0xFFFFFFFFULL&tf->buffer.tsc)) {
1492 tf->buffer.tsc = ((tf->buffer.tsc&0xFFFFFFFF00000000ULL)
1493 + 0x100000000ULL)
1494 | (guint64)event->time.timestamp;
1495 event->tsc = tf->buffer.tsc;
1496 } else {
1497 /* no overflow */
1498 tf->buffer.tsc = (tf->buffer.tsc&0xFFFFFFFF00000000ULL)
1499 | (guint64)event->time.timestamp;
1500 event->tsc = tf->buffer.tsc;
1501 }
1502 pos += sizeof(guint32);
3aee1200 1503 } else {
16fcbb80 1504 event->tsc = ltt_get_uint64(LTT_GET_BO(tf), pos);
1505 tf->buffer.tsc = event->tsc;
1506 pos += sizeof(guint64);
3aee1200 1507 }
16fcbb80 1508
3aee1200 1509 event->event_time = ltt_interpolate_time(tf, event);
3aee1200 1510 } else {
1511 event->time.delta.tv_sec = 0;
1512 event->time.delta.tv_nsec = ltt_get_uint32(LTT_GET_BO(tf),
1513 pos) * NSEC_PER_USEC;
1514 tf->buffer.tsc = 0;
1515 event->tsc = tf->buffer.tsc;
1516
1517 event->event_time = ltt_time_add(tf->buffer.begin.timestamp,
1518 event->time.delta);
1519 pos += sizeof(guint32);
1520 }
1521
eed2ef37 1522 event->facility_id = *(guint8*)pos;
3aee1200 1523 pos += sizeof(guint8);
1524
eed2ef37 1525 event->event_id = *(guint8*)pos;
3aee1200 1526 pos += sizeof(guint8);
1527
b77d1b57 1528 event->event_size = ltt_get_uint16(LTT_GET_BO(tf), pos);
1529 pos += sizeof(guint16);
1530
3aee1200 1531 event->data = pos;
1532
77175651 1533 /* get the data size and update the event fields with the current
1534 * information */
eed2ef37 1535 ltt_update_event_size(tf);
77175651 1536
3aee1200 1537 return 0;
6cd62ccf 1538}
1539
507915ee 1540
6cd62ccf 1541/****************************************************************************
1542 *Function name
3aee1200 1543 * map_block : map a block from the file
6cd62ccf 1544 *Input Params
1545 * lttdes : ltt trace file
1546 * whichBlock : the block which will be read
1547 *return value
1548 * 0 : success
1549 * EINVAL : lseek fail
1550 * EIO : can not read from the file
1551 ****************************************************************************/
1552
3aee1200 1553static gint map_block(LttTracefile * tf, guint block_num)
6cd62ccf 1554{
b77d1b57 1555 int page_size = getpagesize();
3aee1200 1556 struct ltt_block_start_header *header;
1557
1558 g_assert(block_num < tf->num_blocks);
6cd62ccf 1559
3aee1200 1560 if(tf->buffer.head != NULL)
b77d1b57 1561 munmap(tf->buffer.head, PAGE_ALIGN(tf->buf_size));
ac849774 1562
3aee1200 1563 /* Multiple of pages aligned head */
b77d1b57 1564 tf->buffer.head = mmap(0,
1565 PAGE_ALIGN(tf->block_size),
1566 PROT_READ, MAP_PRIVATE, tf->fd,
1567 PAGE_ALIGN((off_t)tf->block_size * (off_t)block_num));
3aee1200 1568
3865ea09 1569 if(tf->buffer.head == MAP_FAILED) {
3aee1200 1570 perror("Error in allocating memory for buffer of tracefile");
3865ea09 1571 g_assert(0);
3aee1200 1572 goto map_error;
6cd62ccf 1573 }
3865ea09 1574 g_assert( ( (guint)tf->buffer.head&(8-1) ) == 0); // make sure it's aligned.
3aee1200 1575
6cd62ccf 1576
3aee1200 1577 tf->buffer.index = block_num;
1578
1579 header = (struct ltt_block_start_header*)tf->buffer.head;
1580
1581 tf->buffer.begin.timestamp = ltt_get_time(LTT_GET_BO(tf),
1582 &header->begin.timestamp);
1583 tf->buffer.begin.timestamp.tv_nsec *= NSEC_PER_USEC;
1584 tf->buffer.begin.cycle_count = ltt_get_uint64(LTT_GET_BO(tf),
1585 &header->begin.cycle_count);
1586 tf->buffer.end.timestamp = ltt_get_time(LTT_GET_BO(tf),
1587 &header->end.timestamp);
1588 tf->buffer.end.timestamp.tv_nsec *= NSEC_PER_USEC;
1589 tf->buffer.end.cycle_count = ltt_get_uint64(LTT_GET_BO(tf),
1590 &header->end.cycle_count);
1591 tf->buffer.lost_size = ltt_get_uint32(LTT_GET_BO(tf),
1592 &header->lost_size);
6cd62ccf 1593
3aee1200 1594 tf->buffer.tsc = tf->buffer.begin.cycle_count;
1595 tf->event.tsc = tf->buffer.tsc;
1596
1597 /* FIXME
1598 * eventually support variable buffer size : will need a partial pre-read of
1599 * the headers to create an index when we open the trace... eventually. */
1600 g_assert(tf->block_size == ltt_get_uint32(LTT_GET_BO(tf),
1601 &header->buf_size));
507915ee 1602
3aee1200 1603 /* Now that the buffer is mapped, calculate the time interpolation for the
1604 * block. */
1605
1606 tf->buffer.nsecs_per_cycle = calc_nsecs_per_cycle(tf);
1607
1608 /* Make the current event point to the beginning of the buffer :
1609 * it means that the event read must get the first event. */
1610 tf->event.tracefile = tf;
1611 tf->event.block = block_num;
eed2ef37 1612 tf->event.offset = 0;
3aee1200 1613
1614 return 0;
6cd62ccf 1615
3aee1200 1616map_error:
1617 return -errno;
40331ba8 1618
6cd62ccf 1619}
1620
77175651 1621/* It will update the fields offsets too */
1622void ltt_update_event_size(LttTracefile *tf)
6cd62ccf 1623{
3aee1200 1624 ssize_t size = 0;
1625
1626 /* Specific handling of core events : necessary to read the facility control
1627 * tracefile. */
77175651 1628 LttFacility *f = ltt_trace_get_facility_by_num(tf->trace,
1629 tf->event.facility_id);
6cd62ccf 1630
3865ea09 1631 if(likely(tf->event.facility_id == LTT_FACILITY_CORE)) {
1632 switch((enum ltt_core_events)tf->event.event_id) {
1633 case LTT_EVENT_FACILITY_LOAD:
b77d1b57 1634 size = strlen((char*)tf->event.data) + 1;
d2083cab 1635 g_debug("Update Event facility load of facility %s", (char*)tf->event.data);
c4afd5d8 1636 size += sizeof(struct LttFacilityLoad);
3865ea09 1637 break;
1638 case LTT_EVENT_FACILITY_UNLOAD:
d2083cab 1639 g_debug("Update Event facility unload");
3865ea09 1640 size = sizeof(struct LttFacilityUnload);
1641 break;
1642 case LTT_EVENT_STATE_DUMP_FACILITY_LOAD:
b77d1b57 1643 size = strlen((char*)tf->event.data) + 1;
d2083cab 1644 g_debug("Update Event facility load state dump of facility %s",
b77d1b57 1645 (char*)tf->event.data);
c4afd5d8 1646 size += sizeof(struct LttStateDumpFacilityLoad);
3865ea09 1647 break;
1648 case LTT_EVENT_HEARTBEAT:
d2083cab 1649 g_debug("Update Event heartbeat");
3865ea09 1650 size = sizeof(TimeHeartbeat);
1651 break;
1652 default:
1653 g_warning("Error in getting event size : tracefile %s, "
1654 "unknown event id %hhu in core facility.",
1655 g_quark_to_string(tf->name),
1656 tf->event.event_id);
1657 goto event_id_error;
2dee981d 1658
77175651 1659 }
3aee1200 1660 } else {
c4afd5d8 1661 if(!f->exists) {
1662 g_error("Unknown facility %hhu (0x%hhx) in tracefile %s",
1663 tf->event.facility_id,
1664 tf->event.facility_id,
1665 g_quark_to_string(tf->name));
1666 goto facility_error;
1667 }
1668
3aee1200 1669 LttEventType *event_type =
1670 ltt_facility_eventtype_get(f, tf->event.event_id);
c4afd5d8 1671
1672 if(!event_type) {
1673 g_error("Unknown event id %hhu in facility %s in tracefile %s",
1674 tf->event.event_id,
1675 g_quark_to_string(f->name),
1676 g_quark_to_string(tf->name));
1677 goto event_type_error;
1678 }
27304273 1679
1680 if(event_type->root_field)
1681 size = get_field_type_size(tf, event_type,
1682 0, 0, event_type->root_field, tf->event.data);
1683 else
1684 size = 0;
c4afd5d8 1685
c4afd5d8 1686 g_debug("Event root field : f.e %hhu.%hhu size %lu", tf->event.facility_id,
1687 tf->event.event_id, size);
3aee1200 1688 }
3aee1200 1689
77175651 1690 tf->event.data_size = size;
eed2ef37 1691
b77d1b57 1692 /* Check consistency between kernel and LTTV structure sizes */
1693 g_assert(tf->event.data_size == tf->event.event_size);
1694
eed2ef37 1695 return;
1696
c4afd5d8 1697facility_error:
1698event_type_error:
3aee1200 1699event_id_error:
eed2ef37 1700 tf->event.data_size = 0;
6cd62ccf 1701}
1702
6cd62ccf 1703
3aee1200 1704/* Take the tf current event offset and use the event facility id and event id
1705 * to figure out where is the next event offset.
1706 *
1707 * This is an internal function not aiming at being used elsewhere : it will
1708 * not jump over the current block limits. Please consider using
1709 * ltt_tracefile_read to do this.
1710 *
1711 * Returns 0 on success
1712 * ERANGE if we are at the end of the buffer.
1713 * ENOPROTOOPT if an error occured when getting the current event size.
1714 */
1715static int ltt_seek_next_event(LttTracefile *tf)
6cd62ccf 1716{
3aee1200 1717 int ret = 0;
1718 void *pos;
1719 ssize_t event_size;
1720
1721 /* seek over the buffer header if we are at the buffer start */
eed2ef37 1722 if(tf->event.offset == 0) {
3aee1200 1723 tf->event.offset += sizeof(struct ltt_block_start_header);
b77d1b57 1724
1725 if(tf->event.offset == tf->block_size - tf->buffer.lost_size) {
1726 ret = ERANGE;
1727 }
3aee1200 1728 goto found;
1729 }
6cd62ccf 1730
6cd62ccf 1731
3aee1200 1732 pos = tf->event.data;
1733
77175651 1734 if(tf->event.data_size < 0) goto error;
3aee1200 1735
77175651 1736 pos += (size_t)tf->event.data_size;
3aee1200 1737
eed2ef37 1738 tf->event.offset = pos - tf->buffer.head;
cb03932a 1739
1740 if(tf->event.offset == tf->block_size - tf->buffer.lost_size) {
1741 ret = ERANGE;
1742 goto found;
1743 }
3aee1200 1744
1745found:
1746 return ret;
1747
1748error:
1749 g_error("Error in ltt_seek_next_event for tracefile %s",
1750 g_quark_to_string(tf->name));
1751 return ENOPROTOOPT;
6cd62ccf 1752}
1753
18206708 1754
6cd62ccf 1755/*****************************************************************************
1756 *Function name
3aee1200 1757 * calc_nsecs_per_cycle : calculate nsecs per cycle for current block
6cd62ccf 1758 *Input Params
1759 * t : tracefile
1760 ****************************************************************************/
1761
3aee1200 1762static double calc_nsecs_per_cycle(LttTracefile * tf)
6cd62ccf 1763{
963b5f2d 1764 LttTime lBufTotalTime; /* Total time for this buffer */
887208b7 1765 double lBufTotalNSec; /* Total time for this buffer in nsecs */
8ee1c3d5 1766 LttCycleCount lBufTotalCycle;/* Total cycles for this buffer */
6cd62ccf 1767
1768 /* Calculate the total time for this buffer */
01bb5763 1769 lBufTotalTime = ltt_time_sub(
3aee1200 1770 ltt_get_time(LTT_GET_BO(tf), &tf->buffer.end.timestamp),
1771 ltt_get_time(LTT_GET_BO(tf), &tf->buffer.begin.timestamp));
6cd62ccf 1772
1773 /* Calculate the total cycles for this bufffer */
3aee1200 1774 lBufTotalCycle = ltt_get_uint64(LTT_GET_BO(tf), &tf->buffer.end.cycle_count);
1775 lBufTotalCycle -= ltt_get_uint64(LTT_GET_BO(tf),
1776 &tf->buffer.begin.cycle_count);
6cd62ccf 1777
8ee1c3d5 1778 /* Convert the total time to double */
887208b7 1779 lBufTotalNSec = ltt_time_to_double(lBufTotalTime);
6cd62ccf 1780
3aee1200 1781 return lBufTotalNSec / (double)lBufTotalCycle;
8ee1c3d5 1782
3aee1200 1783}
1784#if 0
1785void setFieldsOffset(LttTracefile *tf, LttEventType *evT,void *evD)
1786{
1787 LttField * rootFld = evT->root_field;
1788 // rootFld->base_address = evD;
2dee981d 1789
3aee1200 1790 if(likely(rootFld))
1791 rootFld->field_size = getFieldtypeSize(tf, evT->facility,
1792 evT, 0,0,rootFld, evD);
6cd62ccf 1793}
3aee1200 1794#endif //0
6cd62ccf 1795
3aee1200 1796/*****************************************************************************
6cd62ccf 1797 *Function name
3aee1200 1798 * set_fields_offsets : set the precomputable offset of the fields
6cd62ccf 1799 *Input params
3aee1200 1800 * tracefile : opened trace file
1801 * event_type : the event type
6cd62ccf 1802 ****************************************************************************/
1803
3aee1200 1804void set_fields_offsets(LttTracefile *tf, LttEventType *event_type)
6cd62ccf 1805{
3aee1200 1806 LttField *field = event_type->root_field;
1807 enum field_status fixed_root = FIELD_FIXED, fixed_parent = FIELD_FIXED;
1808
1809 if(likely(field))
1810 preset_field_type_size(tf, event_type, 0, 0,
1811 &fixed_root, &fixed_parent,
1812 field);
1813
1814}
e4eced0f 1815
bbf28e50 1816
3aee1200 1817/*****************************************************************************
1818 *Function name
1819 * preset_field_type_size : set the fixed sizes of the field type
1820 *Input params
1821 * tf : tracefile
1822 * event_type : event type
1823 * offset_root : offset from the root
1824 * offset_parent : offset from the parent
1825 * fixed_root : Do we know a fixed offset to the root ?
1826 * fixed_parent : Do we know a fixed offset to the parent ?
1827 * field : field
1828 ****************************************************************************/
1829void preset_field_type_size(LttTracefile *tf, LttEventType *event_type,
1830 off_t offset_root, off_t offset_parent,
1831 enum field_status *fixed_root, enum field_status *fixed_parent,
1832 LttField *field)
1833{
1834 enum field_status local_fixed_root, local_fixed_parent;
1835 guint i;
1836 LttType *type;
dfb73233 1837
3aee1200 1838 g_assert(field->fixed_root == FIELD_UNKNOWN);
1839 g_assert(field->fixed_parent == FIELD_UNKNOWN);
1840 g_assert(field->fixed_size == FIELD_UNKNOWN);
dfb73233 1841
3aee1200 1842 type = field->field_type;
1843
1844 field->fixed_root = *fixed_root;
1845 if(field->fixed_root == FIELD_FIXED)
1846 field->offset_root = offset_root;
1847 else
1848 field->offset_root = 0;
1849
1850 field->fixed_parent = *fixed_parent;
1851 if(field->fixed_parent == FIELD_FIXED)
1852 field->offset_parent = offset_parent;
1853 else
1854 field->offset_parent = 0;
1855
1856 size_t current_root_offset;
1857 size_t current_offset;
1858 enum field_status current_child_status, final_child_status;
1859 size_t max_size;
1860
1861 switch(type->type_class) {
1862 case LTT_INT:
1863 case LTT_UINT:
1864 case LTT_FLOAT:
1865 case LTT_ENUM:
1866 field->field_size = ltt_type_size(tf->trace, type);
1867 field->fixed_size = FIELD_FIXED;
1868 break;
1869 case LTT_POINTER:
1870 field->field_size = (off_t)event_type->facility->pointer_size;
1871 field->fixed_size = FIELD_FIXED;
1872 break;
1873 case LTT_LONG:
1874 case LTT_ULONG:
cb03932a 1875 field->field_size = (off_t)event_type->facility->long_size;
3aee1200 1876 field->fixed_size = FIELD_FIXED;
1877 break;
1878 case LTT_SIZE_T:
1879 case LTT_SSIZE_T:
1880 case LTT_OFF_T:
1881 field->field_size = (off_t)event_type->facility->size_t_size;
1882 field->fixed_size = FIELD_FIXED;
1883 break;
1884 case LTT_SEQUENCE:
1885 local_fixed_root = FIELD_VARIABLE;
1886 local_fixed_parent = FIELD_VARIABLE;
1887 preset_field_type_size(tf, event_type,
1888 0, 0,
1889 &local_fixed_root, &local_fixed_parent,
1890 field->child[0]);
1891 field->fixed_size = FIELD_VARIABLE;
1892 field->field_size = 0;
27304273 1893 *fixed_root = FIELD_VARIABLE;
1894 *fixed_parent = FIELD_VARIABLE;
3aee1200 1895 break;
1896 case LTT_STRING:
1897 field->fixed_size = FIELD_VARIABLE;
1898 field->field_size = 0;
27304273 1899 *fixed_root = FIELD_VARIABLE;
1900 *fixed_parent = FIELD_VARIABLE;
3aee1200 1901 break;
1902 case LTT_ARRAY:
1903 local_fixed_root = FIELD_VARIABLE;
1904 local_fixed_parent = FIELD_VARIABLE;
1905 preset_field_type_size(tf, event_type,
1906 0, 0,
1907 &local_fixed_root, &local_fixed_parent,
1908 field->child[0]);
1909 field->fixed_size = field->child[0]->fixed_size;
27304273 1910 if(field->fixed_size == FIELD_FIXED) {
3aee1200 1911 field->field_size = type->element_number * field->child[0]->field_size;
27304273 1912 } else {
3aee1200 1913 field->field_size = 0;
27304273 1914 *fixed_root = FIELD_VARIABLE;
1915 *fixed_parent = FIELD_VARIABLE;
1916 }
3aee1200 1917 break;
1918 case LTT_STRUCT:
1919 current_root_offset = field->offset_root;
1920 current_offset = 0;
1921 current_child_status = FIELD_FIXED;
1922 for(i=0;i<type->element_number;i++) {
1923 preset_field_type_size(tf, event_type,
1924 current_root_offset, current_offset,
1925 fixed_root, &current_child_status,
1926 field->child[i]);
1927 if(current_child_status == FIELD_FIXED) {
1928 current_root_offset += field->child[i]->field_size;
1929 current_offset += field->child[i]->field_size;
1930 } else {
1931 current_root_offset = 0;
1932 current_offset = 0;
1933 }
1934 }
1935 if(current_child_status != FIELD_FIXED) {
1936 *fixed_parent = current_child_status;
1937 field->field_size = 0;
1938 field->fixed_size = current_child_status;
1939 } else {
1940 field->field_size = current_offset;
1941 field->fixed_size = FIELD_FIXED;
1942 }
1943 break;
1944 case LTT_UNION:
1945 current_root_offset = field->offset_root;
1946 current_offset = 0;
1947 max_size = 0;
1948 final_child_status = FIELD_FIXED;
1949 for(i=0;i<type->element_number;i++) {
1950 enum field_status current_root_child_status = FIELD_FIXED;
1951 enum field_status current_child_status = FIELD_FIXED;
1952 preset_field_type_size(tf, event_type,
1953 current_root_offset, current_offset,
1954 &current_root_child_status, &current_child_status,
1955 field->child[i]);
1956 if(current_child_status != FIELD_FIXED)
1957 final_child_status = current_child_status;
1958 else
1959 max_size = max(max_size, field->child[i]->field_size);
1960 }
1961 if(final_child_status != FIELD_FIXED) {
1962 *fixed_root = final_child_status;
1963 *fixed_parent = final_child_status;
1964 field->field_size = 0;
1965 field->fixed_size = current_child_status;
1966 } else {
1967 field->field_size = max_size;
1968 field->fixed_size = FIELD_FIXED;
1969 }
1970 break;
dfb73233 1971 }
1972
6cd62ccf 1973}
1974
3aee1200 1975
77175651 1976/*****************************************************************************
1977 *Function name
1978 * check_fields_compatibility : Check for compatibility between two fields :
1979 * do they use the same inner structure ?
1980 *Input params
1981 * event_type1 : event type
1982 * event_type2 : event type
1983 * field1 : field
1984 * field2 : field
1985 *Returns : 0 if identical
1986 * 1 if not.
1987 ****************************************************************************/
1988gint check_fields_compatibility(LttEventType *event_type1,
1989 LttEventType *event_type2,
1990 LttField *field1, LttField *field2)
1991{
1992 guint different = 0;
1993 enum field_status local_fixed_root, local_fixed_parent;
1994 guint i;
1995 LttType *type1;
1996 LttType *type2;
1997
1998 if(field1 == NULL) {
1999 if(field2 == NULL) goto end;
2000 else {
2001 different = 1;
2002 goto end;
2003 }
2004 } else if(field2 == NULL) {
2005 different = 1;
2006 goto end;
2007 }
2008
2009 g_assert(field1->fixed_root != FIELD_UNKNOWN);
2010 g_assert(field2->fixed_root != FIELD_UNKNOWN);
2011 g_assert(field1->fixed_parent != FIELD_UNKNOWN);
2012 g_assert(field2->fixed_parent != FIELD_UNKNOWN);
2013 g_assert(field1->fixed_size != FIELD_UNKNOWN);
2014 g_assert(field2->fixed_size != FIELD_UNKNOWN);
2015
2016 type1 = field1->field_type;
2017 type2 = field2->field_type;
2018
2019 size_t current_root_offset;
2020 size_t current_offset;
2021 enum field_status current_child_status, final_child_status;
2022 size_t max_size;
2023
2024 if(type1->type_class != type2->type_class) {
2025 different = 1;
2026 goto end;
2027 }
2028 if(type1->element_name != type2->element_name) {
2029 different = 1;
2030 goto end;
2031 }
2032
2033 switch(type1->type_class) {
2034 case LTT_INT:
2035 case LTT_UINT:
2036 case LTT_FLOAT:
2037 case LTT_POINTER:
2038 case LTT_LONG:
2039 case LTT_ULONG:
2040 case LTT_SIZE_T:
2041 case LTT_SSIZE_T:
2042 case LTT_OFF_T:
2043 if(field1->field_size != field2->field_size) {
2044 different = 1;
2045 goto end;
2046 }
2047 break;
2048 case LTT_ENUM:
2049 if(type1->element_number != type2->element_number) {
2050 different = 1;
2051 goto end;
2052 }
2053 for(i=0;i<type1->element_number;i++) {
2054 if(type1->enum_strings[i] != type2->enum_strings[i]) {
2055 different = 1;
2056 goto end;
2057 }
2058 }
2059 break;
2060 case LTT_SEQUENCE:
2061 /* Two elements : size and child */
2062 g_assert(type1->element_number != type2->element_number);
2063 for(i=0;i<type1->element_number;i++) {
2064 if(check_fields_compatibility(event_type1, event_type2,
2065 field1->child[0], field2->child[0])) {
2066 different = 1;
2067 goto end;
2068 }
2069 }
2070 break;
2071 case LTT_STRING:
2072 break;
2073 case LTT_ARRAY:
2074 if(field1->field_size != field2->field_size) {
2075 different = 1;
2076 goto end;
2077 }
2078 /* Two elements : size and child */
2079 g_assert(type1->element_number != type2->element_number);
2080 for(i=0;i<type1->element_number;i++) {
2081 if(check_fields_compatibility(event_type1, event_type2,
2082 field1->child[0], field2->child[0])) {
2083 different = 1;
2084 goto end;
2085 }
2086 }
2087 break;
2088 case LTT_STRUCT:
2089 case LTT_UNION:
2090 if(type1->element_number != type2->element_number) {
2091 different = 1;
2092 break;
2093 }
2094 for(i=0;i<type1->element_number;i++) {
2095 if(check_fields_compatibility(event_type1, event_type2,
2096 field1->child[0], field2->child[0])) {
2097 different = 1;
2098 goto end;
2099 }
2100 }
2101 break;
2102 }
2103end:
2104 return different;
2105}
2106
2107
2108
3aee1200 2109
2110#if 0
6cd62ccf 2111/*****************************************************************************
2112 *Function name
2113 * getFieldtypeSize: get the size of the field type (primitive type)
2114 *Input params
6cd62ccf 2115 * evT : event type
2116 * offsetRoot : offset from the root
2117 * offsetParent : offset from the parrent
2118 * fld : field
2119 * evD : event data, it may be NULL
2120 *Return value
2121 * int : size of the field
2122 ****************************************************************************/
2123
3aee1200 2124static inline gint getFieldtypeSize(LttTracefile *tf,
21182d4a 2125 LttEventType * evT, gint offsetRoot,
3aee1200 2126 gint offsetParent, LttField * fld, void *evD)
6cd62ccf 2127{
21182d4a 2128 gint size, size1, element_number, i, offset1, offset2;
963b5f2d 2129 LttType * type = fld->field_type;
6cd62ccf 2130
3aee1200 2131 /* This likely has been tested with gcov : half of them.. */
2132 if(unlikely(fld->field_fixed == 1)){
2133 /* tested : none */
2134 if(unlikely(fld == evT->root_field)) {
2135 size = fld->field_size;
2136 goto end_getFieldtypeSize;
21182d4a 2137 }
3aee1200 2138 }
6cd62ccf 2139
3aee1200 2140 /* From gcov profiling : half string, half struct, can we gain something
2141 * from that ? (Mathieu) */
2142 switch(type->type_class) {
2143 case LTT_ARRAY:
2144 element_number = (int) type->element_number;
2145 if(fld->field_fixed == -1){
2146 size = getFieldtypeSize(tf, evT, offsetRoot,
2147 0,fld->child[0], NULL);
2148 if(size == 0){ //has string or sequence
cf74a6f1 2149 fld->field_fixed = 0;
3aee1200 2150 }else{
2151 fld->field_fixed = 1;
2152 size *= element_number;
a0d63196 2153 }
3aee1200 2154 }else if(fld->field_fixed == 0){// has string or sequence
cf74a6f1 2155 size = 0;
3aee1200 2156 for(i=0;i<element_number;i++){
2157 size += getFieldtypeSize(tf, evT, offsetRoot+size,size,
2158 fld->child[0], evD+size);
cf74a6f1 2159 }
3aee1200 2160 }else size = fld->field_size;
2161 if(unlikely(!evD)){
a0d63196 2162 fld->fixed_root = (offsetRoot==-1) ? 0 : 1;
2163 fld->fixed_parent = (offsetParent==-1) ? 0 : 1;
3aee1200 2164 }
cf74a6f1 2165
3aee1200 2166 break;
2167
2168 case LTT_SEQUENCE:
2169 size1 = (int) ltt_type_size(fac, type);
2170 if(fld->field_fixed == -1){
2171 fld->sequ_number_size = size1;
2172 fld->field_fixed = 0;
2173 size = getFieldtypeSize(evT, offsetRoot,
2174 0,fld->child[0], NULL);
2175 fld->element_size = size;
2176 }else{//0: sequence
2177 element_number = getIntNumber(tf,size1,evD);
2178 type->element_number = element_number;
2179 if(fld->element_size > 0){
2180 size = element_number * fld->element_size;
2181 }else{//sequence has string or sequence
2182 size = 0;
cf74a6f1 2183 for(i=0;i<element_number;i++){
3aee1200 2184 size += getFieldtypeSize(tf, evT,
2185 offsetRoot+size+size1,size+size1,
2186 fld->child[0], evD+size+size1);
cf74a6f1 2187 }
3aee1200 2188 }
2189 size += size1;
2190 }
2191 if(unlikely(!evD)){
d37b2aaa 2192 fld->fixed_root = (offsetRoot==-1) ? 0 : 1;
2193 fld->fixed_parent = (offsetParent==-1) ? 0 : 1;
3aee1200 2194 }
cf74a6f1 2195
3aee1200 2196 break;
2197
2198 case LTT_STRING:
2199 size = 0;
2200 if(fld->field_fixed == -1){
2201 fld->field_fixed = 0;
2202 }else{//0: string
2203 /* Hope my implementation is faster than strlen (Mathieu) */
2204 char *ptr=(char*)evD;
2205 size = 1;
2206 /* from gcov : many many strings are empty, make it the common case.*/
2207 while(unlikely(*ptr != '\0')) { size++; ptr++; }
2208 //size = ptr - (char*)evD + 1; //include end : '\0'
2209 }
2210 fld->fixed_root = (offsetRoot==-1) ? 0 : 1;
2211 fld->fixed_parent = (offsetParent==-1) ? 0 : 1;
2212
2213 break;
2214
2215 case LTT_STRUCT:
2216 element_number = (int) type->element_number;
2217 size = 0;
2218 /* tested with gcov */
2219 if(unlikely(fld->field_fixed == -1)){
2220 offset1 = offsetRoot;
2221 offset2 = 0;
2222 for(i=0;i<element_number;i++){
2223 size1=getFieldtypeSize(tf, evT,offset1,offset2,
2224 fld->child[i], NULL);
2225 if(likely(size1 > 0 && size >= 0)){
2226 size += size1;
2227 if(likely(offset1 >= 0)) offset1 += size1;
2228 offset2 += size1;
2229 }else{
2230 size = -1;
2231 offset1 = -1;
2232 offset2 = -1;
2233 }
a0d63196 2234 }
3aee1200 2235 if(unlikely(size == -1)){
2236 fld->field_fixed = 0;
2237 size = 0;
2238 }else fld->field_fixed = 1;
2239 }else if(likely(fld->field_fixed == 0)){
2240 offset1 = offsetRoot;
2241 offset2 = 0;
2242 for(i=0;unlikely(i<element_number);i++){
2243 size=getFieldtypeSize(tf, evT, offset1, offset2,
2244 fld->child[i], evD+offset2);
2245 offset1 += size;
2246 offset2 += size;
2247 }
2248 size = offset2;
2249 }else size = fld->field_size;
2250 fld->fixed_root = (offsetRoot==-1) ? 0 : 1;
2251 fld->fixed_parent = (offsetParent==-1) ? 0 : 1;
2252 break;
2253
2254 default:
2255 if(unlikely(fld->field_fixed == -1)){
2256 size = (int) ltt_type_size(LTT_GET_BO(tf), type);
2257 fld->field_fixed = 1;
2258 }else size = fld->field_size;
2259 if(unlikely(!evD)){
2260 fld->fixed_root = (offsetRoot==-1) ? 0 : 1;
2261 fld->fixed_parent = (offsetParent==-1) ? 0 : 1;
2262 }
2263 break;
cf74a6f1 2264 }
2265
6cd62ccf 2266 fld->offset_root = offsetRoot;
2267 fld->offset_parent = offsetParent;
6cd62ccf 2268 fld->field_size = size;
2269
21182d4a 2270end_getFieldtypeSize:
2271
6cd62ccf 2272 return size;
2273}
3aee1200 2274#endif //0
6cd62ccf 2275
2276/*****************************************************************************
2277 *Function name
eed2ef37 2278 * ltt_get_int : get an integer number
6cd62ccf 2279 *Input params
3aee1200 2280 * reverse_byte_order: must we reverse the byte order ?
6cd62ccf 2281 * size : the size of the integer
3aee1200 2282 * ptr : the data pointer
6cd62ccf 2283 *Return value
cf74a6f1 2284 * gint64 : a 64 bits integer
6cd62ccf 2285 ****************************************************************************/
2286
eed2ef37 2287gint64 ltt_get_int(gboolean reverse_byte_order, gint size, void *data)
6cd62ccf 2288{
3aee1200 2289 gint64 val;
cf74a6f1 2290
2291 switch(size) {
3aee1200 2292 case 1: val = *((gint8*)data); break;
2293 case 2: val = ltt_get_int16(reverse_byte_order, data); break;
2294 case 4: val = ltt_get_int32(reverse_byte_order, data); break;
2295 case 8: val = ltt_get_int64(reverse_byte_order, data); break;
2296 default: val = ltt_get_int64(reverse_byte_order, data);
2297 g_critical("get_int : integer size %d unknown", size);
cf74a6f1 2298 break;
2299 }
2300
3aee1200 2301 return val;
6cd62ccf 2302}
3aee1200 2303
6cd62ccf 2304/*****************************************************************************
2305 *Function name
eed2ef37 2306 * ltt_get_uint : get an unsigned integer number
6cd62ccf 2307 *Input params
3aee1200 2308 * reverse_byte_order: must we reverse the byte order ?
2309 * size : the size of the integer
2310 * ptr : the data pointer
2311 *Return value
2312 * guint64 : a 64 bits unsigned integer
6cd62ccf 2313 ****************************************************************************/
2314
eed2ef37 2315guint64 ltt_get_uint(gboolean reverse_byte_order, gint size, void *data)
6cd62ccf 2316{
3aee1200 2317 guint64 val;
2318
2319 switch(size) {
2320 case 1: val = *((gint8*)data); break;
2321 case 2: val = ltt_get_uint16(reverse_byte_order, data); break;
2322 case 4: val = ltt_get_uint32(reverse_byte_order, data); break;
2323 case 8: val = ltt_get_uint64(reverse_byte_order, data); break;
2324 default: val = ltt_get_uint64(reverse_byte_order, data);
2325 g_critical("get_uint : unsigned integer size %d unknown",
2326 size);
2327 break;
2328 }
2329
2330 return val;
6cd62ccf 2331}
3aee1200 2332
2333
a5dcde2f 2334/* get the node name of the system */
2335
2336char * ltt_trace_system_description_node_name (LttSystemDescription * s)
2337{
2338 return s->node_name;
2339}
2340
2341
2342/* get the domain name of the system */
2343
2344char * ltt_trace_system_description_domain_name (LttSystemDescription * s)
2345{
2346 return s->domain_name;
2347}
2348
2349
2350/* get the description of the system */
2351
2352char * ltt_trace_system_description_description (LttSystemDescription * s)
2353{
2354 return s->description;
2355}
2356
2357
2358/* get the start time of the trace */
2359
2360LttTime ltt_trace_system_description_trace_start_time(LttSystemDescription *s)
2361{
2362 return s->trace_start;
2363}
2364
18206708 2365
2366LttTracefile *ltt_tracefile_new()
2367{
2368 return g_new(LttTracefile, 1);
2369}
2370
2371void ltt_tracefile_destroy(LttTracefile *tf)
2372{
2373 g_free(tf);
2374}
2375
2376void ltt_tracefile_copy(LttTracefile *dest, const LttTracefile *src)
2377{
2378 *dest = *src;
2379}
2380
3aee1200 2381/* Before library loading... */
2382
2383static void __attribute__((constructor)) init(void)
2384{
2385 LTT_FACILITY_NAME_HEARTBEAT = g_quark_from_string("heartbeat");
2386 LTT_EVENT_NAME_HEARTBEAT = g_quark_from_string("heartbeat");
2387
3865ea09 2388 LTT_TRACEFILE_NAME_FACILITIES = g_quark_from_string("/control/facilities");
3aee1200 2389}
2390
This page took 0.185177 seconds and 4 git commands to generate.