aboutsummaryrefslogtreecommitdiff
path: root/Carpet/CarpetLib/src/backtrace.cc
blob: ad80b06d8472194b91562dd4b78d3e6cd5480fb2 (plain)
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
// needed for dladdr, best at the top to avoid inconsistent includes
#define _GNU_SOURCE 1

#include "backtrace.hh"

//#include <cctk.h>

#ifdef HAVE_BACKTRACE

// http://cairo.sourcearchive.com/documentation/1.9.4/backtrace-symbols_8c-source.html

/*
  A hacky replacement for backtrace_symbols in glibc
  
  backtrace_symbols in glibc looks up symbols using dladdr which is
  limited in the symbols that it sees. libbacktracesymbols opens the
  executable and shared libraries using libbfd and will look up
  backtrace information using the symbol table and the dwarf line
  information.
  
  It may make more sense for this program to use libelf instead of
  libbfd. However, I have not investigated that yet.
  
  Derived from addr2line.c from GNU Binutils by Jeff Muizelaar
  
  Copyright 2007 Jeff Muizelaar
*/

/* addr2line.c -- convert addresses to line number and function name
   Copyright 1997, 1998, 1999, 2000, 2001, 2002 Free Software
   Foundation, Inc. Contributed by Ulrich Lauther
   <Ulrich.Lauther@mchp.siemens.de>
   
   This file was part of GNU Binutils.
   
   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, 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, 59 Temple Place - Suite 330, Boston, MA 02111-1307,
   USA. */



#define fatal(a, b) exit(1)
#define bfd_fatal(a) exit(1)
#define bfd_nonfatal(a) exit(1)
#define list_matching_formats(a) exit(1)

/* 2 characters for each byte, plus 1 each for 0, x, and NULL */
#define PTRSTR_LEN (sizeof(void *) * 2 + 3)
#define true 1
#define false 0

#define _GNU_SOURCE
#include <string.h>
#include <stdio.h>
#include <stdlib.h>
#include <execinfo.h>
#include <bfd.h>
#include <libiberty.h>
#include <dlfcn.h>
#include <link.h>



namespace CarpetLib {
  
#if 0
  
  void (*dbfd_init)(void);
  bfd_vma (*dbfd_scan_vma)(const char *string, const char **end, int base);
  bfd* (*dbfd_openr)(const char *filename, const char *target);
  bfd_boolean (*dbfd_check_format)(bfd *abfd, bfd_format format);
  bfd_boolean (*dbfd_check_format_matches)(bfd *abfd, bfd_format format, char ***matching);
  bfd_boolean (*dbfd_close)(bfd *abfd);
  bfd_boolean (*dbfd_map_over_sections)(bfd *abfd, void (*func)(bfd *abfd, asection *sect, void *obj),
                                        void *obj);
#define bfd_init dbfd_init
  
  static void load_funcs(void)
  {
    void * handle = dlopen("libbfd.so", RTLD_NOW);
    dbfd_init = dlsym(handle, "bfd_init");
    dbfd_scan_vma = dlsym(handle, "bfd_scan_vma");
    dbfd_openr = dlsym(handle, "bfd_openr");
    dbfd_check_format = dlsym(handle, "bfd_check_format");
    dbfd_check_format_matches = dlsym(handle, "bfd_check_format_matches");
    dbfd_close = dlsym(handle, "bfd_close");
    dbfd_map_over_sections = dlsym(handle, "bfd_map_over_sections");
  }
  
#endif
  
  
  
  static asymbol **syms;        /* Symbol table.  */
  
  /* 150 isn't special; it's just an arbitrary non-ASCII char value.  */
#define OPTION_DEMANGLER      (150)

  static void slurp_symtab(bfd * abfd);
  static void find_address_in_section(bfd *abfd, asection *section, void *data);
  
  /* Read in the symbol table.  */
  static void slurp_symtab(bfd * abfd)
  {
    long symcount;
    unsigned int size;
    
    if ((bfd_get_file_flags(abfd) & HAS_SYMS) == 0)
      return;
    
    symcount = bfd_read_minisymbols(abfd, false, (PTR) & syms, &size);
    if (symcount == 0)
      symcount = bfd_read_minisymbols(abfd, true /* dynamic */ ,
                                      (PTR) & syms, &size);
    
    if (symcount < 0)
      bfd_fatal(bfd_get_filename(abfd));
  }
  
