blob: a8fd70b40a1fee42cc5bb7b52bf4d2a08e49d3c1 [file] [log] [blame]
Dees Troy3be70a82013-10-22 14:25:12 +00001/*
bigbiff bigbiff19fb79c2016-09-05 21:04:51 -04002 Copyright 2014 to 2017 TeamWin
Dees Troy3be70a82013-10-22 14:25:12 +00003 This file is part of TWRP/TeamWin Recovery Project.
4
5 TWRP is free software: you can redistribute it and/or modify
6 it under the terms of the GNU General Public License as published by
7 the Free Software Foundation, either version 3 of the License, or
8 (at your option) any later version.
9
10 TWRP is distributed in the hope that it will be useful,
11 but WITHOUT ANY WARRANTY; without even the implied warranty of
12 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 GNU General Public License for more details.
14
15 You should have received a copy of the GNU General Public License
16 along with TWRP. If not, see <http://www.gnu.org/licenses/>.
17*/
Dees_Troy240e4a72012-09-04 09:22:39 -040018
19#ifndef __TWRP_Partition_Manager
20#define __TWRP_Partition_Manager
21
Ethan Yonker6e8c27a2016-12-22 17:55:57 -060022#include <map>
Dees_Troy240e4a72012-09-04 09:22:39 -040023#include <vector>
24#include <string>
Ethan Yonker6e8c27a2016-12-22 17:55:57 -060025#include <sys/poll.h>
Ethan Yonker3fdcda42016-11-30 12:29:37 -060026#include "exclude.hpp"
bigbiff7abc5fe2015-01-17 16:53:12 -050027#include "tw_atomic.hpp"
Ethan Yonker472f5062016-02-25 13:47:30 -060028#include "progresstracking.hpp"
Dees_Troy5bf43922012-09-07 16:07:55 -040029
30#define MAX_FSTAB_LINE_LENGTH 2048
Dees_Troy240e4a72012-09-04 09:22:39 -040031
Dees_Troy51a0e822012-09-05 15:24:24 -040032using namespace std;
33
Ethan Yonker93382822018-11-01 15:25:31 -050034// BasePartition is used for overriding so we can run custom, device
35// specific code.
36class BasePartition {
37 public:
38 explicit BasePartition() {}
39 virtual ~BasePartition() {}
40
41 virtual bool PreWipeEncryption() {
42 return true;
43 }
44
45 virtual bool PostWipeEncryption() {
46 return true;
47 }
48};
49BasePartition* make_partition();
50
Dees_Troya13d74f2013-03-24 08:54:55 -050051struct PartitionList {
52 std::string Display_Name;
53 std::string Mount_Point;
54 unsigned int selected;
55};
56
Ethan Yonker6e8c27a2016-12-22 17:55:57 -060057struct Uevent_Block_Data {
58 std::string action;
59 std::string subsystem;
60 std::string block_device;
61 std::string type;
62 std::string sysfs_path;
63 int major;
64 int minor;
65};
66
67struct Flags_Map {
68 std::string Primary_Block_Device;
69 std::string Alternate_Block_Device;
70 std::string File_System;
71 std::string Flags;
72 char* fstab_line;
73};
74
75enum PartitionManager_Op { // PartitionManager Restore Mode for Raw_Read_Write()
bigbiffce8f83c2015-12-12 18:30:21 -050076 PM_BACKUP = 0,
77 PM_RESTORE = 1,
78};
79
80class TWPartition;
81
Ethan Yonker6e8c27a2016-12-22 17:55:57 -060082struct PartitionSettings { // Settings for backup session
Ethan Yonkere080c1f2016-09-19 13:50:25 -050083 TWPartition* Part; // Partition to pass to the partition backup loop
84 std::string Backup_Folder; // Path to restore folder
85 bool adbbackup; // tell the system we are backing up over adb
86 bool adb_compression; // 0 == uncompressed, 1 == compressed
bigbiff bigbiff56cf5642016-08-19 17:43:45 -040087 bool generate_digest; // tell system to create digest for partitions
Ethan Yonkere080c1f2016-09-19 13:50:25 -050088 bool generate_md5; // tell system to create md5 for partitions
89 uint64_t total_restore_size; // Total size of restored backup
90 uint64_t img_bytes_remaining; // remaining img/emmc bytes to backup for progress indicator
91 uint64_t file_bytes_remaining; // remaining file bytes to backup for progress indicator
92 uint64_t img_time; // used to calculate how fast we backup images
93 uint64_t file_time; // used to calculate how fast we backup files
94 uint64_t img_bytes; // total image bytes of all emmc partitions
95 uint64_t file_bytes; // total file bytes of all file based partitions
96 int partition_count; // Number of partitions to restore
97 ProgressTracking *progress; // Keep track of progress in GUI
98 enum PartitionManager_Op PM_Method; // Current operation of backup or restore
bigbiffce8f83c2015-12-12 18:30:21 -050099};
100
101enum Backup_Method_enum {
102 BM_NONE = 0,
103 BM_FILES = 1,
104 BM_DD = 2,
105 BM_FLASH_UTILS = 3,
106};
107
Dees_Troy240e4a72012-09-04 09:22:39 -0400108// Partition class
109class TWPartition
110{
111public:
that9e0593e2014-10-08 00:01:24 +0200112 TWPartition();
Dees_Troy240e4a72012-09-04 09:22:39 -0400113 virtual ~TWPartition();
114
115public:
Vojtech Bocek8b44bbd2013-07-25 20:43:29 +0200116 bool Is_Mounted(); // Checks mount to see if the partition is currently mounted
James Christopher Adduonod6f94ac2016-02-29 04:26:04 -0500117 bool Is_File_System_Writable(); // Checks if the root directory of the file system can be written to
Vojtech Bocek8b44bbd2013-07-25 20:43:29 +0200118 bool Mount(bool Display_Error); // Mounts the partition if it is not mounted
119 bool UnMount(bool Display_Error); // Unmounts the partition if it is mounted
James Christopher Adduonod6f94ac2016-02-29 04:26:04 -0500120 bool ReMount(bool Display_Error); // Remounts the partition
121 bool ReMount_RW(bool Display_Error); // Remounts the partition with read/write access
Vojtech Bocek8b44bbd2013-07-25 20:43:29 +0200122 bool Wipe(string New_File_System); // Wipes the partition
123 bool Wipe(); // Wipes the partition
124 bool Wipe_AndSec(); // Wipes android secure
Ethan Yonker87c7bac2014-05-25 21:41:08 -0500125 bool Can_Repair(); // Checks to see if we have everything needed to be able to repair the current file system
Andreas Blaesius123fcd02015-11-16 01:40:36 +0200126 uint64_t Get_Max_FileSize(); // get partition maxFileSie
Ethan Yonker87c7bac2014-05-25 21:41:08 -0500127 bool Repair(); // Repairs the current file system
Ethan Yonkera2719152015-05-28 09:44:41 -0500128 bool Can_Resize(); // Checks to see if we have everything needed to be able to resize the current file system
129 bool Resize(); // Resizes the current file system
bigbiffce8f83c2015-12-12 18:30:21 -0500130 bool Backup(PartitionSettings *part_settings, pid_t *tar_fork_pid); // Backs up the partition to the folder specified
bigbiffce8f83c2015-12-12 18:30:21 -0500131 bool Restore(PartitionSettings *part_settings); // Restores the partition using the backup folder provided
Ethan Yonkere080c1f2016-09-19 13:50:25 -0500132 unsigned long long Get_Restore_Size(PartitionSettings *part_settings); // Returns the overall restore size of the backup
Vojtech Bocek8b44bbd2013-07-25 20:43:29 +0200133 string Backup_Method_By_Name(); // Returns a string of the backup method for human readable output
134 bool Decrypt(string Password); // Decrypts the partition, return 0 for failure and -1 for success
135 bool Wipe_Encryption(); // Ignores wipe commands for /data/media devices and formats the original block device
136 void Check_FS_Type(); // Checks the fs type using blkid, does not do anything on MTD / yaffs2 because this crashes on some devices
137 bool Update_Size(bool Display_Error); // Updates size information
138 void Recreate_Media_Folder(); // Recreates the /data/media folder
bigbiffce8f83c2015-12-12 18:30:21 -0500139 bool Flash_Image(PartitionSettings *part_settings); // Flashes an image to the partition
Ethan Yonkereb32b1f2015-05-18 10:23:03 -0500140 void Change_Mount_Read_Only(bool new_value); // Changes Mount_Read_Only to new_value
bigbiffce8f83c2015-12-12 18:30:21 -0500141 bool Is_Read_Only(); // Check if system is read-only in TWRP
Ethan Yonkereb32b1f2015-05-18 10:23:03 -0500142 int Check_Lifetime_Writes();
Ethan Yonker66a19492015-12-10 10:19:45 -0600143 int Decrypt_Adopted();
144 void Revert_Adopted();
Matt Mower72c87ce2016-04-26 14:34:56 -0500145 void Partition_Post_Processing(bool Display_Error); // Apply partition specific settings after fstab processed
bigbiff bigbiffb5ecaad2017-03-20 18:53:53 -0400146 void Set_Backup_FileName(string fname); // Set Backup_FileName for partition
147 string Get_Backup_Name(); // Get Backup_Name for partition
Ethan Yonker93382822018-11-01 15:25:31 -0500148 bool Decrypt_FBE_DE(); // If FBE is present, backup exclusions are set up and DE decrypt is attempted
Dees_Troy240e4a72012-09-04 09:22:39 -0400149
Dees_Troy7c2dec82012-09-26 09:49:14 -0400150public:
151 string Current_File_System; // Current file system
152 string Actual_Block_Device; // Actual block device (one of primary, alternate, or decrypted)
bigbiffce8f83c2015-12-12 18:30:21 -0500153 string Backup_Display_Name; // Name displayed in the partition list for backup selection
Dees_Troy094207a2012-09-26 12:00:39 -0400154 string MTD_Name; // Name of the partition for MTD devices
bigbiff bigbiffc7eee6f2014-09-02 18:59:01 -0400155 bool Is_Present; // Indicates if the partition is currently present as a block device
Ethan Yonker253368a2014-11-25 15:00:52 -0600156 string Crypto_Key_Location; // Location of the crypto key used for decrypting encrypted data partitions
Ethan Yonker726a0202014-12-16 20:01:38 -0600157 unsigned int MTP_Storage_ID;
Ethan Yonker66a19492015-12-10 10:19:45 -0600158 string Adopted_GUID;
Dees_Troy7c2dec82012-09-26 09:49:14 -0400159
Ethan Yonker1eff6cd2014-09-15 13:30:42 -0500160protected:
161 bool Has_Data_Media; // Indicates presence of /data/media, may affect wiping and backup methods
that9e0593e2014-10-08 00:01:24 +0200162 void Setup_Data_Media(); // Sets up a partition as a /data/media emulated storage partition
Ethan Yonker1eff6cd2014-09-15 13:30:42 -0500163
Vojtech Bocek8b44bbd2013-07-25 20:43:29 +0200164private:
Ethan Yonker6e8c27a2016-12-22 17:55:57 -0600165 bool Process_Fstab_Line(const char *fstab_line, bool Display_Error, std::map<string, Flags_Map> *twrp_flags); // Processes a fstab line
Matt Mower72c87ce2016-04-26 14:34:56 -0500166 void Setup_Data_Partition(bool Display_Error); // Setup data partition after fstab processed
167 void Setup_Cache_Partition(bool Display_Error); // Setup cache partition after fstab processed
Ethan Yonker6e8c27a2016-12-22 17:55:57 -0600168 bool Find_Wildcard_Block_Devices(const string& Device); // Searches for and finds wildcard block devices
Dees_Troy38bd7602012-09-14 13:33:53 -0400169 void Find_Actual_Block_Device(); // Determines the correct block device and stores it in Actual_Block_Device
Dees_Troy240e4a72012-09-04 09:22:39 -0400170
Matt Mower2416a502016-04-12 19:54:46 -0500171 void Apply_TW_Flag(const unsigned flag, const char* str, const bool val); // Apply custom twrp fstab flags
Ethan Yonker6e8c27a2016-12-22 17:55:57 -0600172 void Process_TW_Flags(char *flags, bool Display_Error, int fstab_ver); // Process custom twrp fstab flags
Matt Mower4ab42b12016-04-21 13:52:18 -0500173 void Process_FS_Flags(const char *str); // Process standard fstab fs flags
Ethan Yonker6e8c27a2016-12-22 17:55:57 -0600174 void Save_FS_Flags(const string& local_File_System, int local_Mount_Flags, const string& local_Mount_Options); // Saves fs flags to a vector in case there are multiple lines in a v2 fstab with different mount flags for different file systems
Vojtech Bocek8b44bbd2013-07-25 20:43:29 +0200175 bool Is_File_System(string File_System); // Checks to see if the file system given is considered a file system
176 bool Is_Image(string File_System); // Checks to see if the file system given is considered an image
177 void Setup_File_System(bool Display_Error); // Sets defaults for a file system partition
Ethan Yonker1b190162016-12-05 15:25:19 -0600178 void Setup_Image(); // Sets defaults for an image partition
Vojtech Bocek8b44bbd2013-07-25 20:43:29 +0200179 void Setup_AndSec(void); // Sets up .android_secure settings
180 void Find_Real_Block_Device(string& Block_Device, bool Display_Error); // Checks the block device given and follows symlinks until it gets to the real block device
Ethan Yonkerd18a8212015-12-14 10:17:00 -0600181 unsigned long long IOCTL_Get_Block_Size(); // Finds the partition size using ioctl
Vojtech Bocek8b44bbd2013-07-25 20:43:29 +0200182 bool Find_Partition_Size(); // Finds the partition size from /proc/partitions
183 unsigned long long Get_Size_Via_du(string Path, bool Display_Error); // Uses du to get sizes
184 bool Wipe_EXT23(string File_System); // Formats as ext3 or ext2
185 bool Wipe_EXT4(); // Formats using ext4, uses make_ext4fs when present
Matt Mower18794c82015-11-11 16:22:45 -0600186 bool Wipe_FAT(); // Formats as FAT if mkfs.fat exits otherwise rm -rf wipe
Vojtech Bocek8b44bbd2013-07-25 20:43:29 +0200187 bool Wipe_EXFAT(); // Formats as EXFAT
188 bool Wipe_MTD(); // Formats as yaffs2 for MTD memory types
189 bool Wipe_RMRF(); // Uses rm -rf to wipe
Dees_Troye5017042013-08-29 16:38:55 +0000190 bool Wipe_F2FS(); // Uses mkfs.f2fs to wipe
Ethan Yonkerb81d9052015-07-09 13:20:53 -0500191 bool Wipe_NTFS(); // Uses mkntfs to wipe
Vojtech Bocek8b44bbd2013-07-25 20:43:29 +0200192 bool Wipe_Data_Without_Wiping_Media(); // Uses rm -rf to wipe but does not wipe /data/media
Ethan Yonker66a19492015-12-10 10:19:45 -0600193 bool Wipe_Data_Without_Wiping_Media_Func(const string& parent); // Uses rm -rf to wipe but does not wipe /data/media
bigbiffce8f83c2015-12-12 18:30:21 -0500194 bool Backup_Tar(PartitionSettings *part_settings, pid_t *tar_fork_pid); // Backs up using tar for file systems
195 bool Backup_Image(PartitionSettings *part_settings); // Backs up using raw read/write for emmc memory types
196 bool Raw_Read_Write(PartitionSettings *part_settings);
197 bool Backup_Dump_Image(PartitionSettings *part_settings); // Backs up using dump_image for MTD memory types
198 string Get_Restore_File_System(PartitionSettings *part_settings); // Returns the file system that was in place at the time of the backup
199 bool Restore_Tar(PartitionSettings *part_settings); // Restore using tar for file systems
200 bool Restore_Image(PartitionSettings *part_settings); // Restore using dd for images
James Christopher Adduono79ae0932016-10-25 02:18:32 -0400201 bool Check_Restore_File_MD5(const string& Filename); // Verifies MD5 matches for a file before restoration
Vojtech Bocek8b44bbd2013-07-25 20:43:29 +0200202 bool Get_Size_Via_statfs(bool Display_Error); // Get Partition size, used, and free space using statfs
203 bool Get_Size_Via_df(bool Display_Error); // Get Partition size, used, and free space using df command
204 bool Make_Dir(string Path, bool Display_Error); // Creates a directory if it doesn't already exist
205 bool Find_MTD_Block_Device(string MTD_Name); // Finds the mtd block device based on the name from the fstab
206 void Recreate_AndSec_Folder(void); // Recreates the .android_secure folder
Kjell Braden3126a112016-06-19 16:58:15 +0000207 bool Mount_Storage_Retry(bool Display_Error); // Tries multiple times with a half second delay to mount a device in case storage is slow to mount
Ethan Yonker472f5062016-02-25 13:47:30 -0600208 bool Is_Sparse_Image(const string& Filename); // Determines if a file is in sparse image format
209 bool Flash_Sparse_Image(const string& Filename); // Flashes a sparse image using simg2img
210 bool Flash_Image_FI(const string& Filename, ProgressTracking *progress); // Flashes an image to the partition using flash_image for mtd nand
Ethan Yonkerbd7492d2016-12-07 13:55:01 -0600211 void ExcludeAll(const string& path); // Adds an exclusion for path to both the backup and wipe exclusion lists
Vojtech Bocek8b44bbd2013-07-25 20:43:29 +0200212
213private:
Dees_Troy240e4a72012-09-04 09:22:39 -0400214 bool Can_Be_Mounted; // Indicates that the partition can be mounted
215 bool Can_Be_Wiped; // Indicates that the partition can be wiped
Dees_Troya13d74f2013-03-24 08:54:55 -0500216 bool Can_Be_Backed_Up; // Indicates that the partition will show up in the backup list
Hashcodedabfd492013-08-29 22:45:30 -0700217 bool Use_Rm_Rf; // Indicates that the partition will always be formatted w/ "rm -rf *"
Dees_Troy51a0e822012-09-05 15:24:24 -0400218 bool Wipe_During_Factory_Reset; // Indicates that this partition is wiped during a factory reset
Dees_Troy240e4a72012-09-04 09:22:39 -0400219 bool Wipe_Available_in_GUI; // Inidcates that the wipe can be user initiated in the GUI system
220 bool Is_SubPartition; // Indicates that this partition is a sub-partition of another partition (e.g. datadata is a sub-partition of data)
Dees_Troy51127312012-09-08 13:08:49 -0400221 bool Has_SubPartition; // Indicates that this partition has a sub-partition
Dees_Troy5bf43922012-09-07 16:07:55 -0400222 string SubPartition_Of; // Indicates which partition is the parent partition of this partition (e.g. /data is the parent partition of /datadata)
Dees_Troy240e4a72012-09-04 09:22:39 -0400223 string Symlink_Path; // Symlink path (e.g. /data/media)
224 string Symlink_Mount_Point; // /sdcard could be the symlink mount point for /data/media
225 string Mount_Point; // Mount point for this partition (e.g. /system or /data)
Dees_Troye58d5262012-09-21 12:27:57 -0400226 string Backup_Path; // Path for backup
Ethan Yonker6e8c27a2016-12-22 17:55:57 -0600227 bool Wildcard_Block_Device; // If the block device contains an asterisk, we set this flag
228 string Sysfs_Entry; // For v2 fstab, if the "block device" starts with /devices then it is a sysfs entry that is handled by uevents
Dees_Troy38bd7602012-09-14 13:33:53 -0400229 string Primary_Block_Device; // Block device (e.g. /dev/block/mmcblk1p1)
Dees_Troy240e4a72012-09-04 09:22:39 -0400230 string Alternate_Block_Device; // Alternate block device (e.g. /dev/block/mmcblk1)
Dees_Troy38bd7602012-09-14 13:33:53 -0400231 string Decrypted_Block_Device; // Decrypted block device available after decryption
Dees_Troy240e4a72012-09-04 09:22:39 -0400232 bool Removable; // Indicates if this partition is removable -- affects how often we check overall size, if present, etc.
Dees_Troy240e4a72012-09-04 09:22:39 -0400233 int Length; // Used by make_ext4fs to leave free space at the end of the partition block for things like a crypto footer
234 unsigned long long Size; // Overall size of the partition
235 unsigned long long Used; // Overall used space
236 unsigned long long Free; // Overall free space
237 unsigned long long Backup_Size; // Backup size -- may be different than used space especially when /data/media is present
Ethan Yonker1b7a31b2014-07-03 15:09:22 -0500238 unsigned long long Restore_Size; // Restore size of the current restore operation
Dees_Troy240e4a72012-09-04 09:22:39 -0400239 bool Can_Be_Encrypted; // This partition might be encrypted, affects error handling, can only be true if crypto support is compiled in
240 bool Is_Encrypted; // This partition is thought to be encrypted -- it wouldn't mount for some reason, only avialble with crypto support
241 bool Is_Decrypted; // This partition has successfully been decrypted
Ethan Yonkerbd7492d2016-12-07 13:55:01 -0600242 bool Is_FBE; // File Based Encryption is present
Ethan Yonker253368a2014-11-25 15:00:52 -0600243 bool Mount_To_Decrypt; // Mount this partition during decrypt (/vendor, /firmware, etc in case we need proprietary libs or firmware files)
Dees_Troy240e4a72012-09-04 09:22:39 -0400244 string Display_Name; // Display name for the GUI
245 string Backup_Name; // Backup name -- used for backup filenames
Dees_Troya13d74f2013-03-24 08:54:55 -0500246 string Storage_Name; // Name displayed in the partition list for storage selection
Dees_Troy63c8df72012-09-10 14:02:05 -0400247 string Backup_FileName; // Actual backup filename
Dees_Troy240e4a72012-09-04 09:22:39 -0400248 Backup_Method_enum Backup_Method; // Method used for backup
Dees_Troy83bd4832013-05-04 12:39:56 +0000249 bool Can_Encrypt_Backup; // Indicates if this item can be encrypted during backup
250 bool Use_Userdata_Encryption; // Indicates if we will use userdata encryption splitting on an encrypted backup
Dees_Troye58d5262012-09-21 12:27:57 -0400251 bool Has_Android_Secure; // Indicates the presence of .android_secure on this partition
Dees_Troy5bf43922012-09-07 16:07:55 -0400252 bool Is_Storage; // Indicates if this partition is used for storage for backup, restore, and installing zips
Dees_Troya13d74f2013-03-24 08:54:55 -0500253 bool Is_Settings_Storage; // Indicates that this storage partition is the location of the .twrps settings file and the location that is used for custom themes
Dees_Troy5bf43922012-09-07 16:07:55 -0400254 string Storage_Path; // Indicates the path to the storage -- root indicates mount point, media/ indicates e.g. /data/media
Dees_Troy5bf43922012-09-07 16:07:55 -0400255 string Fstab_File_System; // File system from the recovery.fstab
Hashcode62bd9e02013-11-19 21:59:42 -0800256 int Mount_Flags; // File system flags from recovery.fstab
257 string Mount_Options; // File system options from recovery.fstab
Ethan Yonkera2719152015-05-28 09:44:41 -0500258 unsigned long Format_Block_Size; // Block size for formatting
Dees_Troy68cab492012-12-12 19:29:35 +0000259 bool Ignore_Blkid; // Ignore blkid results due to superblocks lying to us on certain devices / partitions
Dees_Troy16c2b312013-01-15 16:51:18 +0000260 bool Retain_Layout_Version; // Retains the .layout_version file during a wipe (needed on devices like Sony Xperia T where /data and /data/media are separate partitions)
Ethan Yonker96af84a2015-01-05 14:58:36 -0600261 bool Can_Flash_Img; // Indicates if this partition can have images flashed to it via the GUI
Ethan Yonkereb32b1f2015-05-18 10:23:03 -0500262 bool Mount_Read_Only; // Only mount this partition as read-only
Ethan Yonker66a19492015-12-10 10:19:45 -0600263 bool Is_Adopted_Storage; // Indicates that this partition is for adopted storage (android_expand)
Ethan Yonker1b190162016-12-05 15:25:19 -0600264 bool SlotSelect; // Partition has A/B slots
265 TWExclude backup_exclusions; // Exclusions for file based backups
266 TWExclude wipe_exclusions; // Exclusions for file based wipes (data/media devices only)
Ethan Yonker93382822018-11-01 15:25:31 -0500267 string Key_Directory; // Metadata key directory needed for mounting FBE encrypted data partitions using metadata encryption
Dees_Troy240e4a72012-09-04 09:22:39 -0400268
Ethan Yonker6e8c27a2016-12-22 17:55:57 -0600269 struct partition_fs_flags_struct { // This struct is used to store mount flags and options for different file systems for the same partition
270 string File_System;
271 int Mount_Flags;
272 string Mount_Options;
273 };
274
275 std::vector<partition_fs_flags_struct> fs_flags; // This vector stores mount flags and options for different file systems for the same partition
276
Dees_Troy240e4a72012-09-04 09:22:39 -0400277friend class TWPartitionManager;
Dees_Troya13d74f2013-03-24 08:54:55 -0500278friend class DataManager;
279friend class GUIPartitionList;
Ethan Yonker87c7bac2014-05-25 21:41:08 -0500280friend class GUIAction;
Ethan Yonker74db1572015-10-28 12:44:49 -0500281friend class PageManager;
Dees_Troy51a0e822012-09-05 15:24:24 -0400282};
Dees_Troy240e4a72012-09-04 09:22:39 -0400283
284class TWPartitionManager
285{
286public:
Andreas Blaesius123fcd02015-11-16 01:40:36 +0200287 TWPartitionManager(); // Constructor for TWRPartionManager
Vojtech Bocek8b44bbd2013-07-25 20:43:29 +0200288 ~TWPartitionManager() {}
Dees_Troy5bf43922012-09-07 16:07:55 -0400289
290public:
Vojtech Bocek8b44bbd2013-07-25 20:43:29 +0200291 int Process_Fstab(string Fstab_Filename, bool Display_Error); // Parses the fstab and populates the partitions
292 int Write_Fstab(); // Creates /etc/fstab file that's used by the command line for mount commands
293 void Output_Partition_Logging(); // Outputs partition information to the log
Ethan Yonker6e8c27a2016-12-22 17:55:57 -0600294 void Output_Partition(TWPartition* Part); // Outputs partition details to the log
Vojtech Bocek8b44bbd2013-07-25 20:43:29 +0200295 int Mount_By_Path(string Path, bool Display_Error); // Mounts partition based on path (e.g. /system)
Vojtech Bocek8b44bbd2013-07-25 20:43:29 +0200296 int UnMount_By_Path(string Path, bool Display_Error); // Unmounts partition based on path
Vojtech Bocek8b44bbd2013-07-25 20:43:29 +0200297 int Is_Mounted_By_Path(string Path); // Checks if partition is mounted based on path
Vojtech Bocek8b44bbd2013-07-25 20:43:29 +0200298 int Mount_Current_Storage(bool Display_Error); // Mounts the current storage location
299 int Mount_Settings_Storage(bool Display_Error); // Mounts the settings file storage location (usually internal)
Ethan Yonker6e8c27a2016-12-22 17:55:57 -0600300 TWPartition* Find_Partition_By_Path(const string& Path); // Returns a pointer to a partition based on path
301 TWPartition* Find_Partition_By_Block_Device(const string& Block_Device); // Returns a pointer to a partition based on block device
Vojtech Bocek8b44bbd2013-07-25 20:43:29 +0200302 int Check_Backup_Name(bool Display_Error); // Checks the current backup name to ensure that it is valid
bigbiffce8f83c2015-12-12 18:30:21 -0500303 int Run_Backup(bool adbbackup); // Initiates a backup in the current storage
Ethan Yonker472f5062016-02-25 13:47:30 -0600304 int Run_Restore(const string& Restore_Name); // Restores a backup
bigbiffce8f83c2015-12-12 18:30:21 -0500305 bool Write_ADB_Stream_Header(uint64_t partition_count); // Write ADB header over twrpbu FIFO
306 bool Write_ADB_Stream_Trailer(); // Write ADB trailer over twrpbu FIFO
Vojtech Bocek8b44bbd2013-07-25 20:43:29 +0200307 void Set_Restore_Files(string Restore_Name); // Used to gather a list of available backup partitions for the user to select for a restore
308 int Wipe_By_Path(string Path); // Wipes a partition based on path
Ethan Yonker87c7bac2014-05-25 21:41:08 -0500309 int Wipe_By_Path(string Path, string New_File_System); // Wipes a partition based on path
Vojtech Bocek8b44bbd2013-07-25 20:43:29 +0200310 int Factory_Reset(); // Performs a factory reset
311 int Wipe_Dalvik_Cache(); // Wipes dalvik cache
312 int Wipe_Rotate_Data(); // Wipes rotation data --
313 int Wipe_Battery_Stats(); // Wipe battery stats -- /data/system/batterystats.bin
314 int Wipe_Android_Secure(); // Wipes android secure
315 int Format_Data(); // Really formats data on /data/media devices -- also removes encryption
316 int Wipe_Media_From_Data(); // Removes and recreates the media folder on /data/media devices
Ethan Yonker87c7bac2014-05-25 21:41:08 -0500317 int Repair_By_Path(string Path, bool Display_Error); // Repairs a partition based on path
Ethan Yonkera2719152015-05-28 09:44:41 -0500318 int Resize_By_Path(string Path, bool Display_Error); // Resizes a partition based on path
Vojtech Bocek8b44bbd2013-07-25 20:43:29 +0200319 void Update_System_Details(); // Updates fstab, file systems, sizes, etc.
320 int Decrypt_Device(string Password); // Attempt to decrypt any encrypted partitions
321 int usb_storage_enable(void); // Enable USB storage mode
322 int usb_storage_disable(void); // Disable USB storage mode
323 void Mount_All_Storage(void); // Mounts all storage locations
324 void UnMount_Main_Partitions(void); // Unmounts system and data if not data/media and boot if boot is mountable
325 int Partition_SDCard(void); // Repartitions the sdcard
Vojtech Bocek93cb1ef2014-05-12 15:41:52 +0200326 TWPartition *Get_Default_Storage_Partition(); // Returns a pointer to a default storage partition
Ethan Yonker472f5062016-02-25 13:47:30 -0600327 int Check_Backup_Cancel(); // Returns the value of stop_backup
bigbiff7abc5fe2015-01-17 16:53:12 -0500328 int Cancel_Backup(); // Signals partition backup to cancel
Andreas Blaesius123fcd02015-11-16 01:40:36 +0200329 void Clean_Backup_Folder(string Backup_Folder); // Clean Backup Folder on Error
Ethan Yonkerb5fab762016-01-28 14:03:33 -0600330 int Fix_Contexts();
Vojtech Bocek8b44bbd2013-07-25 20:43:29 +0200331 void Get_Partition_List(string ListType, std::vector<PartitionList> *Partition_List);
332 int Fstab_Processed(); // Indicates if the fstab has been processed or not
333 void Output_Storage_Fstab(); // Creates a /cache/recovery/storage.fstab file with a list of all potential storage locations for app use
bigbiff bigbiffc7eee6f2014-09-02 18:59:01 -0400334 bool Enable_MTP(); // Enables MTP
Ethan Yonker1b039202015-01-30 10:08:48 -0600335 void Add_All_MTP_Storage(); // Adds all storage objects for MTP
bigbiff bigbiffc7eee6f2014-09-02 18:59:01 -0400336 bool Disable_MTP(); // Disables MTP
Ethan Yonker726a0202014-12-16 20:01:38 -0600337 bool Add_MTP_Storage(string Mount_Point); // Adds or removes an MTP Storage partition
338 bool Add_MTP_Storage(unsigned int Storage_ID); // Adds or removes an MTP Storage partition
339 bool Remove_MTP_Storage(string Mount_Point); // Adds or removes an MTP Storage partition
340 bool Remove_MTP_Storage(unsigned int Storage_ID); // Adds or removes an MTP Storage partition
Ethan Yonker74db1572015-10-28 12:44:49 -0500341 void Translate_Partition(const char* path, const char* resource_name, const char* default_value);
342 void Translate_Partition(const char* path, const char* resource_name, const char* default_value, const char* storage_resource_name, const char* storage_default_value);
Ethan Yonker01f4e032017-02-03 15:30:52 -0600343 void Translate_Partition(const char* path, const char* resource_name, const char* default_value, const char* storage_resource_name, const char* storage_default_value, const char* backup_name, const char* backup_default);
Ethan Yonker74db1572015-10-28 12:44:49 -0500344 void Translate_Partition_Display_Names(); // Updates display names based on translations
Ethan Yonker6e8c27a2016-12-22 17:55:57 -0600345 bool Decrypt_Adopted(); // Attempt to identy and decrypt any adopted storage partitions
Ethan Yonkerfcf3f242016-02-16 12:30:26 -0600346 void Remove_Partition_By_Path(string Path); // Removes / erases a partition entry from the partition list
Dees_Troya13d74f2013-03-24 08:54:55 -0500347
Ethan Yonkere080c1f2016-09-19 13:50:25 -0500348 bool Flash_Image(string& path, string& filename); // Flashes an image to a selected partition from the partition list
349 bool Restore_Partition(struct PartitionSettings *part_settings); // Restore the partitions based on type
bigbiff7abc5fe2015-01-17 16:53:12 -0500350 TWAtomicInt stop_backup;
Ethan Yonker1b190162016-12-05 15:25:19 -0600351 void Set_Active_Slot(const string& Slot); // Sets the active slot to A or B
352 string Get_Active_Slot_Suffix(); // Returns active slot _a or _b
353 string Get_Active_Slot_Display(); // Returns active slot A or B for display purposes
Captain Throwback9d6feb52018-07-27 10:05:24 -0400354 string Get_Android_Root_Path(); // Returns path of ANDROID_ROOT environment variable
Ethan Yonker6e8c27a2016-12-22 17:55:57 -0600355 struct pollfd uevent_pfd; // Used for uevent code
356 void Remove_Uevent_Devices(const string& sysfs_path); // Removes subpartitions from the Partitions vector for a matched uevent device
357 void Handle_Uevent(const Uevent_Block_Data& uevent_data); // Handle uevent data
358 void setup_uevent(); // Opens the uevent netlink socket
359 Uevent_Block_Data get_event_block_values(char *buf, int len); // Scans the buffer from uevent data and loads the appropriate data into a Uevent_Block_Data struct for processing
360 void read_uevent(); // Reads uevent data into a buffer
361 void close_uevent(); // Closes the uevent netlink socket
362 void Add_Partition(TWPartition* Part); // Adds a new partition to the Partitions vector
bigbiff7abc5fe2015-01-17 16:53:12 -0500363
Dees_Troy240e4a72012-09-04 09:22:39 -0400364private:
Matt Mowerbf4efa32014-04-14 23:25:26 -0500365 void Setup_Settings_Storage_Partition(TWPartition* Part); // Sets up settings storage
366 void Setup_Android_Secure_Location(TWPartition* Part); // Sets up .android_secure if needed
Ethan Yonkere080c1f2016-09-19 13:50:25 -0500367 bool Backup_Partition(struct PartitionSettings *part_settings); // Backup the partitions based on type
Ethan Yonker726a0202014-12-16 20:01:38 -0600368 TWPartition* Find_Partition_By_MTP_Storage_ID(unsigned int Storage_ID); // Returns a pointer to a partition based on MTP Storage ID
Andreas Blaesius123fcd02015-11-16 01:40:36 +0200369 bool Add_Remove_MTP_Storage(TWPartition* Part, int message_type); // Adds or removes an MTP Storage partition
Ethan Yonker66a19492015-12-10 10:19:45 -0600370 TWPartition* Find_Next_Storage(string Path, bool Exclude_Data_Media);
Dees_Troyd21618c2012-10-14 18:48:49 -0400371 int Open_Lun_File(string Partition_Path, string Lun_File);
Ethan Yonkerbd7492d2016-12-07 13:55:01 -0600372 void Post_Decrypt(const string& Block_Device); // Completes various post-decrypt tasks
Ethan Yonker6e8c27a2016-12-22 17:55:57 -0600373 void Coldboot_Scan(std::vector<string> *sysfs_entries, const string& Path, int depth); // Scans subfolders to find matches to the paths stored in sysfs_entries so we can trigger the uevent system to "re-add" devices
374 void Coldboot(); // Starts the scan of the /sys/block folder
Ethan Yonker8dfa7772014-09-04 21:48:41 -0500375 pid_t mtppid;
bigbiff bigbiffc7eee6f2014-09-02 18:59:01 -0400376 bool mtp_was_enabled;
Ethan Yonker726a0202014-12-16 20:01:38 -0600377 int mtp_write_fd;
bigbiffce8f83c2015-12-12 18:30:21 -0500378 pid_t tar_fork_pid; // PID of twrpTar fork
379 Backup_Method_enum Backup_Method; // Method used for backup
Dees_Troy43d8b002012-09-17 16:00:01 -0400380
381private:
Dees_Troy51127312012-09-08 13:08:49 -0400382 std::vector<TWPartition*> Partitions; // Vector list of all partitions
Ethan Yonker1b190162016-12-05 15:25:19 -0600383 string Active_Slot_Display; // Current Active Slot (A or B) for display purposes
Dees_Troy51a0e822012-09-05 15:24:24 -0400384};
Dees_Troy240e4a72012-09-04 09:22:39 -0400385
Dees_Troy5bf43922012-09-07 16:07:55 -0400386extern TWPartitionManager PartitionManager;
387
388#endif // __TWRP_Partition_Manager