Alloca allocates memory from Stack rather then heap which is case in malloc. So, when I return from the routine the memory is freed. So, actually this solves my problem of freeing up of dynamically allocated memory . Freeing of memory allocated through malloc is a major headache and if somehow missed leads to all sorts memory problems.

So, my question is that in spite of the above features still alloca use is discouraged, why?

link|improve this question

4  
Just a quick note. Although this function can be found in most compilers it is not required by the ANSI-C standard and therefore could limit portability. Another thing is, that you must not! free() the pointer you get and it's freed automatically after you exit the function. – merkuro Jun 19 '09 at 16:38
@meruko Good point..certainly effects portablity – Vaibhav Jun 19 '09 at 16:42
3  
Also, a function with alloca() won't be inlined if declared as such. – Justicle Jun 23 '09 at 0:29
@Justicle, can you provide some explanation? I'm very curious what's behind this behaviour – migajek Aug 1 '10 at 20:35
@migajek, Igor's answer just added below shows why inlining is dangerous, and so if Justicle is correct it should be a good thing. – Bill Forster Aug 4 '10 at 23:47
show 1 more comment
feedback

14 Answers

up vote 42 down vote accepted

The answer is right there in the man page (at least on Linux):

RETURN VALUE The alloca() function returns a pointer to the beginning of the allocated space. If the allocation causes stack overflow, program behaviour is undefined.

