vote up 1 vote down star
1

In C++, in which way the stack may get corrupted. One way I guess is to overwriting the stack variables by accessing an array beyond its boundaries. Is there any other way that it can get corrupted?

flag

These guys are purists... restate your question... What are common ways besides buffer overruns that the stack becomes corrupted? – ojblass Apr 5 at 7:19
@ojblass: It is not about being a purist/pragmatist. It is about NOT spreading FUD. It is about quality. If the question is vague -- it IS vague. Hope you empathize some day :( – dirkgently Apr 5 at 7:26

6 Answers

vote up 5 vote down check
  1. You could have a random/undefined pointer that ends up pointing to the stack, and write though that.
  2. An assembly function could incorrectly setup/modify/restore the stack
  3. Cosmic waves could flips bits in the stack.

But those are not particular to C++, which doesn't have any idea of the stack.

link|flag
I think you mean that they are not particular to C++ :) – Stephan202 Apr 5 at 7:27
Yes :-)... Inserted 'not' – Douglas Leeder Apr 5 at 7:40
1  
Good point mentioning 3. To safeguard from this, I have just moved my computer so that it sits under my desk and is therefore in the shadow. Any other precautions I need to be aware of? ;) – Adrian Grigore Apr 5 at 9:34
Actually, the commonest source of ionising radiations affecting chips is the chip packaging itself - there is no escape! – Neil Butterworth Apr 5 at 10:44
vote up 6 vote down

The C++ standard does not define stack/heap. Further, there are a number of ways to invoke undefined behavior in a program -- all of which may corrupt your stack (it's UB, after all). The short answer is -- your question is too vague to have a meaningful answer.

link|flag
Perfectly answerable, just need to not be an academic. – soru Sep 9 at 8:58
vote up 2 vote down

Calling a function with the wrong calling convention.

(though this is technically compiler-specific, not a question of C++, every C++ compiler has to deal with that.)

link|flag
vote up 2 vote down

Taking pointers to stack variables is a good way:

void foo()
{
  my_struct s;
  bar(&s);
}

If bar keeps a copy of the pointer then anything can happen in the future.

Summing up: Stack corruption happens when there's stray pointers pointing to the stack.

link|flag
vote up 2 vote down

This might help you. Refer Memory Corruption Part I—Stacks.

(Login or Subscribe to access full content of this book)

link|flag
vote up 2 vote down

Violations of the One Definition Rule can lead to stack corruption. The following example looks stupid, but I've seen it a couple of times with different libraries compiled in different configurations.

header.h

struct MyStruct
{
   int val;
#ifdef LARGEMYSTRUCT
   char padding[16];
#endif
}

file1.cpp

#define LARGEMYSTRUCT
#include "header.h"

//Here it looks like MyStruct is 20 bytes in size    

void func(MyStruct s)
{
   memset(s.padding, 0, 16); //corrupts the stack
   return; //Will probably crash here as the return pointer has been overwritten
}

file2.cpp

#include "header.h"
//Here it looks like MyStruct is only 4 bytes in size.
extern void func(MyStruct s);

void caller()
{
   MyStruct s;
   func(s); //push four bytes on to the stack
}
link|flag

Your Answer

Get an OpenID
or

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