2015-03-11 01:48:27 +01:00
|
|
|
/*
|
|
|
|
* Copyright (C) 2015 The Android Open Source Project
|
2017-02-16 00:31:13 +01:00
|
|
|
* All rights reserved.
|
2015-03-11 01:48:27 +01:00
|
|
|
*
|
2017-02-16 00:31:13 +01:00
|
|
|
* Redistribution and use in source and binary forms, with or without
|
|
|
|
* modification, are permitted provided that the following conditions
|
|
|
|
* are met:
|
|
|
|
* * Redistributions of source code must retain the above copyright
|
|
|
|
* notice, this list of conditions and the following disclaimer.
|
|
|
|
* * Redistributions in binary form must reproduce the above copyright
|
|
|
|
* notice, this list of conditions and the following disclaimer in
|
|
|
|
* the documentation and/or other materials provided with the
|
|
|
|
* distribution.
|
2015-03-11 01:48:27 +01:00
|
|
|
*
|
2017-02-16 00:31:13 +01:00
|
|
|
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
|
|
|
|
* "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
|
|
|
|
* LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS
|
|
|
|
* FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE
|
|
|
|
* COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT,
|
|
|
|
* INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING,
|
|
|
|
* BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS
|
|
|
|
* OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED
|
|
|
|
* AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
|
|
|
|
* OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT
|
|
|
|
* OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
|
|
|
|
* SUCH DAMAGE.
|
2015-03-11 01:48:27 +01:00
|
|
|
*/
|
|
|
|
|
|
|
|
#include "linker_allocator.h"
|
|
|
|
|
|
|
|
#include <stdlib.h>
|
2017-02-09 19:54:44 +01:00
|
|
|
#include <sys/cdefs.h>
|
|
|
|
#include <unistd.h>
|
|
|
|
|
|
|
|
#include "private/libc_logging.h"
|
2015-03-11 01:48:27 +01:00
|
|
|
|
|
|
|
static LinkerMemoryAllocator g_linker_allocator;
|
2017-02-09 19:54:44 +01:00
|
|
|
static pid_t fallback_tid = 0;
|
|
|
|
|
|
|
|
// Used by libdebuggerd_handler to switch allocators during a crash dump, in
|
|
|
|
// case the linker heap is corrupted. Do not use this function.
|
2017-03-07 02:46:47 +01:00
|
|
|
extern "C" void __linker_enable_fallback_allocator() {
|
2017-02-09 19:54:44 +01:00
|
|
|
if (fallback_tid != 0) {
|
2017-03-07 02:46:47 +01:00
|
|
|
__libc_fatal("attempted to use currently-in-use fallback allocator");
|
2017-02-09 19:54:44 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
fallback_tid = gettid();
|
|
|
|
}
|
|
|
|
|
2017-03-07 02:46:47 +01:00
|
|
|
extern "C" void __linker_disable_fallback_allocator() {
|
|
|
|
if (fallback_tid == 0) {
|
|
|
|
__libc_fatal("attempted to disable unused fallback allocator");
|
|
|
|
}
|
|
|
|
|
|
|
|
fallback_tid = 0;
|
|
|
|
}
|
|
|
|
|
2017-02-09 19:54:44 +01:00
|
|
|
static LinkerMemoryAllocator& get_fallback_allocator() {
|
|
|
|
static LinkerMemoryAllocator fallback_allocator;
|
|
|
|
return fallback_allocator;
|
|
|
|
}
|
|
|
|
|
|
|
|
static LinkerMemoryAllocator& get_allocator() {
|
|
|
|
if (__predict_false(fallback_tid) && __predict_false(gettid() == fallback_tid)) {
|
|
|
|
return get_fallback_allocator();
|
|
|
|
}
|
|
|
|
return g_linker_allocator;
|
|
|
|
}
|
2015-03-11 01:48:27 +01:00
|
|
|
|
|
|
|
void* malloc(size_t byte_count) {
|
2017-02-09 19:54:44 +01:00
|
|
|
return get_allocator().alloc(byte_count);
|
2015-03-11 01:48:27 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
void* calloc(size_t item_count, size_t item_size) {
|
2017-02-09 19:54:44 +01:00
|
|
|
return get_allocator().alloc(item_count*item_size);
|
2015-03-11 01:48:27 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
void* realloc(void* p, size_t byte_count) {
|
2017-02-09 19:54:44 +01:00
|
|
|
return get_allocator().realloc(p, byte_count);
|
2015-03-11 01:48:27 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
void free(void* ptr) {
|
2017-02-09 19:54:44 +01:00
|
|
|
get_allocator().free(ptr);
|
2015-03-11 01:48:27 +01:00
|
|
|
}
|
|
|
|
|