Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

What are possible ways to make C/C++ crash without using cast?

I know using ptrs that have been free/delete'd. Using null ptr (if applicable) i also wrote a short example where a function uses a string and returns sz.c_str(). sz is now out of scope and the value/ptr it returns causes undefined behavior.

How else could C++ crash/do incorrect things when casting is not involved?

share|improve this question
9  
hilarious, I LOLed +1 – mbx Apr 5 '11 at 17:58
13  
Of course you should keep in mind that you can't crash C++ ;-) The whole point of the question is to produce undefined behaviour, actually. What really happens is usually up to the system the application runs on. – Alexander Gessler Apr 5 '11 at 17:59
1  
@Alexander: wheaties has a way to actually crash C++, if forcing it to call terminate() counts. – Ken Bloom Apr 5 '11 at 18:18
1  
@Ken: you can call terminate yourself. I suppose it's not a clean exit, so arguably it's a crash, but it seems like cheating to me :-) – Steve Jessop Apr 5 '11 at 18:30
2  
I am not sure why anyone thinks this isnt a question. I'm sure this will solved or be reference in a few 'why does this code crash?' – acidzombie24 Apr 5 '11 at 20:47
show 10 more comments

closed as not a real question by sth, George Stocker, sixlettervariables, dmckee, bmargulies Apr 7 '11 at 1:09

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, see the FAQ.

35 Answers

1 2

Stack overflow

int CrashAndBurn(int x) {
  return CrashAndBurn(x + 1) + CrashAndBurn(x + 1);
}

Also I do want to point out that in my experience casting itself almost never causes a crash in C++. Casting in C++ is generally just telling the compiler "hey pretend my memory looks like this instead". This may produce a completely incorrect object but it doesn't actually crash until you start using it.

int i = 42;
MyFancyObject* pValue = (MyFancyObject*)(&i);  // Dangerous but prob won't crash
pValue->DoSomething(); // Hopefully this crashes

Note: C++ is implementation dependent and sure there is possibly some implementation out there that chooses to crash on random casts

share|improve this answer
5  
@Martin: probably to avoid tail call optimization turning that into a mere infinite loop. – ninjalj Apr 5 '11 at 18:46
5  
@Martin, @ninjalj has it right. I wanted to be very careful to avoid a tail call optimization. Not an optimization expert so there could be some insane case I'm missing but hopefully it gets the point across. – JaredPar Apr 5 '11 at 18:51
show 10 more comments

Write off the end of an array

Bonus points if you can overwrite your function's return address.

void foo(){
   int x[5];
   x[5]=0;
   x[6]=0;
   x[-1]=0; //yes, this is legal
   x[-2]=0;
}

On many architectures, one of these will hit your return address.

share|improve this answer
18  
If you think x[-2] is nice, wait to see -2[x] – ninjalj Apr 5 '11 at 19:24
3  
“yes, this is legal” – no. – Konrad Rudolph Apr 5 '11 at 20:55
7  
@ninjalj: But is that (-2)[x] or -(2[x])? [] has higher precedence than unary minus, but is that a unary minus or an integer constant? I know the answer, but only because I tried it out. – TonyK Apr 6 '11 at 13:26
1  
@David Negative indices aren’t forbidden. Access outside the array bounds is. – Konrad Rudolph Jun 2 '11 at 20:20
show 6 more comments

Dereference a null pointer

int* x = 0;
*x = 100;
share|improve this answer
1  
And one of the most common problems. – bruce.banner Apr 5 '11 at 21:38

Use unions instead of typecasts

union failptr{
   long aslong;
   void (*asvoidfunc)();
};

failptr p;
p.aslong=15;
(p.asvoidfunc)();  /* on many architectures this will case a bus error
                      because the pointer is unaligned. */
share|improve this answer
1  
yes unions yes! I actually wrote this down somewhere but forgot to add it to my main doc. +1 – acidzombie24 Apr 5 '11 at 18:01
4  
Why did I read this as "Use unicorns instead of typecasts"? – David Johnstone Apr 6 '11 at 3:32

