I am implementing a divide and conquer polynomial algorithm so I can benchmark it against an OpenCL implementation, but I can't get malloc to work. When I run the program, it allocates a bunch of stuff, checks some things, then sends the size/2 to the algorithm. Then when I hit the malloc line again it spits out this:

malloc.c:3096: sYSMALLOc: Assertion `(old_top == (((mbinptr) (((char *) &((av)->bins[((1) - 1) * 2])) - __builtin_offsetof (struct malloc_chunk, fd)))) && old_size == 0) || ((unsigned long) (old_size) >= (unsigned long)((((__builtin_offsetof (struct malloc_chunk, fd_nextsize))+((2 * (sizeof(size_t))) - 1)) & ~((2 * (sizeof(size_t))) - 1))) && ((old_top)->size & 0x1) && ((unsigned long)old_end & pagemask) == 0)' failed. Aborted

The line in question is:

int *mult(int size, int *a, int *b) {
    int *out,i, j, *tmp1, *tmp2, *tmp3, *tmpa1, *tmpa2, *tmpb1, *tmpb2,d, *res1, *res2;
    fprintf(stdout, "size: %d\n", size);

    out = (int *)malloc(sizeof(int) * size * 2);
}

I checked size with a fprintf, and it is a positive integer (usually 50 at that point). I tried calling malloc with a plain number as well and I still get the error. I'm just stumped at what's going on, and nothing from Google I have found so far is helpful.

Any ideas what's going on? I'm trying to figure out how to compile a newer GCC in case it's a compiler error, but I really doubt it.

link|improve this question

i suspect the problem is actually a line before that one. Perhaps a double free? – Mitch Wheat Jun 7 '10 at 5:21
3rd line in the program: int *mult(int size, int *a, int *b) { int *out,i, j, *tmp1, *tmp2, *tmp3, *tmpa1, *tmpa2, *tmpb1, *tmpb2,d, *res1, *res2; fprintf(stdout, "size: %d\n", size); out = (int *)malloc(sizeof(int) * size * 2); – Chris Jun 7 '10 at 5:22
feedback

5 Answers

up vote 23 down vote accepted

99.9% likely that you have corrupted memory (over- or under-flowed a buffer, wrote to a pointer after it was freed, called free twice on the same pointer, etc.)

Run your code under Valgrind to see where your program did something incorrect.

link|improve this answer
fixed. Valgrind definately helped. I transcribed my old matlab code wrong and had a for loop that iterated over j, then inside it did j++ which most overwrote the array it was writing on and somehow caused malloc to fail. thanks for the help! – Chris Jun 7 '10 at 5:52
feedback

You are probably overrunning beyond the allocated mem somewhere. then the underlying sw doesn't pick up on it until you call malloc

There may be a guard value clobbered that is being caught by malloc.

edit...added this for bounds checking help

http://www.lrde.epita.fr/~akim/ccmp/doc/bounds-checking.html

link|improve this answer
feedback

I've been dealing with this assertion for some days now. It only happens when I compile my program in debug. In my case, the assertion happens after a fixed number of calls to malloc() for various allocation sizes i.e. the assertion can be reproduced 100% and identically.

As a test, I incremented every allocation size with a constant value of 80, like this:

ad = malloc(size);

... became ...

ad = malloc(size + 80);

Interestingly, the assertion now pops up at another point, but it is still 100% reproducible.

I believe it's a bug in the assertion itself. Looking at it, the assertion is so utterly complex it wouldn't surprise me it's wrong. Why didn't they split it up anyway?

Cheers

link|improve this answer
I realize its a bit late, but as samuel klatchko pointed out its probably a buffer overrun. What happens is you overrun some buffer and rewrite part of the program memory so that when you use/access that part thats been corrupted you get your segfault or malloc exception. Use Valgrind to find it – Chris Dec 6 '10 at 6:41
feedback

We got this error because we forgot to multiply by sizeof(int). Note the argument to malloc(..) is a number of bytes, not number of machine words or whatever.

link|improve this answer
feedback

I was porting one application from Visual C to gcc over Linux and I had the same problem with "malloc.c:3096: sYSMALLOc: Assertion `" using gcc on UBUNTU 11.

I moved the same code to a Suse distribution (on other computer ) and I don't have any problem.

I suspect that the problems are not in our programs but in the own libc.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.