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
|
/*============================================================================
* Obtaining a stack backtrace
*============================================================================*/
/*
This file is part of Code_Saturne, a general-purpose CFD tool.
Copyright (C) 1998-2018 EDF S.A.
This program is free software; you can redistribute it and/or modify it under
the terms of the GNU General Public License as published by the Free Software
Foundation; either version 2 of the License, or (at your option) any later
version.
This program 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 General Public License for more
details.
You should have received a copy of the GNU General Public License along with
this program; if not, write to the Free Software Foundation, Inc., 51 Franklin
Street, Fifth Floor, Boston, MA 02110-1301, USA.
*/
/*----------------------------------------------------------------------------*/
#include "ecs_def.h"
#if defined(HAVE_GLIBC_BACKTRACE) && defined(__GNUC__)
#define _GNU_SOURCE
#endif
/*-----------------------------------------------------------------------------*/
/*
* Standard C library headers
*/
#include <assert.h>
#include <stdarg.h>
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#if defined(HAVE_GLIBC_BACKTRACE)
#include <memory.h>
#include <signal.h>
#include <execinfo.h>
#endif
/*
* Optional library and ECS headers
*/
#include "ecs_def.h"
#include "ecs_backtrace.h"
/*-----------------------------------------------------------------------------*/
BEGIN_C_DECLS
/*-----------------------------------------------------------------------------
* Local type definitions
*-----------------------------------------------------------------------------*/
#ifndef DOXYGEN_SHOULD_SKIP_THIS
/*
* ECS backtrace descriptor
*/
typedef struct {
int size; /* Total depth of backtrace */
char **s_file; /* File names */
char **s_func; /* Function names */
char **s_addr; /* Addresses */
} _ecs_backtrace_t;
#endif /* DOXYGEN_SHOULD_SKIP_THIS */
/* Associated typedef documentation (for ecs_backtrace.h) */
/*!
* \typedef ecs_backtrace_print_t
*
* \brief Function pointer to backtrace print function.
*
* \param [in] start_depth depth of backtrace at which to start printing
* (0 for all, including backtrace print function)
*/
/*-----------------------------------------------------------------------------
* Local static variable definitions
*-----------------------------------------------------------------------------*/
/*-----------------------------------------------------------------------------
* Local function definitions
*-----------------------------------------------------------------------------*/
/*!
* \brief Build a backtrace description structure.
*
* \return pointer to ecs_backtrace_t backtrace descriptor (NULL in case of
* error, or if backtracing is unavailable on this architecture).
*/
static _ecs_backtrace_t *
_backtrace_create(void)
{
#if defined(HAVE_GLIBC_BACKTRACE)
int i, j, l;
_ecs_backtrace_t *bt = NULL;
/* Create backtrace structure */
bt = malloc(sizeof(_ecs_backtrace_t));
if (bt != NULL) {
void *tr_array[200];
int tr_size = backtrace(tr_array, 200);
char **tr_strings = backtrace_symbols(tr_array, tr_size);
/* Create arrays; we use malloc() here instead of ECS_MALLOC, as a
backtrace is useful mainly in case of severe errors, so we avoid
higher level constructs as much as possible at this stage. */
if (tr_size < 2 || tr_strings == NULL) {
free(bt);
return NULL;
}
bt->size = tr_size - 1;
bt->s_file = malloc(tr_size * sizeof(char *));
bt->s_func = malloc(tr_size * sizeof(char *));
bt->s_addr = malloc(tr_size * sizeof(char *));
/* If allocation has failed, free other allocated arrays, and return NULL */
if ( bt->s_file == NULL || bt->s_func == NULL || bt->s_addr == NULL) {
if (bt->s_file != NULL)
free(bt->s_file);
if (bt->s_func != NULL)
free(bt->s_func);
if (bt->s_addr != NULL)
free(bt->s_addr);
free(bt);
return NULL;
}
for (i = 0; i < bt->size; i++) {
bt->s_file[i] = NULL;
bt->s_func[i] = NULL;
bt->s_addr[i] = NULL;
}
/* Now parse backtrace strings and build arrays */
for (i = 0; i < bt->size; i++) {
char *s = tr_strings[i+1]; /* Shift by 1 to ignore current function */
const char *s_addr = NULL;
const char *s_func = NULL;
const char *s_file = NULL;
for (l = 0; s[l] != '\0'; l++);
/* Remove brackets around adress */
for (j = l; j > 0 && s[j] !=']'; j--);
if (s[j] == ']') {
s[j] = '\0';
l = j;
for (j = l-1; j > 0 && s[j] !='['; j--);
if (s[j] == '[') {
s_addr = s+j+1;
bt->s_addr[i] = malloc((strlen(s_addr)+1) * sizeof(char));
if (bt->s_addr[i] != NULL)
strcpy(bt->s_addr[i], s_addr);
}
}
if (j == 0)
continue;
/* Find function name and position (in parentheses) */
while (j > 0 && s[j] != ')')
j--;
if (s[j] == ')') {
s[j] = '\0';
while (j > 0 && s[j] != '(')
j--;
if (j > 0 && s[j] == '(') {
s_func = s+j+1;
while (j > 0 && (s[j] == '(' || s[j] == ' '))
s[j--] = '\0';
bt->s_func[i] = malloc((strlen(s_func)+1) * sizeof(char));
if (bt->s_func[i] != NULL)
strcpy(bt->s_func[i], s_func);
}
}
if (j == 0)
continue;
/* Find executable or library name */
if (s_func == NULL) {/* With no function name found */
for (j = 0; j < l && s[j] != ' '; j++);
if (s[j] == ' ')
s[j] = '\0';
}
while (j > 0 && s[j] != '/')
j--;
if (j < l) {
s_file = s+j+1;
bt->s_file[i] = malloc((strlen(s_file)+1) * sizeof(char));
if (bt->s_file[i] != NULL)
strcpy(bt->s_file[i], s_file);
}
}
/* Free temporary memory
(only main pointer needs to be freed according to glibc documentation) */
free((void *)tr_strings);
}
return bt;
#else /* defined(HAVE_GLIBC_BACKTRACE) */
return NULL;
#endif
}
/*!
* \brief Free a backtrace description structure.
*
* \param [in, out] bt pointer to backtrace description structure.
*
* \return NULL pointer.
*/
static _ecs_backtrace_t *
_backtrace_destroy(_ecs_backtrace_t *bt)
{
int i;
if (bt != NULL) {
for (i = 0; i < bt->size; i++) {
if (bt->s_file[i] != NULL)
free(bt->s_file[i]);
if (bt->s_func[i] != NULL)
free(bt->s_func[i]);
if (bt->s_addr[i] != NULL)
free(bt->s_addr[i]);
}
if (bt->s_file != NULL)
free(bt->s_file);
if (bt->s_func != NULL)
free(bt->s_func);
if (bt->s_addr != NULL)
free(bt->s_addr);
free(bt);
}
return NULL;
}
/*!
* \brief Return file name associated with a backtrace at a given depth.
*
* \param [in] bt pointer to backtrace description structure.
* \param [in] depth index in backtrace structure (< ecs_backtrace_size(bt)).
*
* \return file name at the given depth, or NULL.
*/
static const char *
_backtrace_file(_ecs_backtrace_t *bt,
int depth)
{
const char *retval = NULL;
if (bt != NULL) {
if (depth < bt->size)
retval = bt->s_file[depth];
}
return retval;
}
/*!
* \brief Return function name associated with a backtrace at a given depth.
*
* \param [in] bt pointer to backtrace description structure.
* \param [in] depth index in backtrace structure (< ecs_backtrace_size(bt)).
*
* \return function name at the given depth, or NULL.
*/
static const char *
_backtrace_function(_ecs_backtrace_t *bt,
int depth)
{
const char *retval = NULL;
if (bt != NULL) {
if (depth < bt->size)
retval = bt->s_func[depth];
}
return retval;
}
/*!
* \brief Return address associated with a backtrace at a given depth.
*
* \param [in] bt pointer to backtrace description structure.
* \param [in] depth index in backtrace structure (< ecs_backtrace_size(bt)).
*
* \return address at the given depth, or NULL.
*/
static const char *
_backtrace_address(_ecs_backtrace_t *bt,
int depth)
{
const char *retval = NULL;
if (bt != NULL) {
if (depth < bt->size)
retval = bt->s_addr[depth];
}
return retval;
}
/*============================================================================
* Public function definitions
*============================================================================*/
/*!
* \brief Print a backtrace.
*
* \param [in] start_depth depth of backtrace at which to start printing
* (0 for all, including backtrace print function)
*/
void
ecs_backtrace_print(int start_depth)
{
size_t i;
_ecs_backtrace_t *tr = NULL;
tr = _backtrace_create();
if (tr != NULL) {
char s_func_buf[67];
const char *s_file;
const char *s_func;
const char *s_addr;
const char s_inconnu[] = "?";
const char s_vide[] = "";
const char *s_prefix = s_vide;
size_t nbr = tr->size;
if (nbr > 0)
fprintf(stderr, _("\nCall stack \n"));
for (i = start_depth ; i < nbr ; i++) {
s_file = _backtrace_file(tr, i);
s_func = _backtrace_function(tr, i);
s_addr = _backtrace_address(tr, i);
if (s_file == NULL)
s_file = s_inconnu;
if (s_func == NULL)
strcpy(s_func_buf, "?");
else {
s_func_buf[0] = '<';
strncpy(s_func_buf + 1, s_func, 64);
strcat(s_func_buf, ">");
}
if (s_addr == NULL)
s_addr = s_inconnu;
fprintf(stderr, "%s%4d: %-12s %-32s (%s)\n", s_prefix,
(int)i-start_depth+1, s_addr, s_func_buf, s_file);
}
_backtrace_destroy(tr);
if (nbr > 0)
fprintf(stderr, _("End of stack\n\n"));
}
}
/*-----------------------------------------------------------------------------*/
END_C_DECLS
|