Newbie here... Also not sure whether the question belongs to a site that prefers questions that can be answered and not discussed. Still...

I was reading a book on programming skills wherein the author asks the interviewee, "How do you crash a JVM?" I thought that you could do so by writing an infinite for-loop that would eventually use up all the memory. But that was just my suggestion... I am not so strong in Java, so I thought I'd post it here...

Anybody has any idea?

link|improve this question

64% accept rate
15  
use a java application written by 50% of java developers? – Firoso Apr 28 '09 at 17:28
2  
Passionate Programmer, yeah, great book ;) – dolzenko Dec 8 '11 at 19:48
feedback

17 Answers

up vote 7 down vote accepted

The closest thing to a single "answer" is System.exit() which terminates the JVM immediately without proper cleanup. But apart from that, native code and resource exhaustion are the most likely answers. Alternatively you can go looking on Sun's bug tracker for bugs in your version of the JVM, some of which allow for repeatable crash scenarios. We used to get semi-regular crashes when approaching the 4 Gb memory limit under the 32-bit versions (we generally use 64-bit now).

link|improve this answer
24  
without proper cleanup? are you sure? The documentation says "Terminates the currently running Java virtual machine by initiating its shutdown sequence ... all registered shutdown hooks, if any, are started ... all uninvoked finalizers are run" - isn't that the proper cleanup? – Carlos Heuberger Apr 29 '09 at 13:10
15  
This isn't crashing the JVM, it's purposefully and explicitly beginning an orderly shut-down of execution. – BenM May 17 '10 at 14:04
Closer to crashing the jvm is Runtime.getRuntime().halt( status ). According to the docs "this method does not cause shutdown hooks to be started and does not run uninvoked finalizers if finalization-on-exit has been enabled". Still not a crash, but closer than System.exit. – henry Apr 18 at 12:01
feedback

I wouldn't call throwing an OutOfMemoryError or StackOverflowError a crash. These are just normal exceptions. To really crash a VM there are 3 ways:

  1. Use JNI and crash in the native code.
  2. If no security manager is installed you can use reflection to crash the VM. This is VM specific, but normally a VM stores a bunch of pointers to native resources in private fields (e.g. a pointer to the native thread object is stored in a long field in java.lang.Thread). Just change them via reflection and the VM will crash sooner or later.
  3. All VMs have bugs, so you just have to trigger one.

For the last method I have a short example, which will crash a Sun Hotspot VM quiet nicely:

public class Crash {
    public static void main(String[] args) {
        Object[] o = null;

        while (true) {
            o = new Object[] {o};
        }
    }
}

This leads to a stack overflow in the GC so you will get no StackOverflowError but a real crash including a hs_err* file.

link|improve this answer
5  
Sounds like a very broken GC... – leppie Sep 30 '08 at 9:04
3  
Wow! This crashes Sun Java 5, Sun Java 6 and OpenJDK 6 (on Ubuntu 9.04) with no hs_err* file but only a "Segmentation fault!" ... – Joachim Sauer Sep 4 '09 at 10:25
System.exit() is a much easier way to crash a JVM (unless a security manager is installed) – instantsetsuna Aug 18 '10 at 5:05
it really does crash my vm – Suraj Chandran Nov 29 '11 at 8:32
feedback

JNI. In fact, with JNI, crashing is the default mode of operation. You have to work extra hard to get it not to crash.

link|improve this answer
12  
+1 "with JNI, crashing is the default mode of operation" Great, and so very true! – Jens Schauder Sep 4 '09 at 10:42
2  
Bigbadaboom!! – Thorbjørn Ravn Andersen Oct 30 '09 at 13:42
feedback

Use this:

import sun.misc.Unsafe;

public class Crash {
    private static final Unsafe unsafe = Unsafe.getUnsafe();
    public static void crash() {
        unsafe.putAddress(0, 0);
    }
    public static void main(String[] args) {
        crash();
    }
}

This class must be on the boot classpath because it is using trusted code,so run like this:

java -Xbootclasspath/p:. Crash

link|improve this answer
feedback

Depends on what you mean by crash.

You can do an infinite recursion to make it run out of stack space, but that'll crash "gracefully". You'll get an exception, but the JVM itself will be handling everything.