Divide by zero

int main(int argc, char** argv){
   return 1/0;
}

this gives a compiler warning, but if you ignore the warning it crashes with a floating point error (SIGFPE) on Linux AMD64.

You generally don't crash if you're doing floating point division (since IEEE floating point numbers have special values for infinity and not a number), but you will if it's integer division.

share|improve this answer
2  
floating point can raise exceptions, depending on your floating point environment, which can be manipulated with functions from fenv.h. – ninjalj Apr 5 '11 at 18:17

Incorrect printf flags

A fun one is to do printf("%s",1);, as most implementations don't check if the ptr is valid and not NULL.

share|improve this answer
1  
Don't you typically need a cast or a union to cause an unalgined access intentionally? Can you give us some outlandish ways to cause an unaligned access (as another answer)? – Ken Bloom Apr 5 '11 at 18:11
show 5 more comments

Overwrite a Function

int hello()
{
    return 1;
}
int main(){
    memset(&hello, 0x00, 5);
    hello();
    return 0;
}

It can either corrupt the function or cause access violation (write to read only area).

share|improve this answer

Raise a signal (simulate a crash)

The signal SIGSEGV will cause the application to look like it crashed to the OS.

#include <signal.h>
int main()
{
    raise(SIGSEGV);
}

Fully C (and thus C++) compliant:
ISO C99 7.14 paragraph 3

share|improve this answer
7  
This is cheating, as it has nothing to do with the specification of C/C++, but rather POSIX. It would be cheating in exactly the same way to call DebugBreak() on Windows. – JSBձոգչ Apr 5 '11 at 19:47
13  
@JSBangs: wrong, SIGSEGV is in ISO C99 7.14 paragraph 3 – ninjalj Apr 5 '11 at 20:11
2  
@DeadMG: wrong. SIGSEGV is in the C++ standard: "Language support library -> Other runtime support" – ninjalj Apr 6 '11 at 17:53
show 2 more comments

Throw an exception that is guaranteed not to be caught (because it is local to the function).

int main()
{
    class X {};
    throw X();
}
share|improve this answer
3  
There are a lot of restrictions on their use (like they can not be used in templates) so it is not common. I believe C++0X lifts some restrictions. – Loki Astari Apr 5 '11 at 18:56
2  
There's no such thing as an exception that's guaranteed not to be caught. You can always catch it with catch(...){}. – Ken Bloom Apr 6 '11 at 1:04
show 2 more comments

Returning to no-man's land:

#include <setjmp.h>

int main()
{
    jmp_buf env;

    longjmp(env, 1);

    return 0;
}
share|improve this answer
1  
@acidzombie24: there are several scenarios in which it can be handy, such as recovering from a SIGFPE, or installing something equivalent to an UnhandledExceptionHandler. For more complex scenarios, POSIX's setcontext() is so much better. – ninjalj Apr 5 '11 at 20:36
5  
Once upon a time I wrote a cooperative thread scheduler (think fibers) using setjmp() and longjmp() to save and restore thread state. Worked like a charm for the intended application, where true threads weren't available, and processes would have been impractical. I had 100's of my threads happily coexisting in a single process on a 68020-based SGI workstation. – RBerteig Apr 5 '11 at 21:00
1  
I should add in the spirit of the actual question and the answer I hijacked, that debugging it was a real bear. Largely because when it guessed wrong, it would do exactly what this answer suggests as a good way to get a crash...... and stack back traces aren't very helpful when you are deliberately juggling the stack itself. – RBerteig Apr 5 '11 at 22:37
show 8 more comments

OK, since noone has done it yet, I'll introduce you to the famous format string crash:

int main()
{
    printf("%n%n%n%n%n%n%n%n%n%n%n%n%n%n%n%n%n%n%n%n");
    return 0;
}
share|improve this answer
1  
That's creative :D – Skurmedel Aug 12 '11 at 2:20

Doing any of the myriad things the standard specifically says causes undefined behavior has the potential to cause a crash.

