1
0
Fork 0
mirror of https://github.com/warmcat/libwebsockets.git synced 2025-03-16 00:00:07 +01:00
libwebsockets/lib/core/alloc.c

157 lines
2.8 KiB
C
Raw Normal View History

#include "private-lib-core.h"
#if defined(LWS_HAVE_MALLOC_USABLE_SIZE)
#include <malloc.h>
/* the heap is processwide */
static size_t allocated;
#endif
#if defined(LWS_PLAT_OPTEE)
#define TEE_USER_MEM_HINT_NO_FILL_ZERO 0x80000000
2019-01-15 06:59:48 +08:00
#if defined (LWS_WITH_NETWORK)
/* normal TA apis */
void *__attribute__((weak))
TEE_Malloc(uint32_t size, uint32_t hint)
{
return NULL;
}
void *__attribute__((weak))
TEE_Realloc(void *buffer, uint32_t newSize)
{
return NULL;
}
void __attribute__((weak))
TEE_Free(void *buffer)
{
}
2019-01-15 06:59:48 +08:00
#else
/* in-OP-TEE core apis */
void *
TEE_Malloc(uint32_t size, uint32_t hint)
{
return malloc(size);
}
void *
TEE_Realloc(void *buffer, uint32_t newSize)
{
return realloc(buffer, newSize);
}
void
TEE_Free(void *buffer)
{
free(buffer);
}
#endif
2017-10-04 07:10:39 +08:00
void *lws_realloc(void *ptr, size_t size, const char *reason)
{
return TEE_Realloc(ptr, size);
}
2017-10-04 07:10:39 +08:00
void *lws_malloc(size_t size, const char *reason)
{
return TEE_Malloc(size, TEE_USER_MEM_HINT_NO_FILL_ZERO);
}
void lws_free(void *p)
{
TEE_Free(p);
}
2017-10-04 07:10:39 +08:00
void *lws_zalloc(size_t size, const char *reason)
{
void *ptr = TEE_Malloc(size, TEE_USER_MEM_HINT_NO_FILL_ZERO);
if (ptr)
memset(ptr, 0, size);
return ptr;
}
2017-10-04 07:10:39 +08:00
void lws_set_allocator(void *(*cb)(void *ptr, size_t size, const char *reason))
{
(void)cb;
}
#else
static void *
_realloc(void *ptr, size_t size, const char *reason)
{
void *v;
2017-10-04 07:10:39 +08:00
if (size) {
#if defined(LWS_PLAT_FREERTOS)
lwsl_notice("%s: size %lu: %s (free heap %d)\n", __func__,
2019-06-05 05:04:17 +01:00
#if defined(LWS_AMAZON_RTOS)
(unsigned long)size, reason, (unsigned int)xPortGetFreeHeapSize() - (int)size);
#else
(unsigned long)size, reason, (unsigned int)esp_get_free_heap_size() - (int)size);
2019-06-05 05:04:17 +01:00
#endif
#else
2017-10-28 07:42:44 +08:00
lwsl_debug("%s: size %lu: %s\n", __func__,
(unsigned long)size, reason);
#endif
#if defined(LWS_HAVE_MALLOC_USABLE_SIZE)
if (ptr)
allocated -= malloc_usable_size(ptr);
#endif
#if defined(LWS_PLAT_OPTEE)
v = (void *)TEE_Realloc(ptr, size);
#else
v = (void *)realloc(ptr, size);
#endif
#if defined(LWS_HAVE_MALLOC_USABLE_SIZE)
allocated += malloc_usable_size(v);
#endif
return v;
2017-10-04 07:10:39 +08:00
}
if (ptr) {
#if defined(LWS_HAVE_MALLOC_USABLE_SIZE)
allocated -= malloc_usable_size(ptr);
#endif
free(ptr);
}
2017-10-04 07:10:39 +08:00
return NULL;
}
2017-10-04 07:10:39 +08:00
void *(*_lws_realloc)(void *ptr, size_t size, const char *reason) = _realloc;
2017-10-04 07:10:39 +08:00
void *lws_realloc(void *ptr, size_t size, const char *reason)
{
2017-10-04 07:10:39 +08:00
return _lws_realloc(ptr, size, reason);
}
2017-10-04 07:10:39 +08:00
void *lws_zalloc(size_t size, const char *reason)
{
2017-10-04 07:10:39 +08:00
void *ptr = _lws_realloc(NULL, size, reason);
if (ptr)
memset(ptr, 0, size);
return ptr;
}
2017-10-04 07:10:39 +08:00
void lws_set_allocator(void *(*cb)(void *ptr, size_t size, const char *reason))
{
_lws_realloc = cb;
}
size_t lws_get_allocated_heap(void)
{
#if defined(LWS_HAVE_MALLOC_USABLE_SIZE)
return allocated;
#else
return 0;
#endif
}
#endif