vote up 9 vote down star
1

I encountered this word for the first time in the StackOverflow question "C# Theoretical: Write a JMP to a codecave in asm." I see that according to Wiktionary, a code cave is:

an unused block of memory that someone, typically a software cracker, can use to inject custom programming code to modify the behavior of a program.

Did I find the correct definition? If so, is there any legitimate use for a code cave?

flag

71% accept rate
And a slightly off-topic question: If there is no legitimate use for one, should we vote to close such questions? – Eddie Apr 24 at 18:51
+1, I had the same question myself for that very post. – Adam Robinson Apr 24 at 18:53
5  
@Eddie: No. The answer to a question being "no" doesn't invalidate it as a question. – chaos Apr 24 at 18:56
1  
No, who is to say we aren't writing anti-virus software. What are we trying to accomplish by closing the question? Are you trying to stop the information from escaping? Knowledge is your friend. – altCognito Apr 24 at 18:57
@Chaos and @altCognito: You confirmed my leanings. (Hiding information only hurts the good guys.) Still, I'd hate to even accidentally help someone who was trying to become a black-hat cracker. – Eddie Apr 24 at 20:21

10 Answers

vote up 2 vote down check

I've used them, although I'd never heard the term code cave until today. The Wiktionary definition suggests that a code cave is something the cracker finds in the executable he or she is attempting to crack. The question you cite doesn't use it that way. Instead, it suggests the code cave is being allocated with VirtualAllocEx to create a brand new block of memory in the target process. That removes the need to search for unused space in the target, and it guarantees you'll have enough space to put all your new code.

Ultimately, I think a "code cave" is just a place to store run-time-generated code. There doesn't have to be any nefarious purpose to that code. And at that point, the question of what a code cave is becomes entirely uninteresting. The interesting parts are what reasons there are for generating code at run time, and what techniques there are for making sure that new code gets run when you want it.

link|flag
There are many good answers, but I selected yours because you addressed not only my question but also the question that caused me to wonder what a code cave is. (To the folks not selected as the answer who still gave good answers ... I voted up several good answers. Thank you!) – Eddie Apr 24 at 20:19
vote up 3 vote down

It can be used to inject code at runtime. It can be used to write self-modifying code in static languages assuming that the OS lets you (NX bit not set, etc). There are uses for it, but it's not something you should be thinking about in your typical business app.

link|flag
vote up 9 vote down

One might wish to intentionally create a code cave as a part of using self-modifying code.

Assuming, of course, that one is insane.

link|flag
5  
SkyNet got started as a code-cave. – TheTXI Apr 24 at 19:02
1  
Gotta love programming techniques that, while completely valid, are predicated on the programmer being insane... – Shog9 Apr 24 at 19:03
An interesting answer, but is there any guarantee your code wouldn't be overwritten? Wouldn't someone writing self-modifying code protect that memory space? – altCognito Apr 24 at 19:04
Sure. It'd be just as protected as any other part of the program (modulo executable space protection, which could not be applied to the code cave). The cracking utility of a code cave isn't based on it being exempted from OS memory protection; to be used at all, the cracker has to have some way of getting data into it (like running the program under a debugger). – chaos Apr 24 at 19:13
+1: Too funny. It hadn't occurred to me that this could be used as a deliberate self-modifying code mechanism. Wayyy back in the day (mid 80's) this used to be all the rage ... when 4k was a moderate amount of RAM and tricks had to be used to make your code fit into the allotted space. – Eddie Apr 24 at 20:44
vote up 5 vote down

Code cave is what I call the basement. :-)

link|flag
2  
+1 When I saw this question, I thought they were talking about a place where you write code. – Zifre Apr 24 at 19:46
vote up 8 vote down

Code caves are usually created by compilers for alignment and are often located between functions in copious amounts. There should also be code caves between structures and jumps (in some architectures), but usually not in any significant amounts.