You can also use JNI to call native code. If you don't do it just right then you can make it crash hard. Debugging those crashes is "fun" (trust me, I had to write a big C++ DLL that we call from a signed java applet). :)

link|improve this answer
feedback

A perfect JVM implementation will never crash.

To crash a JVM, aside from JNI, you need to find a bug in the VM itself. An infinite loop just consumes CPU. Infinitely allocating memory should just cause OutOfMemoryError's in a well built JVM. This would probably cause problems for other threads, but a good JVM still should not crash.

If you can find a bug in the source code of the VM, and for example cause a segmentation fault in the memory usage of the implementation of the VM, then you can actually crash it.

link|improve this answer
feedback

This code will crash the JVM in nasty ways

import sun.dc.pr.PathDasher; 

public class Crash
{
     public static void main(String[] args)
     {    
        PathDasher dasher = new PathDasher(null) ;
     }
}
link|improve this answer
as of 1.6.0_29 this one is the only one that worked for me – raticulin Nov 4 '11 at 11:12
feedback

on winxpsp2 w/wmp10 jre6.0_7

Desktop.open(uriToAviOrMpgFile)

This causes a spawned thread to throw an uncaught Throwable and crashes hotspot

YMMV

link|improve this answer
feedback

here is a detailed explanation on what causes JVM to core dump (i.e. crash): http://kb.adobe.com/selfservice/viewContent.do?externalId=tn_17534

link|improve this answer
feedback

The book Java Virtual Machine by Jon Meyer has an example of a series of bytecode instructions that caused the JVM to core dump. I can't find my copy of this book. If anyone out there has one please look it up and post the answer.

link|improve this answer
feedback

JNI is a large source of crashes. You can also crash using the JVMTI interface since that needs to be written in C/C++ as well.

link|improve this answer
feedback

If you want to crash JVM - use the following in Sun JDK 1.6_23 or below..

Double.parseDouble("2.2250738585072012e-308");

This is due to bug in Sun JDK - also found in OpenJDK,

This is fixed from Oracle JDK 1.6_24 onwards...

Thanks....

link|improve this answer
feedback

Broken hardware can crash any program. I once had an app crash reproducably on a specific machine while running fine on other machines with the exact same setup. Turns out that machine had faulty RAM.

link|improve this answer
feedback

If you define a crash as an process abort because of a unhandled situation (i.e. no Java Exception or Error), then this can not be done from within Java. This the whole point of managed code.

Typical crashes in machine code happen by dereferencing pointers to wrong memory areas (null address or missaligned. Another source could be illegal machine instructions (opcodes) or unhandled signals from library or kernel calls.

JVMs (the native code) can have bugs. For example JITed (generated) code, native methods or system calls (graphics driver) can have problems leading to real crashes. In those cases the crash handler of the JVM kicks in and dumps the state. It could also generate a OS core file (Dr. Watson on Windows and core dump on *nix).

On Linux/Unix you can easyly make a JVM crash by sending it a Signal to the running process. Note: you should not use SIGSEGV for this, since Hotspot catches this signal and re-throws it as a NullPointerException in most places. So it is better to send a SIGBUS for example.

link|improve this answer
feedback

I'm doing it now, but not entirely sure how... :-) JVM (and my app) sometimes just completely disappear. No errors thrown, nothing logged. Goes from working to not running at all instantly with no warning.

link|improve this answer
Start checking your hardware, especially you memory! – Thorbjørn Ravn Andersen Oct 30 '09 at 13:44
Unfortunately, it's on multiple machines that otherwise run just fine. It's only this one particular app that does it (and it's not memory or processor intensive). – Brian Knoblauch Oct 30 '09 at 14:18
feedback

If you change that infinite for loop to a recursive call to the same function, then you would get a stack overflow exception:

public static void main(String[] args) {
    causeStackOverflow();
}

public void causeStackOverflow() {
    causeStackOverflow();
}
link|improve this answer
feedback

If you want to pretend you have run out of memory you can do

public static void main(String[] args) {
    throw new OutOfmemoryError();
}

I know a couple of way to cause the JVM dump an error file by calling native methods (ones which are built in), but its probably best you not know how to do this. ;)

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.