vote up 62 vote down star
17

To commemorate the public launch of Stack Overflow, what's the shortest code to cause a stack overflow? Any language welcome.

ETA: Just to be clear on this question, seeing as I'm an occasional Scheme user: tail-call "recursion" is really iteration, and any solution which can be converted to an iterative solution relatively trivially by a decent compiler won't be counted. :-P

ETA2: I've now selected a “best answer”; see this post for rationale. Thanks to everyone who contributed! :-)

flag
3  
Hope you like my new entry. One byte, and faster overflow than befunge... stackoverflow.com/questions/62188/… – Adam Davis Feb 28 at 2:19
show 1 more comment

112 Answers

1 2 3 4 next
vote up 119 vote down check

All these answers and no Befunge? I'd wager a fair amount it's shortest solution of them all:

1

Not kidding. Try it yourself: http://www.quirkster.com/js/befunge.html

EDIT: I guess I need to explain this one. The 1 operand pushes a 1 onto Befunge's internal stack and the lack of anything else puts it in a loop under the rules of the language.

Using the interpreter provided, you will eventually--and I mean eventually--hit a point where the Javascript array that represents the Befunge stack becomes too large for the browser to reallocate. If you had a simple Befunge interpreter with a smaller and bounded stack--as is the case with most of the languages below--this program would cause a more noticeable overflow faster.

link|flag
1  
And it hangs Firefox to boot. Nice :) – irixman Sep 16 '08 at 4:14
3  
Hmm … but is this really a stack overflow or just an infinite loop? My JS interpreter did not overflow, it just went on vacation, so to speak. – Konrad Rudolph Sep 16 '08 at 7:53
2  
definitely the best one – Jean Sep 16 '08 at 16:16
2  
You.. crashed my browser and.. sent my CPU fan into overdrive. – Sam152 May 11 at 15:01
1  
Safari asked me if I wanted to stop the script :). – Mk12 Oct 17 at 19:59
show 5 more comments
vote up 0 vote down

Even though it doesn't really have a stack...

brainf*ck 5 char

+[>+]
link|flag
vote up 0 vote down

OCaml

let rec f l = f l@l;;

This one is a little different. There's only one stack frame on the stack (since it's tail recursive), but it's input keeps growing until it overflows the stack. Just call f with a non empty list like so (at the interpreter prompt):

# f [0];;
Stack overflow during evaluation (looping recursion?).
link|flag
vote up 2 vote down

Please tell me what the acronym "GNU" stands for.

link|flag
show 1 more comment
vote up 0 vote down

A better lua solution:

function c()c()end;

Stick this into SciTE or an interactive command prompt and then call it. Boom!

link|flag
vote up 0 vote down
_asm t: call t;
link|flag
vote up 0 vote down

Meta problem in D:

class C(int i) { C!(i+1) c; }
C!(1) c;

compile time stack overflow

link|flag
vote up 0 vote down

In Haskell

fix (1+)

This tries to find the fix point of the (1+) function (λ n → n + 1) . The implementation of fix is

fix f = (let x = f(x) in x)

So

fix (1+)

becomes

(1+) ((1+) ((1+) ...))

Note that

fix (+1)

just loops.

link|flag
vote up 0 vote down

Tail call optimization can be sabotaged by not tail calling. In Common Lisp:

(defun f () (1+ (f)))
link|flag
vote up 32 vote down

PIC18

The PIC18 answer given by TK results in the following instructions (binary):

overflow
   PUSH
   0000 0000 0000 0101
   CALL overflow
   1110 1100 0000 0000
   0000 0000 0000 0000

However, CALL alone will perform a stack overflow:

CALL $
1110 1100 0000 0000
0000 0000 0000 0000

Smaller, faster PIC18

But RCALL (relative call) is smaller still (not global memory, so no need for the extra 2 bytes):

RCALL $
1101 1000 0000 0000

So the smallest on the PIC18 is a single instruction, 16 bits (two bytes). This would take 2 instruction cycles per loop. At 4 clock cycles per instruction cycle you've got 8 clock cycles. The PIC18 has a 31 level stack, so after the 32nd loop it will overflow the stack, in 256 clock cycles. At 64MHz, you would overflow the stack in 4 micro seconds and 2 bytes.

PIC16F5x (even smaller and faster)

However, the PIC16F5x series uses 12 bit instructions:

CALL $
1001 0000 0000

Again, two instruction cycles per loop, 4 clocks per instruction so 8 clock cycles per loop.

However, the PIC16F5x has a two level stack, so on the third loop it would overflow, in 24 instructions. At 20MHz, it would overflow in 1.2 micro seconds and 1.5 bytes.

Intel 4004

The Intel 4004 has an 8 bit call subroutine instruction:

CALL $
0101 0000

For the curious that corresponds to an ascii 'P'. With a 3 level stack that takes 24 clock cycles for a total of 32.4 micro seconds and one byte. (Unless you overclock your 4004 - come on, you know you want to.)

Which is as small as the befunge answer, but much, much faster than the befunge code running in current interpreters.

