103
submitted 6 months ago by [email protected] to c/[email protected]

I see a lot about source codes being leaked and I'm wondering how it that you could make something like an exact replica of Super Mario Bros without the source code or how you can't take the finished product and run it back through the compilation software?

top 50 comments
sorted by: hot top controversial new old
[-] [email protected] 149 points 6 months ago

4+4 is 8 But so is 6+2 And 7+1

You can't guess which two numbers I started with knowing just the answer

Code is the same, just with much bigger numbers and more of them

[-] [email protected] 34 points 6 months ago

Very nice explanation of a complex promlem.

[-] [email protected] 8 points 6 months ago* (last edited 6 months ago)

I would say that it's more like 4+4=8 but the original could have been (1+1+1+1)+(3+1) or (2+2)+(1+2+1) etc.

Basically it's the same thing but if you really want to understand the code and modify it in any meaningful way you have to know how it was intended and not just the results.

My point being that decompiling does give you something similar to the original. It's not just a guess that gives you random code with the correct result, but it could be very different from the source code.

The reason is that the compiler does a lot of things to make it more efficient but that just means that while 1+1+1+1 can be efficiently written as 4, there still is a good reason for 1+1+1+1 from a logical sense. For example, if you're counting something, it would make sense to say 1+1+1+1. But if you're looking at a specific value, maybe it makes more sense to just say 4.

[-] [email protected] 97 points 6 months ago

It can be

What it produces will typically not contain the original names for variables and functions, and will not retain comments. It takes a lot more effort to understand what the intention behind the code was.

There's also legality issues.

[-] [email protected] 71 points 6 months ago* (last edited 6 months ago)

The long answer involves a lot of technical jargon, but the short answer is that the compilation process turns high level source code into something that the machine can read, and that process usually drops a lot of unneeded data and does some low-level optimization to make things more efficient during actual processing.

One can use a decompiler to take that machine code and attempt to turn it back into something human readable, but will usually be missing data on variable names, function calls, comments, etc. and include compiler-added optimizations which makes it nearly impossible to reconstruct the original code

It's sort of the code equivalent of putting a sentence into Google translate and then immediately translating it back to the original. You often end up with differences in word choice that give you a good general idea of intent, but it's impossible to know exactly which words were in the original sentence.

[-] [email protected] 9 points 6 months ago

Thank you, sorry to push further but my understanding is that computers deal with binary so every language is compiled to machine code, which I took as binary.

So if the language has elements being removed and the machine doesn't need them shouldn't you get back out exactly what is needed to do the task? Like if you compiled some code and then uncompiled it you would get the most efficient version of it because the computer took what it needed, discarded the rest and gave it back to you?

[-] [email protected] 17 points 6 months ago* (last edited 6 months ago)

It depends on the specifics of how the language is compiled. I'll use C# as an example since that's what I'm currently working with, but the process is different between all of them.

C#, when compiled, actually gets compressed down to what is known as an intermediate language (MSIL for C# specifically). This intermediate file is basically a set of genericized instructions that are not linked to any specific CPU. This is useful because different CPUs require different instructions.

Then, when the program is run, a second compiler known as the JIT (just-in-time) compiler takes the intermediate commands and translates them into something directly relevant to the CPU being used.

When we decompile a C# dll, we're really converting from the intermediate language (generic CPU-agnostic instructions) and translating it back into source code.

To your second point, you are correct that the decompiled version will be more efficient from a processing perspective, but that efficiency comes at the direct cost of being able to easily understand what is happening at a human level. :)

load more comments (3 replies)
[-] [email protected] 10 points 6 months ago* (last edited 6 months ago)

The main issue is that to make code human-readable, we include a lot of conventions that computers don't need. We use specific formatting, name conventions, code structure, comments, etc. to help someone look at the code and understand its function.

Let's say I write code, and I have a function named 'findUserName' that takes a variable 'text' and checks it against a global variable 'userName', to see if the user name is contained in the text, and returns 'true' if so. If I compile and decompile that, the result will be (for example) a function named 'function_002' that takes a variable 'var_local_000' and checks it against 'var_global_115'. Also, my comments will be gone, and finding where the function was called from will be difficult. Yes, you could look at that code and figure out that it's comparing the contents of two variables, but you wouldn't know that var_global_115 is a username, so you'd have to go find where that variable was set and try to puzzle out where it was coming from, and follow that rabbit hole backwards until you eventually find a request for user input which you'd have to use context clues to determine the purpose of. You also wouldn't have the context around what 'var_local_000' represented unless you found where the function was called, and followed a similar line backwards to find the origin of that variable.