share|improve this answer

Call Free Twice

char* hello;
hello = malloc(5);
free(hello);
free(hello);

(Or call free on pretty much any address except of 0...)

share|improve this answer
4  
Likewise, calling fclose() twice. – Ken Bloom Apr 5 '11 at 19:21
show 1 more comment

Throw an exception from the destructor of an object during stack unwinding while it's handling another exception:

class Foo{
public:
    ~Foo(){ throw std::exception(); }
};

placed in a call like this:

void willCrash(){
   Foo bar;
   throw std::exception();
}

You can read about it here, within the C++ FAQ.

Edit:

Following this track, placing a global variable which throws an exception.

Foo bar;
int main(int argc, char** argv){
    return 0;
}

That's one more reason to never to allow an object to throw an exception from the destructor.

share|improve this answer
1  
If the standard specifies that the program calls terminate(), does that count as a crash? – Ken Bloom Apr 5 '11 at 18:14
1  
@Ken Bloom Dunno if it counts as a crash but any function call which forces a call to terminate() is as much of a pain to track down as any. – wheaties Apr 5 '11 at 18:30
show 1 more comment

Rethrow a non-existent exception

int main
{
    throw;
}
share|improve this answer

Stack overrun is very easy, too.

void foo() {
    int myArray[10];
    for(int i = 0;; ++i) {
        myArray[i] = i;
    } 
}
share|improve this answer

Use placement new instead of a cast

#include <new> //required in G++
struct foo_t{
   int bar;
};

char buf[sizeof(foo_t)+1];
foo_t* foo = new(buf+1) foo_t();
foo->bar = 5; // can cause an unaligned access on some architectures
share|improve this answer
show 2 more comments

Call a pure virtual function

C++ Compiler doesn't allow to call pure virtual functions usually, but you can try:

class A;    

void fcn( A* );    

class A {
public:
   virtual void f() = 0;
   A() { fcn( this ); }
};

class B : A {
   void f() { }
};

void fcn( A* p ) {
   p->f();
}

// The declaration below invokes class B's constructor, which
// first calls class A's constructor, which calls fcn. Then
// fcn calls A::f, which is a pure virtual function, and
// this causes the run-time error. B has not been constructed
// at this point, so the B::f cannot be called. You would not
// want it to be called because it could depend on something
// in B that has not been initialized yet.

B b;

int main() {
   return 0;
}
share|improve this answer
show 1 more comment

Create a Dangling Reference with the C++0x Lambda

This snippet compiles with gcc 4.6.0 without a single warning and works nicely at the run-time:

#include <iostream>
#include <functional>     // std::function
#include <vector>        // std::vector
#include <algorithm>    // std::for_each

int main(){

    auto accumulator = [](int x) -> std::function<int (int)>{
        return [=](int y) ->int { 
            return x+y; 
        }; 
    };

    std::vector < std::function<int(int)> > vec;

    vec.push_back(accumulator(1));
    vec.push_back(accumulator(2));
    vec.push_back(accumulator(3));

    std::for_each(vec.begin(), vec.end(), [](std::function<int(int)> f){std::cout << f(4) << " ";});
    std::cout << std::endl;
}

The program output is 5 6 7.

Now pass x to the inner lambda as reference (hoping to create a state):

#include <iostream>
#include <functional>     // std::function
#include <vector>        // std::vector
#include <algorithm>    // std::for_each

int main(){

    auto accumulator = [](int x) -> std::function<int (int)>{
        return [&](int y) ->int { 
            return x+=y; 
        }; 
    };

    std::vector < std::function<int(int)> > vec;

    vec.push_back(accumulator(1));
    vec.push_back(accumulator(2));
    vec.push_back(accumulator(3));

    std::for_each(vec.begin(), vec.end(), [](std::function<int(int)> f){std::cout << f(4) << " ";});
    std::cout << std::endl;
}

Not a tiny hint of a warning when compiling. The program crashes badly at the run-time:

terminate called after throwing an instance of 'std::bad_function_call' what(): std::exception 148181164 148181168 148181172 Aborted

The problem has little to do with a compiler such as gcc 4.6.0. You can find out more about this error, and learn from my mistakes at http://stackoverflow.com/questions/5566198/undefined-behavior-with-the-c0x-closure-ii.

share|improve this answer
4  
+1 for brand new exciting C++0x crashes! – Ken Bloom Apr 5 '11 at 20:14
4  
This has nothing to do with the vector -- this is the same object lifetime problem as returning a reference to a non-static local variable, but the lambda [&] notation has given you a new way to bury the reference. – Ken Bloom Apr 5 '11 at 20:26
show 3 more comments

Runtime Assertion Failure

You can use a runtime assert as in:

#include <cassert>

int main()
{
    int x = 0;
    assert (x != 0);  // Terminates when the argument is false
    return x;
}

Since they're typically used to detect bad conditions, I suppose you could call it a deliberate crash when such a condition is encountered.

share|improve this answer

memset() memcpy() strlen() strcpy()

main()
{
  char *a;
  memset(0, 0, 0xFFFFFFFF);
  strlen(a);
}
share|improve this answer
1  
All these are reading/writing on out of bounds memory. – ninjalj Apr 5 '11 at 19:06
show 1 more comment

Leak file descriptors

My students do this a lot. Of course, the for(;;) is usually replaced with more complex program-wide control flow. The result is usually a null pointer dereference.

FILE * f;
for(;;){
  f = fopen("foo.txt","r");
  // problem #1: forgot to check for errors opening the file
  char buf[500];
  size_t s = fread(buf,500,1,f);
  // problem #2: forgot to close f
}
share|improve this answer

Unaligned Access

You can do unaligned access on data with intrinsics that require aligned addresses, an msvc based example(due to the intrinsics):

#include <stdlib.h>
#include <intrin.h>

struct BadAlign
{
    union //this messes with some compilers, preventing them shoving in aligned_malloc varients of new
    {
        __m128 i;
        int d;
    };

    __m128 j;
};

//incase placement new is refusing to cooperate (al la VC6)
void* operator new(unsigned int s, void* p)
{
    return p;
}

int main(int argc, char* argv[])
{
    //printf is there to stop the code being optimized out :)
    //method 1 - a bit compiler dependent (due to the union trick), if anyone can test this on GCC, it would be nice to know the result
    BadAlign* a = new BadAlign; //new doesn't guarantee correct alignment, same for malloc
    a->i = _mm_setzero_ps();
    _mm_move_ss(a->i,a->j); 
    printf("%d\n",a->d);
    delete a;

    //method 2
    char c[sizeof(BadAlign) + 1];
    BadAlign* b = new(&c[1]) BadAlign; //stack is always even, hence placement new stack_var + 1 will not be aligned
    b->i = _mm_setzero_ps();
    _mm_move_ss(b->i,b->j);
    printf("%d\n",b->d);
    return 0;
}
share|improve this answer
show 2 more comments

You could create a method which expects not to throw an exception and then have it throw an exception:

struct Foo
{
    void crash() throw() { throw std::exception(); }
};

That's a fun way of killing an application. I'm also expecting that you haven't changed the behavior of the unexpected function.

share|improve this answer
2  
Oh but this is C++. You could just implement the unexpected method and swallow this bad boy without crashing! cplusplus.com/reference/std/exception/unexpected – JaredPar Apr 5 '11 at 17:56
2  
@wheaties I actually think it is a good example. I'm more amused than anything else that you can actually suppress this crash. Anyone who does so is just asking for trouble. – JaredPar Apr 5 '11 at 17:58
show 6 more comments

Execute gibberish:

typedef void (fn)(void);
union u {
    fn *func;
    char *cp;
};

int main()
{
    char buf[]="\xde\xad\xbe\xef";
    union u un;

    un.cp = buf;
    un.func();

    return 0;
}

C is more forgiving than C++:

typedef void (fn)(void);

void callfn(fn *func)
{
    func();
}