link|flag
1  
Very nice. :-) I can't accept two answers, so I've just +1'd your answer, and hope everyone else does the same and bump it up. :-P – Chris Jester-Young Mar 6 at 19:26
2  
Ah, I figured that the smallest and fastest might beat out the the smallest, but such is life. Thanks anyway! – Adam Davis Mar 6 at 22:12
1  
Sweet. I started out on Z-80 assembler, and it's nice to know there's still low-level awesomeness in the world! – Mark Harrison Aug 24 at 20:04
vote up -3 vote down
Redmond.Microsoft.Core.Windows.Start()
link|flag
vote up 0 vote down

Prolog

This program crashes both SWI-Prolog and Sicstus Prolog when consulted.

p :- p, q.
:- p.
link|flag
vote up 0 vote down

CMD overflow in one line

echo @call b.cmd > b.cmd & b
link|flag
vote up 1 vote down

False:

[1][1]#

(False is a stack language: # is a while loop that takes 2 closures, a conditional and a body. The body is the one that causes the overflow).

link|flag
vote up 0 vote down

in perl:

`$0`

As a matter of fact, this will work with any shell that supports the backquote-command syntax and stores its own name in $0

link|flag
show 2 more comments
vote up 2 vote down

Groovy (5B):

run()
link|flag
vote up 0 vote down

In x86 assembly, place a divide by 0 instruction at the location in memory of the interrupt handler for divide by 0!

link|flag
show 1 more comment
vote up 0 vote down

In response to the Y combinator comment, i might as well through in the Y-combinator in the SKI calculus:

S (K (S I I)) (S (S (K S) K) (K (S I I)))

There aren't any SKI interpreters that i know of but i once wrote a graphical one in about an hour in actionscript. I would be willing to post if there is interest (though i never got the layout working very efficiently)

read all about it here: http://en.wikipedia.org/wiki/SKI_combinator_calculus

link|flag
vote up 0 vote down

Actionscript 3: All done with arrays...

var i=[];
i[i.push(i)]=i;
trace(i);

Maybe not the smallest but I think it's cute. Especially the push method returning the new array length!

link|flag
vote up 0 vote down

http://www.google.com/search?q=google.com

link|flag
vote up 5 vote down

Here's another interesting one from Scheme:

((lambda (x) (x x)) (lambda (x) (x x)))
link|flag
show 1 more comment
vote up 1 vote down

Short solution in K&R C, could be compiled:

main(){main()}

14 bytes

link|flag
vote up 1 vote down

Vb6


Public Property Let x(ByVal y As Long)
  x = y
End Property

Private Sub Class_Initialize()
  x = 0
End Sub
link|flag
show 2 more comments
vote up 1 vote down

Another one in JavaScript:

(new function() { arguments.callee();});
link|flag
show 1 more comment
vote up 6 vote down

I'm selecting the “best answer” after this post. But first, I'd like to acknowledge some very original contributions:

  1. aku's ones. Each one explores a new and original way of causing stack overflow. The idea of doing f(x) ⇒ f(f(x)) is one I'll explore in my next entry, below. :-)
  2. Cody's one that gave the Nemerle compiler a stack overflow.
  3. And (a bit grudgingly), GateKiller's one about throwing a stack overflow exception. :-P

Much as I love the above, the challenge is about doing code golf, and to be fair to respondents, I have to award “best answer” to the shortest code, which is the Befunge entry; I don't believe anybody will be able to beat that (although Konrad has certainly tried), so congrats Patrick!

Seeing the large number of stack-overflow-by-recursion solutions, I'm surprised that nobody has (as of current writing) brought up the Y combinator (see Dick Gabriel's essay, The Why of Y, for a primer). I have a recursive solution that uses the Y combinator, as well as aku's f(f(x)) approach. :-)

((Y (lambda (f) (lambda (x) (f (f x))))) #f)
link|flag
vote up 1 vote down

Here's another Ruby answer, this one uses lambdas:

(a=lambda{a.call}).call
link|flag
show 2 more comments
vote up 23 vote down

Every task needs the right tool. Meet the SO Overflow language, optimized to produce stack overflows:

so
link|flag
1  
Did you just invent this language just for the purpose of this question? :-P – Chris Jester-Young Sep 16 '08 at 10:55
1  
Yea … unfortunately, I wrote it (well, the HTML page took longer than the “interpreter”) before seeing the Befunge solution. Can't beat that. ;-) – Konrad Rudolph Sep 16 '08 at 12:55
1  
But, in my defense, even the language's name produces a stack overflow. Oh well. – Konrad Rudolph Sep 16 '08 at 12:56
1  
If you're making a specialized language for generating overflows with a minimal of code, obviously you would want (1) empty input produces stack overflowing code (probably a small binary that runs the native code generated from the assembly code entry) or (2) all input programs produce said binary. – Jared Updike Sep 18 '08 at 19:08
show 5 more comments
vote up 2 vote down

In Irssi (terminal based IRC client, not "really" a programming language), $L means the current command line. So you can cause a stack overflow ("hit maximum recursion limit") with:

/eval $L
link|flag
vote up 0 vote down

In a PostScript file called so.ps will cause execstackoverflow

%!PS
/increase {1 add} def
1 increase
(so.ps) run
link|flag
show 1 more comment
vote up 0 vote down

why not

mov sp,0

(stack grows down)

link|flag
1 2 3 4 next

Your Answer

Get an OpenID
or

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