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