Checking available stack size in C - Stack Overflow most recent 30 from stackoverflow.com2009-12-10T20:25:20Zhttp://stackoverflow.com/feeds/question/53827http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/53827/checking-available-stack-size-in-c6Checking available stack size in CPaul Hargreaves2008-09-10T11:53:16Z2008-09-12T17:34:02Z
<p>I'm using MinGW with GCC 3.4.5 (mingw-special vista r3).</p>
<p>My C application uses a lot of stack so I was wondering is there any way I can tell programatically how much stack is remaining so I can cleanly handle the situation if I find that I'm about to run out.</p>
<p>If not what other ways would you work around the problem of potentially running out of stack space?</p>
<p>I've no idea what size of stack I'll start with so would need to identify that programatically also.</p>
http://stackoverflow.com/questions/53827/checking-available-stack-size-in-c/53834#538340Answer by Nathan Fellman for Checking available stack size in CNathan Fellman2008-09-10T12:01:09Z2008-09-10T12:01:09Z<p>Assuming you know the size of the full stack you could probably add some assembly code to read ESP.<br />
If you read ESP and save it aside in the main function you can compare the current ESP to the ESP you have in main and see how much ESP has changed. That'll give you an indication of how much stack you're used.</p>
http://stackoverflow.com/questions/53827/checking-available-stack-size-in-c/53836#538362Answer by Rob Walker for Checking available stack size in CRob Walker2008-09-10T12:02:00Z2008-09-10T12:02:00Z<p>Taking the address of a local variable off the stack would work. Then in a more nested call you can subtract the address of another local to find the difference between them</p>
<pre><code>size_t top_of_stack;
void Main()
{
int x=0;
top_of_stack = (size_t) &x;
do_something_very_recursive(....)
}
size_t SizeOfStack()
{
int x=0;
return top_of_stack - (size_t) &x;
}
</code></pre>
<p>If you code is multi-threaded then you need to deal with storing the top_of_stack variable on a per-thread basis.</p>
http://stackoverflow.com/questions/53827/checking-available-stack-size-in-c/53900#539005Answer by Skizz for Checking available stack size in CSkizz2008-09-10T12:38:18Z2008-09-10T12:38:18Z<p>Raymond Chen (<a href="http://blogs.msdn.com/oldnewthing/default.aspx" rel="nofollow">The Old New Thing</a>) has a good answer to this sort of question:</p>
<blockquote>
<p>If you have to ask, you're probably doing something wrong.</p>
</blockquote>
<p>Here's some Win32 details on stack allocation: <a href="http://msdn.microsoft.com/en-us/library/ms686774.aspx" rel="nofollow">link to MSDN</a>.</p>
<p>If you think you might be limited by stack space, you will almost certainly be limited by available virtual memory, in which case, you will need to find a different solution.</p>
<p>What exactly are you trying to do?</p>
<p>Skizz</p>
http://stackoverflow.com/questions/53827/checking-available-stack-size-in-c/53925#539250Answer by mweerden for Checking available stack size in Cmweerden2008-09-10T12:47:35Z2008-09-10T12:47:35Z<p>This is a problem I have given up on. With a lot of hacking and (mostly) praying, you can get a solution that works at a given time on a given machine. But in general there seems to be no decent way to do this.</p>
<p>You will have to obtain the stack position and size from outside your program (on Linux you might get it from <code>/proc/<pid>/maps</code>). In your program you must somehow test where you are at the stack. Using local variables is possible, but there is no real guarantee that they are actually on the stack. You can also try to get the value from the stack pointer register with some assembly.</p>
<p>So now you have the location of the stack, its size and the current position and you assume you know in which direction the stack grows. When are you going in stack-overflow mode? You better not do it close to the end because your estimation (i.e. address of local variable or value from stack pointer) is probably a bit too optimistic; it's not uncommon to address memory beyond the stack pointer. Also, you have no clue about how much room on the stack any given function (and the functions it calls) need. So you'll have to leave quite some room at the end.</p>
<p>I can only advice you not do get into this mess and try to avoid very deep recursion. You might also want to increase your stack size; on Windows you have to compile this into the executable, I believe.</p>
http://stackoverflow.com/questions/53827/checking-available-stack-size-in-c/54060#540600Answer by dmityugov for Checking available stack size in Cdmityugov2008-09-10T13:40:50Z2008-09-10T13:40:50Z<p>check if your compiler supports stackavail()</p>
http://stackoverflow.com/questions/53827/checking-available-stack-size-in-c/54338#543380Answer by Peter Ritchie for Checking available stack size in CPeter Ritchie2008-09-10T15:12:41Z2008-09-10T15:12:41Z<p>There's a problem if your stack is auto-increasing. You can have a situation where if the current stack runs out of space the system automatically increases its size. At which point you can't detect the size of the stack; only that you've run out of stack space.</p>
<p>I think the most reliable thing to do here is trap memory allocation exceptions when allocating an array of such size. Either that or allocate from the heep. A 20,000 element array on the stack is not a good idea.</p>
http://stackoverflow.com/questions/53827/checking-available-stack-size-in-c/56596#565962Answer by botismarius for Checking available stack size in Cbotismarius2008-09-11T13:55:22Z2008-09-11T13:55:22Z<p>Hello,</p>
<p>maybe this will help for Windows platform only:</p>
<p>in the PE header (IMAGE_NT_HEADERS) of your exe there are some records such as:</p>
<pre>
typedef struct _IMAGE_NT_HEADERS {
DWORD Signature;
IMAGE_FILE_HEADER FileHeader;
IMAGE_OPTIONAL_HEADER32 OptionalHeader;
} IMAGE_NT_HEADERS32, *PIMAGE_NT_HEADERS32;
typedef struct _IMAGE_OPTIONAL_HEADER {
...
DWORD SizeOfStackReserve;
DWORD SizeOfStackCommit;
...
}
</pre>
<p>There is a simple way to obtain these values: using GetModuleHandle(NULL) will give you the imagebase (handle) of your module, address where you'll find a IMAGE_DOS_HEADER structure which will help you to find the IMAGE_NT_HEADERS structure (imagebase+IMAGE_DOS_HEADER.e_lfanew) -> IMAGE_NT_HEADERS, and there you'll find those fields: <b>SizeOfStackReserve</b> and <b>SizeOfStackCommit</b>.</p>
<p>The maximum amount of space that the OS will allocate for your stack is SizeOfStackReserve.</p>
<p>If you consider trying this, let me know and I will assist you. There is a way to obtain the size of stack used in a certain point.</p>
http://stackoverflow.com/questions/53827/checking-available-stack-size-in-c/59579#595790Answer by Thomas Kammeyer for Checking available stack size in CThomas Kammeyer2008-09-12T17:34:02Z2008-09-12T17:34:02Z<p>On Linux, you would call getrusage and check the returned struct rusage's
ru_isrss member (integral unshared stack size).</p>
<p>From the MINGW site and its sourceforge site's tracking of patches, I see that in May of 2008 there was some patching done around getrusage and it looks like it's been generally supported for quite a while. You should check carefully for any caveats in terms of how much of the typical Linux functionality is supported by MinGW.</p>