So finally I published me post about the idea of byte equivalent #decompilation of the #Linux #kernel using #EvolutionaryAlgorithms in the hope that we could mainline Android phones and tablets, whose companies are violating #GPL by not releasing the kernel source code.
https://far.chickenkiller.com/computing/decompiling-the-kernel-using-ea/
I really don't know if it's possible. Or if it is, how long will it take. It's research. And research means exploring the unexplored areas. You might find a little silver, or you might find few kilograms of gold. Or you might explore the areas for 2 years and in the end, find nothing.
#GPLViolation #GeneticProgramming #Research #ResearchIdea #ComputerScience #LinuxKernel #ViolatingGPL #OptimizationProblem #EvoltiionaryAlgorithm
Decompiling the GPL violated Linux kernel using Evolutionary Algorithms
TLDR: We want to decompile a binary code, into the byte equivalent C code. We look at this from an optimization viewpoint. We have a generated C code(or AST) and we want to optimize it so when we compile it, it is equivalent to the binary code, byte by byte. And I think it’s better to use a population based optimization metaheuristic to do this. Such as Genetic Programming. Requirements to understand this post The idea I’m writing about is very deep. You need to know the current problem we have about companies violating GPL and not releasing the Linux kernel source code used in their devices. Then you need to know what an Algorithm is. What a Heuristic is. And what is the difference between them. And you also need to know what an optimization problem is. And what is our goal in these problems. After that, you need to know in this very specific optimization problem, we are not looking for “good enough” solutions unlike most other optimization problems. We are rather looking for the “perfect” solution, if we can find one.