Why Software DRM Doesn’t Work

I talk about DRM a lot, but I never really found a perfect way to explain it to people who are clueless about technology. When I teach a class on digital media, and go over DRM I usually briefly cover different methodologies, and then put up dates when they were cracked at the end of each slide. I found that it really drives the point home when I go through this buildup stage, explaining these extremely complex systems and conclude each series of slides with “Oh, and this scheme was actually cracked 3 days after release”.

Then I usually reuse few slides from my cryptology lecture and give them Bob, Alice and Eve example, emphasizing how in DRM world Alice and Eve are the same person. This is a great example that really speaks to people who understand and care about cryptography, but Fluency in Technology students usually find it a bit confusing. I’d love to have something explains the absurdity of DRM in a way that is clearer, funnier and doesn’t involve the 3 most hated people in my classroom (sorry Bob, Alice and Eve).

I think I might have found an allegory that might just work on that level. This is how Shamus from Twenty Sided described DRM in his recent post:

In the original Monkey Island, at one point you are captured by natives who lock you in a simple bamboo hut. There is a trap door in the floor through which you may escape. If you’re dumb you can walk over to the natives once you’re out, and they will grab you and throw you back into the hut. The second time they throw you in, they add chains to the door. The next time the door is made of metal. This keeps going until eventually (if you keep going back) they have a bamboo shack with a massive steel vault door on the front, a timed lock with an alarm system on it. It looks like the front of Fort Knox.

“How he keeps getting out is almost as mysterious as why he keeps coming back.“

In a lot of ways these DRM schemes are a bamboo hut with a vault door on the front. The keep using a bigger and bigger lock and a more complex system of authentication, but it still has to run on a machine where you can edit the executable, and all the hacker has to do is go in and disable the part that says, “Do the security check.” It doesn’t matter how secure or complex or devious the security check is, if the machine’s not doing it, it’s not doing it.

I played that game, and I remember that part but I never connected the two! But it is a perfect fit! It’s vivid, funny and really gets the point across. I really don’t expect my students to actually know what Secret of the Monkey Island was. Most of them are just to young to have played it when it was still on the market, and to clueless to download it from one of the the abandonware sites and play it via ScummVM. Well, maybe one or two would actually know about it. Still, the story is silly enough to work so I’m totally stealing it.

Here is a youtube video of that scene for your reference:


escape from the hut © pheedbaq

Shamus is right of course – it very difficult to design copy protection software in a way which will be difficult to crack by a 15 year old kid armed with a debugger and a hex editor. Anything that is running on the client machine can and will be tampered with. The only way to make the game uncrackable is to have the copy protection run on a remote server and have the client simply forward over user authentication. Still, that doesn’t prevent people from sharing accounts and hacking the client to do weird things. Not to mention the costs of running an operation like that. Most of video games that are not MMO’s are really client based applications ant as such will always be vulnerable.

So the second best thing you can do is to mislead and confuse the potential attacker and make his job difficult. Adamantyr posted a god example of this practice in the linked thread over at Twenty Sided:

Concerning executable cracking, Chris Crawford has a VERY good write-up of how he protected one of his games in his book “Chris Crawford On Game Design”.

In particular, he uses obfuscation techniques such as:

  • Burying work code inside of recursive loops, so reading the active process stream has a ton of noise the hacker has to wade through to find the ONE interval that does something.
  • Code over-writing, in other words, the program overwrites parts of itself while running in memory. This is actually really bad from a security standpoint nowadays, but it’s fiendishly clever and sadistic for the poor hacker who’s world view has just been demolished by code that changes when he’s NOT LOOKING.
  • Dummy variables with obvious names that draw the hacker away from the actual important ones.
  • Storing actual data in the stack garbage and fetching it in a clandestine way, like an “accidental” buffer over-run.
  • Deliberately breaking the game so the legitimate version would “fix” one element of data. Otherwise the game can’t be finished.

He actually hired a professional hacker to try and break his program after he’d finished it, and the guy never got past the first level of defense he set up. He later found cracked versions online, but none of them were actually completable as his “flawed” data element wasn’t fixed.

I haven’t read Chris Crawford’s book but the techniques mentioned above would indeed make the life of your average teenage cracker very difficult. However, they would make the life of your average game developer a nightmare as well. Some of these things are really bad practices. Storing data in garbage, controlled buffer overflows, cryptic spaghetti code – this stuff is just bad software development plain and simple. If you are a single programmer on the project, you can probably get away with scattering stuff like that all over your code. When you are working as part of the team, this is the kind of stuff that will get you beaten up by an angry mob of coworkers who have to debug your cryptic code.

