platform_system_core/fs_mgr
Akilesh Kailash 9fc6ee050f libsnapshot: OTA upgrade when vendor partition is S
In Android S, snapuserd binary was on vendor partition.
When there is an OTA update from S -> T, it is possible
that vendor partitions are not updated. In that case,
successive OTA updates T1 -> T2 will continue to have
snapuserd from Android S as vendor partition wasn't updated
to T. All this means, we should disable user-space snapshots.

When installing OTA during runtime, check for property
ro.vendor.build.version.release_or_codename; if the property
is set to "12", then skip userspace-snapshots.

Bug: 227614163

Test: Simulate OTA test on Pixel 6 from T1 -> T2 by forcefully
setting the property to 12 and verify OTA is applied
successfully by falling back to dm-snapshot.

Signed-off-by: Akilesh Kailash <akailash@google.com>
Change-Id: I95f29145e5cd9ffb8d03d28ae414f0037b88be90
2022-04-05 20:23:14 +00:00
..
fuzz Add LOCAL_LICENSE_KINDS to system/core 2022-02-10 11:12:20 -08:00
include fs_mgr: remove FDE-specific FS_MGR_MNTALL codes 2021-11-09 22:44:50 -08:00
include_fstab/fstab Rename FstabEntry::metadata_encryption to metadata_encryption_options 2022-03-17 23:22:50 +00:00
libdm Support building fs_mgr against musl 2021-12-16 12:49:33 -08:00
libfiemap fs_mgr: Fix __ANDROID_RECOVERY__ usage in libfiemap. 2022-02-17 13:06:13 -08:00
libfs_avb Merge "libfs_avb: Export more utilities to facilitate VTS" 2022-01-11 05:36:25 +00:00
liblp Add liblp to hwasan-postsubmit 2022-03-18 21:23:51 +00:00
libsnapshot libsnapshot: OTA upgrade when vendor partition is S 2022-04-05 20:23:14 +00:00
libstorage_literals Make libfs_mgr and its dependencies vendor_ramdisk_available. 2021-07-23 16:50:06 -07:00
libvbmeta [LSC] Add LOCAL_LICENSE_KINDS to system/core 2021-02-19 12:59:05 -08:00
tests Rename FstabEntry::metadata_encryption to metadata_encryption_options 2022-03-17 23:22:50 +00:00
tools follows the advice of -Wsign-compare 2021-02-25 02:20:17 +00:00
.clang-format
Android.bp Remove support for AVB 1.0. 2021-11-30 00:57:49 -08:00
blockdev.cpp android::base::ResultError/Error are template classes 2021-12-14 17:34:40 +09:00
blockdev.h Reduce the queue depth of loop devices used by the zram driver 2021-08-12 15:42:51 -07:00
clean_scratch_files.rc
file_wait.cpp snapuserd: Allow connecting to the first-stage daemon. 2021-07-27 19:35:29 -07:00
fs_mgr.cpp Merge "Adding project_id ranges for internal app and cache folders." 2022-03-10 21:58:40 +00:00
fs_mgr_boot_config.cpp Revert "Handle "hardware" bootconfig parameter as "androidboot.hardware"" 2021-06-22 09:54:57 -07:00
fs_mgr_dm_linear.cpp libsnapshot_test: Fix running on DSUs. 2020-05-19 18:48:10 +00:00
fs_mgr_format.cpp Adding project_id ranges for internal app and cache folders. 2022-02-04 15:37:36 +00:00
fs_mgr_fstab.cpp Rename FstabEntry::metadata_encryption to metadata_encryption_options 2022-03-17 23:22:50 +00:00
fs_mgr_overlayfs.cpp fs_mgr: Fix misleading comment text regarding __ANDROID_RECOVERY__ 2022-02-23 16:33:24 +08:00
fs_mgr_priv.h
fs_mgr_priv_boot_config.h Support bootconfig in first stage init and fs_mgr 2021-02-23 07:42:06 -08:00
fs_mgr_remount.cpp Make clean_scratch_files work 2021-11-02 22:10:46 +08:00
fs_mgr_roots.cpp fs_mgr: remove crypt_footer argument from fs_mgr_do_format() 2021-11-09 22:44:50 -08:00
fs_mgr_slotselect.cpp
fs_mgr_vendor_overlay.cpp fs_mgr_vendor_overlay: Mount vendor overlay with noatime 2021-05-18 17:26:57 +08:00
NOTICE fs_mgr: License boilerplate 2021-07-09 06:24:04 +00:00
OWNERS Add OWNERS for VTS module vts_libdm_test 2021-09-29 14:46:24 -07:00
README.overlayfs.md LRAP->DAP 2020-12-17 10:56:09 -08:00
TEST_MAPPING Split up the system/core/ TEST_MAPPING. 2021-08-16 16:37:10 -07:00

