blob: 03105d64ad9c1beb5f96baf981682566ec1b30cd (
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
|
// -*- mode:C++; tab-width:8; c-basic-offset:2; indent-tabs-mode:t -*-
// vim: ts=8 sw=2 smarttab
#include <ostream>
#include <cxxabi.h>
#include <string.h>
#include "BackTrace.h"
#include "common/version.h"
#include "common/Formatter.h"
namespace ceph {
void ClibBackTrace::print(std::ostream& out) const
{
out << " " << pretty_version_to_str() << std::endl;
for (size_t i = skip; i < size; i++) {
out << " " << (i-skip+1) << ": " << demangle(strings[i]) << std::endl;
}
}
void ClibBackTrace::dump(Formatter *f) const
{
f->open_array_section("backtrace");
for (size_t i = skip; i < size; i++) {
// out << " " << (i-skip+1) << ": " << strings[i] << std::endl;
f->dump_string("frame", demangle(strings[i]));
}
f->close_section();
}
std::string ClibBackTrace::demangle(const char* name)
{
// find the parentheses and address offset surrounding the mangled name
#ifdef __FreeBSD__
static constexpr char OPEN = '<';
#else
static constexpr char OPEN = '(';
#endif
const char* begin = nullptr;
const char* end = nullptr;
for (const char *j = name; *j; ++j) {
if (*j == OPEN) {
begin = j + 1;
} else if (*j == '+') {
end = j;
}
}
if (begin && end && begin < end) {
std::string mangled(begin, end);
int status;
// only demangle a C++ mangled name
if (mangled.compare(0, 2, "_Z") == 0) {
// let __cxa_demangle do the malloc
char* demangled = abi::__cxa_demangle(mangled.c_str(), nullptr, nullptr, &status);
if (!status) {
std::string full_name{OPEN};
full_name += demangled;
full_name += end;
// buf could be reallocated, so free(demangled) instead
free(demangled);
return full_name;
}
// demangle failed, just pretend it's a C function with no args
}
// C function
return mangled + "()";
} else {
// didn't find the mangled name, just print the whole line
return name;
}
}
void PyBackTrace::dump(Formatter *f) const
{
f->open_array_section("backtrace");
for (auto& i : strings) {
f->dump_string("frame", i);
}
f->close_section();
}
void PyBackTrace::print(std::ostream& out) const
{
for (auto& i : strings) {
out << i << std::endl;
}
}
}
|