libcoap 4.3.4-develop-9f1418e
coap_mem.h
Go to the documentation of this file.
1/*
2 * coap_mem.h -- CoAP memory handling
3 *
4 * Copyright (C) 2010-2011,2014-2015 Olaf Bergmann <bergmann@tzi.org>
5 *
6 * SPDX-License-Identifier: BSD-2-Clause
7 *
8 * This file is part of the CoAP library libcoap. Please see README for terms
9 * of use.
10 */
11
17#ifndef COAP_MEM_H_
18#define COAP_MEM_H_
19
20#include "coap3/coap_oscore.h"
21#include <stdlib.h>
22
23#ifndef WITH_LWIP
30#endif /* WITH_LWIP */
31
37typedef enum {
69
70#ifndef WITH_LWIP
71
82void *coap_malloc_type(coap_memory_tag_t type, size_t size);
83
98void *coap_realloc_type(coap_memory_tag_t type, void *p, size_t size);
99
109
118
123coap_malloc(size_t size) {
124 return coap_malloc_type(COAP_STRING, size);
125}
126
131coap_free(void *object) {
133}
134
135#endif /* not WITH_LWIP */
136
137#ifdef WITH_LWIP
138
139#include <lwip/memp.h>
140
141/* no initialization needed with lwip (or, more precisely: lwip must be
142 * completely initialized anyway by the time coap gets active) */
144coap_memory_init(void) {}
145
146#if MEMP_STATS
148coap_malloc_error(uint16_t *err) {
149 (*err)++;
150 return NULL;
151}
152#endif /* MEMP_STATS */
153/* It would be nice to check that size equals the size given at the memp
154 * declaration, but i currently don't see a standard way to check that without
155 * sourcing the custom memp pools and becoming dependent of its syntax
156 */
157#if MEMP_STATS
158#define coap_malloc_type(type, asize) \
159 (((asize) <= memp_pools[MEMP_ ## type]->size) ? \
160 memp_malloc(MEMP_ ## type) : coap_malloc_error(&memp_pools[MEMP_ ## type]->stats->err))
161#else /* ! MEMP_STATS */
162#define coap_malloc_type(type, asize) \
163 (((asize) <= memp_pools[MEMP_ ## type]->size) ? \
164 memp_malloc(MEMP_ ## type) : NULL)
165#endif /* ! MEMP_STATS */
166#define coap_free_type(type, p) memp_free(MEMP_ ## type, p)
167
168/* As these are fixed size, return value if already defined */
169#define coap_realloc_type(type, p, asize) \
170 ((p) ? ((asize) <= memp_pools[MEMP_ ## type]->size) ? (p) : NULL : coap_malloc_type(type, asize))
171
172/* Those are just here to make uri.c happy where string allocation has not been
173 * made conditional.
174 */
176coap_malloc(size_t size) {
177 (void)size;
178 LWIP_ASSERT("coap_malloc must not be used in lwIP", 0);
179}
180
182coap_free(void *pointer) {
183 (void)pointer;
184 LWIP_ASSERT("coap_free must not be used in lwIP", 0);
185}
186
187#define coap_dump_memory_type_counts(l) coap_lwip_dump_memory_pools(l)
188
189#endif /* WITH_LWIP */
190
191#endif /* COAP_MEM_H_ */
COAP_STATIC_INLINE void coap_free(void *object)
Wrapper function to coap_free_type() for backwards compatibility.
Definition: coap_mem.h:131
COAP_STATIC_INLINE void * coap_malloc(size_t size)
Wrapper function to coap_malloc_type() for backwards compatibility.
Definition: coap_mem.h:123
void coap_dump_memory_type_counts(coap_log_t log_level)
Dumps the current usage of malloc'd memory types.
Definition: coap_mem.c:602
void coap_memory_init(void)
Initializes libcoap's memory management.
coap_memory_tag_t
Type specifiers for coap_malloc_type().
Definition: coap_mem.h:37
@ COAP_DTLS_SESSION
Definition: coap_mem.h:49
@ COAP_SESSION
Definition: coap_mem.h:50
@ COAP_CACHE_KEY
Definition: coap_mem.h:52
@ COAP_DIGEST_CTX
Definition: coap_mem.h:57
@ COAP_NODE
Definition: coap_mem.h:42
@ COAP_OSCORE_COM
Definition: coap_mem.h:60
@ COAP_DTLS_CONTEXT
Definition: coap_mem.h:59
@ COAP_OSCORE_EX
Definition: coap_mem.h:63
@ COAP_CACHE_ENTRY
Definition: coap_mem.h:53
@ COAP_RESOURCE
Definition: coap_mem.h:47
@ COAP_RESOURCEATTR
Definition: coap_mem.h:48
@ COAP_COSE
Definition: coap_mem.h:66
@ COAP_LG_XMIT
Definition: coap_mem.h:54
@ COAP_ATTRIBUTE_VALUE
Definition: coap_mem.h:40
@ COAP_ENDPOINT
Definition: coap_mem.h:44
@ COAP_CONTEXT
Definition: coap_mem.h:43
@ COAP_OPTLIST
Definition: coap_mem.h:51
@ COAP_PDU
Definition: coap_mem.h:45
@ COAP_LG_CRCV
Definition: coap_mem.h:55
@ COAP_OSCORE_BUF
Definition: coap_mem.h:65
@ COAP_MEM_TAG_LAST
Definition: coap_mem.h:67
@ COAP_OSCORE_SEN
Definition: coap_mem.h:61
@ COAP_OSCORE_REC
Definition: coap_mem.h:62
@ COAP_ATTRIBUTE_NAME
Definition: coap_mem.h:39
@ COAP_OSCORE_EP
Definition: coap_mem.h:64
@ COAP_LG_SRCV
Definition: coap_mem.h:56
@ COAP_PACKET
Definition: coap_mem.h:41
@ COAP_SUBSCRIPTION
Definition: coap_mem.h:58
@ COAP_STRING
Definition: coap_mem.h:38
@ COAP_PDU_BUF
Definition: coap_mem.h:46
void * coap_realloc_type(coap_memory_tag_t type, void *p, size_t size)
Reallocates a chunk p of bytes created by coap_malloc_type() or coap_realloc_type() and returns a poi...
void * coap_malloc_type(coap_memory_tag_t type, size_t size)
Allocates a chunk of size bytes and returns a pointer to the newly allocated memory.
void coap_free_type(coap_memory_tag_t type, void *p)
Releases the memory that was allocated by coap_malloc_type().
CoAP OSCORE support.
coap_log_t
Logging type.
Definition: coap_debug.h:50
#define COAP_STATIC_INLINE
Definition: libcoap.h:53