Thursday 2 April 2015

Flash Gordon: an Edify to Bash parser/translator (Flash Zips WITHOUT a Recovery!)

http://musicmp3spb.org/images/q/queen/flash_gord2118b5c02bdd9b8be58756.jpg

What is Flash Gordon ?

In laymen's words, Flash Gordon is an apk which allows you to flash any flashable zip (except for Roms) without having a recovery installed.
You just point it to the zip you want to flash, (be it a kernel, a mod, a gapps package, a modem, a RIL, a recovery...) and it will interpret the updater-script of this package and install its content just like a recovery would.


How does it work ?

Here is what happens step by step :

  1. You tap the "select a zip" button, select the built-in file explorer to select the zip you want to flash
  2. Flash Gordon will first extract this zip, depending on its size it can take a little time
  3. When you press the "Flash Now" button, Flash Gordon will locate the updater-script and start translating it into shell code, line by line
  4. It will output the resulting translated bash script on your sdcard and execute it, thus installing the zip's content
  5. The app creates a notification, just tap on it to reboot

In order to achieve those last 2 steps, I'm writing a full Edify to Bash parser and translator.
Here is the list of all the Edify commands this parser can currently process and what their respective bash translation is (in green), using examples:
(more will be added over time, this is really just a draft)

By no means am I a bash expert, so if you have suggestions for better bash equivalents of any edify commands please post them
Code:
package_extract_file("path/to/source/file.txt", "/path/to/destination/file.txt");
busybox cp -fp /path/to/source/file.txt /path/to/destination/file.txt

package_extract_dir("/source/folder", "/destination/folder");
busybox cp -rfp /source/folder/* /destination/folder

set_perm(0, 2000, 0755, "/file/or/folder");
chown 0:2000 /file/or/folder
chmod 0755 /file/or/folder

set_perm_recursive(0, 2000, 0644, 0755, "/path/to/set/permissions/recursively");
chown -R 0:2000 /path/to/set/permissions/recursively
chmod 0644 /path/to/set/permissions/recursively
chmod -R 0755 /path/to/set/permissions/recursively


delete("file/to/delete");
busybox rm -f /file/to/delete

run_program("/script/to/run.sh");
sh /script/to/run.sh

mount("ext4", "EMMC", "/dev/block/mmcblk0p9", "/system");
busybox mount -o rw,remount -t auto /system (will soon change to -t mmcblk0p9 or whichever mount point is in the updater-script)

unmount("/system");
busybox mount -o remount,ro /system

symlink("busybox", "/system/xbin/[", "/system/xbin/[[",
        "/system/xbin/adjtimex", "/system/xbin/arp", "/system/xbin/ash",
        "/system/xbin/awk", "/system/xbin/base64", "/system/xbin/basename",
        "/system/xbin/bbconfig", "/system/xbin/blkid", "/system/xbin/blockdev",
        "/system/xbin/brctl", "/system/xbin/bunzip2", "/system/xbin/bzcat",
        "/system/xbin/bzip2", "/system/xbin/cal", "/system/xbin/cat",
        "/system/xbin/catv", "/system/xbin/chattr", "/system/xbin/chgrp",
        "/system/xbin/chmod", "/system/xbin/chown", "/system/xbin/chroot",
        "/system/xbin/clear", "/system/xbin/cmp", "/system/xbin/comm",
        "/as/many/lines/as/you/want");
ln -s busybox  /system/xbin/[ /system/xbin/[[
        /system/xbin/adjtimex /system/xbin/arp /system/xbin/ash
        /system/xbin/awk /system/xbin/base64 /system/xbin/basename
        /system/xbin/bbconfig /system/xbin/blkid /system/xbin/blockdev
        /system/xbin/brctl /system/xbin/bunzip2 /system/xbin/bzcat
        /system/xbin/bzip2 /system/xbin/cal /system/xbin/cat
        /system/xbin/catv /system/xbin/chattr /system/xbin/chgrp
        /system/xbin/chmod /system/xbin/chown /system/xbin/chroot
        /system/xbin/clear /system/xbin/cmp /system/xbin/comm
        /as/many/lines/as/you/want
(not sure about this one, please correct me if I'm wrong, I could change to ln -s argument/number/1 argument/number/2 as many times as required if needed)

write_raw_image("/tmp/boot.img", "mmcblk0p5");
dd if=/tmp/boot.img of=/dev/block/mmcblk0p5
This is just a proof of concept for the moment, I'm aiming at adding all the possible Edify commands, and maybe doing it backwards (Bash2Edify) in the future, too.


SCREENSHOTS




can check-out the full source code on github at : https://github.com/Androguide/FlashGordon

This app depends on the following Open-Source libraries :


Frequently Asked Questions

Q: Why can't I flash a Rom with Flash Gordon ?
A: Because when some system files are replaced while the device is running, it causes it to crash and will stop in the middle of the installation, resulting in a bootloop.

Q: Where can I see the bash script translation of the package I selected ?
A: After tapping the Flash Now button, head to /sdcard/RecoveryEmulator/tmp/flash_gordon.sh
The full translation is also output to the logcat while flashing.

Q: I select a flashable zip but it tells me it is not valid or that it's not a zip package, why ?
A: Make sure that there is no whitespace in the name of the zip package you're trying to flash, otherwise it won't be recognized.
If your package has no whitespace but the app still gives this error, try to shorten its name.

Q: Which versions of Android are supported ?
A: From Froyo (2.2) up to the latest JellyBean (4.2.2)

Q: Why is this app useful?
A: Some people might not be able to install a custom recovery on their device, either because there is no custom recovery for this model, or maybe their bootloader is locked. Flash Gordon allows them to flash packages even then.
Or maybe you're simply lazy and you don't want to have to reboot to recovery to flash that new kernel or that new cool flashable mod ? Then Flash Gordon is for you too.
Or maybe just for the heck of it ?^^


Requirements

All you need is a rooted Android device with a proper busybox installed. Required applets include :
  • mount
  • sed
  • unzip
  • rm
  • cp

Changelog

  • 25/04/2013 : Initial release
  • 26/04/2013 : Added a few fixes and regex corrections. (Github commit)
  • 26/04/2013 : Hotfix for some flashable zips mistakenly identified as unvalid + Hotfix for kernels where the updater-script uses package_extract_file(); instead of write_raw_image(); (Github commit)

Disclaimer

If you're going to test this app, make sure you have a nandroid backup handy as it is very far from stable.
I won't be held responsible for any damage done to anything whatsoever. You use this tool at your own risk


DOWNLOAD: LINK
Powered by Blogger.