  /* These global variables are used to pass information between
     translate_addresses and find_address_in_section. */
  static bfd_vma pc;
  static const char *filename;
  static const char *functionname;
  static unsigned int line;
  static int found;
  
  /* Look for an address in a section. This is called via
     bfd_map_over_sections. */
  static void find_address_in_section(bfd *abfd, asection *section, void *data __attribute__ ((__unused__)) )
  {
    bfd_vma vma;
    bfd_size_type size;
    
    if (found)
      return;
    
    if ((bfd_get_section_flags(abfd, section) & SEC_ALLOC) == 0)
      return;
    
    vma = bfd_get_section_vma(abfd, section);
    if (pc < vma)
      return;
    
    size = bfd_section_size(abfd, section);
    if (pc >= vma + size)
      return;
    
    found = bfd_find_nearest_line(abfd, section, syms, pc - vma,
                                  &filename, &functionname, &line);
  }
  
  /* Read hexadecimal addresses from stdin, translate into
     file_name:line_number and optionally function name. */
#if 0
  static void translate_addresses(bfd * abfd, char (*addr)[PTRSTR_LEN], int naddr)
  {
    while (naddr) {
      pc = bfd_scan_vma(addr[naddr-1], NULL, 16);
      
      found = false;
      bfd_map_over_sections(abfd, find_address_in_section,
                            (PTR) NULL);
      
      if (!found) {
        printf("[%s] \?\?() \?\?:0\n",addr[naddr-1]);
      } else {
        const char *name;
        
        name = functionname;
        if (name == NULL || *name == '\0')
          name = "??";
        if (filename != NULL) {
          char *h;
          
          h = strrchr(filename, '/');
          if (h != NULL)
            filename = h + 1;
        }
        
        printf("\t%s:%u\t", filename ? filename : "??", line);
        
        printf("%s()\n", name);
        
      }
      
      /* fflush() is essential for using this command as a server
         child process that reads addresses from a pipe and responds
         with line number information, processing one address at a
         time. */
      fflush(stdout);
      naddr--;
    }
  }
#endif
  
  static char** translate_addresses_buf(bfd * abfd, bfd_vma *addr, int naddr)
  {
    int naddr_orig = naddr;
    char b;
    int total  = 0;
    enum { Count, Print } state;
    char *buf = &b;
    int len = 0;
    char **ret_buf = NULL;
    /* iterate over the formating twice. the first time we count how
     * much space we need the second time we do the actual printing */
    for (state=Count; state<=Print; state++) {
      if (state == Print) {
        ret_buf = malloc(total + sizeof(char*)*naddr);
        buf = (char*)(ret_buf + naddr);
        len = total;
      }
      while (naddr) {
        if (state == Print)
          ret_buf[naddr-1] = buf;
        pc = addr[naddr-1];
        
        found = false;
        bfd_map_over_sections(abfd, find_address_in_section,
                              (PTR) NULL);
        
        if (!found) {
          total += snprintf(buf, len, "[0x%llx] \?\?() \?\?:0",
                            (long long unsigned int) addr[naddr-1]) + 1;
        } else {
          const char *name;
          
          name = functionname;
          if (name == NULL || *name == '\0')
            name = "??";
          if (filename != NULL) {
            char *h;
            
            h = strrchr(filename, '/');
            if (h != NULL)
              filename = h + 1;
          }
          total += snprintf(buf, len, "%s:%u\t%s()", filename ? filename : "??",
                            line, name) + 1;
          
        }
        if (state == Print) {
          /* set buf just past the end of string */
          //TODO buf = buf + total + 1;
          buf = buf + strlen(buf) + 1;
        }
        naddr--;
      }
      naddr = naddr_orig;
    }
    return ret_buf;
  }
  
  /* Process a file.  */
  static char **process_file(const char *file_name, bfd_vma *addr, int naddr)
  {
    bfd *abfd;
    char **matching;
    char **ret_buf;
    
    abfd = bfd_openr(file_name, NULL);
    
    if (abfd == NULL)
      bfd_fatal(file_name);
    
    if (bfd_check_format(abfd, bfd_archive))
      fatal("%s: can not get addresses from archive", file_name);
    
    if (!bfd_check_format_matches(abfd, bfd_object, &matching)) {
      bfd_nonfatal(bfd_get_filename(abfd));
      if (bfd_get_error() ==
          bfd_error_file_ambiguously_recognized) {
        list_matching_formats(matching);
        free(matching);
      }
      xexit(1);
    }
    
    slurp_symtab(abfd);
    
    ret_buf = translate_addresses_buf(abfd, addr, naddr);
    
    if (syms != NULL) {
      free(syms);
      syms = NULL;
    }
    
    bfd_close(abfd);
    return ret_buf;
  }
  
  struct file_match {
    const char *file;
    void *address;
    void *base;
    void *hdr;
  };
  
  static int find_matching_file(struct dl_phdr_info *info,
                                size_t size, void *data)
  {
    struct file_match *match = data;
    /* This code is modeled from Gfind_proc_info-lsb.c:callback() from
       libunwind */
    long n;
    const ElfW(Phdr) *phdr;
    ElfW(Addr) load_base = info->dlpi_addr;
    phdr = info->dlpi_phdr;
    for (n = info->dlpi_phnum; --n >= 0; phdr++) {
      if (phdr->p_type == PT_LOAD) {
        ElfW(Addr) vaddr = phdr->p_vaddr + load_base;
        if (match->address >= vaddr && match->address < vaddr + phdr->p_memsz) {
          /* we found a match */
          match->file = info->dlpi_name;
          match->base = info->dlpi_addr;
        }
      }
    }
    return 0;
  }
  
  char **backtrace_symbols(void *const *buffer, int size)
  {
    int stack_depth = size - 1;
    int x,y;
    /* discard calling function */
    int total = 0;
    
    char ***locations;
    char **final;
    char *f_strings;
    
    locations = malloc(sizeof(char**) * (stack_depth+1));
    
    bfd_init();
    for(x=stack_depth, y=0; x>=0; x--, y++){
      struct file_match match = { .address = buffer[x] };
      char **ret_buf;
      bfd_vma addr;
      dl_iterate_phdr(find_matching_file, &match);
      addr = buffer[x] - match.base;
      if (match.file && strlen(match.file))
        ret_buf = process_file(match.file, &addr, 1);
      else
        ret_buf = process_file("/proc/self/exe", &addr, 1);
      locations[x] = ret_buf;
      total += strlen(ret_buf[0]) + 1;
    }
    
    /* allocate the array of char* we are going to return and extra
     * space for all of the strings */
    final = malloc(total + (stack_depth + 1) * sizeof(char*));
    /* get a pointer to the extra space */
    f_strings = (char*)(final + stack_depth + 1);
    
    /* fill in all of strings and pointers */
    for(x=stack_depth; x>=0; x--){
      strcpy(f_strings, locations[x][0]);
      free(locations[x]);
      final[x] = f_strings;
      f_strings += strlen(f_strings) + 1;
    }
    
    free(locations);
    
    return final;
  }
  
  void backtrace_symbols_fd(void *const *buffer, int size, int fd)
  {
    int j;
    char **strings;
    
    strings = backtrace_symbols(buffer, size);
    if (strings == NULL) {
      perror("backtrace_symbols");
      exit(EXIT_FAILURE);
    }
    
    for (j = 0; j < size; j++)
      printf("%s\n", strings[j]);
    
    free(strings);
  }
  
} // namespace CarpetLib

#endif // #ifdef HAVE_BACKTRACE
  
  
  
////////////////////////////////////////////////////////////////////////////////
  
  
  
#include "dist.hh"
  
#include <cctk.h>
#include <cctk_Parameters.h>

#include <cstring>
#include <fstream>
#include <ostream>
  
  // These are used for backtraces. HAVE_XXX requires cctk.h
#include <sys/types.h>
#ifdef HAVE_UNISTD_H
#  include <unistd.h>
#endif
#ifdef HAVE_EXECINFO_H
#  include <execinfo.h>
#endif
#ifdef HAVE_DLADDR
#  include <dlfcn.h>
#endif
#ifdef HAVE___CXA_DEMANGLE
#  include <cxxabi.h>
#endif
  
