blob: 7ef04256d3d47a8090a179f9473523d27a04b78e [file] [log] [blame]
/*
*
* Copyright (c) 2020-2021 Project CHIP Authors
* All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
/**
* @file
* This file implements heap memory allocation APIs for CHIP. These functions are platform
* specific and might be C Standard Library heap functions re-direction in most of cases.
*
*/
#include <lib/core/CHIPConfig.h>
#include <lib/support/CHIPMem.h>
#include <lib/support/VerificationMacrosNoLogging.h>
#include <stdlib.h>
#ifndef NDEBUG
#include <atomic>
#include <cstdio>
#endif
#if CHIP_CONFIG_MEMORY_DEBUG_DMALLOC
#include <dmalloc.h>
#include <lib/support/SafeInt.h>
#endif // CHIP_CONFIG_MEMORY_DEBUG_DMALLOC
#if CHIP_CONFIG_MEMORY_MGMT_MALLOC
namespace chip {
namespace Platform {
#ifdef NDEBUG
#define VERIFY_INITIALIZED()
#define VERIFY_POINTER(p)
#else
#define VERIFY_INITIALIZED() VerifyInitialized(__func__)
static std::atomic_int memoryInitialized{ 0 };
static void VerifyInitialized(const char * func)
{
// Logging can use Memory::Alloc, so we can't use logging with our
// VerifyOrDie bits here.
VerifyOrDieWithoutLogging(memoryInitialized);
}
// Logging can use Memory::Alloc, so we can't use logging with our
// VerifyOrDie bits here.
#define VERIFY_POINTER(p) VerifyOrDieWithoutLogging((p) == nullptr || MemoryDebugCheckPointer((p)))
#endif
CHIP_ERROR MemoryAllocatorInit(void * buf, size_t bufSize)
{
// Logging can use Memory::Alloc, so we can't use logging with our
// VerifyOrDie bits here.
#ifndef NDEBUG
VerifyOrDieWithoutLogging(memoryInitialized++ == 0);
#endif
return CHIP_NO_ERROR;
}
void MemoryAllocatorShutdown()
{
// Logging can use Memory::Alloc, so we can't use logging with our
// VerifyOrDie bits here.
#ifndef NDEBUG
VerifyOrDieWithoutLogging(--memoryInitialized == 0);
#endif
#if CHIP_CONFIG_MEMORY_DEBUG_DMALLOC
dmalloc_shutdown();
#endif // CHIP_CONFIG_MEMORY_DEBUG_DMALLOC
}
void * MemoryAlloc(size_t size)
{
VERIFY_INITIALIZED();
return malloc(size);
}
void * MemoryCalloc(size_t num, size_t size)
{
VERIFY_INITIALIZED();
return calloc(num, size);
}
void * MemoryRealloc(void * p, size_t size)
{
VERIFY_INITIALIZED();
VERIFY_POINTER(p);
return realloc(p, size);
}
void MemoryFree(void * p)
{
VERIFY_INITIALIZED();
VERIFY_POINTER(p);
free(p);
}
bool MemoryInternalCheckPointer(const void * p, size_t min_size)
{
#if CHIP_CONFIG_MEMORY_DEBUG_DMALLOC
return CanCastTo<int>(min_size) && (p != nullptr) &&
(dmalloc_verify_pnt(__FILE__, __LINE__, __func__, p, 1, static_cast<int>(min_size)) == MALLOC_VERIFY_NOERROR);
#else // CHIP_CONFIG_MEMORY_DEBUG_DMALLOC
return (p != nullptr);
#endif // CHIP_CONFIG_MEMORY_DEBUG_DMALLOC
}
} // namespace Platform
} // namespace chip
#endif // CHIP_CONFIG_MEMORY_MGMT_MALLOC