Hacker Newsnew | past | comments | ask | show | jobs | submitlogin

Why not recompile aapt2 to correct target? It seems to be source available.

https://android.googlesource.com/platform/frameworks/base/+/...



Have you tried building AOSP from available sources?

Binaries everywhere. Tried to rebuild some of them with the available sources and noped the f out because that breaks the build so bad it's ridiculous.


"Binaries everywhere"

So much for "Open Source"


The binaries are open source, but Google doesn't design their build chain to recompile from scratch every time.

Also, you don't need to compile all of AOSP just to get the toolchain binaries.


With how strict F-Droid is I would have expected them to build from source all the way down. Though that sounds like a daunting task so I don't blame them.


Everything is open source, if you can read assembly ;)


Machine code. Assembly is higher level. since data and instructions can be mixed machine code is harder to decode - that might be a byte of data or an instruction. Mel would have [ab]used this fact to make his programs work. It is worse on x86 where instructions are not fixed length but even on arm you can run into problems at times


You can always lift machine code to assembly. Its a 1 to 1 process.


No you cannot. While it is 1 to 1, you still need to know where to start as if you start at the wrong place data will be interrupted as an asm instruction and things will decode legally - but invalidly. It is worse on CISC (like x86) where instructions are different length and so you can jump to the middle byte of a long instruction and decode a shorter instruction. (RISC sometimes starts to get CISC features as they add more instructions as well).

If the code was written reasonably you can usually find enough clues to figure out where to start decoding and thus get a reasonable assembly output, but even then you often need to restart the decoding several times because the decoder can get confused at function boundaries depending on what other data gets embedded and where it is embedded. Be glad self modifying code was going out of style in the 1980's and is mostly a memory today as that will kill any disassembly attempts. All the other tricks that Mel used (https://en.wikipedia.org/wiki/The_Story_of_Mel) also make your attempts at lifting machine code to assembly impossible.


It definitely isnt a 1:1 process, as there are multiple ways to encode the same instruction (with possibly even having some subtle side effects based on the encoding)

https://youtu.be/eunYrrcxXfw


... this is why we get DRM. Source modification is what hurts them.


Yes. Sources available means nothing without a reproducible build process.


So open source is only in the name, noted


Debian also seems to have given up.


Using Docker with QEMU CPU emulation would be a more maintainable solution than recompiling aapt2, as it would handle future binary updates automatically without requiring custom patches for each release.




Guidelines | FAQ | Lists | API | Security | Legal | Apply to YC | Contact

Search: