X-Git-Url: http://bilbo.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/f285c709071d6f01cc15e89c7fb974f6a7d5027e..6e80e277a2e65be7caefd0e04e4954c4fc26c2d8:/src/xbt/mmalloc/mfree.c diff --git a/src/xbt/mmalloc/mfree.c b/src/xbt/mmalloc/mfree.c index 48638782e1..8572826534 100644 --- a/src/xbt/mmalloc/mfree.c +++ b/src/xbt/mmalloc/mfree.c @@ -1,6 +1,6 @@ /* Free a block of memory allocated by `mmalloc'. */ -/* Copyright (c) 2010-2022. The SimGrid Team. All rights reserved. */ +/* Copyright (c) 2010-2023. The SimGrid Team. All rights reserved. */ /* This program is free software; you can redistribute it and/or modify it * under the terms of the license (GNU LGPL) which comes with this package. */ @@ -11,7 +11,7 @@ Heavily modified Mar 1992 by Fred Fish. (fnf@cygnus.com) */ #include "mmprivate.h" -#include "mc/mc.h" +#include "src/mc/mc.h" /* Return memory to the heap. Like `mfree' but don't call a mfree_hook if there is one. */ @@ -21,7 +21,7 @@ void mfree(struct mdesc *mdp, void *ptr) { size_t frag_nb; size_t i; - int it; + size_t it; if (ptr == NULL) return; @@ -29,6 +29,11 @@ void mfree(struct mdesc *mdp, void *ptr) size_t block = BLOCK(ptr); if ((char *) ptr < (char *) mdp->heapbase || block > mdp->heapsize) { + if ((char*)ptr <= (char*)mmalloc_preinit_buffer + mmalloc_preinit_buffer_size && + (char*)ptr >= (char*)mmalloc_preinit_buffer) + /* This points to the static buffer for fake mallocs done by dlsym before mmalloc initialization, ignore it */ + return; + fprintf(stderr,"Ouch, this pointer is not mine, I refuse to free it. Give me valid pointers, or give me death!!\n"); abort(); } @@ -37,13 +42,11 @@ void mfree(struct mdesc *mdp, void *ptr) switch (type) { case MMALLOC_TYPE_HEAPINFO: - UNLOCK(mdp); fprintf(stderr, "Asked to free a fragment in a heapinfo block. I'm confused.\n"); abort(); break; case MMALLOC_TYPE_FREE: /* Already free */ - UNLOCK(mdp); fprintf(stderr, "Asked to free a fragment in a block that is already free. I'm puzzled.\n"); abort(); break; @@ -84,7 +87,7 @@ void mfree(struct mdesc *mdp, void *ptr) for (it=0; itheapinfo[block].busy_block.size; it++) { if (mdp->heapinfo[block+it].type < 0) { fprintf(stderr, - "Internal Error: Asked to free a block already marked as free (block=%zu it=%d type=%d). " + "Internal Error: Asked to free a block already marked as free (block=%zu it=%zu type=%d). " "Please report this bug.\n", block, it, mdp->heapinfo[block].type); abort(); @@ -105,7 +108,7 @@ void mfree(struct mdesc *mdp, void *ptr) for (it=0; itheapinfo[block].free_block.size; it++) { if (mdp->heapinfo[block+it].type <0) { fprintf(stderr, - "Internal error: Asked to free a block already marked as free (block=%zu it=%d/%zu type=%d). " + "Internal error: Asked to free a block already marked as free (block=%zu it=%zu/%zu type=%d). " "Please report this bug.\n", block, it, mdp->heapinfo[block].free_block.size, mdp->heapinfo[block].type); abort(); @@ -167,7 +170,6 @@ void mfree(struct mdesc *mdp, void *ptr) frag_nb = RESIDUAL(ptr, BLOCKSIZE) >> type; if( mdp->heapinfo[block].busy_frag.frag_size[frag_nb] == -1){ - UNLOCK(mdp); fprintf(stderr, "Asked to free a fragment that is already free. I'm puzzled\n"); abort(); }