libcruft-util/backtrace_execinfo.cpp

91 lines
2.4 KiB
C++
Raw Normal View History

2014-09-17 18:20:28 +10:00
/*
2015-04-13 18:05:28 +10:00
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
2014-09-17 18:20:28 +10:00
*
2015-04-13 18:05:28 +10:00
* http://www.apache.org/licenses/LICENSE-2.0
2014-09-17 18:20:28 +10:00
*
2015-04-13 18:05:28 +10:00
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
2014-09-17 18:20:28 +10:00
*
* Copyright 2010-2014 Danny Robson <danny@nerdcruft.net>
*/
2011-05-23 17:18:52 +10:00
#include "backtrace.hpp"
#include "./debug.hpp"
#include "./exe.hpp"
#include "./io.hpp"
2015-11-17 16:19:27 +11:00
#include "cast.hpp"
2011-05-23 17:18:52 +10:00
#include <sstream>
#include <iomanip>
#include <cstdio>
2011-05-23 17:18:52 +10:00
#include <cstdlib>
#include <execinfo.h>
#include <algorithm>
#include <memory>
2014-09-17 18:20:28 +10:00
2011-05-23 17:18:52 +10:00
using namespace std;
2014-09-17 18:20:28 +10:00
//-----------------------------------------------------------------------------
2011-05-23 17:18:52 +10:00
debug::backtrace::backtrace (void):
m_frames (DEFAULT_DEPTH) {
2014-07-02 15:38:05 +10:00
size_t last;
size_t size = m_frames.size ();
2011-05-23 17:18:52 +10:00
2014-07-02 15:38:05 +10:00
while ((last = ::backtrace (&m_frames[0], m_frames.size ())) == size)
m_frames.resize (size = m_frames.size () * 2);
CHECK_GT (last, 0);
2014-07-02 15:38:05 +10:00
m_frames.resize (last);
2011-05-23 17:18:52 +10:00
}
//-----------------------------------------------------------------------------
static std::string
addr2line (const void *addr)
{
#if defined(ADDR2LINE)
using pstream_t = std::unique_ptr<FILE,decltype(&::pclose)>;
std::ostringstream cmd;
cmd << ADDR2LINE << " -e " << util::image_path () << ' ' << std::hex << addr;
pstream_t stream (
::popen (cmd.str ().c_str (), "r"),
::pclose
);
// inefficient to copy from vector to string, but it's not a high priority path
auto data = util::slurp (stream.get ());
return std::string (data.cbegin (), data.cend ());
#else
return "\n";
#endif
}
2014-09-17 18:20:28 +10:00
//-----------------------------------------------------------------------------
2011-05-23 17:18:52 +10:00
ostream&
2012-05-10 16:53:29 +10:00
debug::operator <<(ostream &os, const debug::backtrace &rhs) {
2011-05-23 17:18:52 +10:00
const auto frames = rhs.frames ();
// We don't use the array form of unique_ptr as clang fails on ambigious constructors
typedef unique_ptr<char *, decltype(&std::free)> str_t;
str_t names (backtrace_symbols (frames.data (), frames.size ()), ::free);
2011-05-23 17:18:52 +10:00
for (unsigned int i = 0; i < frames.size (); ++i)
os << frames[i] << '\t' << names.get()[i] << '\t' << addr2line (frames[i]);
2011-05-23 17:18:52 +10:00
return os;
}