int main()
{
    char buf[]="\xde\xad\xbe\xef";

    callfn(buf);

    return 0;
}
share|improve this answer
1  
I said without casting. -1. There are tons of ways with casting. – acidzombie24 Apr 5 '11 at 18:50
2  
@acidzombie, @ninjalj: it causes a segmentation fault because on modern operating systems and modern architectures, the memory area containing buf is not marked executable. Can we come up with a way to crash a computer with an invalid instruction? I can think of two: 1) load a corrupted shared library. 2) execute from the middle of an instruction on an architecture that has nonuniform instruction sizes (I think AMD64 has nonuniform instruction sizes) by corrupting a function pointer. – Ken Bloom Apr 5 '11 at 20:01
show 5 more comments

Arrays of Derived are not the same as arrays of Base

Try this:

class Base
{
public:
    virtual void SomeFunction() 
    {
        printf("test base\n");
    }

    int m_j;
};

class Derived : public Base {
public:
   void SomeFunction() 
   {
       printf("test derive\n");
   }

private:
   int m_i;
};

void MyWonderfulCode(Base baseArray[])
{
   baseArray[0].SomeFunction();  //Works fine
   baseArray[1].SomeFunction();  //Crashes because of invalid vfptr
   baseArray[2].SomeFunction();  //Crashes because of invalid vfptr
   baseArray[3].SomeFunction();  //Works fine
   baseArray[4].SomeFunction();  //Crashes because of invalid vfptr
   baseArray[5].SomeFunction();  //Crashes because of invalid vfptr
   baseArray[6].SomeFunction();  //Works fine
   baseArray[7].SomeFunction();  //Crashes because of invalid vfptr
   baseArray[8].SomeFunction();  //Crashes because of invalid vfptr
   baseArray[9].SomeFunction();  //Works fine
}
int _tmain(int argc, TCHAR* argv[])
{
   Derived derivedArray[10];
   MyWonderfulCode(derivedArray);
   return 0;
}
share|improve this answer
1  
To extend on that, you can't have a compiler that changes struct padding in debug versus release mode because it would break compatibility with shared libraries, whose binaries are compiled in one mode, but whose struct definitions (which come from the header files) are compiled in the other mode in client code. It would also break code that writes structs directly to disk in one mode and reads it back in the other mode, which is exactly what viva64.com/en/b/0009 is complaining about with the architecture changes. – Ken Bloom Apr 7 '11 at 15:07
show 4 more comments

Do you forbid only explicit casts? The following would probably do the trick:

int main()
{
    int* ptr = 0;
    ++ptr;
    *ptr = 42;
}
share|improve this answer
show 1 more comment

use std::malloc to try and allocate more memory than your entire computer has

share|improve this answer
3  
Shouldn't malloc just return null in that case? If you're careful about error handling, this won't cause a crash. – Ken Bloom Apr 5 '11 at 19:53
1  
@Ken Bloom: a case that's easy to get wrong is malloc(s*t), where one or both of s and t are user-supplied. – ninjalj Apr 5 '11 at 20:17
show 1 more comment

Using out of array index, you can crash your program!

share|improve this answer
show 4 more comments

Write a move constructor, without cleaning up the moved-from object.

If you construct a new object from an && reference and forget to leave the old object in a safely destructable state, you could crash.

struct Foo{
   int* f;
   Foo(){
      f=new int;
   }
   Foo(Foo && movefrom):f(movefrom.f){
      // write this the way we'd write a copy constructor
      // we forgot to set movefrom.f to null
   }
   ~Foo(){
      delete f;
   }
};

int main(int argc, char** argv){
   Foo a;
   Foo b = std::move(a);
   assert (a.f == b.f);
   return 0;
   /* the compiler runs the destructors of both a and b causing a double-free */
}
share|improve this answer
show 1 more comment
1 2

protected by Richard Jun 2 '11 at 10:31

This question is protected to prevent "thanks!", "me too!", or spam answers by new users. To answer it, you must have earned at least 10 reputation on this site.

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