Was just reading the highly voted question regarding Emulators and the statement

It's been proven that finding all the code in a given binary is equivalent to the Halting problem.

Really stuck out at me.

Surely that can't be true? Isn't it just a large dependency graph?

Would be really grateful for some further insight into this statement.

link|improve this question

What do you mean with "finding the code"? Reverse-engineering or? – nightcracker Mar 14 '11 at 14:10
My understanding by what HE/SHE means is that finding the entire chain of code including dependencies. Look for the line with that text in the selected answer to see context. – Maxim Gershkovich Mar 14 '11 at 14:12
Should you ask this at theoretical cs? – Graviton Mar 14 '11 at 14:16
See my answer. Finding all the code in a program is trivial as long as all branches have fixed target addresses. Function pointers/computed gotos/self-modifying code are the possible complications. – R.. Mar 25 '11 at 18:24
feedback

3 Answers

up vote 2 down vote accepted

I believe what is meant is "finding all code that is ever executed", i.e. finding coverage, possibly in combination with dynamically generated code. That can indeed be reduced to the halting problem.

Say that you have a perfect coverage tool that will find every piece of code in a program that may ever be executed (so the rest is dead code). Given a program P, this tool would also be able to decide whether the extended program (P ; halt) ever executes the halt instruction, or whether the halt part is dead code. So, it would solve the halting problem, which we know is undecidable.

link|improve this answer
Having spent some time thinking about your argument. I am not sure I am convinced. As suggested in the answer below we are not trying to decide if the program will halt (although I see the parallels in this problem). We trying to find all dependencies for a given program. More fundamentally aren't all dependencies encoded inside the application with metadata? (I guess not because you can load them at runtime - but then the dependency would be stored in a constant or variable at some point) hmmmmm. I should prob work out how to turn this to a wiki. – Maxim Gershkovich Mar 17 '11 at 1:46
feedback

I disagree with larsman.

The halting problem says that no program P exists that can take any program and decide whether that program executes the halt instruction. Let me quote wikipedia:

Alan Turing proved in 1936 that a general algorithm to solve the halting problem for all possible program-input pairs cannot exist. We say that the halting problem is undecidable over Turing machines.

On the other hand we're not trying to make such program/algorithm, but we're trying to find all the code in this/these specific program(s). If we reverse-engineer the program and see that it immediately calls exit() (very optimistic example situation) we have proven that it will call halt, while it was impossible?!

If we we're trying to build an emulator that can run any program we would fail since then you can (easily) reduce that to the Halting problem. But usually you are building an emulator for something like a Game Boy which supports a finite amount of game cartridges (programs) and thus it is possible.

link|improve this answer
2  
Holy crap, ur 16yo... Now I'm sad.... – Maxim Gershkovich Mar 15 '11 at 1:04
Is that meant as "WOOOW" or "did I waste my time on this guy?!"? – nightcracker Mar 15 '11 at 1:28
No I meant it as a compliment and a realization as to how stupid I am. :-( lol – Maxim Gershkovich Mar 15 '11 at 1:49
Oh alright :D It was a bit ambiguous :) – nightcracker Mar 15 '11 at 2:02
"If we reverse-engineer the program and see that it immediately calls exit() (very optimistic example situation) we have proven that it will call halt, while it was impossible?!" The halting problem does not imply that this is impossible for every case, but that there are some cases for which it's impossible. – larsmans Mar 17 '11 at 13:04
show 1 more comment
feedback

The halting problem for finite state machines is solvable (although it might take many lifetimes.....of the universe), and any machine you might be emulating is a finite state machine. Just run the program, and the number of steps is bounded by the number of possible states; if that number is exceeded without halting then the program will never halt, since it must be in a loop.

Practically speaking, finding all code is a much easier problem unless the code can use computed gotos. Rather than running the code, you simply take all branches exactly once at each possible branch point.

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.