These methods do not really seem to fit well into the modern software development model. The only way to make this soft of copy protection work is to have it tightly woven into the very fabric of your software. The copy protection checks should be tightly coupled with real processing code, overlapping and hiding behind real data in as many places as possible. But who the hell is going to test and maintain that kind of stuff? No one really does copy protection this way anymore.

These days most companies think of DRM as a security layer or a module you can buy or license then slap onto a wide range of products your products. They view it as installing a lock, on the bamboo hut because that makes sense and is economical. Once you build an awesome lock, you can use it on any hut you want. Sadly, a hut is still a hut. It is made out of bamboo which can be defeated with a hacksaw, and you can always tunnel under it since it has no floor. What Crhis Craftword seems to be proposing is building a Cube like environment instead of a hut. But that is a hard job which requires not only dedication but also experience. The problem is that most game developers are not really experts in obfuscating their code, and building copy protection mechanisms into their code. In fact they are usually the exact opposite of that. They are trained to write clean and understandable code that is easy to test, easy to debug and conforms to the best practices. Game development studios just want to make games. Who insists on DRM then? The publishers of course. They are the major driving force behind the copy protection industry because “piracy” cuts into their profits the most. And they are not experts on writing obfuscated software either. What they want is something simple like this:

  1. Get a nice black box containing precompiled binaries for the game from the developer studio
  2. Purchase a another box with a complete, end-to-end DRM solution
  3. Pay some low skilled employee to wrap the game proper in the DRM container creating master package to be burned on CD’s or DVD’s
  4. ???
  5. Profit

Neither game developers nor publishers are really interested in building these protection systems. They are interested in buying them, and thus a whole new industry grew as a response to this. Companies started specializing and building DRM systems as separate products. DRM is now a piece of software that is generic and modular designed to fit with as many different products as possible to maximize profits. It can’t blend seamlessly into the game it is protecting or hide behind live data. By necessity, the number of places where the game code intersects with DRM code is limited. The more you try to integrate the two, the more of custom code and modifications you need. And of course, DRM makes charge for this kind of stuff at a premium rate. So the direction which the game industry seems to be taking is building really complex and impressive locks to use on their bamboo huts because it is really the only logical and economical way to do this. The other route is just plain nutty – exuberantly expensive, and potentially creating huge maintenance problems in exchange for what? They can’t guarantee you success – no one can. If something runs on the client machine, it can and will be tampered with – any part of it can be overwritten or modified.

But as you can see the whole system is deeply flawed. Sometimes I wonder how do executives who make the decisions to use DRM systems such as SecuRom or StarForce react when they find out that a cracked version of their product hit the torrent sites 3 hours after the release? How do they justify the expenses they incurred to license the protection technology? Perhaps they don’t. Perhaps no one tells them these things. Perhaps they live out their lives oblivious to the truth, thinking that the millions of dollars spent on licensing some DRM product actually made their software invulnerable. More likely though they hide behind company policy so they can then justify low sales to their sock-holders telling them stories how evil pirates are still robbing them blind despite these strong counter-measure steps they took.

Anyway, if you don’t mind Shamus, I’m gonna use your Monkey Island allegory next semester when I’m teaching my class about digital media and DRM. :)

[tags]drm, copy protection, monkey island, twenty sided[/tags]

This entry was posted in Uncategorized. Bookmark the permalink.



