blob: 5438016ad53d0fbac429a7bb967aa394413a098b [file] [log] [blame]
/*
* Copyright (c) 2022 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.
*/
#include <lib/core/CHIPConfig.h>
#include <lib/support/CHIPMem.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_PLATFORM
#include "FreeRTOS.h"
#include "task.h"
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)
{
if (!memoryInitialized)
{
fprintf(stderr, "ABORT: chip::Platform::%s() called before chip::Platform::MemoryInit()\n", func);
abort();
}
}
#define VERIFY_POINTER(p) \
do \
if (((p) != nullptr) && (MemoryDebugCheckPointer((p)) == false)) \
{ \
fprintf(stderr, "ABORT: chip::Platform::%s() found corruption on %p\n", __func__, (p)); \
abort(); \
} \
while (0)
#endif
CHIP_ERROR MemoryAllocatorInit(void * buf, size_t bufSize)
{
#ifndef NDEBUG
if (memoryInitialized++ > 0)
{
fprintf(stderr, "ABORT: chip::Platform::MemoryInit() called twice.\n");
abort();
}
#endif
return CHIP_NO_ERROR;
}
void MemoryAllocatorShutdown()
{
#ifndef NDEBUG
if (--memoryInitialized < 0)
{
fprintf(stderr, "ABORT: chip::Platform::MemoryShutdown() called twice.\n");
abort();
}
#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 pvPortCallocPsram(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