2019-03-21 04:06:53 +08:00
|
|
|
#ifndef JEMALLOC_INTERNAL_SAFETY_CHECK_H
|
|
|
|
#define JEMALLOC_INTERNAL_SAFETY_CHECK_H
|
|
|
|
|
2020-01-31 06:35:54 +08:00
|
|
|
void safety_check_fail_sized_dealloc(bool current_dealloc);
|
2019-03-21 04:06:53 +08:00
|
|
|
void safety_check_fail(const char *format, ...);
|
2019-03-23 03:53:11 +08:00
|
|
|
/* Can set to NULL for a default. */
|
2019-10-18 07:46:45 +08:00
|
|
|
void safety_check_set_abort(void (*abort_fn)(const char *));
|
2019-03-23 03:53:11 +08:00
|
|
|
|
|
|
|
JEMALLOC_ALWAYS_INLINE void
|
|
|
|
safety_check_set_redzone(void *ptr, size_t usize, size_t bumped_usize) {
|
|
|
|
assert(usize < bumped_usize);
|
|
|
|
for (size_t i = usize; i < bumped_usize && i < usize + 32; ++i) {
|
2019-07-04 07:48:47 +08:00
|
|
|
*((unsigned char *)ptr + i) = 0xBC;
|
2019-03-23 03:53:11 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
JEMALLOC_ALWAYS_INLINE void
|
|
|
|
safety_check_verify_redzone(const void *ptr, size_t usize, size_t bumped_usize)
|
|
|
|
{
|
|
|
|
for (size_t i = usize; i < bumped_usize && i < usize + 32; ++i) {
|
2019-07-04 07:48:47 +08:00
|
|
|
if (unlikely(*((unsigned char *)ptr + i) != 0xBC)) {
|
2019-03-23 03:53:11 +08:00
|
|
|
safety_check_fail("Use after free error\n");
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2019-03-21 04:06:53 +08:00
|
|
|
|
|
|
|
#endif /*JEMALLOC_INTERNAL_SAFETY_CHECK_H */
|