It's not that the code you get back from a decompiler is incorrect or inefficient, it's that it's very much not human-readable without a lot of extra investigatory work.

load more comments (1 replies)
[-] litchralee 4 points 6 months ago* (last edited 6 months ago)

The implicit assumption with decompiling code is that the goal is either to inspect how the code works, or to try compiling for a different machine. I'll try to explain why the latter is quite difficult.

As you said, compilation to machine code only keeps the details needed for the CPU to accomplish what was instructed. And indeed, that is supposed to be efficient to run on that CPU, by reason of being targeted exactly for that CPU. But when decompiling, the resulting code will reflect the specificity to that same CPU. If you then try to compile that code for a different CPU, it will likely work, but will likely be inefficient because the second CPU's unique advantages won't be leveraged.

To use an example, consider how someone might divide two large numbers. Person A learned long division in school, and so takes each number and breaks it down into a series of smaller multiplications and subtractions. Person B learned to do division using a calculator, which just involves entering the two numbers and requesting that they be divided.

Trying to do division by blindly giving Person B that series of multiplications and subtractions to do on the calculator is extremely inefficient because Person B knows how to do division easily. But Person B is following Person A's methods, without knowing that the whole point of this exercise is to just divide the two original numbers. Compilation loses context and intent, which cannot be recovered from decompilation, for non-trivial programs.

Here is an example why source code is useful when it provides context: https://en.m.wikipedia.org/wiki/Fast_inverse_square_root#Overview_of_the_code . Very few people would be able to figure out how this works from just the machine code.

[-] UnRelatedBurner 2 points 6 months ago* (last edited 6 months ago)

follow up, would it be easier to read this context-less source code or stay at assembly? If for example you'd like to modify a closed source app

[-] [email protected] 2 points 6 months ago

Probably depends on how comfortable you are at reading assembly instructions for your specific CPU, but I think generally the contextless source code is probably preferable. Either way you've got a headache of an investigation in front of you though.

here's an example of what it might look like with either option

[-] UnRelatedBurner 2 points 6 months ago

oh wow, I now respect pirates even more. No wonder there are only like 3 guys that can and will do this.

If you decompile you need such an understanding of the language. I could see someone looking at this and going "oh yeah that compares cases", but then die of old age before finishing the sentance.

And if you don't decompile you are coding assembly.

[-] litchralee 1 points 6 months ago* (last edited 6 months ago)

Like many things, it's very fact-intensive, varying in different circumstances. As others have noted, the abilities of the person undertaking the decompilation will influence the decision. But so will strategy: the overall goal can drive how decompilation is approached.

For example, suppose you're working for an airline company and need to rewrite some software used on an ancient IBM System/360 machine and was written in the COBOL language, for which no source code is available and you cannot find many people who even know COBOL. Here, since the task is to rewrite the code, decompilation is just to tell you how it works and then you'll want to write the new program in a modern language. It may be useful to decompile to a different language if such a decompiler is available, say to the C language, which you better understand.

Sure, it may be that C isn't what the new program will be written in, but if your C reading skills are sufficient, then this is a valid strategy.

The skill of a decompiling engineer -- or any engineer really -- is leveraging your skills and your tools to tractably attack the difficult problem at hand. Many equally-skilled engineers can plausibly approach the same problem differently.

[-] [email protected] 2 points 6 months ago

if you compiled some code and then uncompiled it you would get the most efficient version of it ... ?

Sorta, an optimizing compiler will always trim dead code which isn't needed, but it will also do things that are more efficient but make the code harder to understand like unrolling loops. e.g. you might have some code that says "for numbers 1-100 call some function" the compiler can look at this and say "let's just go ahead and insert 100 calls to that function with the specific number" so instead of a small loop you'll see a big block of function calls almost the same.

Other optimizations will similarly obfuscate the original programmers intent, and thinks like assertions are meant to be optimized out in production code so those won't appear in the de-compiled version of the sources.

[-] [email protected] 66 points 6 months ago

I actually work on a C++ compiler... I think I should weigh in. The general consensus here that things are lossy is correct but perhaps non-obvious if you're not familiar with the domain.

When you compile a program you're taking the source, turning into a graph that represents every aspect of the program, and then generating some kind of IR that then gets turned into machine code.

You lose things like code comments because the machine doesn't care about the comments right off the bat.

Then you lose local variable and function parameter names because the machine doesn't care about those things.

Then you lose your class structure ... because the machine really just cares about the total size of the thing it's passing around. You can recover some of this information by looking at the functions but it's not always going to be straight forward because not every constructor initializes everything and things like unions add further complexity ... and not every memory allocation uses a constructor. You won't get any names of any data members/fields though because ... again the machine doesn't care.

