Things To Know About Android Boot and Recovery Images

Share this article

Things To Know About Android Boot and Recovery Images

This article was originally published on the TextNow Engineering Blog.

To fully grasp the role the Android boot and recovery images play, we first need to understand the general boot-up process of an Android phone. While embedded software is no longer part of my day-to-day work at TextNow, I used to wear the embedded-engineer hat in one of my previous jobs and I dabble with embedded electronics in my spare time, so I am intimately familiar with modern microprocessor boot-up routines. I must caution you that this is a very technical post, but one that is hopefully useful to somebody looking for a reference material on how this all fits together, with links to where to delve more in-depth if required. This type of post would have been very useful when I was learning it :)

The Android Boot-Up Process

When power and reset is applied to the processor,it wakes up and needs to figure out what to do. In modern processors, there isusually a very small program baked-in to the processor whose function is toverify the next component’s integrity. This first component is sometimes referredto as the secure boot ROM, and its job is to ensure the nextcomponent it loads is trusted, verified software. This prevents unwantedtampering of the system software and, as such, increases the security of thedevice. The verification usually involves some sort of cryptographic cipherusing a public/private key scheme, with the private key usually kept a closelyguarded secret by the manufacturer. Note: usually the publickey is programmed in at assembly time by the phone manufacturer and itscontents can never be changed, thereby requiring that processor to always run asigned bootloader, with the private counterpart of the public key burned in atassembly time.

The next component loaded by the secure boot ROM is the what people commonly refer to as the bootloader. The bootloader, as I mentioned, is usually signed with the phone manufacturer’s private key, and it has a few jobs:

1. Load a boot image from non-volatile memory (usually NAND flash nowadays) into volatile memory (RAM) and run it.

2. Optionally, that image needs to becryptographically verified before being loaded (as is the case with more andmore phones these days which don’t even provide a way to unlock the bootloaderto run unsigned images).

3. Provide the ability to flash new boot andother images to the non-volatile memory for future upgrades and recovery fromfailure.

4. Display some sort of information on thescreen, and optionally provide an interface for the user to interact with. Thisis commonly known as fastboot mode on some Motorola, Google,and other manufacturer’s devices.

Android Boot Images

We now come to the final component of the boot-upprocess - loading a boot or recovery image into RAMand running it.

Technically speaking, there are no structuraldifferences between boot and recovery images. The only difference is whichkernel and which initial ramdisk is loaded, but they are packaged the same. Wewill come back to how these are packaged to make a neat and tidy boot image.

There are a few sub-steps involved in running theboot image:

1. Cryptographic verification

2. Loading of the (Linux) kernel at the requiredmemory address

3. Loading of the initial ramdisk at the requiredmemory address

4. Jump to the start address of the kernel

The cryptographic verification is usually manufacturer-specificand it is typically very hard to reverse-engineer this method, though notimpossible - it’s been done before for certain phones (forexample, older Kit-Kat era LG phones).

The kernel is the heart of the operating system,as it ticks its constant heartbeat of interrupts and events which keep a modernoperating system running. This magic has very meager origin as a simple chunkof bytes that was compiled in such a way to wake up and start running from aparticular address of memory. This address varies depending on the particularphone and memory layout. Once execution starts, the kernel will start loadingdrivers and setup more advanced facilities so that it can start running some ofits own programs.

In and of itself, the kernel wouldn’t know whatto do once it’s loaded. It would sit there and do nothing. But what the Linuxkernel expects is an initial ramdisk at a predefined memoryaddress. This ramdisk contains a very rudimentary and usually read-onlyfilesystem which contains the most basic root filesystem possible, and a fileunder /sbin/init which the kernel executes as the last thingit does as part of initialization. This init programstarts running some scripts that start other programs talking to each other andfinally deliver the full experience the system has to offer.

So now we come back to the difference between aboot and recovery image. While the kernel sometimes is the same as the bootimage, the recovery image ramdisk has a distinct sets of init scriptswhich don’t start the Java VM, but instead start a small C program called (didyou guess it?) recovery. Recovery displays a limited user interfacethat allows the user to start the system, factory reset, clear the cachepartition, etc. Some custom recoveries have their own program that offers evenmore functionality.

Packing an Android Boot Image

The Android boot images have a specific structure whose internal organizationreflects the memory in which it resides, namely flash. Flash is a specific typeof memory that is not random-access, but is read in pages whose sizes varydepending on the particular chip, often within the 4K bytes range. For thisreason, the boot image’s components are aligned to the page size, so thatloading is more efficient (amongst other reasons I won’t go into detail here).The structure of the boot image is as shown in the figure below:

The layout of an Android boot image

I should mention something of this second stage.To be completely honest, I do not know its raison d’être, theoriginal intent of it. I have seen it used in more recent times to hold thekernel’s device tree block (DTB, another long and deeply technical topic bestexplained elsewhere) by certain phone manufacturers. The older kernels had theDTB as part of the kernel image, now they’ve split it out into its own separatepiece to make it easier to build a more generic kernel that can be adapted to avariety of hardware configurations within the same architecture.

Moving swiftly along (and back!) to the bootimage header, this primarily tells the bootloader how to load the components ofthe boot image, and it looks something like this:

Android boot image header

As you can see, it has a few “book-keeping”fields about how large the other sub-components of the boot image are, whataddress to load them into, etc.

It also has a field called magic. Themagic field is simply a string of well-known characters to identify this as anAndroid boot image. In this case the string is “ANDROID!”, which fits neatlyinto 8 bytes.

Somebody familiar with the Linux kernel andboot-up process will recognize the kernel tags and command line argument fieldsas ways to pass more custom information into the kernel, such as where theconsole should be, and where to find that initial ramdisk from where to loadits init program.

Working With Android Boot Images

So, since we have custom recovery and boot imagesfor our Android phones (such as TWRP, CWM, etc.), obviously, someone had tocreate their own recovery image or modify an already existing boot image. Mostof the work was done using the already open-sourced Google Android code, butthere only was code there to create a boot image from its components. There wasno tool to unpack a boot image for modification. Now, you can use a tool like https://github.com/osm0sis/mkbootimg topack and unpack boot images and change out the kernel, or modify the initialramdisk.

Further Areas to Explore

There are some interesting aspects relating tothe initial ramdisk that apply to both the boot and recovery Android imagesthat this article won’t cover in detail due to its already burgeoning size, butthat are worth mentioning.

● The filesystem that initial ramdisks useis usually a gzipped CPIO archive

● You can pack and unpack the initialramdisks and modify them

● init scripts are written in their owndomain specific language (DSL) and you can read their README for more information

● Default SELinux file contexts and policyusually reside in the ramdisk’s root

We can spend many hours talking about and playingwith the above items, but at least for now I will leave them as an exercise tothe keen reader.

Frequently Asked Questions (FAQs) about Android Boot and Recovery Images

What is the purpose of Android Boot and Recovery Images?

Android Boot and Recovery Images are essential components of the Android operating system. The boot image is responsible for loading the kernel and ramdisk necessary for the Android OS to run. On the other hand, the recovery image is a separate bootable partition that can be used to install updates, perform factory resets, or restore the system in case of software issues. It’s a crucial tool for troubleshooting and maintaining the health of your device.

How does the Android Boot Image work?

The Android Boot Image is the first piece of software that runs when you power on your Android device. It contains the kernel and the ramdisk. The kernel is the core of the operating system and interacts directly with the hardware of the device, while the ramdisk contains system files and directories needed to start the system’s user interface.

What is the structure of an Android Boot Image?

An Android Boot Image consists of three main parts: the kernel, the ramdisk, and the second stage bootloader. The kernel is the heart of the operating system, the ramdisk contains necessary system files, and the second stage bootloader, also known as ‘fastboot’, is responsible for loading the kernel and ramdisk into memory.

How can I access the Android Recovery Mode?

Accessing the Android Recovery Mode varies between devices, but it generally involves a combination of button presses during startup. For most devices, you need to power off the device, then hold the volume down and power button simultaneously until the device vibrates or the logo appears. Then, navigate using the volume buttons and select ‘Recovery Mode’ using the power button.

What functions can I perform in Android Recovery Mode?

Android Recovery Mode allows you to perform several functions, including system updates, factory resets, and data wipes. You can also use it to install custom ROMs or kernels, clear the cache partition, or fix software issues.

What is a ‘boot.img’ file in Android?

A ‘boot.img’ file in Android is a boot image file that contains the kernel and the ramdisk. It’s a crucial component that loads the operating system when you power on your device.

How can I modify the Android Boot Image?

Modifying the Android Boot Image requires technical knowledge and can potentially harm your device if not done correctly. It involves unpacking the boot image, making the desired changes, and then repacking it. This process usually requires a computer and specific software tools.

What is the difference between a Boot Image and a Recovery Image?

While both are essential components of the Android operating system, a Boot Image is responsible for loading the operating system, while a Recovery Image is a separate bootable partition used for troubleshooting and maintenance tasks.

Can I use Recovery Mode to fix software issues on my Android device?

Yes, Recovery Mode is a powerful tool for fixing software issues on your Android device. It allows you to perform a factory reset, clear the cache partition, or even install system updates or custom ROMs.

What precautions should I take when using Android Recovery Mode?

When using Android Recovery Mode, it’s important to remember that some actions, like a factory reset or data wipe, will erase all data on your device. Always ensure you have a backup of important data before performing these actions. Also, only install updates or custom ROMs from trusted sources to avoid potential security risks.

Alex RomanAlex Roman
View Author

Alex Roman is a software engineer at TextNow.

androidArielE
Share this article
Read Next
Get the freshest news and resources for developers, designers and digital creators in your inbox each week