2014-09-17 18:20:28 +10:00
|
|
|
/*
|
2018-08-04 15:14:06 +10:00
|
|
|
* This Source Code Form is subject to the terms of the Mozilla Public
|
|
|
|
* License, v. 2.0. If a copy of the MPL was not distributed with this
|
|
|
|
* file, You can obtain one at http://mozilla.org/MPL/2.0/.
|
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"
|
|
|
|
|
2017-11-22 16:49:37 +11:00
|
|
|
#include "debug.hpp"
|
|
|
|
#include "exe.hpp"
|
|
|
|
#include "io.hpp"
|
|
|
|
#include "cast.hpp"
|
2011-05-23 17:18:52 +10:00
|
|
|
|
2015-10-29 17:52:48 +11:00
|
|
|
#include <sstream>
|
|
|
|
#include <cstdio>
|
2011-05-23 17:18:52 +10:00
|
|
|
#include <cstdlib>
|
|
|
|
#include <execinfo.h>
|
|
|
|
#include <memory>
|
|
|
|
|
2014-09-17 18:20:28 +10:00
|
|
|
|
2016-03-11 13:28:56 +11:00
|
|
|
///////////////////////////////////////////////////////////////////////////////
|
2011-05-23 17:18:52 +10:00
|
|
|
debug::backtrace::backtrace (void):
|
2016-04-19 16:08:56 +10:00
|
|
|
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
|
|
|
|
2018-08-05 14:42:02 +10:00
|
|
|
while ((last = ::backtrace (&m_frames[0], cruft::cast::lossless <int> (m_frames.size ()))) == size)
|
2014-07-02 15:38:05 +10:00
|
|
|
m_frames.resize (size = m_frames.size () * 2);
|
|
|
|
|
2016-08-10 17:34:54 +10:00
|
|
|
CHECK_GT (last, 0u);
|
2014-07-02 15:38:05 +10:00
|
|
|
m_frames.resize (last);
|
2011-05-23 17:18:52 +10:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2016-03-11 13:28:56 +11:00
|
|
|
///////////////////////////////////////////////////////////////////////////////
|
2015-10-29 17:52:48 +11:00
|
|
|
static std::string
|
|
|
|
addr2line (const void *addr)
|
|
|
|
{
|
|
|
|
#if defined(ADDR2LINE)
|
|
|
|
using pstream_t = std::unique_ptr<FILE,decltype(&::pclose)>;
|
|
|
|
|
|
|
|
std::ostringstream cmd;
|
2018-08-05 14:42:02 +10:00
|
|
|
cmd << ADDR2LINE << " -e " << cruft::image_path () << ' ' << std::hex << addr;
|
2015-10-29 17:52:48 +11:00
|
|
|
|
|
|
|
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
|
2018-08-05 14:42:02 +10:00
|
|
|
auto data = cruft::slurp<char> (stream.get ());
|
2015-10-29 17:52:48 +11:00
|
|
|
return std::string (data.cbegin (), data.cend ());
|
|
|
|
|
|
|
|
#else
|
2016-05-12 17:47:47 +10:00
|
|
|
return "";
|
2015-10-29 17:52:48 +11:00
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2016-03-11 13:28:56 +11:00
|
|
|
///////////////////////////////////////////////////////////////////////////////
|
2016-04-05 11:09:28 +10:00
|
|
|
std::ostream&
|
|
|
|
debug::operator <<(std::ostream &os, const debug::backtrace &rhs) {
|
2018-07-24 15:46:28 +10:00
|
|
|
auto const &frames = rhs.frames ();
|
2011-05-23 17:18:52 +10:00
|
|
|
|
2012-06-13 15:47:39 +10:00
|
|
|
// We don't use the array form of unique_ptr as clang fails on ambigious constructors
|
2016-04-05 11:09:28 +10:00
|
|
|
typedef std::unique_ptr<char *, decltype(&std::free)> str_t;
|
2018-08-05 14:42:02 +10:00
|
|
|
str_t names (backtrace_symbols (frames.data (), cruft::cast::lossless <int> (frames.size ())), ::free);
|
2011-05-23 17:18:52 +10:00
|
|
|
|
|
|
|
for (unsigned int i = 0; i < frames.size (); ++i)
|
2016-08-15 17:27:46 +10:00
|
|
|
os << frames[i] << '\t' << names.get()[i] << '\t' << addr2line (frames[i]);
|
2011-05-23 17:18:52 +10:00
|
|
|
|
|
|
|
return os;
|
|
|
|
}
|