blob: c7f61de5e10b3be6f0ea1373bb8cdd4832d345ec [file] [log] [blame]
/*
* Copyright (c) 2021 Apple Inc. All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions
* are met:
* 1. Redistributions of source code must retain the above copyright
* notice, this list of conditions and the following disclaimer.
* 2. 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.
*
* THIS SOFTWARE IS PROVIDED BY APPLE INC. ``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 APPLE INC. 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.
*/
#include <unistd.h>
#include <stdlib.h>
#include "TestHarness.h"
#include "pas_probabilistic_guard_malloc_allocator.h"
#include "pas_heap.h"
#include "iso_heap.h"
#include "iso_heap_config.h"
#include "pas_heap_ref_kind.h"
using namespace std;
namespace {
void testPGMSingleAlloc() {
pas_heap_ref heapRef = ISO_HEAP_REF_INITIALIZER_WITH_ALIGNMENT(getpagesize() * 100, getpagesize());
pas_heap* heap = iso_heap_ref_get_heap(&heapRef);
pas_physical_memory_transaction transaction;
pas_physical_memory_transaction_construct(&transaction);
pas_heap_lock_lock();
size_t init_free_virt_mem = pas_probabilistic_guard_malloc_get_free_virtual_memory();
size_t init_free_wasted_mem = pas_probabilistic_guard_malloc_get_free_wasted_memory();
size_t alloc_size = 1024;
void * mem = pas_probabilistic_guard_malloc_allocate(alloc_size, heap, &iso_heap_config, &transaction);
CHECK(mem);
size_t updated_free_virt_mem = pas_probabilistic_guard_malloc_get_free_virtual_memory();
size_t updated_free_wasted_mem = pas_probabilistic_guard_malloc_get_free_wasted_memory();
CHECK_EQUAL(init_free_virt_mem - (3 * getpagesize()), updated_free_virt_mem);
CHECK_EQUAL(init_free_wasted_mem - (getpagesize() - alloc_size), updated_free_wasted_mem);
pas_probabilistic_guard_malloc_deallocate(mem);
updated_free_virt_mem = pas_probabilistic_guard_malloc_get_free_virtual_memory();
updated_free_wasted_mem = pas_probabilistic_guard_malloc_get_free_wasted_memory();
CHECK_EQUAL(init_free_virt_mem, updated_free_virt_mem);
CHECK_EQUAL(init_free_wasted_mem, updated_free_wasted_mem);
pas_heap_lock_unlock();
return;
}
void testPGMMultipleAlloc() {
pas_heap_ref heapRef = ISO_HEAP_REF_INITIALIZER_WITH_ALIGNMENT(getpagesize() * 100, getpagesize());
pas_heap* heap = iso_heap_ref_get_heap(&heapRef);
pas_physical_memory_transaction transaction;
pas_physical_memory_transaction_construct(&transaction);
pas_heap_lock_lock();
size_t init_free_virt_mem = pas_probabilistic_guard_malloc_get_free_virtual_memory();
size_t init_free_wasted_mem = pas_probabilistic_guard_malloc_get_free_wasted_memory();
size_t num_allocations = 100;
void* mem_storage[num_allocations];
for (size_t i = 0; i < num_allocations; i++ ) {
size_t alloc_size = random() % 100000;
mem_storage[i] = pas_probabilistic_guard_malloc_allocate(alloc_size, heap, &iso_heap_config, &transaction);
void * mem = mem_storage[i];
memset(mem, 0x42, alloc_size);
}
for (size_t i = 0; i < num_allocations; i++ ) {
pas_probabilistic_guard_malloc_deallocate(mem_storage[i]);
}
size_t updated_free_virt_mem = pas_probabilistic_guard_malloc_get_free_virtual_memory();
size_t updated_free_wasted_mem = pas_probabilistic_guard_malloc_get_free_wasted_memory();
CHECK_EQUAL(init_free_virt_mem, updated_free_virt_mem);
CHECK_EQUAL(init_free_wasted_mem, updated_free_wasted_mem);
pas_heap_lock_unlock();
}
void testPGMErrors() {
pas_heap_ref heapRef = ISO_HEAP_REF_INITIALIZER_WITH_ALIGNMENT(getpagesize() * 100, getpagesize());
pas_heap* heap = iso_heap_ref_get_heap(&heapRef);
pas_physical_memory_transaction transaction;
pas_physical_memory_transaction_construct(&transaction);
pas_heap_lock_lock();
void *mem = NULL;
// Test invalid alloc size
mem = pas_probabilistic_guard_malloc_allocate(0, heap, &iso_heap_config, &transaction);
CHECK(!mem);
// Test NULL heap
mem = pas_probabilistic_guard_malloc_allocate(1024, NULL, &iso_heap_config, &transaction);
CHECK(!mem);
// Test allocating more than virtual memory available
mem = pas_probabilistic_guard_malloc_allocate(1024 * 1024 * 1024 + 1, NULL, &iso_heap_config, &transaction);
CHECK(!mem);
// Test allocating when wasted memory is full
size_t num_allocations = 1000;
void* mem_storage[num_allocations];
for (size_t i = 0; i < num_allocations; i++ ) {
size_t alloc_size = 1; // A small alloc size wastes more memory
mem_storage[i] = pas_probabilistic_guard_malloc_allocate(alloc_size, heap, &iso_heap_config, &transaction);
}
mem = pas_probabilistic_guard_malloc_allocate(1, heap, &iso_heap_config, &transaction);
CHECK(!mem);
for (size_t i = 0; i < num_allocations; i++ ) {
pas_probabilistic_guard_malloc_deallocate(mem_storage[i]);
}
// Test deallocating invalid memory locations
pas_probabilistic_guard_malloc_deallocate(NULL);
pas_probabilistic_guard_malloc_deallocate((void *) -1);
pas_probabilistic_guard_malloc_deallocate((void *) 0x42);
// Test deallocating same memory location multiple times
mem = pas_probabilistic_guard_malloc_allocate(1, heap, &iso_heap_config, &transaction);
CHECK(mem);
pas_probabilistic_guard_malloc_deallocate(mem);
pas_probabilistic_guard_malloc_deallocate(mem);
pas_heap_lock_unlock();
}
} // anonymous namespace
void addPGMTests() {
ADD_TEST(testPGMSingleAlloc());
ADD_TEST(testPGMMultipleAlloc());
ADD_TEST(testPGMErrors());
}