Why program dies using malloc and free (same address)

286 Views Asked by At

I face critical problem related malloc and free.

'A' thread allocate memory using malloc. and 'A' thread finish.

'B' thread free memory from allocated 'A' thread but some times program is dead.

so i printed memory address but the same malloc address and free address.

how to debug this situation?

please advice to me.

the example code like this

and dlmalloc metadata also same between malloc and free. and if didn't use thread, also occrued same probleam.

umm... allocated memory content modified secure-world operating system.

Polling function
{
    poll((struct pollfd *)&Event, 2 10000);
    read(fd, &index, sizeof(uint));
    pthread_create(&thread[index], NULL, SomeFunction, (void *)index);
    pthread_detach(thread[index]);
}


void SomeFunction(uint *arg) 
{
    uint command;
    command = (uint)arg;

    switch(command) {
        case malloc:
            MallocFunction();
        break;
        case free:
            FreeFunction();
        break;
    }
    Ioctl(fd, .....);
}


MallocFunction() 
{
    uint mem;

    mem = malloc(uint);
}

FreeFunction()
{
    uint mem;

    GetMallocMemory(&mem);

    free((char *)mem);
}
2

There are 2 best solutions below

0
On

In multithreading, you cannot make guarantees on the order of execution of threads unless they are synchronized. In your case, there are chances of thread de-allocating the memory before another thread allocates it.

The code snippet will help further examining the issue.

1
On

First of all, in your MallocFunction you are assigning an address to an integer variable. Depending on the address length of the machine your code was compiled for, the address might be cut off (32 bit versus 64 bit).

Secondly, you are using a local variable (mem) to save the allocated address. This variable will lose it's scope after the function finishes. I'm curious what your GetMallocMemory function looks like.

Try to fix these problems first.