1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718
|
/*
(c) Copyright 2012-2013 DirectFB integrated media GmbH
(c) Copyright 2001-2013 The world wide DirectFB Open Source Community (directfb.org)
(c) Copyright 2000-2004 Convergence (integrated media) GmbH
All rights reserved.
Written by Denis Oliver Kropp <dok@directfb.org>,
Andreas Shimokawa <andi@directfb.org>,
Marek Pikarski <mass@directfb.org>,
Sven Neumann <neo@directfb.org>,
Ville Syrjälä <syrjala@sci.fi> and
Claudio Ciccani <klan@users.sf.net>.
This library is free software; you can redistribute it and/or
modify it under the terms of the GNU Lesser General Public
License as published by the Free Software Foundation; either
version 2 of the License, or (at your option) any later version.
This library is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
Lesser General Public License for more details.
You should have received a copy of the GNU Lesser General Public
License along with this library; if not, write to the
Free Software Foundation, Inc., 59 Temple Place - Suite 330,
Boston, MA 02111-1307, USA.
*/
#include <config.h>
#include <direct/filesystem.h>
#include <direct/list.h>
#include <direct/log.h>
#include <direct/mem.h>
#include <direct/memcpy.h>
#include <direct/messages.h>
#include <direct/print.h>
#include <direct/system.h>
#include <direct/thread.h>
#include <direct/trace.h>
#include <direct/util.h>
#include <direct/String.h>
#if DIRECT_BUILD_TRACE
#if DIRECT_BUILD_DYNLOAD
#include <dlfcn.h>
#endif
#define MAX_BUFFERS 200
#define MAX_LEVEL 200
#define NAME_LEN 92
D_LOG_DOMAIN( Direct_Trace, "Direct/Trace", "Trace support" );
/**************************************************************************************************/
typedef enum {
TF_NONE = 0x00000000,
TF_DEBUG = 0x00000001
} TraceFlags;
typedef struct {
void *addr;
TraceFlags flags;
} Trace;
struct __D_DirectTraceBuffer {
DirectLink link;
int magic;
pid_t tid;
char *name;
DirectThread *thread;
int level;
bool in_trace;
Trace trace[MAX_LEVEL];
};
/**************************************************************************************************/
static DirectLink *buffers;
static DirectMutex buffers_lock = DIRECT_RECURSIVE_MUTEX_INITIALIZER(buffers_lock);
/**************************************************************************************************/
__dfb_no_instrument_function__
static inline DirectTraceBuffer *
get_trace_buffer( void )
{
DirectTraceBuffer *buffer;
DirectThread *self = direct_thread_self();
buffer = self->trace_buffer;
if (!buffer) {
buffer = direct_calloc( 1, sizeof(DirectTraceBuffer) );
if (!buffer)
return NULL;
buffer->tid = direct_gettid();
buffer->thread = direct_thread_self();
self->trace_buffer = buffer;
D_MAGIC_SET( buffer, DirectTraceBuffer );
direct_mutex_lock( &buffers_lock );
direct_list_append( &buffers, &buffer->link );
direct_mutex_unlock( &buffers_lock );
}
return buffer;
}
/**************************************************************************************************/
typedef struct {
long offset;
char name[NAME_LEN];
} Symbol;
typedef struct {
DirectLink link;
char *filename;
Symbol *symbols;
int capacity;
int num_symbols;
} SymbolTable;
static DirectLink *tables = NULL;
static DirectMutex tables_lock = DIRECT_RECURSIVE_MUTEX_INITIALIZER(tables_lock);
__dfb_no_instrument_function__
static void
add_symbol( SymbolTable *table, long offset, const char *name )
{
Symbol *symbol;
if (table->num_symbols == table->capacity) {
Symbol *symbols;
int capacity = table->capacity * 2;
if (!capacity)
capacity = 256;
symbols = direct_malloc( capacity * sizeof(Symbol) );
if (!symbols) {
D_WARN( "out of memory" );
return;
}
direct_memcpy( symbols, table->symbols, table->num_symbols * sizeof(Symbol) );
direct_free( table->symbols );
table->symbols = symbols;
table->capacity = capacity;
}
symbol = &table->symbols[ table->num_symbols++ ];
symbol->offset = offset;
direct_snputs( symbol->name, name, NAME_LEN );
}
__dfb_no_instrument_function__
static SymbolTable *
load_symbols( const char *filename )
{
DirectResult ret;
SymbolTable *table;
DirectFile fp;
bool is_pipe = false;
char file[1024];
char line[1024];
int command_len;
const char *full_path = filename;
char *tmp;
D_DEBUG_AT( Direct_Trace, "%s( %s )\n", __FUNCTION__, filename );
if (filename) {
ret = direct_access( filename, R_OK );
if (ret && ret == DR_FILENOTFOUND) {
size_t len = 0;
ret = direct_readlink( "/proc/self/exe", file, sizeof(file) - 1, &len );
if (ret) {
D_DERROR( ret, "Direct/Trace: direct_readlink( \"/proc/self/exe\" ) failed!\n" );
return NULL;
}
// Terminator!
file[len] = 0;
tmp = strrchr( file, '/' );
if (!tmp)
return NULL;
if (direct_strcmp( filename, tmp + 1 ))
return NULL;
full_path = file;
}
}
else {
size_t len = 0;
ret = direct_readlink( "/proc/self/exe", file, sizeof(file) - 1, &len );
if (ret) {
D_DERROR( ret, "Direct/Trace: readlink( \"/proc/self/exe\" ) failed!\n" );
return NULL;
}
// Terminator 2
file[len] = 0;
full_path = file;
}
command_len = direct_strlen( full_path ) + 32;
{
char command[command_len+1];
/* First check if there's an "nm-n" file. */
tmp = strrchr( full_path, '/' );
if (!tmp)
return NULL;
*tmp = 0;
direct_snprintf( command, command_len, "%s/nm-n.%s", full_path, tmp + 1 );
*tmp = '/';
ret = direct_access( command, R_OK );
if (ret == DR_OK) {
ret = direct_file_open( &fp, command, O_RDONLY, 0 );
if (ret)
D_DERROR( ret, "Direct/Trace: direct_file_open( \"%s\", \"r\" ) failed!\n", command );
}
else {
direct_snprintf( command, command_len, "%s.nm", full_path );
ret = direct_access( command, R_OK );
if (ret == DR_OK) {
ret = direct_file_open( &fp, command, O_RDONLY, 0 );
if (ret)
D_DERROR( ret, "Direct/Trace: direct_file_open( \"%s\", \"r\" ) failed!\n", command );
}
}
/* Fallback to live mode. */
if (ret) {
direct_snprintf( command, command_len, "nm -nC %s", full_path );
if (!direct_config->nm_for_trace) {
D_DEBUG_AT( Direct_Trace, "not running '%s', enable via 'nm-for-trace' option\n", command );
return NULL;
}
D_DEBUG_AT( Direct_Trace, "running '%s'...\n", command );
ret = direct_popen( &fp, command, O_RDONLY );
if (ret) {
D_DERROR( ret, "Direct/Trace: direct_popen( \"%s\", \"r\" ) failed!\n", command );
return NULL;
}
is_pipe = true;
}
}
table = direct_calloc( 1, sizeof(SymbolTable) );
if (!table) {
D_OOM();
goto out;
}
if (filename)
table->filename = direct_strdup( filename );
while (direct_fgets( &fp, line, sizeof(line) ) == DR_OK) {
int n;
int digits = sizeof(long) * 2;
long offset = 0;
int length = direct_strlen(line);
if (line[0] == ' ' || length < (digits + 5) || line[length-1] != '\n')
continue;
if (line[digits + 1] != 't' && line[digits + 1] != 'T' && line[digits + 1] != 'W')
continue;
if (line[digits] != ' ' || line[digits + 2] != ' ' || line[digits + 3] == '.')
continue;
for (n=0; n<digits; n++) {
char c = line[n];
offset <<= 4;
if (c >= '0' && c <= '9')
offset |= c - '0';
else
offset |= c - 'a' + 10;
}
line[length-1] = 0;
add_symbol( table, offset, line + digits + 3 );
}
out:
if (is_pipe)
direct_pclose( &fp );
else
direct_file_close( &fp );
return table;
}
__dfb_no_instrument_function__
static int
compare_symbols(const void *x, const void *y)
{
return *((const long*) x) - *((const long*) y);
}
__dfb_no_instrument_function__
static SymbolTable *
find_table( const char *filename )
{
SymbolTable *table;
if (filename) {
direct_list_foreach (table, tables) {
if (table->filename && !direct_strcmp( filename, table->filename ))
return table;
}
}
else {
direct_list_foreach (table, tables) {
if (!table->filename)
return table;
}
}
return NULL;
}
/**************************************************************************************************/
__dfb_no_instrument_function__
const char *
direct_trace_lookup_symbol( const char *filename, long offset )
{
Symbol *symbol;
SymbolTable *table;
direct_mutex_lock( &tables_lock );
table = find_table( filename );
if (!table) {
table = load_symbols( filename );
if (!table) {
direct_mutex_unlock( &tables_lock );
return false;
}
direct_list_prepend( &tables, &table->link );
}
direct_mutex_unlock( &tables_lock );
symbol = direct_bsearch( &offset, table->symbols, table->num_symbols,
sizeof(Symbol), compare_symbols );
return symbol ? symbol->name : NULL;
}
__dfb_no_instrument_function__
const char *
direct_trace_lookup_file( void *address, void **ret_base )
{
#if DIRECT_BUILD_DYNLOAD
Dl_info info;
if (dladdr( address, &info )) {
if (ret_base)
*ret_base = info.dli_fbase;
return info.dli_fname;
}
else
#endif
{
if (ret_base)
*ret_base = NULL;
}
return NULL;
}
__dfb_no_instrument_function__
void
direct_trace_print_stack( DirectTraceBuffer *buffer )
{
#if DIRECT_BUILD_DYNLOAD
Dl_info info;
#endif
int i;
int level;
D_String *string;
if (!direct_config->trace)
return;
if (!buffer) {
buffer = get_trace_buffer();
if (!buffer)
return;
}
if (buffer->in_trace)
return;
buffer->in_trace = true;
level = buffer->level;
if (level > MAX_LEVEL) {
D_WARN( "only showing %d of %d items", MAX_LEVEL, level );
level = MAX_LEVEL;
}
else if (level == 0) {
buffer->in_trace = false;
return;
}
string = D_String_NewEmpty();
if (!string)
return;
D_String_PrintF( string, "(-) [%5d: -STACK- '%s']\n", buffer->tid, buffer->thread ? buffer->thread->name : buffer->name );
for (i=level-1; i>=0; i--) {
void *fn = buffer->trace[i].addr;
#if DIRECT_BUILD_DYNLOAD
if (dladdr( fn, &info )) {
if (info.dli_fname) {
const char *symbol = NULL;//info.dli_sname;
if (!symbol) {
symbol = direct_trace_lookup_symbol(info.dli_fname, (long)(fn - info.dli_fbase));
if (!symbol) {
symbol = direct_trace_lookup_symbol(info.dli_fname, (long)(fn));
if (!symbol) {
if (info.dli_sname)
symbol = info.dli_sname;
else
symbol = "??";
}
}
}
D_String_PrintF( string, " #%-2d 0x%08lx in %s () from %s [%p]\n",
level - i - 1, (unsigned long) fn, symbol, info.dli_fname, info.dli_fbase );
}
else if (info.dli_sname) {
D_String_PrintF( string, " #%-2d 0x%08lx in %s ()\n",
level - i - 1, (unsigned long) fn, info.dli_sname );
}
else
D_String_PrintF( string, " #%-2d 0x%08lx in ?? ()\n",
level - i - 1, (unsigned long) fn );
}
else
#endif
{
const char *symbol = direct_trace_lookup_symbol(NULL, (long)(fn));
D_String_PrintF( string, " #%-2d 0x%08lx in %s ()\n",
level - i - 1, (unsigned long) fn, symbol ? symbol : "??" );
}
}
D_String_PrintF( string, "\n" );
direct_log_write( NULL, D_String_Buffer( string ), D_String_Length( string ) );
D_String_Delete( string );
buffer->in_trace = false;
}
__dfb_no_instrument_function__
void
direct_trace_print_stacks()
{
DirectTraceBuffer *b;
DirectTraceBuffer *buffer = get_trace_buffer();
direct_mutex_lock( &buffers_lock );
if (buffer && buffer->level)
direct_trace_print_stack( buffer );
direct_list_foreach (b, buffers) {
if (b != buffer && b->level)
direct_trace_print_stack( b );
}
direct_mutex_unlock( &buffers_lock );
}
__dfb_no_instrument_function__
int
direct_trace_debug_indent()
{
int in = 0;
DirectTraceBuffer *buffer = get_trace_buffer();
if (buffer) {
int level = buffer->level - 1;
if (level < 0)
return 0;
buffer->trace[level--].flags |= TF_DEBUG;
for (in=0; level>=0; level--) { // FIXME: optimise by storing indent in trace frame
if (buffer->trace[level].flags & TF_DEBUG)
in++;
}
}
return in;
}
__dfb_no_instrument_function__
void *
direct_trace_get_caller()
{
void *caller = NULL;
DirectTraceBuffer *buffer = get_trace_buffer();
if (buffer) {
int level = buffer->level - 2;
if (level >= 0)
caller = buffer->trace[level].addr;
}
return caller;
}
__dfb_no_instrument_function__
DirectTraceBuffer *
direct_trace_copy_buffer( DirectTraceBuffer *buffer )
{
int level;
DirectTraceBuffer *copy;
if (!buffer) {
buffer = get_trace_buffer();
if (!buffer)
return NULL;
}
level = buffer->level;
if (level > MAX_LEVEL) {
D_WARN( "only copying %d of %d items", MAX_LEVEL, level );
level = MAX_LEVEL;
}
copy = direct_calloc( 1, sizeof(DirectTraceBuffer) - sizeof(Trace) * (MAX_LEVEL - level) );
if (!copy)
return NULL;
if (buffer->thread && buffer->thread->name)
copy->name = direct_strdup( buffer->thread->name );
copy->tid = buffer->tid;
copy->level = buffer->level;
direct_memcpy( ©->trace[0], &buffer->trace[0], level * sizeof(Trace) );
D_MAGIC_SET( copy, DirectTraceBuffer );
return copy;
}
__dfb_no_instrument_function__
void
direct_trace_free_buffer( DirectTraceBuffer *buffer )
{
D_MAGIC_ASSERT( buffer, DirectTraceBuffer );
if (buffer->thread) {
direct_mutex_lock( &buffers_lock );
direct_list_remove( &buffers, &buffer->link );
direct_mutex_unlock( &buffers_lock );
buffer->thread = NULL;
}
if (buffer->name)
direct_free( buffer->name );
D_MAGIC_CLEAR( buffer );
direct_free( buffer );
}
/**********************************************************************************************************************/
__dfb_no_instrument_function__ void __cyg_profile_func_enter( void *this_fn, void *call_site );
__dfb_no_instrument_function__ void __cyg_profile_func_exit ( void *this_fn, void *call_site );
void
__cyg_profile_func_enter( void *this_fn,
void *call_site )
{
if (direct_config->trace) {
DirectTraceBuffer *buffer = get_trace_buffer();
if (buffer) {
int level = buffer->level++;
Trace *trace = &buffer->trace[level];
if (level < MAX_LEVEL) {
trace->addr = this_fn;
trace->flags = TF_NONE;
}
}
}
}
void
__cyg_profile_func_exit( void *this_fn,
void *call_site )
{
if (direct_config->trace) {
DirectTraceBuffer *buffer = get_trace_buffer();
if (buffer) {
if (buffer->level > 0)
buffer->level--;
}
}
}
#else
const char *
direct_trace_lookup_symbol( const char *filename, long offset )
{
return NULL;
}
const char *
direct_trace_lookup_file( void *address, void **ret_base )
{
if (ret_base)
*ret_base = NULL;
return NULL;
}
void
direct_trace_print_stack( DirectTraceBuffer *buffer )
{
}
void
direct_trace_print_stacks( void )
{
}
int
direct_trace_debug_indent( void )
{
return 0;
}
void *
direct_trace_get_caller( void )
{
return NULL;
}
DirectTraceBuffer *
direct_trace_copy_buffer( DirectTraceBuffer *buffer )
{
return NULL;
}
void
direct_trace_free_buffer( DirectTraceBuffer *buffer )
{
}
#endif
|