using namespace std;

namespace CarpetLib {
  
  // Generate a stack backtrace and send it to the given output
  // stream
  void generate_backtrace(ostream &stacktrace)
  {
    const int MAXSTACK = 100;
    static void *addresses[MAXSTACK];
    
    stacktrace << "Backtrace from rank " << dist::rank() << " pid " << getpid() << ":" << endl;
    
    int n = 0;
#ifdef HAVE_BACKTRACE
    n = backtrace(addresses, MAXSTACK);
#endif
    if (n < 2) {
      stacktrace << "Backtrace not available!\n";
    } else {
      stacktrace.flags(ios::hex);
#ifdef HAVE_BACKTRACE_SYMBOLS
      char **names = backtrace_symbols( addresses, n );
      for (int i = 2; i < n; i++) {
#ifdef HAVE_DLADDR
        Dl_info info;
#endif
        char *demangled = NULL;
        
        // Attempt to demangle this if possible
        // Get the nearest symbol to feed to demangler
#ifdef HAVE_DLADDR
        if(dladdr(addresses[i], &info) != 0) {
          int stat;
          // __cxa_demangle is a naughty obscure backend and no
          // self-respecting person would ever call it directly. ;-)
          // However it is a convenient glibc way to demangle syms.
#ifdef HAVE___CXA_DEMANGLE
          demangled = abi::__cxa_demangle(info.dli_sname,0,0,&stat);
#endif
        }
#endif
        
        if (demangled != NULL) {
          
#if 0
          // Chop off the garbage from the raw symbol
          char *loc = strchr(names[i], '(');
          if (loc != NULL) *loc = '\0';
#endif
          
          stacktrace << i - 1 << ". " << demangled << "   [" << names[i] << "]" << '\n';
          free(demangled);
        } else { // Just output the raw symbol
          stacktrace << i - 1 << ". " << names[i] << '\n';
        }
      }
      free(names);
#endif
    }
  }
  
  // Output a stack backtrace file backtrace.<rank>.txt
  void write_backtrace_file(void)
  {
    // declaring parameters is "safe" since it really only accesses
    // some hidden global structures, and no fragile linked list or
    // similar
    DECLARE_CCTK_PARAMETERS;

    ofstream myfile;
    stringstream ss;

    ss << out_dir << "/" << "backtrace." << dist::rank() << ".txt";
    string filename = ss.str();

    cerr << "Writing backtrace to " << filename << endl;
    myfile.open(filename.c_str());
    generate_backtrace(myfile);
    myfile << "\n"
           << "The hexadecimal addresses in this backtrace can also be interpreted\n"
           << "with a debugger (e.g. gdb), or with the 'addr2line' (or 'gaddr2line')\n"
           << "command line tool: 'addr2line -e cactus_sim <address>'.\n";
    myfile.close();
  }
  
} // namespace CarpetLib



//////////////////////////////////////////////////////////////////////////////
  
  
  
#include <signal.h>

namespace CarpetLib {
  
  void signal_handler(int const signum)
  {
    pid_t const pid = getpid();
    
    cerr << "Rank " << dist::rank() << " with PID " << pid << " "
         << "received signal " << signum << endl;
    // Restore the default signal handler
    signal(signum, SIG_DFL);
    
    write_backtrace_file();
    
    // Re-raise the signal to be caught by the default handler
    kill(pid, signum);
  }
  
  void request_backtraces()
  {
    signal(SIGQUIT, signal_handler);
    signal(SIGILL , signal_handler);
    signal(SIGABRT, signal_handler);
    signal(SIGFPE , signal_handler);
    signal(SIGBUS , signal_handler);
  }
  
} // namespace CarpetLib



////////////////////////////////////////////////////////////////////////////////



#include <cctk.h>
#include <cctk_Arguments.h>

extern "C" void CarpetLib_BacktraceTest(CCTK_ARGUMENTS)
{
  CCTK_INFO("Generating backtrace...");
  kill(0, SIGABRT);
  CCTK_WARN(CCTK_WARN_ABORT, "Backtrace test failed");
}