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
|
|
|
*/
|
|
|
|
|
2019-01-24 22:47:13 +01:00
|
|
|
#include "private/bionic_allocator.h"
|
2015-03-11 01:48:27 +01:00
|
|
|
|
|
|
|
#include <stdlib.h>
|
2017-02-09 19:54:44 +01:00
|
|
|
#include <sys/cdefs.h>
|
|
|
|
#include <unistd.h>
|
|
|
|
|
2018-01-24 23:45:58 +01:00
|
|
|
#include <atomic>
|
|
|
|
|
2017-04-25 02:48:32 +02:00
|
|
|
#include <async_safe/log.h>
|
2015-03-11 01:48:27 +01:00
|
|
|
|
2019-01-24 22:47:13 +01:00
|
|
|
static BionicAllocator g_bionic_allocator;
|
2018-01-24 23:45:58 +01:00
|
|
|
static std::atomic<pid_t> fallback_tid(0);
|
2017-02-09 19:54:44 +01:00
|
|
|
|
|
|
|
// Used by libdebuggerd_handler to switch allocators during a crash dump, in
|
|
|
|
// case the linker heap is corrupted. Do not use this function.
|
2018-01-24 23:45:58 +01:00
|
|
|
extern "C" bool __linker_enable_fallback_allocator() {
|
|
|
|
pid_t expected = 0;
|
|
|
|
return fallback_tid.compare_exchange_strong(expected, gettid());
|
2017-02-09 19:54:44 +01:00
|
|
|
}
|
|
|
|
|
2017-03-07 02:46:47 +01:00
|
|
|
extern "C" void __linker_disable_fallback_allocator() {
|
2018-01-24 23:45:58 +01:00
|
|
|
pid_t previous = fallback_tid.exchange(0);
|
|
|
|
if (previous == 0) {
|
2017-04-25 02:48:32 +02:00
|
|
|
async_safe_fatal("attempted to disable unused fallback allocator");
|
2018-01-24 23:45:58 +01:00
|
|
|
} else if (previous != gettid()) {
|
|
|
|
async_safe_fatal("attempted to disable fallback allocator in use by another thread (%d)",
|
|
|
|
previous);
|
2017-03-07 02:46:47 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-01-24 22:47:13 +01:00
|
|
|
static BionicAllocator& get_fallback_allocator() {
|
|
|
|
static BionicAllocator fallback_allocator;
|
2017-02-09 19:54:44 +01:00
|
|
|
return fallback_allocator;
|
|
|
|
}
|
|
|
|
|
2019-01-24 22:47:13 +01:00
|
|
|
static BionicAllocator& get_allocator() {
|
2017-02-09 19:54:44 +01:00
|
|
|
if (__predict_false(fallback_tid) && __predict_false(gettid() == fallback_tid)) {
|
|
|
|
return get_fallback_allocator();
|
|
|
|
}
|
2019-01-24 22:47:13 +01:00
|
|
|
return g_bionic_allocator;
|
2017-02-09 19:54:44 +01:00
|
|
|
}
|
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
|
|
|
}
|
|
|
|
|
2021-06-25 01:12:45 +02:00
|
|
|
void* memalign(size_t alignment, size_t byte_count) {
|
|
|
|
return get_allocator().memalign(alignment, byte_count);
|
|
|
|
}
|
|
|
|
|
2023-07-21 10:11:59 +02:00
|
|
|
void* aligned_alloc(size_t alignment, size_t byte_count) {
|
|
|
|
return get_allocator().memalign(alignment, 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
|
|
|
}
|
|
|
|
|
2018-09-18 21:52:42 +02:00
|
|
|
void* reallocarray(void* p, size_t item_count, size_t item_size) {
|
|
|
|
size_t byte_count;
|
|
|
|
if (__builtin_mul_overflow(item_count, item_size, &byte_count)) {
|
|
|
|
errno = ENOMEM;
|
|
|
|
return nullptr;
|
|
|
|
}
|
|
|
|
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
|
|
|
}
|