| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432 |
- /**
- * @file
- * Dynamic pool memory manager
- *
- * lwIP has dedicated pools for many structures (netconn, protocol control blocks,
- * packet buffers, ...). All these pools are managed here.
- */
- /*
- * Copyright (c) 2001-2004 Swedish Institute of Computer Science.
- * 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.
- * 3. The name of the author may not be used to endorse or promote products
- * derived from this software without specific prior written permission.
- *
- * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``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 THE AUTHOR 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.
- *
- * This file is part of the lwIP TCP/IP stack.
- *
- * Author: Adam Dunkels <adam@sics.se>
- *
- */
- #include "lwip/opt.h"
- #include "lwip/memp.h"
- #include "lwip/pbuf.h"
- #include "lwip/udp.h"
- #include "lwip/raw.h"
- #include "lwip/igmp.h"
- #include "lwip/api.h"
- #include "lwip/priv/api_msg.h"
- #include "lwip/sockets.h"
- #include "lwip/sys.h"
- #include "lwip/timers.h"
- #include "lwip/stats.h"
- #include "netif/etharp.h"
- #include "lwip/ip_frag.h"
- #include "lwip/dns.h"
- #include "lwip/netdb.h"
- #include "netif/ppp/ppp.h"
- #include "netif/ppp/pppos.h"
- #include "netif/ppp/pppoe.h"
- #include "netif/ppp/pppol2tp.h"
- #include "lwip/nd6.h"
- #include "lwip/ip6_frag.h"
- #include "lwip/mld6.h"
- #include "lwip/tcp.h"
- #include "lwip/tcpip.h"
- #include "lwip/priv/tcp_priv.h"
- #include "lwip/priv/tcpip_priv.h"
- #include "lwip/netifapi.h"
- #include <string.h>
- #define LWIP_MEMPOOL(name,num,size,desc) LWIP_MEMPOOL_DECLARE(name,num,size,desc)
- #include "lwip/priv/memp_std.h"
- const struct memp_desc* const memp_pools[MEMP_MAX] = {
- #define LWIP_MEMPOOL(name,num,size,desc) &memp_ ## name,
- #include "lwip/priv/memp_std.h"
- };
- #if !MEMP_MEM_MALLOC /* don't build if not configured for use in lwipopts.h */
- #if MEMP_SANITY_CHECK
- /**
- * Check that memp-lists don't form a circle, using "Floyd's cycle-finding algorithm".
- */
- static int
- memp_sanity(const struct memp_desc *desc)
- {
- struct memp *t, *h;
- t = *desc->tab;
- if (t != NULL) {
- for (h = t->next; (t != NULL) && (h != NULL); t = t->next,
- h = ((h->next != NULL) ? h->next->next : NULL)) {
- if (t == h) {
- return 0;
- }
- }
- }
- return 1;
- }
- #endif /* MEMP_SANITY_CHECK*/
- #if MEMP_OVERFLOW_CHECK
- /**
- * Check if a memp element was victim of an overflow
- * (e.g. the restricted area after it has been altered)
- *
- * @param p the memp element to check
- * @param memp_type the pool p comes from
- */
- static void
- memp_overflow_check_element_overflow(struct memp *p, const struct memp_desc *desc)
- {
- u16_t k;
- u8_t *m;
- #if MEMP_SANITY_REGION_AFTER_ALIGNED > 0
- m = (u8_t*)p + MEMP_SIZE + desc->size;
- for (k = 0; k < MEMP_SANITY_REGION_AFTER_ALIGNED; k++) {
- if (m[k] != 0xcd) {
- char errstr[128] = "detected memp overflow in pool ";
- strcat(errstr, desc->desc);
- LWIP_ASSERT(errstr, 0);
- }
- }
- #endif
- }
- /**
- * Check if a memp element was victim of an underflow
- * (e.g. the restricted area before it has been altered)
- *
- * @param p the memp element to check
- * @param memp_type the pool p comes from
- */
- static void
- memp_overflow_check_element_underflow(struct memp *p, const struct memp_desc *desc)
- {
- u16_t k;
- u8_t *m;
- #if MEMP_SANITY_REGION_BEFORE_ALIGNED > 0
- m = (u8_t*)p + MEMP_SIZE - MEMP_SANITY_REGION_BEFORE_ALIGNED;
- for (k = 0; k < MEMP_SANITY_REGION_BEFORE_ALIGNED; k++) {
- if (m[k] != 0xcd) {
- char errstr[128] = "detected memp underflow in pool ";
- strcat(errstr, desc->desc);
- LWIP_ASSERT(errstr, 0);
- }
- }
- #endif
- }
- /**
- * Do an overflow check for all elements in every pool.
- *
- * @see memp_overflow_check_element for a description of the check
- */
- static void
- memp_overflow_check_all(void)
- {
- u16_t i, j;
- struct memp *p;
- for (i = 0; i < MEMP_MAX; ++i) {
- p = (struct memp *)(size_t)(memp_pools[i]->base);
- for (j = 0; j < memp_pools[i]->num; ++j) {
- memp_overflow_check_element_overflow(p, memp_pools[i]);
- memp_overflow_check_element_underflow(p, memp_pools[i]);
- p = (struct memp*)(size_t)((u8_t*)p + MEMP_SIZE + memp_pools[i]->size + MEMP_SANITY_REGION_AFTER_ALIGNED);
- }
- }
- }
- /**
- * Initialize the restricted areas of all memp elements in every pool.
- */
- static void
- memp_overflow_init(const struct memp_desc *desc)
- {
- u16_t i;
- struct memp *p;
- u8_t *m;
- p = (struct memp *)(size_t)(desc->base);
- for (i = 0; i < desc->num; ++i) {
- #if MEMP_SANITY_REGION_BEFORE_ALIGNED > 0
- m = (u8_t*)p + MEMP_SIZE - MEMP_SANITY_REGION_BEFORE_ALIGNED;
- memset(m, 0xcd, MEMP_SANITY_REGION_BEFORE_ALIGNED);
- #endif
- #if MEMP_SANITY_REGION_AFTER_ALIGNED > 0
- m = (u8_t*)p + MEMP_SIZE + desc->size;
- memset(m, 0xcd, MEMP_SANITY_REGION_AFTER_ALIGNED);
- #endif
- p = (struct memp*)(size_t)((u8_t*)p + MEMP_SIZE + desc->size + MEMP_SANITY_REGION_AFTER_ALIGNED);
- }
- }
- #endif /* MEMP_OVERFLOW_CHECK */
- void
- memp_init_pool(const struct memp_desc *desc)
- {
- int i;
- struct memp *memp;
-
- *desc->tab = NULL;
- memp = (struct memp*)LWIP_MEM_ALIGN(desc->base);
- /* create a linked list of memp elements */
- for (i = 0; i < desc->num; ++i) {
- memp->next = *desc->tab;
- *desc->tab = memp;
- memp = (struct memp *)(void *)((u8_t *)memp + MEMP_SIZE + desc->size
- #if MEMP_OVERFLOW_CHECK
- + MEMP_SANITY_REGION_AFTER_ALIGNED
- #endif
- );
- }
- #if MEMP_OVERFLOW_CHECK
- memp_overflow_init(desc);
- #endif /* MEMP_OVERFLOW_CHECK */
- }
- /**
- * Initialize this module.
- *
- * Carves out memp_memory into linked lists for each pool-type.
- */
- void
- memp_init(void)
- {
- u16_t i;
- for (i = 0; i < MEMP_MAX; ++i) {
- MEMP_STATS_AVAIL(used, i, 0);
- MEMP_STATS_AVAIL(max, i, 0);
- MEMP_STATS_AVAIL(err, i, 0);
- MEMP_STATS_AVAIL(avail, i, memp_pools[i]->num);
- }
- /* for every pool: */
- for (i = 0; i < MEMP_MAX; ++i) {
- memp_init_pool(memp_pools[i]);
- }
- #if MEMP_OVERFLOW_CHECK
- /* check everything a first time to see if it worked */
- memp_overflow_check_all();
- #endif /* MEMP_OVERFLOW_CHECK */
- }
- void *
- #if !MEMP_OVERFLOW_CHECK
- memp_malloc_pool(const struct memp_desc *desc)
- #else
- memp_malloc_pool_fn(const struct memp_desc *desc, const char* file, const int line)
- #endif
- {
- struct memp *memp;
- SYS_ARCH_DECL_PROTECT(old_level);
- SYS_ARCH_PROTECT(old_level);
- memp = *desc->tab;
- #if MEMP_OVERFLOW_CHECK == 1
- memp_overflow_check_element_overflow(memp, desc);
- memp_overflow_check_element_underflow(memp, desc);
- #endif /* MEMP_OVERFLOW_CHECK */
- if (memp != NULL) {
- *desc->tab = memp->next;
- #if MEMP_OVERFLOW_CHECK
- memp->next = NULL;
- memp->file = file;
- memp->line = line;
- #endif /* MEMP_OVERFLOW_CHECK */
- LWIP_ASSERT("memp_malloc: memp properly aligned",
- ((mem_ptr_t)memp % MEM_ALIGNMENT) == 0);
- memp = (struct memp*)(void *)((u8_t*)memp + MEMP_SIZE);
- }
- SYS_ARCH_UNPROTECT(old_level);
- return memp;
- }
- /**
- * Get an element from a specific pool.
- *
- * @param type the pool to get an element from
- *
- * the debug version has two more parameters:
- * @param file file name calling this function
- * @param line number of line where this function is called
- *
- * @return a pointer to the allocated memory or a NULL pointer on error
- */
- void *
- #if !MEMP_OVERFLOW_CHECK
- memp_malloc(memp_t type)
- #else
- memp_malloc_fn(memp_t type, const char* file, const int line)
- #endif
- {
- void *memp;
- SYS_ARCH_DECL_PROTECT(old_level);
- LWIP_ERROR("memp_malloc: type < MEMP_MAX", (type < MEMP_MAX), return NULL;);
- SYS_ARCH_PROTECT(old_level);
- #if MEMP_OVERFLOW_CHECK >= 2
- memp_overflow_check_all();
- #endif /* MEMP_OVERFLOW_CHECK >= 2 */
- #if !MEMP_OVERFLOW_CHECK
- memp = memp_malloc_pool(memp_pools[type]);
- #else
- memp = memp_malloc_pool_fn(memp_pools[type], file, line);
- #endif
- if (memp != NULL) {
- MEMP_STATS_INC(used, type);
- if(MEMP_STATS_GET(used, type) > MEMP_STATS_GET(max, type)) {
- MEMP_STATS_AVAIL(max, type, MEMP_STATS_GET(used, type));
- }
- } else {
- LWIP_DEBUGF(MEMP_DEBUG | LWIP_DBG_LEVEL_SERIOUS, ("memp_malloc: out of memory in pool %s\n", memp_pools[type]->desc));
- MEMP_STATS_INC(err, type);
- }
- SYS_ARCH_UNPROTECT(old_level);
- return memp;
- }
- static void
- #ifdef LWIP_HOOK_MEMP_AVAILABLE
- do_memp_free_pool(const struct memp_desc* desc, void *mem, struct memp **old_first)
- #else
- do_memp_free_pool(const struct memp_desc* desc, void *mem)
- #endif
- {
- struct memp *memp;
- SYS_ARCH_DECL_PROTECT(old_level);
- LWIP_ASSERT("memp_free: mem properly aligned",
- ((mem_ptr_t)mem % MEM_ALIGNMENT) == 0);
- memp = (struct memp *)(void *)((u8_t*)mem - MEMP_SIZE);
- SYS_ARCH_PROTECT(old_level);
- #if MEMP_OVERFLOW_CHECK == 1
- memp_overflow_check_element_overflow(memp, desc);
- memp_overflow_check_element_underflow(memp, desc);
- #endif /* MEMP_OVERFLOW_CHECK */
- memp->next = *desc->tab;
- #ifdef LWIP_HOOK_MEMP_AVAILABLE
- if (old_first)
- *old_first = *desc->tab;
- #endif
- *desc->tab = memp;
- #if MEMP_SANITY_CHECK
- LWIP_ASSERT("memp sanity", memp_sanity(desc));
- #endif /* MEMP_SANITY_CHECK */
- SYS_ARCH_UNPROTECT(old_level);
- }
- void
- memp_free_pool(const struct memp_desc* desc, void *mem)
- {
- if ((desc == NULL) || (mem == NULL)) {
- return;
- }
- #ifdef LWIP_HOOK_MEMP_AVAILABLE
- do_memp_free_pool(desc, mem, NULL);
- #else
- do_memp_free_pool(desc, mem);
- #endif
- }
- /**
- * Put an element back into its pool.
- *
- * @param type the pool where to put mem
- * @param mem the memp element to free
- */
- void
- memp_free(memp_t type, void *mem)
- {
- #ifdef LWIP_HOOK_MEMP_AVAILABLE
- struct memp *old_first;
- #endif
- SYS_ARCH_DECL_PROTECT(old_level);
- LWIP_ERROR("memp_free: type < MEMP_MAX", (type < MEMP_MAX), return;);
- SYS_ARCH_PROTECT(old_level);
- #if MEMP_OVERFLOW_CHECK >= 2
- memp_overflow_check_all();
- #endif /* MEMP_OVERFLOW_CHECK >= 2 */
- MEMP_STATS_DEC(used, type);
- #ifdef LWIP_HOOK_MEMP_AVAILABLE
- do_memp_free_pool(memp_pools[type], mem, &old_first);
- #else
- do_memp_free_pool(memp_pools[type], mem);
- #endif
- SYS_ARCH_UNPROTECT(old_level);
- #ifdef LWIP_HOOK_MEMP_AVAILABLE
- if (old_first == NULL) {
- LWIP_HOOK_MEMP_AVAILABLE(type);
- }
- #endif
- }
- #endif /* MEMP_MEM_MALLOC */
|