Retro68/gcc/libsanitizer/sanitizer_common/sanitizer_symbolizer.h

179 lines
5.7 KiB
C
Raw Normal View History

2014-09-21 17:33:12 +00:00
//===-- sanitizer_symbolizer.h ----------------------------------*- C++ -*-===//
//
// This file is distributed under the University of Illinois Open Source
// License. See LICENSE.TXT for details.
//
//===----------------------------------------------------------------------===//
//
// Symbolizer is used by sanitizers to map instruction address to a location in
// source code at run-time. Symbolizer either uses __sanitizer_symbolize_*
// defined in the program, or (if they are missing) tries to find and
// launch "llvm-symbolizer" commandline tool in a separate process and
// communicate with it.
//
// Generally we should try to avoid calling system library functions during
// symbolization (and use their replacements from sanitizer_libc.h instead).
//===----------------------------------------------------------------------===//
#ifndef SANITIZER_SYMBOLIZER_H
#define SANITIZER_SYMBOLIZER_H
2017-04-10 11:32:00 +00:00
#include "sanitizer_common.h"
#include "sanitizer_mutex.h"
2014-09-21 17:33:12 +00:00
namespace __sanitizer {
struct AddressInfo {
2017-04-10 11:32:00 +00:00
// Owns all the string members. Storage for them is
// (de)allocated using sanitizer internal allocator.
2014-09-21 17:33:12 +00:00
uptr address;
2015-08-28 15:33:40 +00:00
2014-09-21 17:33:12 +00:00
char *module;
uptr module_offset;
2015-08-28 15:33:40 +00:00
static const uptr kUnknown = ~(uptr)0;
2014-09-21 17:33:12 +00:00
char *function;
2015-08-28 15:33:40 +00:00
uptr function_offset;
2014-09-21 17:33:12 +00:00
char *file;
int line;
int column;
2017-04-10 11:32:00 +00:00
AddressInfo();
2015-08-28 15:33:40 +00:00
// Deletes all strings and resets all fields.
2017-04-10 11:32:00 +00:00
void Clear();
void FillModuleInfo(const char *mod_name, uptr mod_offset);
};
2014-09-21 17:33:12 +00:00
2017-04-10 11:32:00 +00:00
// Linked list of symbolized frames (each frame is described by AddressInfo).
struct SymbolizedStack {
SymbolizedStack *next;
AddressInfo info;
static SymbolizedStack *New(uptr addr);
// Deletes current, and all subsequent frames in the linked list.
// The object cannot be accessed after the call to this function.
void ClearAll();
private:
SymbolizedStack();
2014-09-21 17:33:12 +00:00
};
2015-08-28 15:33:40 +00:00
// For now, DataInfo is used to describe global variable.
2014-09-21 17:33:12 +00:00
struct DataInfo {
2017-04-10 11:32:00 +00:00
// Owns all the string members. Storage for them is
// (de)allocated using sanitizer internal allocator.
2014-09-21 17:33:12 +00:00
char *module;
uptr module_offset;
char *name;
uptr start;
uptr size;
2015-08-28 15:33:40 +00:00
2017-04-10 11:32:00 +00:00
DataInfo();
void Clear();
2014-09-21 17:33:12 +00:00
};
2017-04-10 11:32:00 +00:00
class SymbolizerTool;
class Symbolizer final {
2014-09-21 17:33:12 +00:00
public:
2015-08-28 15:33:40 +00:00
/// Initialize and return platform-specific implementation of symbolizer
/// (if it wasn't already initialized).
2014-09-21 17:33:12 +00:00
static Symbolizer *GetOrInit();
2017-04-10 11:32:00 +00:00
// Returns a list of symbolized frames for a given address (containing
// all inlined functions, if necessary).
SymbolizedStack *SymbolizePC(uptr address);
bool SymbolizeData(uptr address, DataInfo *info);
// The module names Symbolizer returns are stable and unique for every given
// module. It is safe to store and compare them as pointers.
bool GetModuleNameAndOffsetForPC(uptr pc, const char **module_name,
uptr *module_address);
const char *GetModuleNameForPc(uptr pc) {
const char *module_name = nullptr;
uptr unused;
if (GetModuleNameAndOffsetForPC(pc, &module_name, &unused))
return module_name;
return nullptr;
2014-09-21 17:33:12 +00:00
}
2017-04-10 11:32:00 +00:00
2014-09-21 17:33:12 +00:00
// Release internal caches (if any).
2017-04-10 11:32:00 +00:00
void Flush();
2014-09-21 17:33:12 +00:00
// Attempts to demangle the provided C++ mangled name.
2017-04-10 11:32:00 +00:00
const char *Demangle(const char *name);
void PrepareForSandboxing();
2014-09-21 17:33:12 +00:00
// Allow user to install hooks that would be called before/after Symbolizer
// does the actual file/line info fetching. Specific sanitizers may need this
// to distinguish system library calls made in user code from calls made
// during in-process symbolization.
typedef void (*StartSymbolizationHook)();
typedef void (*EndSymbolizationHook)();
// May be called at most once.
void AddHooks(StartSymbolizationHook start_hook,
EndSymbolizationHook end_hook);
private:
2017-04-10 11:32:00 +00:00
// GetModuleNameAndOffsetForPC has to return a string to the caller.
// Since the corresponding module might get unloaded later, we should create
// our owned copies of the strings that we can safely return.
// ModuleNameOwner does not provide any synchronization, thus calls to
// its method should be protected by |mu_|.
class ModuleNameOwner {
public:
explicit ModuleNameOwner(BlockingMutex *synchronized_by)
: storage_(kInitialCapacity), last_match_(nullptr),
mu_(synchronized_by) {}
const char *GetOwnedCopy(const char *str);
private:
static const uptr kInitialCapacity = 1000;
InternalMmapVector<const char*> storage_;
const char *last_match_;
BlockingMutex *mu_;
} module_names_;
2014-09-21 17:33:12 +00:00
/// Platform-specific function for creating a Symbolizer object.
2015-08-28 15:33:40 +00:00
static Symbolizer *PlatformInit();
2017-04-10 11:32:00 +00:00
bool FindModuleNameAndOffsetForAddress(uptr address, const char **module_name,
uptr *module_offset);
LoadedModule *FindModuleForAddress(uptr address);
LoadedModule modules_[kMaxNumberOfModules];
uptr n_modules_;
// If stale, need to reload the modules before looking up addresses.
bool modules_fresh_;
// Platform-specific default demangler, must not return nullptr.
const char *PlatformDemangle(const char *name);
void PlatformPrepareForSandboxing();
2014-09-21 17:33:12 +00:00
static Symbolizer *symbolizer_;
static StaticSpinMutex init_mu_;
2017-04-10 11:32:00 +00:00
// Mutex locked from public methods of |Symbolizer|, so that the internals
// (including individual symbolizer tools and platform-specific methods) are
// always synchronized.
BlockingMutex mu_;
typedef IntrusiveList<SymbolizerTool>::Iterator Iterator;
IntrusiveList<SymbolizerTool> tools_;
explicit Symbolizer(IntrusiveList<SymbolizerTool> tools);
2014-09-21 17:33:12 +00:00
static LowLevelAllocator symbolizer_allocator_;
StartSymbolizationHook start_hook_;
EndSymbolizationHook end_hook_;
class SymbolizerScope {
public:
explicit SymbolizerScope(const Symbolizer *sym);
~SymbolizerScope();
private:
const Symbolizer *sym_;
};
};
} // namespace __sanitizer
#endif // SANITIZER_SYMBOLIZER_H