c5be964a42
From-SVN: r217518
181 lines
7.0 KiB
C++
181 lines
7.0 KiB
C++
//===-- asan_interface_internal.h -------------------------------*- C++ -*-===//
|
|
//
|
|
// This file is distributed under the University of Illinois Open Source
|
|
// License. See LICENSE.TXT for details.
|
|
//
|
|
//===----------------------------------------------------------------------===//
|
|
//
|
|
// This file is a part of AddressSanitizer, an address sanity checker.
|
|
//
|
|
// This header can be included by the instrumented program to fetch
|
|
// data (mostly allocator statistics) from ASan runtime library.
|
|
//===----------------------------------------------------------------------===//
|
|
#ifndef ASAN_INTERFACE_INTERNAL_H
|
|
#define ASAN_INTERFACE_INTERNAL_H
|
|
|
|
#include "sanitizer_common/sanitizer_internal_defs.h"
|
|
|
|
#include "asan_init_version.h"
|
|
|
|
using __sanitizer::uptr;
|
|
|
|
extern "C" {
|
|
// This function should be called at the very beginning of the process,
|
|
// before any instrumented code is executed and before any call to malloc.
|
|
// Please note that __asan_init is a macro that is replaced with
|
|
// __asan_init_vXXX at compile-time.
|
|
SANITIZER_INTERFACE_ATTRIBUTE void __asan_init();
|
|
|
|
// This structure is used to describe the source location of a place where
|
|
// global was defined.
|
|
struct __asan_global_source_location {
|
|
const char *filename;
|
|
int line_no;
|
|
int column_no;
|
|
};
|
|
|
|
// This structure describes an instrumented global variable.
|
|
struct __asan_global {
|
|
uptr beg; // The address of the global.
|
|
uptr size; // The original size of the global.
|
|
uptr size_with_redzone; // The size with the redzone.
|
|
const char *name; // Name as a C string.
|
|
const char *module_name; // Module name as a C string. This pointer is a
|
|
// unique identifier of a module.
|
|
uptr has_dynamic_init; // Non-zero if the global has dynamic initializer.
|
|
__asan_global_source_location *location; // Source location of a global,
|
|
// or NULL if it is unknown.
|
|
};
|
|
|
|
// These two functions should be called by the instrumented code.
|
|
// 'globals' is an array of structures describing 'n' globals.
|
|
SANITIZER_INTERFACE_ATTRIBUTE
|
|
void __asan_register_globals(__asan_global *globals, uptr n);
|
|
SANITIZER_INTERFACE_ATTRIBUTE
|
|
void __asan_unregister_globals(__asan_global *globals, uptr n);
|
|
|
|
// These two functions should be called before and after dynamic initializers
|
|
// of a single module run, respectively.
|
|
SANITIZER_INTERFACE_ATTRIBUTE
|
|
void __asan_before_dynamic_init(const char *module_name);
|
|
SANITIZER_INTERFACE_ATTRIBUTE
|
|
void __asan_after_dynamic_init();
|
|
|
|
// These two functions are used by instrumented code in the
|
|
// use-after-scope mode. They mark memory for local variables as
|
|
// unaddressable when they leave scope and addressable before the
|
|
// function exits.
|
|
SANITIZER_INTERFACE_ATTRIBUTE
|
|
void __asan_poison_stack_memory(uptr addr, uptr size);
|
|
SANITIZER_INTERFACE_ATTRIBUTE
|
|
void __asan_unpoison_stack_memory(uptr addr, uptr size);
|
|
|
|
// Performs cleanup before a NoReturn function. Must be called before things
|
|
// like _exit and execl to avoid false positives on stack.
|
|
SANITIZER_INTERFACE_ATTRIBUTE void __asan_handle_no_return();
|
|
|
|
SANITIZER_INTERFACE_ATTRIBUTE
|
|
void __asan_poison_memory_region(void const volatile *addr, uptr size);
|
|
SANITIZER_INTERFACE_ATTRIBUTE
|
|
void __asan_unpoison_memory_region(void const volatile *addr, uptr size);
|
|
|
|
SANITIZER_INTERFACE_ATTRIBUTE
|
|
int __asan_address_is_poisoned(void const volatile *addr);
|
|
|
|
SANITIZER_INTERFACE_ATTRIBUTE
|
|
uptr __asan_region_is_poisoned(uptr beg, uptr size);
|
|
|
|
SANITIZER_INTERFACE_ATTRIBUTE
|
|
void __asan_describe_address(uptr addr);
|
|
|
|
SANITIZER_INTERFACE_ATTRIBUTE
|
|
int __asan_report_present();
|
|
|
|
SANITIZER_INTERFACE_ATTRIBUTE
|
|
uptr __asan_get_report_pc();
|
|
SANITIZER_INTERFACE_ATTRIBUTE
|
|
uptr __asan_get_report_bp();
|
|
SANITIZER_INTERFACE_ATTRIBUTE
|
|
uptr __asan_get_report_sp();
|
|
SANITIZER_INTERFACE_ATTRIBUTE
|
|
uptr __asan_get_report_address();
|
|
SANITIZER_INTERFACE_ATTRIBUTE
|
|
int __asan_get_report_access_type();
|
|
SANITIZER_INTERFACE_ATTRIBUTE
|
|
uptr __asan_get_report_access_size();
|
|
SANITIZER_INTERFACE_ATTRIBUTE
|
|
const char * __asan_get_report_description();
|
|
|
|
SANITIZER_INTERFACE_ATTRIBUTE
|
|
const char * __asan_locate_address(uptr addr, char *name, uptr name_size,
|
|
uptr *region_address, uptr *region_size);
|
|
|
|
SANITIZER_INTERFACE_ATTRIBUTE
|
|
uptr __asan_get_alloc_stack(uptr addr, uptr *trace, uptr size,
|
|
u32 *thread_id);
|
|
|
|
SANITIZER_INTERFACE_ATTRIBUTE
|
|
uptr __asan_get_free_stack(uptr addr, uptr *trace, uptr size,
|
|
u32 *thread_id);
|
|
|
|
SANITIZER_INTERFACE_ATTRIBUTE
|
|
void __asan_get_shadow_mapping(uptr *shadow_scale, uptr *shadow_offset);
|
|
|
|
SANITIZER_INTERFACE_ATTRIBUTE
|
|
void __asan_report_error(uptr pc, uptr bp, uptr sp,
|
|
uptr addr, int is_write, uptr access_size);
|
|
|
|
SANITIZER_INTERFACE_ATTRIBUTE
|
|
int __asan_set_error_exit_code(int exit_code);
|
|
SANITIZER_INTERFACE_ATTRIBUTE
|
|
void __asan_set_death_callback(void (*callback)(void));
|
|
SANITIZER_INTERFACE_ATTRIBUTE
|
|
void __asan_set_error_report_callback(void (*callback)(const char*));
|
|
|
|
SANITIZER_INTERFACE_ATTRIBUTE SANITIZER_WEAK_ATTRIBUTE
|
|
/* OPTIONAL */ void __asan_on_error();
|
|
|
|
SANITIZER_INTERFACE_ATTRIBUTE void __asan_print_accumulated_stats();
|
|
|
|
SANITIZER_INTERFACE_ATTRIBUTE SANITIZER_WEAK_ATTRIBUTE
|
|
/* OPTIONAL */ const char* __asan_default_options();
|
|
|
|
// Global flag, copy of ASAN_OPTIONS=detect_stack_use_after_return
|
|
SANITIZER_INTERFACE_ATTRIBUTE
|
|
extern int __asan_option_detect_stack_use_after_return;
|
|
|
|
SANITIZER_INTERFACE_ATTRIBUTE
|
|
extern uptr *__asan_test_only_reported_buggy_pointer;
|
|
|
|
SANITIZER_INTERFACE_ATTRIBUTE void __asan_load1(uptr p);
|
|
SANITIZER_INTERFACE_ATTRIBUTE void __asan_load2(uptr p);
|
|
SANITIZER_INTERFACE_ATTRIBUTE void __asan_load4(uptr p);
|
|
SANITIZER_INTERFACE_ATTRIBUTE void __asan_load8(uptr p);
|
|
SANITIZER_INTERFACE_ATTRIBUTE void __asan_load16(uptr p);
|
|
SANITIZER_INTERFACE_ATTRIBUTE void __asan_store1(uptr p);
|
|
SANITIZER_INTERFACE_ATTRIBUTE void __asan_store2(uptr p);
|
|
SANITIZER_INTERFACE_ATTRIBUTE void __asan_store4(uptr p);
|
|
SANITIZER_INTERFACE_ATTRIBUTE void __asan_store8(uptr p);
|
|
SANITIZER_INTERFACE_ATTRIBUTE void __asan_store16(uptr p);
|
|
SANITIZER_INTERFACE_ATTRIBUTE void __asan_loadN(uptr p, uptr size);
|
|
SANITIZER_INTERFACE_ATTRIBUTE void __asan_storeN(uptr p, uptr size);
|
|
|
|
SANITIZER_INTERFACE_ATTRIBUTE
|
|
void* __asan_memcpy(void *dst, const void *src, uptr size);
|
|
SANITIZER_INTERFACE_ATTRIBUTE
|
|
void* __asan_memset(void *s, int c, uptr n);
|
|
SANITIZER_INTERFACE_ATTRIBUTE
|
|
void* __asan_memmove(void* dest, const void* src, uptr n);
|
|
|
|
SANITIZER_INTERFACE_ATTRIBUTE
|
|
void __asan_poison_cxx_array_cookie(uptr p);
|
|
SANITIZER_INTERFACE_ATTRIBUTE
|
|
uptr __asan_load_cxx_array_cookie(uptr *p);
|
|
SANITIZER_INTERFACE_ATTRIBUTE
|
|
void __asan_poison_intra_object_redzone(uptr p, uptr size);
|
|
SANITIZER_INTERFACE_ATTRIBUTE
|
|
void __asan_unpoison_intra_object_redzone(uptr p, uptr size);
|
|
} // extern "C"
|
|
|
|
#endif // ASAN_INTERFACE_INTERNAL_H
|