11 Responses to Why Software DRM Doesn’t Work

  1. Shamus UNITED STATES Mozilla Firefox Windows says:

    Cool!

    Hope it helps drive the point home.

    Reply  |  Quote
  2. Leahn Novash BRAZIL Mozilla Firefox Windows says:

    The step four, listed as “???” is “Then a miracle occurs”.
    http://www.webamused.com/blogosophy/archives/002064.html

    Reply  |  Quote
  3. Dax UNITED STATES Opera Windows says:

    You can’t beat the guys who tirelessly crack software. The “problem” of stopping piracy has been going on for many many many years. I recall playing games in the late 80s that required you to look up word #34 on page #15 of the game manual to even start the game. No matter how hard a publisher or developer tries to stop these guys, it won’t work. Hell, I know a lot of people that download no-CD cracks for games just to prevent the everyday wear and tear on games they legitimately own.

    Now, we face the issue of DRM (Mass Effect for PC anyone) that requires constant connection to a network to even play the damned game. Hasn’t anyone learned from Microsoft’s failure with DRM? I like being able to play old games from 10 years ago when I want. In 10 years, those DRM servers will be a lost memory.

    Here’s an excellent related post by someone at Stardock (Sins of a Solar Empire and Galactic Civilizations) who talks about the issue of piracy and software from a business perspective. I think it’s an excellent read.

    Reply  |  Quote
  4. Dax UNITED STATES Opera Windows says:

    HAH! I suck. I left out the link to the post referenced above. Here it is:

    http://forums.sinsofasolarempire.com/post.aspx?postid=303512

    Reply  |  Quote
  5. Luke Maciak UNITED STATES Mozilla Firefox Ubuntu Linux Terminalist says:

    [quote comment=”9009″]Cool!

    Hope it helps drive the point home.[/quote]

    I did repeat that phrase like 4 times in this post, didn’t I? lol

    [quote post=”2444″]I recall playing games in the late 80s that required you to look up word #34 on page #15 of the game manual to even start the game.[/quote]

    LOL! I remember these times. If you would look through my collection of Amiga games you would notice that each and every single one of them had a cool intro created by a cracking group at the time. When I was growing up in post communist Poland we had no copyright law that would apply to software – and piracy was the only way to get the good western games. So for several years I believed that most games simply came with the silly intros and built in trainers (press F1 for infinite lives). :P

    Eh, the good old days. But yeah – this stuff never worked. Once I even got a game that was supposedly very hard to crack so it was simply circulated with a xerox copy of the key pages of the manual. :P

    Reply  |  Quote
  6. Luke Maciak UNITED STATES Mozilla Firefox Ubuntu Linux Terminalist says:

    [quote post=”2444″]The step four, listed as “???” is “Then a miracle occurs”.[/quote]

    Actually the ??? is a reference to South Park but I LOL’d at the cartoon. :)

    Reply  |  Quote
  7. Kenny CANADA Mozilla Firefox Mac OS says:

    Part of the hut escape is available on YouTube:

    http://www.youtube.com/watch?v=3XH9Kf-mjxU

    Reply  |  Quote
  8. Luke Maciak UNITED STATES Mozilla Firefox Windows Terminalist says:

    Thanks Kenny! I added it to the post. :)

    Reply  |  Quote
  9. vacri AUSTRALIA Mozilla Firefox Ubuntu Linux says:

    short story from me:

    I bought Portal because it was ‘cheap’ (AU$25) and I didn’t want the whole Orange Box (in the US, $40, in AU, $90. bastards)

    Took it home. Had a net connection. Nope, no good, won’t activate, Activation servers are down.

    wait wait wait wait

    Next day in the afternoon, oh, look, now it’s activated, I can install it!

    nope

    “steam servers are currently too busy, try again in a few minutes”

    I have the CD. I have an ‘activated’ account. Why should it be trying to use the servers?

    try try try

    try try try

    try try try

    Couple of days later, I have a bioshock-epiphany. In Bioshock, it was the presence of DaemonTools that stopped the damn thing.

    Uninstall DaemonTools – oh look, ‘magically’ the steam servers are no longer ‘busy’ and I’m now able to install the program from the purchased disc onto my activated account.

    Several things to take away from this in my opinion:
    1) Why the hell say “wait for the servers” when the problem is actually “we don’t like your installed software”. It’s not even remotely the right error message. At least it gave the error at the start of the install instead of
    2) Why the hell do “only pirates mount .isos” in Windows? Every other OS allows this natively, because it’s so damned useful.
    3) The steam knowledge base is fucking awful
    4) Portal took 3 hours to finish, not including the ‘challenge’ levels. I spent more time trying to get it installed.
    5) Bye bye steam

    Reply  |  Quote
  10. vacri AUSTRALIA Mozilla Firefox Ubuntu Linux says:

    “At least it gave the error at the start of the install instead of”… after 45 minutes of installation like Bioshock did (sorry, distracted by coworker)

    Reply  |  Quote
  11. Alphast NETHERLANDS Mozilla Firefox Ubuntu Linux Terminalist says:

    I remember the copy protection of Gunship, on Atari 520ST. The program was displaying a random image of a military vehicle and you had to identify it. The list of available vehicles was about 20 items long and it probably never occurred to the game designers that most players were really good at vehicle recognition. Though I had a legit copy of the game, I never had to open the manual to answer the copy protection question.

    Reply  |  Quote

Leave a Reply

Your email address will not be published. Required fields are marked *