Android OverlayFS Integration with adb Remount

Introduction

Users working with userdebug or eng builds expect to be able to remount the system partition as read-write and then add or modify any number of files without reflashing the system image, which is efficient for a development cycle.

Limited memory systems use read-only types of file systems or dynamic Android partitions (DAPs). These file systems land system partition images right-sized, and have been deduped at the block level to compress the content. This means that a remount either isnt possible, or isn't useful because of space limitations or support logistics.

OverlayFS resolves these debug scenarios with the adb disable-verity and adb remount commands, which set up backing storage for a writable file system as an upper reference, and mount the lower reference on top.

Performing a remount

Use the following sequence to perform the remount.

$ adb root
$ adb disable-verity
$ adb reboot
$ adb wait-for-device
$ adb root
$ adb remount

Then enter one of the following sequences:

$ adb shell stop
$ adb sync
$ adb shell start
$ adb reboot

or

$ adb push <source> <destination>
$ adb reboot

Note that you can replace these two lines in the above sequence:

$ adb disable-verity
$ adb reboot

with this line:

$ adb remount -R

Note: adb remount -R wont reboot if the device is already in the adb remount state.

None of this changes if OverlayFS needs to be engaged. The decisions whether to use traditional direct file-system remount, or one wrapped by OverlayFS is automatically determined based on a probe of the file-system types and space remaining.

Backing Storage

When OverlayFS logic is feasible, it uses either the /cache/overlay/ directory for non-A/B devices, or the /mnt/scratch/overlay directory for A/B devices that have access to LRAP. It is also possible for an A/B device to use the system_ partition for backing storage. eg: if booting off system_a+vendor_a, use system_b. The backing store is used as soon as possible in the boot process and can occur at first stage init, or when the mount_all commands are run in init RC scripts.

By attaching OverlayFS early, SEpolicy or init can be pushed and used after the exec phases of each stage.

Caveats

  • Backing storage requires more space than immutable storage, as backing is done file by file. Be mindful of wasted space. For example, defining BOARD_IMAGE_PARTITION_RESERVED_SIZE has a negative impact on the right-sizing of images and requires more free dynamic partition space.
  • The kernel requires CONFIG_OVERLAY_FS=y. If the kernel version is higher than 4.4, it requires source to be in line with android-common kernels.  The patch series is available on the upstream mailing list and the latest as of Sep 5 2019 is https://www.spinics.net/lists/linux-mtd/msg08331.html This patch adds an override_creds mount option to OverlayFS that permits legacy behavior for systems that do not have overlapping sepolicy rules, principals of least privilege, which is how Android behaves. For 4.19 and higher a rework of the xattr handling to deal with recursion is required. https://patchwork.kernel.org/patch/11117145/ is a start of that adjustment.
  • adb enable-verity frees up OverlayFS and reverts the device to the state prior to content updates. The update engine performs a full OTA.
  • adb remount overrides are incompatible with OTA resources, so the update engine may not run if fs_mgr_overlayfs_is_setup() returns true.
  • If a dynamic partition runs out of space, making a logical partition larger may fail because of the scratch partition. If this happens, clear the scratch storage by running either either fastboot flashall or adb enable-verity. Then reinstate the overrides and continue.
  • For implementation simplicity on retrofit dynamic partition devices, take the whole alternate super (eg: if "a" slot, then the whole of "system_b"). Since landing a filesystem on the alternate super physical device without differentiating if it is setup to support logical or physical, the alternate slot metadata and previous content will be lost.
  • There are other subtle caveats requiring complex logic to solve. Have evaluated them as too complex or not worth the trouble, please File a bug if a use case needs to be covered.
    • The backing storage is treated fragile, if anything else has issue with the space taken, the backing storage will be cleared out and we reserve the right to not inform, if the layering does not prevent any messaging.
    • Space remaining threshold is hard coded. If 1% or more space still remains, OverlayFS will not be used, yet that amount of space remaining is problematic.
    • Flashing a partition via bootloader fastboot, as opposed to user space fastbootd, is not detected, thus a partition may have override content remaining. adb enable-verity to wipe.
    • Space is limited, there is near unlimited space on userdata, we have made an architectural decision to not utilize /data/overlay/ at this time. Acquiring space to use for backing remains an ongoing battle.
    • First stage init, or ramdisk, can not be overriden.
    • Backing storage will be discarded or ignored on errors, leading to confusion. When debugging using adb remount it is currently advised to confirm update is present after a reboot to develop confidence.
  • File bugs or submit fixes for review.