So what you're left with is basically the mangled names of functions and what you can derive from how instructions access memory.

The mangled names normally tell you a lot, the namespace, the class (if any), and the argument count and types. Of course that's not guaranteed either, it's just because that's how we come up with unique stable names for the various things in your program. It could function with a bunch of UUIDs if you setup a table on the compilers side to associate everything.

But wait! There's more! The optimizer can do some really wild things in the name of speed... Including combining functions. Those constructors? Gone, now they're just some more operations in the function bodies. That function you wrote to help improve readability of your code? Gone. That function you wrote to deduplicate code? Gone. That eloquent recursive logic you wrote? Gone, now it's the moral equivalent of a giant mess of goto statements. That template code that makes use of dozens of instantiated functions? Those functions are gone now too; instead it's all the instantiated logic puked out into one giant function. That piece of logic computing a value? Well the compiler figured out it's always 27, so the logic to compute it? Gone.

Now all of that stuff doesn't happen every time, particularly not all of those things are always possible optimizations or good optimizations ... But you can see how incredibly difficult it is to reconstruct a program once it's been compiled and gone through optimization. There's a very low chance if you do reconstruct it, that it will look anything like what you started with.

[-] [email protected] 12 points 6 months ago

Just wait until you see the crazy optimizers for embedded systems. They take the complete code of a system into consideration, and, in a number of compile passes, reuses code snippets from app, libraries, and OS layer to create one big tangled mess that is hard to follow even if you have the source code...

[-] [email protected] 4 points 6 months ago

Isn't that still the same exact process as a normal compiler except in the case of embedded systems your OS is like a couple kilobytes large and just compiled along with the rest of your code?

As in, are those "crazy optimizations" not just standard compiler techniques, except applied to the entire OS+applications?

[-] [email protected] 4 points 6 months ago

The main difference is that when you compile a program for Windows, Linux etc., you have an operating system and kernel with their exposed functions/interfaces so even in a compiled program it's pretty easy to find the function calls for opening a file, moving a window, etc. (as long as the developer doesn't add specific steps hiding these calls). But in an embedded system, it's one large mess without any interfaces apart from those directly on the hardware level.

[-] [email protected] 4 points 6 months ago

In a way, yes. But it really creates a mess when the linker starts sharing code between your code of which you have sources, and then jumps in the middle of system code for which you don't have sources. And a pain in the whatever to debug.

[-] [email protected] 2 points 6 months ago

Don't you have the code in most cases? Like with e.g. freeRTOS? That's fully open source

[-] [email protected] 2 points 6 months ago

For a number of reasons people use commercial OSes in this world, too.

[-] [email protected] 1 points 6 months ago

Does commercial mean closed source in this context though? It seems like a waste of resources not to provide the source code for an rtos.

Considering how small in size they tend to be + with their power/computational constraints I can't imagine they have very effective DRM in place so it shouldn't take that much to reverse engineer.

May as well just provide the source under some very restrictive license.

load more comments (1 replies)
[-] [email protected] 51 points 6 months ago

You can. It's called decompiling. Problem is you lose all the human friendly metadata that was in the original source code, meaning comments, variable names, certain code structures are lost forever because it was deleted in the compilation process. There are tools to help you reintroduce that stuff by going through the variables and trying to make sense out of what they were for but it's super tedious. With new ai tech that can certainly be improved with AI guessing what they were for but you'll never get the original meta data back.

[-] [email protected] 27 points 6 months ago

Also if the code was run through an optimizer (which all modern games should be) the code is even harder to make sense of as it doesn't necessarily have the same structure and the same variables as the original code

[-] [email protected] 11 points 6 months ago

This is also very similar to if they ran the source code through an obfuscation tool. Some people do this with chrome extensions. Since they need to give you the source code for it to work on your machine they just change the variables to a, b, c, d and route things though unneeded functions so you don't know why anything is happening.

[-] [email protected] 23 points 6 months ago

The best and simplest explanation I've seen: The machine code tells the computer what to do while the source code tells the human why it's doing it.

Your computer doesn't need all the "why" information to run the game, so the compilation process gets rid of it. What you're left with are instructions on exactly what computations to do, and that's all the computer needs.

For example, you can see in the machine code that two numbers are being added together. What do those numbers mean and why are we adding them? The source code can tell you that this is code that controls movement, one of the numbers is a velocity, the other is the player's current position.

[-] [email protected] 6 points 6 months ago

Okay, I think that is sinking in.

I was under the impression it wasn't possible or just complete gibberish but it being just the results or instructions is helpful.

