[En-Nut-Discussion] NutHeapAlloc Error?
Timothy M. De Baillie
debaillie at ciholas.com
Tue Oct 14 17:24:18 CEST 2008
Nathan Moore wrote:
> On Mon, Oct 13, 2008 at 3:06 PM, Timothy M. De Baillie <
> debaillie at ciholas.com> wrote:
>
>
>> I'm trying to trace down a bug on a system that has REALLY low memory
>> and has lots and lots of mallocs. So this may not really be a problem,
>> but I thought I would see what others thought.
>>
>> in the OS, os/heap.c,
>>
>> ~~~ OS CUT ~~~
>> void *NutHeapAlloc(size_t size)
>> {
>>
>> ......
>>
>> if (size >= available) {
>> #ifdef NUTDEBUG
>> if (__heap_trf)
>> fputs("MEMOVR\n", __heap_trs);
>> #endif
>> return 0;
>> }
>>
>> /*
>> * We need additional space in front of the allocated memory
>> * block to store its size. If this is still less than the
>> * space required by a free node, increase it.
>> */
>> if ((size += MEMOVHD) < sizeof(HEAPNODE))
>> size = sizeof(HEAPNODE);
>> ~~~ OS CUT ~~~
>>
>> Should the check "if(size >= available)" not happen after the last two
>> lines?
>>
>> From what I read, if you request 11 bytes and had exactly 11 bytes
>> available, then you would cause a memory wrap of some sort.
>>
>>
>
> I think it would result in similar behavior as if you had 100 bytes free in
> 10 byte chunks and requested 20 bytes.
> You'd check each of the chunks, none of them would be big enough, and in the
> end (when (0== (node = node->next))
> you'd break out of the loop.
> It would behave correctly, as far as I can tell, but since the available
> test is done anyway it might as well be done after
> the size adjustments.
>
> Nathan
> _______________________________________________
> http://lists.egnite.de/mailman/listinfo/en-nut-discussion
>
>
Ok, so we made this change and we are still having malloc issues.
However, we have traced it down to one specific line in os/heap.c:
*fpp = fit->hn_next;
in the else of:
if (fit->hn_size > size + sizeof(HEAPNODE) + ALLOC_THRESHOLD) {
The system "locks up" or jumps to abort if you attempt to set *fpp to
NULL. So this happens if your "fit" is the last heap in the heap list
and you can't split it. I don't understand how setting a pointer to NULL
causes the ARM to abort, but it does.
Why would setting *fpp to NULL cause a lockup and how do we resolve this
bug?
Thanks in advanced,
Tim
More information about the En-Nut-Discussion
mailing list