You also might search for a block of zeroed memory, but there's no guarantee that the program won't use them.

I suppose theoretically, if you lost your source code, you could patch your buggy program by using them, and your program wouldn't grow in size.

Edit

To those of you suggesting code caves are only for run-time generated code: that is an incomplete definition. Many times I have written a data structure in a "code cave" and updated pointers to point there, and I suspect I am not the only person to do so.

link|flag
vote up 3 vote down

That sounds like the correct definition to me.

As for a legitimate use, let me say this: Don't do it unless you are simply experimenting for the sake of experimenting, and are willing to accept the consequences.

There is no way that this type of thing should ever go into production code:

  1. It is an enormous potential security problem. If it is possible to inject code into memory and then execute it, a malicious attacker can theoretically do, well, whatever they like.
  2. It is a code maintenance nightmare and debugging nightmare. If the code that ends up being run can change during runtime, it becomes almost impossible to track down errors and bugs.
link|flag
"If it is possible to inject code into memory and then execute it" ummmmm on windows, you can do this to every single process, i presume you can do it with root privs on any OS. – Dustin Getz Aug 14 at 18:03
"It is a code maintenance nightmare and debugging nightmare" no sane coder is going to be injecting code at runtime if they can modify the source. you do this when you're an absolute expert with no alternatives. – Dustin Getz Aug 14 at 18:06
@Dustin Getz, Re point #1: An experienced programmer with root access can do just about anything. I am referring to the dangers of having an unprotected code cave in production software, which could leave the program open to malicious users who do not have root access. – eJames Aug 14 at 19:57
@Dustin Getz, Re point #2: I agree. As I said in the second line of my answer, you have to be willing to accept the consequences. The rest of the warnings are there for the coders who are not sane, and I can tell you from experience that they do exist. – eJames Aug 14 at 20:02
the presence of a code cave has zero impact on the security of an app. they're just compiler artifacts. – Dustin Getz Aug 14 at 21:22
show 1 more comment
vote up 6 vote down

The way it's described here reminds me of patchpoints -- a legit use.

link|flag
vote up 4 vote down

Unfamiliar with the term but hot-patching mechanisms could use reserved space to store code patches. You hook into the defective function and redirect it to the new-improved function. It can be done on-the-fly without taking down critical equipment (large telecom switches).

link|flag
vote up 2 vote down

Self-modifying code should not be considered lightly, but can sometimes bring big performance gains. If you've been programming for very long, you've probably used it without realizing it.

Prior to the widespread use of the 486 and higher, many PCs did not include hardware floating support. This left people writing programs involving floating point with a dilemma. If they compiled their program to use in-line floating point instructions it would run fast on a machine with a floating point processor, and not at all on machines without one. If they compiled their program with software floating point emulation, it would run on all machines, but slowly even on machines with hardware floating point.

Many compilers libraries used an interesting trick with self-modifying code. The default behavior was to put a trap instruction where a floating point operation was needed. The trap handler would either emulate the instruction in software, or if it detected it was running on a machine with floating point hardware, it would modify the code by replacing the trap instruction with the appropriate hardware floating point instruction and execute it. The result was software that ran on all machines, and ran almost as fast on a machine with floating point hardware as if the code had been compiled to use floating point hardware directly (since most floating point intensive operations occur in loops that are executed many times).

link|flag
I knew about self-modifying code. (Used to play with ASM in the early 80s on microprocessors. 6809, 6502, Z-80, etc.) But hadn't considered a code cave as a mechanism for allowing purposeful self modifying code! – Eddie Apr 24 at 20:46
vote up 3 vote down

some legitimate uses: patching live OS binaries without a reboot (MS does this), hooking low level OS functionality (filesystem, network) for firewall and antivirus, extending an application when you don't have source code (like scraping low level OS calls to DrawText so you can read them aloud for blind people)

link|flag

Your Answer

Get an OpenID
or

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