[-] [email protected] 4 points 6 months ago* (last edited 6 months ago)

Also, you only decompile to level of basic instructions that the processor understands. When you compile code to add two numbers, well, the processor only adds bytes. There are a quite a few steps that the compiler has to fill in.

Ok, all that is not a big deal. But then you deal with compiler optimization. Optimizing basically tells the compiler to take its time and find some clever ways to save machine steps. So now the "standard way" for a compiler to implement adding numbers may have other stuff rolled into it because the compiler may see an opportunity to save steps in a seemly unrelated calculation by inserting steps into the addition it is implementing. Now it's basically unrecognizable. A human didn't write, and wouldn't have written that mess that the decompiler gives.

Edit: I would also like to add that when compile with the debugger flag, you are telling the compiler to produce decompilable code. Don't change any steps and store variable names as written.

[-] [email protected] 20 points 6 months ago

As I've read somewhere once: it's easy to make a burger out of a cow. Making a cow out of a burger is slightly harder.

That means that compiling code is a lossy process - the original code is lost in the process and can never be recovered because it doesn't exist anywhere anymore.

[-] [email protected] 2 points 6 months ago

This is the fundamental notion of nearly 95% of cyberpunk stories re: the human soul and yet everyone always is like “but I want my cool robot hand!”

[-] [email protected] 7 points 6 months ago

Fuck soul, I want my cool robot hand!

[-] Moondance 15 points 6 months ago

The compilation process discards information in the process leaving a many to one effect. A good decompiler allows one to retrieve a program that is functionally equivalent to the source code but not exactly the source code.

[-] ryathal 14 points 6 months ago

Code can be decompiled, but generally the end result isn't human readable. Just having the decompiler version isn't that valuable. Having the source code as written is more helpful because you get the context of what things were named and how it was organized.

Decompiled code is a bit like reading a book with all the nouns being random letters and verbs being random numbers.

[-] [email protected] 2 points 6 months ago

Not completely random, every noun/verb would be translatable to a specific word/name. But also characters, there'd be many characters whose names, intentions and goals, relationships/links would also be in the same unreadable state. The storyline would likely not be chronological, but several actions and decisions by all kinds of actors would intertwine. It would be very hard to translate into a readable story, let alone so that it makes sense

[-] [email protected] 13 points 6 months ago* (last edited 6 months ago)

@Squizzy
Lots of other people have addressed this, so I won't repeat the whole thing. You can absolutely do disassembly work, it's just a pain in the rear.
But it's actually been done for Mario, since you brought it up:
https://github.com/IsoFrieze/SMWDisX
And also Pokemon.

[-] [email protected] 8 points 6 months ago

Well, actually it can be. It just takes a lot more to decompile code than compile it. Depending on the objective accuracy.

Example: the Super Mario 64 Decompilation project. This was a project that used various debug data that was left in the rom to decompile the game back to a source code that compiled a byte accurate version of the rom. This took about 3 years and a lot of skilled developers to accomplish.

Side note: Super Mario Bros wasn’t built using a compiled language, but rather Assembly. So technically that would be a Disassembly not a Decompilation.

[-] [email protected] 5 points 6 months ago

The general difference is that you lose out on metadata - names, comments and organization that helps the source code in whatever programming language make sense, but which is not needed to actually execute the desired behavior on your CPU. Usually stuff like sensible names for bits of your code - functions/reusable logic, storage locations for "health" or "armor" or "current powerup", movement states, types of objects etc.

However, most of these are just another kind of number to the computer itself, so a lot of compilation processes strip a lot of this information. You could still reverse engineer it, but you're missing context (like all those names) from the original code and that makes the work potentially pretty difficult. Bear in mind that reading actual original source code is sometimes cryptic enough, then compare "if player is dead, show game over screen" to if (sdfdfgsdfg == jgdfg) { lkghku(); } because the "decompiler" has to invent some kind of name for everything that's missing. Now you have to deal with thousands of jfdsghklgs, and figure out what it all means.

[-] [email protected] 4 points 6 months ago

You can get close depending on the language by using decompilers. Usually though, they're rough translations of what the decompiler thinks that the (compiled) machine code does. It's not a 1:1 deal.

Basically, a compiler translates the human-readable code to machine code that can actually be recognized and executed by your computer. A decompiler attempts to do the opposite, it translates the machine code back into the original language. But like some "translators", it's not always correct. That's the hard part - once decompiled you will likely have a lot of blanks to fill in and bugs to fix before anything will be compilable again. You'll likely never be able to get an exact copy of the original source code via decompiler.

[-] [email protected] 4 points 6 months ago