Which isn't to say it should never be used. One of the OSS projects I work on uses it extensively, and as long as you're not abusing it (alloca'ing huge values), it's fine. Once you go past the "few hundred bytes" mark, it's time to use malloc and friends, instead. You may still get allocation failures, but at least you'll have some indication of the failure instead of just blowing out the stack.

link|improve this answer
5  
So there's really no problem with it that you wouldn't also have with declaring large arrays? – T.E.D. Jun 19 '09 at 16:32
4  
@sean I understand this, if I allocate too much memory ( as stack space is limited as compared to heap) this would lead to overflow; but same is the case with a local array as well. If I remain within my limits then I should be fine, right? Then also I still see anti alloa comments. – Vaibhav Jun 19 '09 at 16:32
5  
@singpolyma - The following crashes for me, so I'm not sure what you mean: int main(int argc, char *argv) { char byebye[1024 * 1024 * 10]; / 10MB array */; byebye[0] = 0; return 0; } – Sean Bright Jun 23 '09 at 1:34
7  
@Sean: Yes, stack overflow risk is the reason given, but that reason is a bit silly. Firstly because (as Vaibhav says) large local arrays cause exactly the same problem, but are not nearly as vilified. Also, recursion can just as easily blow the stack. Sorry but I'm -1ing you to hopefully counter the prevailing idea that the reason given in the man page is justified. – j_random_hacker Jun 27 '10 at 13:22
3  
My point is that the justification given in the man page makes no sense, since alloca() is exactly as "bad" as those other things (local arrays or recursive functions) that are considered kosher. – j_random_hacker Jun 30 '10 at 1:44
show 9 more comments
feedback

One of the most memorable bugs I had was to do with an inline function that used alloca. It manifested itself as a stack overflow (because it allocates on the stack) at random points of the program's execution.

In the header file:

void DoSomething() {
   wchar_t* pStr = alloca(100);
   //......
}

In the implementation file:

void Process() {
   for (i = 0; i < 1000000; i++) {
     DoSomething();
   }
}

So what happened was the compiler inlined DoSomething function and all the stack allocations were happening inside Process() function and thus blowing the stack up. In my defence (and I wasn't the one who found the issue, i had to go and cry to one of the senior developers when i couldn't fix it), it wasn't straight alloca, it was one of ATL string conversion macros.

So the lesson is - do not use alloca in functions that you think might be inlined.

link|improve this answer
7  
Interesting. But wouldn't that qualify as a compiler bug? After all, the inlining changed the behaviour of the code (it delayed the freeing of the space allocated using alloca). – sleske Oct 17 '10 at 18:55
9  
Apparently, at least GCC will take this into account: "Note that certain usages in a function definition can make it unsuitable for inline substitution. Among these usages are: use of varargs, use of alloca, [...]". gcc.gnu.org/onlinedocs/gcc/Inline.html – sleske Oct 17 '10 at 18:57
2  
What compiler were you smoking? – trinithis Nov 16 '11 at 21:34
1  
Microsoft VC++ 6. – Igor Zevaka Nov 17 '11 at 8:03
I've just tried this in VS2010, you can happily combine alloca with _forceinline and the compiler won't even produce a warning. Still an issue for some compilers.... – Benj Mar 15 at 13:16
show 3 more comments
feedback

One issue is that it isn't standard, although it's widely supported. Other things being equal, I'd always use a standard function rather than a common compiler extension.

link|improve this answer
feedback

I found this link, which also has a very useful explanation of why using alloca can be difficult and dangerous.

link|improve this answer
8  
One thing I saw mentioned on that link which is not elsewhere on this page is that a function that uses alloca() requires separate registers for holding the stack pointer and frame pointer. On x86 CPUs >= 386, the stack pointer ESP can be used for both, freeing up EBP -- unless alloca() is used. – j_random_hacker Jun 27 '10 at 13:30
3  
Another good point on that page is that unless the compiler's code generator handles it as a special case, f(42, alloca(10), 43); could crash due to possibility that the stack pointer is adjusted by alloca() after at least one of the arguments is pushed on it. – j_random_hacker Jun 27 '10 at 13:38
The linked post appears to be written by John Levine-- the dude who wrote "Linkers and Loaders", I would trust whatever he says. – user318904 Aug 13 '11 at 6:06
feedback

alloca() is very useful if you can't use a standard local variable because its size would need to be determined at runtime and you can absolutely guarantee that the pointer you get from alloca() will NEVER be used after this function returns.

You can be fairly safe if you

  • do not return the pointer, or anything that contains it.
  • do not store the pointer in any structure allocated on the heap
  • do not let any other thread use the pointer

The real danger comes from the chance that someone else will violate these conditions sometime later. With that in mind it's great for passing buffers to functions that format text into them :)

link|improve this answer
4  
The VLA (variable length array) feature of C99 supports dynamically sized local variables without explicitly requiring alloca() to be used. – Jonathan Leffler Jun 22 '09 at 23:57
1  
neato! found more info in section '3.4 Variable Length Array' of programmersheaven.com/2/Pointers-and-Arrays-page-2 – Arthur Ulfeldt Jun 23 '09 at 0:15
feedback

Old question but nobody mentioned that it should be replaced by dynamic arrays.

char arr[size];

instead of

char *arr=alloca(size);

It's in the standard C99 and existed as compiler extension in many compilers.

link|improve this answer
1  
It's mentioned by Jonathan Leffler on a comment to Arthur Ulfeldt's answer. – ninjalj Aug 1 '10 at 22:31
Indeed, but it shows also how easy it is missed, as I hadn't seen it despite reading all responses before posting. – tristopia Aug 2 '10 at 9:50
If only MSVC2010 supported C99... – Benj Mar 15 at 13:56
feedback

All of the other answers are correct. However, if the thing you want to alloc using alloca() is reasonably small, I think that it's a good technique that's faster and more convenient than using malloc() or otherwise.

In other words, alloca( 0x00ffffff ) is dangerous and likely to cause overflow, exactly as much as char hugeArray[ 0x00ffffff ]; is. Be cautious and reasonable and you'll be fine.

link|improve this answer
feedback

Here's why:

char x;
char *y=malloc(1);
char *z=alloca(&x-y);
*z = 1;

Not that anyone would write this code, but the size argument you're passing to alloca almost certainly comes from some sort of input, which could maliciously aim to get your program to alloca something huge like that. After all, if the size isn't based on input or doesn't have the possibility to be large, why didn't you just declare a small, fixed-size local buffer?

Virtually all code using alloca and/or C99 vlas has serious bugs which will lead to crashes (if you're lucky) or privilege compromise (if you're not so lucky).

link|improve this answer
1  
Downvoter, care to comment? – R.. May 17 '11 at 12:44
The world may never know. :( That said, I'm hoping you could clarify a question I have about alloca. You said that nearly all code that uses it has a bug, but I was planning on using it; I'd normally ignore such a claim, but coming from you I won't. I'm writing a virtual machine and I'd like to allocate variables that don't escape from the function on the stack, instead of dynamically, because of the enormous speed-up. Is there an alternate approach that has the same performance characteristics? I know I can get close with memory pools, but that still isn't as cheap. What would you do? – GManNickG May 26 '11 at 2:33
Feel free to allocate small objects on the stack - it's safe - but in this case a single fixed-size buffer (e.g. unsigned char buf[1024];) with some simple code to manage carving it up and maintaining alignment would work just as well, and would be more portable by avoiding alloca. The only benefits VLA or alloca can give you are the ability to make arbitrarily large allocations (with the danger that entails) or the ability to make arbitrarily small allocations (e.g. to avoid wasting stack space when less than 1024 bytes are needed). – R.. May 26 '11 at 2:52
@R: I see, thanks. – GManNickG May 26 '11 at 3:00
3  
*0=9; is not valid C. As for testing the size you pass to alloca, test it against what? There's no way to know the limit, and if you're just going to test it against a tiny fixed known-safe size (e.g. 8k) you might as well just use a fixed-size array on the stack. – R.. Nov 17 '11 at 3:07
show 3 more comments
feedback

Processes only have a limited amount of stack space available - far less than the amount of memory available to malloc().

By using alloca() you dramatically increase your chances of getting a Stack Overflow error (if you're lucky, or an inexplicable crash if you're not).

link|improve this answer
feedback

A place where alloc() is especially dangerous than malloc() is the kernel - kernel of a typical operating system has a fixed sized stack space hard-coded into one of its header; it is not as flexible as the stack of an application. Making a call to alloca() with an unwarranted size may cause the kernel to crash. Certain compilers warn usage of alloca() (and even VLAs for that matter) under certain options that ought to be turned on while compiling a kernel code - here, it is better to allocate memory in the heap that is not fixed by a hard-coded limit.

link|improve this answer
feedback

Not very pretty, but if performance really matter, you could preallocate some space on the stack.

If you already now the max size of the memory block your need and you want to keep overflow checks, you could do something like :

void f()
{
    char array_on_stack[ MAX_BYTES_TO_ALLOCATE ];
    SomeType *p = (SomeType *)array;

    (...)
}
link|improve this answer
4  
Is char array guaranteed to be correctly aligned for any data type? alloca provides such promise. – Juho Östman Sep 17 '10 at 23:24
feedback

Everyone has already pointed out the big thing which is potential undefined behavior from a stack overflow but I should mention that the Windows environment has a great mechanism to catch this using structured exceptions (SEH) and guard pages. Since the stack only grows as needed, these guard pages reside in areas that are unallocated. If you allocate into them (by overflowing the stack) an exception is thrown.

You can catch this SEH exception and call _resetstkoflw to reset the stack and continue on your merry way. Its not ideal but it's another mechanism to at least know something has gone wrong when the stuff hits the fan. *nix might have something similar that I'm not aware of.

I recommend capping your max allocation size by wrapping alloca and tracking it internally. If you were really hardcore about it you could throw some scope sentries at the top of your function to track any alloca allocations in the function scope and sanity check this against the max amount allowed for your project.

Also, in addition to not allowing for memory leaks alloca does not cause memory fragmentation which is pretty important. I don't think alloca is bad practice if you use it intelligently, which is basically true for everything. :-)

link|improve this answer
feedback

Sadly the truly awesome alloca() is missing from the almost awesome tcc. Gcc does have alloca().

  1. It sews the seed of its own destruction. With return as the destructor.

  2. Like malloc() it returns an invalid pointer on fail which will segfault on modern systems with a MMU (and hopefully restart those without).

  3. Unlike auto variables you can specify the size at run time.

It works well with recursion. You can use static variables to achieve something similar to tail recursion and use just a few others pass info to each iteration.

If you push too deep you are assured of a segfault (if you have an MMU).

Note that malloc offers no more as it returns NULL (which will also segfault if assigned) when the system is out of memory. I.e. all you can do is bail or just try to assign it any way.

To use malloc I use globals and assign them NULL. If the pointer is not NULL I free it before I use malloc.

You can also use realloc as general case if want copy any existing data. You need to check pointer before to work out if you are going to copy or concatenate after the realloc.

3.2.5.2 Advantages of alloca

link|improve this answer
feedback

for me alloca is more dangerous than malloc...

link|improve this answer
Can you please expand? – Chris Wong Dec 27 '11 at 22:54
feedback

Your Answer

 
or
required, but never shown

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