You can certainly decompile things back down to machine code, but there could be gaps and things lost in translation between the programming language used to create the program, and the machine code that results when you take it apart again.

When you program, like actually write the code, you're using one language. When you compile it, you're passing it off to an interpreter into another language. There could be even more layers of this depending on what you're doing.

Now think about what happens when you open a translator, enter some words, translate it to one language, and then another, and back to the original. It comes out all wrong; the same thing happens with code. There's nuance and flavor imparted by the language itself that isn't kept through the interpretation of that language to the language that actually is used by the computer to do its tasks.

[-] [email protected] 3 points 6 months ago* (last edited 6 months ago)

Code can be decompiled into code that can be recompiled, but compilers translate the human readable code into code that is easier to understand for machines. So decompiled code often ends up being nearly undecipherable for humans, and can take a long time to try and decipher.

[-] Moondance 2 points 6 months ago

But generally speaking it's not a reversible process and it is more difficult to do in reverse.

[-] [email protected] 1 points 6 months ago

Others have explained that decompiling is a thing.

I mainly work in Java where (due to the way Java bytecode works) decompiled code is actually very close to the original source code.

Most games are written in low level languages like C++ where that is not the case, variable and function names are lost during compilation.

[-] [email protected] 1 points 6 months ago

It can, but it would just be the assembly instructions.

Usually we use high level programming languages when developing software, you'd make the cat class, the dog class, both inheriting from the animal class etc. to make our job easier.

When you compile the code, all the cute stuff gets removed, and the resulting code gets optimized as much as possible, which means you can't get back to the nice cat and dog code anymore.

A bit like a painter uses thousands of brush strokes to make a painting, it would be very hard to figure out which ones he made to make that specific painting, even if you have access to the painting.

[-] pizza_the_hutt 1 points 6 months ago

It highly depends on the programming language used and how much debug information is left in the build. Production builds of software usually have debug symbols and other information useful during development stripped out to save space and improve runtime performance. Even when it is technically possible to decompile built code, the decompiled result may not be human-readable to the point of being useful. Imagine reading source code that has random names for variables, functions, modules, etc, or code that does not have any discernable organization.

load more comments
view more: next ›
this post was submitted on 03 Jan 2024
103 points (95.6% liked)

No Stupid Questions

34333 readers
1356 users here now

No such thing. Ask away!

!nostupidquestions is a community dedicated to being helpful and answering each others' questions on various topics.

The rules for posting and commenting, besides the rules defined here for lemmy.world, are as follows:

Rules (interactive)


Rule 1- All posts must be legitimate questions. All post titles must include a question.

All posts must be legitimate questions, and all post titles must include a question. Questions that are joke or trolling questions, memes, song lyrics as title, etc. are not allowed here. See Rule 6 for all exceptions.



Rule 2- Your question subject cannot be illegal or NSFW material.

Your question subject cannot be illegal or NSFW material. You will be warned first, banned second.



Rule 3- Do not seek mental, medical and professional help here.

Do not seek mental, medical and professional help here. Breaking this rule will not get you or your post removed, but it will put you at risk, and possibly in danger.



Rule 4- No self promotion or upvote-farming of any kind.

That's it.



Rule 5- No baiting or sealioning or promoting an agenda.

Questions which, instead of being of an innocuous nature, are specifically intended (based on reports and in the opinion of our crack moderation team) to bait users into ideological wars on charged political topics will be removed and the authors warned - or banned - depending on severity.



Rule 6- Regarding META posts and joke questions.

Provided it is about the community itself, you may post non-question posts using the [META] tag on your post title.

On fridays, you are allowed to post meme and troll questions, on the condition that it's in text format only, and conforms with our other rules. These posts MUST include the [NSQ Friday] tag in their title.

If you post a serious question on friday and are looking only for legitimate answers, then please include the [Serious] tag on your post. Irrelevant replies will then be removed by moderators.



Rule 7- You can't intentionally annoy, mock, or harass other members.

If you intentionally annoy, mock, harass, or discriminate against any individual member, you will be removed.

Likewise, if you are a member, sympathiser or a resemblant of a movement that is known to largely hate, mock, discriminate against, and/or want to take lives of a group of people, and you were provably vocal about your hate, then you will be banned on sight.



Rule 8- All comments should try to stay relevant to their parent content.



Rule 9- Reposts from other platforms are not allowed.

Let everyone have their own content.



Rule 10- Majority of bots aren't allowed to participate here.



Credits

Our breathtaking icon was bestowed upon us by @Cevilia!

The greatest banner of all time: by @TheOneWithTheHair!

founded 1 year ago
MODERATORS