Dees Troy | 3be70a8 | 2013-10-22 14:25:12 +0000 | [diff] [blame] | 1 | /* |
bigbiff | aed1bdf | 2021-08-03 18:21:39 -0400 | [diff] [blame] | 2 | Copyright 2014 to 2021 TeamWin |
Dees Troy | 3be70a8 | 2013-10-22 14:25:12 +0000 | [diff] [blame] | 3 | 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_Troy | 240e4a7 | 2012-09-04 09:22:39 -0400 | [diff] [blame] | 18 | |
| 19 | #ifndef __TWRP_Partition_Manager |
| 20 | #define __TWRP_Partition_Manager |
| 21 | |
Ethan Yonker | 6e8c27a | 2016-12-22 17:55:57 -0600 | [diff] [blame] | 22 | #include <map> |
Dees_Troy | 240e4a7 | 2012-09-04 09:22:39 -0400 | [diff] [blame] | 23 | #include <vector> |
| 24 | #include <string> |
Ethan Yonker | 6e8c27a | 2016-12-22 17:55:57 -0600 | [diff] [blame] | 25 | #include <sys/poll.h> |
Ethan Yonker | 3fdcda4 | 2016-11-30 12:29:37 -0600 | [diff] [blame] | 26 | #include "exclude.hpp" |
bigbiff | 7abc5fe | 2015-01-17 16:53:12 -0500 | [diff] [blame] | 27 | #include "tw_atomic.hpp" |
Ethan Yonker | 472f506 | 2016-02-25 13:47:30 -0600 | [diff] [blame] | 28 | #include "progresstracking.hpp" |
bigbiff | a957f07 | 2021-03-07 18:20:29 -0500 | [diff] [blame] | 29 | #ifdef TW_INCLUDE_CRYPTO |
| 30 | #include "fscrypt_policy.h" |
| 31 | #endif |
Mohd Faraz | e3948ec | 2020-08-14 01:40:59 +0000 | [diff] [blame] | 32 | #include "twrpApex.hpp" |
Dees_Troy | 5bf4392 | 2012-09-07 16:07:55 -0400 | [diff] [blame] | 33 | |
| 34 | #define MAX_FSTAB_LINE_LENGTH 2048 |
Dees_Troy | 240e4a7 | 2012-09-04 09:22:39 -0400 | [diff] [blame] | 35 | |
Ethan Yonker | 53796e7 | 2019-01-11 22:49:52 -0600 | [diff] [blame] | 36 | #define REPACK_ORIG_DIR "/tmp/repackorig/" |
| 37 | #define REPACK_NEW_DIR "/tmp/repacknew/" |
| 38 | |
Mohd Faraz | 446ccbf | 2023-01-24 19:58:24 +0100 | [diff] [blame] | 39 | #define NOT_AVAILABLE -2 |
| 40 | |
Dees_Troy | 51a0e82 | 2012-09-05 15:24:24 -0400 | [diff] [blame] | 41 | using namespace std; |
| 42 | |
Ethan Yonker | 9338282 | 2018-11-01 15:25:31 -0500 | [diff] [blame] | 43 | // BasePartition is used for overriding so we can run custom, device |
| 44 | // specific code. |
| 45 | class BasePartition { |
| 46 | public: |
| 47 | explicit BasePartition() {} |
| 48 | virtual ~BasePartition() {} |
| 49 | |
| 50 | virtual bool PreWipeEncryption() { |
| 51 | return true; |
| 52 | } |
| 53 | |
| 54 | virtual bool PostWipeEncryption() { |
| 55 | return true; |
| 56 | } |
| 57 | }; |
| 58 | BasePartition* make_partition(); |
| 59 | |
Dees_Troy | a13d74f | 2013-03-24 08:54:55 -0500 | [diff] [blame] | 60 | struct PartitionList { |
| 61 | std::string Display_Name; |
| 62 | std::string Mount_Point; |
| 63 | unsigned int selected; |
| 64 | }; |
| 65 | |
Ethan Yonker | 6e8c27a | 2016-12-22 17:55:57 -0600 | [diff] [blame] | 66 | struct Uevent_Block_Data { |
| 67 | std::string action; |
| 68 | std::string subsystem; |
| 69 | std::string block_device; |
| 70 | std::string type; |
| 71 | std::string sysfs_path; |
| 72 | int major; |
| 73 | int minor; |
| 74 | }; |
| 75 | |
| 76 | struct Flags_Map { |
| 77 | std::string Primary_Block_Device; |
| 78 | std::string Alternate_Block_Device; |
| 79 | std::string File_System; |
| 80 | std::string Flags; |
| 81 | char* fstab_line; |
| 82 | }; |
| 83 | |
| 84 | enum PartitionManager_Op { // PartitionManager Restore Mode for Raw_Read_Write() |
bigbiff | ce8f83c | 2015-12-12 18:30:21 -0500 | [diff] [blame] | 85 | PM_BACKUP = 0, |
| 86 | PM_RESTORE = 1, |
| 87 | }; |
| 88 | |
| 89 | class TWPartition; |
| 90 | |
Ethan Yonker | 6e8c27a | 2016-12-22 17:55:57 -0600 | [diff] [blame] | 91 | struct PartitionSettings { // Settings for backup session |
Ethan Yonker | e080c1f | 2016-09-19 13:50:25 -0500 | [diff] [blame] | 92 | TWPartition* Part; // Partition to pass to the partition backup loop |
| 93 | std::string Backup_Folder; // Path to restore folder |
| 94 | bool adbbackup; // tell the system we are backing up over adb |
| 95 | bool adb_compression; // 0 == uncompressed, 1 == compressed |
bigbiff | ee7b7ff | 2020-03-23 15:08:27 -0400 | [diff] [blame] | 96 | bool generate_digest; // tell system to create digest for partitions |
Ethan Yonker | e080c1f | 2016-09-19 13:50:25 -0500 | [diff] [blame] | 97 | bool generate_md5; // tell system to create md5 for partitions |
| 98 | uint64_t total_restore_size; // Total size of restored backup |
| 99 | uint64_t img_bytes_remaining; // remaining img/emmc bytes to backup for progress indicator |
| 100 | uint64_t file_bytes_remaining; // remaining file bytes to backup for progress indicator |
| 101 | uint64_t img_time; // used to calculate how fast we backup images |
| 102 | uint64_t file_time; // used to calculate how fast we backup files |
| 103 | uint64_t img_bytes; // total image bytes of all emmc partitions |
| 104 | uint64_t file_bytes; // total file bytes of all file based partitions |
| 105 | int partition_count; // Number of partitions to restore |
| 106 | ProgressTracking *progress; // Keep track of progress in GUI |
| 107 | enum PartitionManager_Op PM_Method; // Current operation of backup or restore |
bigbiff | ce8f83c | 2015-12-12 18:30:21 -0500 | [diff] [blame] | 108 | }; |
| 109 | |
| 110 | enum Backup_Method_enum { |
| 111 | BM_NONE = 0, |
| 112 | BM_FILES = 1, |
| 113 | BM_DD = 2, |
| 114 | BM_FLASH_UTILS = 3, |
| 115 | }; |
| 116 | |
Dees_Troy | 240e4a7 | 2012-09-04 09:22:39 -0400 | [diff] [blame] | 117 | // Partition class |
| 118 | class TWPartition |
| 119 | { |
| 120 | public: |
that | 9e0593e | 2014-10-08 00:01:24 +0200 | [diff] [blame] | 121 | TWPartition(); |
Dees_Troy | 240e4a7 | 2012-09-04 09:22:39 -0400 | [diff] [blame] | 122 | virtual ~TWPartition(); |
| 123 | |
| 124 | public: |
Vojtech Bocek | 8b44bbd | 2013-07-25 20:43:29 +0200 | [diff] [blame] | 125 | bool Is_Mounted(); // Checks mount to see if the partition is currently mounted |
James Christopher Adduono | d6f94ac | 2016-02-29 04:26:04 -0500 | [diff] [blame] | 126 | bool Is_File_System_Writable(); // Checks if the root directory of the file system can be written to |
Vojtech Bocek | 8b44bbd | 2013-07-25 20:43:29 +0200 | [diff] [blame] | 127 | bool Mount(bool Display_Error); // Mounts the partition if it is not mounted |
| 128 | bool UnMount(bool Display_Error); // Unmounts the partition if it is mounted |
James Christopher Adduono | d6f94ac | 2016-02-29 04:26:04 -0500 | [diff] [blame] | 129 | bool ReMount(bool Display_Error); // Remounts the partition |
| 130 | bool ReMount_RW(bool Display_Error); // Remounts the partition with read/write access |
bigbiff | be4f46c | 2021-04-24 11:48:54 -0400 | [diff] [blame] | 131 | bool Bind_Mount(bool Display_Error); // Bind mount partition if symlink mountpoint is populated |
Vojtech Bocek | 8b44bbd | 2013-07-25 20:43:29 +0200 | [diff] [blame] | 132 | bool Wipe(string New_File_System); // Wipes the partition |
| 133 | bool Wipe(); // Wipes the partition |
| 134 | bool Wipe_AndSec(); // Wipes android secure |
bigbiff | aed1bdf | 2021-08-03 18:21:39 -0400 | [diff] [blame] | 135 | bool Wipe_Data_Cache(); // Wipe /data/cache with devices that have no cache partition |
Ethan Yonker | 87c7bac | 2014-05-25 21:41:08 -0500 | [diff] [blame] | 136 | bool Can_Repair(); // Checks to see if we have everything needed to be able to repair the current file system |
Andreas Blaesius | 123fcd0 | 2015-11-16 01:40:36 +0200 | [diff] [blame] | 137 | uint64_t Get_Max_FileSize(); // get partition maxFileSie |
Ethan Yonker | 87c7bac | 2014-05-25 21:41:08 -0500 | [diff] [blame] | 138 | bool Repair(); // Repairs the current file system |
Ethan Yonker | a271915 | 2015-05-28 09:44:41 -0500 | [diff] [blame] | 139 | bool Can_Resize(); // Checks to see if we have everything needed to be able to resize the current file system |
| 140 | bool Resize(); // Resizes the current file system |
bigbiff | ce8f83c | 2015-12-12 18:30:21 -0500 | [diff] [blame] | 141 | bool Backup(PartitionSettings *part_settings, pid_t *tar_fork_pid); // Backs up the partition to the folder specified |
bigbiff | ce8f83c | 2015-12-12 18:30:21 -0500 | [diff] [blame] | 142 | bool Restore(PartitionSettings *part_settings); // Restores the partition using the backup folder provided |
Ethan Yonker | e080c1f | 2016-09-19 13:50:25 -0500 | [diff] [blame] | 143 | unsigned long long Get_Restore_Size(PartitionSettings *part_settings); // Returns the overall restore size of the backup |
Vojtech Bocek | 8b44bbd | 2013-07-25 20:43:29 +0200 | [diff] [blame] | 144 | string Backup_Method_By_Name(); // Returns a string of the backup method for human readable output |
| 145 | bool Decrypt(string Password); // Decrypts the partition, return 0 for failure and -1 for success |
| 146 | bool Wipe_Encryption(); // Ignores wipe commands for /data/media devices and formats the original block device |
| 147 | void Check_FS_Type(); // Checks the fs type using blkid, does not do anything on MTD / yaffs2 because this crashes on some devices |
| 148 | bool Update_Size(bool Display_Error); // Updates size information |
| 149 | void Recreate_Media_Folder(); // Recreates the /data/media folder |
bigbiff | ce8f83c | 2015-12-12 18:30:21 -0500 | [diff] [blame] | 150 | bool Flash_Image(PartitionSettings *part_settings); // Flashes an image to the partition |
Ethan Yonker | eb32b1f | 2015-05-18 10:23:03 -0500 | [diff] [blame] | 151 | void Change_Mount_Read_Only(bool new_value); // Changes Mount_Read_Only to new_value |
bigbiff | ce8f83c | 2015-12-12 18:30:21 -0500 | [diff] [blame] | 152 | bool Is_Read_Only(); // Check if system is read-only in TWRP |
Ethan Yonker | eb32b1f | 2015-05-18 10:23:03 -0500 | [diff] [blame] | 153 | int Check_Lifetime_Writes(); |
Ethan Yonker | 66a1949 | 2015-12-10 10:19:45 -0600 | [diff] [blame] | 154 | int Decrypt_Adopted(); |
| 155 | void Revert_Adopted(); |
Matt Mower | 72c87ce | 2016-04-26 14:34:56 -0500 | [diff] [blame] | 156 | void Partition_Post_Processing(bool Display_Error); // Apply partition specific settings after fstab processed |
bigbiff | ad58e1b | 2020-07-06 20:24:34 -0400 | [diff] [blame] | 157 | void Set_Backup_FileName(string fname); // Set backup filename for partition |
| 158 | std::string Get_Backup_FileName(); // Get the backup filename for the partition |
bigbiff bigbiff | b5ecaad | 2017-03-20 18:53:53 -0400 | [diff] [blame] | 159 | string Get_Backup_Name(); // Get Backup_Name for partition |
Ethan Yonker | 9338282 | 2018-11-01 15:25:31 -0500 | [diff] [blame] | 160 | bool Decrypt_FBE_DE(); // If FBE is present, backup exclusions are set up and DE decrypt is attempted |
bigbiff | ee7b7ff | 2020-03-23 15:08:27 -0400 | [diff] [blame] | 161 | string Get_Mount_Point(); // Return Mount_Point or directory the current partition is mounted on |
| 162 | bool Get_Super_Status(); // Returns true if partition is a super volume mounted partitions |
| 163 | void Set_Can_Be_Backed_Up(bool val); // Update whether the partition can be backed up or not |
| 164 | void Set_Can_Be_Wiped(bool val); // Update whether the partition can be wiped or not |
bigbiff | ad58e1b | 2020-07-06 20:24:34 -0400 | [diff] [blame] | 165 | std::string Get_Display_Name(); // Get the display name in the gui for the partition |
| 166 | bool Is_SlotSelect(); // Return whether the partition is a slot partition or not |
Dees_Troy | 240e4a7 | 2012-09-04 09:22:39 -0400 | [diff] [blame] | 167 | |
Dees_Troy | 7c2dec8 | 2012-09-26 09:49:14 -0400 | [diff] [blame] | 168 | public: |
| 169 | string Current_File_System; // Current file system |
| 170 | string Actual_Block_Device; // Actual block device (one of primary, alternate, or decrypted) |
bigbiff | ce8f83c | 2015-12-12 18:30:21 -0500 | [diff] [blame] | 171 | string Backup_Display_Name; // Name displayed in the partition list for backup selection |
Dees_Troy | 094207a | 2012-09-26 12:00:39 -0400 | [diff] [blame] | 172 | string MTD_Name; // Name of the partition for MTD devices |
bigbiff bigbiff | c7eee6f | 2014-09-02 18:59:01 -0400 | [diff] [blame] | 173 | bool Is_Present; // Indicates if the partition is currently present as a block device |
Ethan Yonker | 253368a | 2014-11-25 15:00:52 -0600 | [diff] [blame] | 174 | string Crypto_Key_Location; // Location of the crypto key used for decrypting encrypted data partitions |
Ethan Yonker | 726a020 | 2014-12-16 20:01:38 -0600 | [diff] [blame] | 175 | unsigned int MTP_Storage_ID; |
Ethan Yonker | 66a1949 | 2015-12-10 10:19:45 -0600 | [diff] [blame] | 176 | string Adopted_GUID; |
Peter Cai | 439d60c | 2019-10-17 08:49:10 +0800 | [diff] [blame] | 177 | unsigned int Adopted_Mount_Delay; |
Dees_Troy | 7c2dec8 | 2012-09-26 09:49:14 -0400 | [diff] [blame] | 178 | |
Ethan Yonker | 1eff6cd | 2014-09-15 13:30:42 -0500 | [diff] [blame] | 179 | protected: |
| 180 | bool Has_Data_Media; // Indicates presence of /data/media, may affect wiping and backup methods |
that | 9e0593e | 2014-10-08 00:01:24 +0200 | [diff] [blame] | 181 | void Setup_Data_Media(); // Sets up a partition as a /data/media emulated storage partition |
bigbiff | cfa875c | 2021-06-20 16:20:27 -0400 | [diff] [blame] | 182 | void Set_Block_Device(std::string block_device); // Allow super partition setup to change block device |
Ethan Yonker | 1eff6cd | 2014-09-15 13:30:42 -0500 | [diff] [blame] | 183 | |
Vojtech Bocek | 8b44bbd | 2013-07-25 20:43:29 +0200 | [diff] [blame] | 184 | private: |
bigbiff | 8da46fa | 2020-09-08 16:42:34 -0400 | [diff] [blame] | 185 | bool Process_Fstab_Line(const char *fstab_line, bool Display_Error, std::map<string, Flags_Map> *twrp_flags); // Processes a fstab line |
Matt Mower | 72c87ce | 2016-04-26 14:34:56 -0500 | [diff] [blame] | 186 | void Setup_Data_Partition(bool Display_Error); // Setup data partition after fstab processed |
bigbiff | 7ba7500 | 2020-04-11 20:47:09 -0400 | [diff] [blame] | 187 | void Set_FBE_Status(); // Set FBE status of partition |
Matt Mower | 72c87ce | 2016-04-26 14:34:56 -0500 | [diff] [blame] | 188 | void Setup_Cache_Partition(bool Display_Error); // Setup cache partition after fstab processed |
Ethan Yonker | 6e8c27a | 2016-12-22 17:55:57 -0600 | [diff] [blame] | 189 | bool Find_Wildcard_Block_Devices(const string& Device); // Searches for and finds wildcard block devices |
Dees_Troy | 38bd760 | 2012-09-14 13:33:53 -0400 | [diff] [blame] | 190 | void Find_Actual_Block_Device(); // Determines the correct block device and stores it in Actual_Block_Device |
Matt Mower | 2416a50 | 2016-04-12 19:54:46 -0500 | [diff] [blame] | 191 | void Apply_TW_Flag(const unsigned flag, const char* str, const bool val); // Apply custom twrp fstab flags |
Ethan Yonker | 6e8c27a | 2016-12-22 17:55:57 -0600 | [diff] [blame] | 192 | void Process_TW_Flags(char *flags, bool Display_Error, int fstab_ver); // Process custom twrp fstab flags |
Matt Mower | 4ab42b1 | 2016-04-21 13:52:18 -0500 | [diff] [blame] | 193 | void Process_FS_Flags(const char *str); // Process standard fstab fs flags |
Ethan Yonker | 6e8c27a | 2016-12-22 17:55:57 -0600 | [diff] [blame] | 194 | 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 Bocek | 8b44bbd | 2013-07-25 20:43:29 +0200 | [diff] [blame] | 195 | bool Is_File_System(string File_System); // Checks to see if the file system given is considered a file system |
| 196 | bool Is_Image(string File_System); // Checks to see if the file system given is considered an image |
| 197 | void Setup_File_System(bool Display_Error); // Sets defaults for a file system partition |
Ethan Yonker | 1b19016 | 2016-12-05 15:25:19 -0600 | [diff] [blame] | 198 | void Setup_Image(); // Sets defaults for an image partition |
Vojtech Bocek | 8b44bbd | 2013-07-25 20:43:29 +0200 | [diff] [blame] | 199 | void Setup_AndSec(void); // Sets up .android_secure settings |
| 200 | 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 Yonker | d18a821 | 2015-12-14 10:17:00 -0600 | [diff] [blame] | 201 | unsigned long long IOCTL_Get_Block_Size(); // Finds the partition size using ioctl |
Vojtech Bocek | 8b44bbd | 2013-07-25 20:43:29 +0200 | [diff] [blame] | 202 | bool Find_Partition_Size(); // Finds the partition size from /proc/partitions |
| 203 | unsigned long long Get_Size_Via_du(string Path, bool Display_Error); // Uses du to get sizes |
dianlujitao | 4879b37 | 2018-12-03 18:45:47 +0800 | [diff] [blame] | 204 | bool Wipe_EXTFS(string File_System); // Create an ext2/ext3/ext4 filesystem |
Vojtech Bocek | 8b44bbd | 2013-07-25 20:43:29 +0200 | [diff] [blame] | 205 | bool Wipe_EXT4(); // Formats using ext4, uses make_ext4fs when present |
Matt Mower | 18794c8 | 2015-11-11 16:22:45 -0600 | [diff] [blame] | 206 | bool Wipe_FAT(); // Formats as FAT if mkfs.fat exits otherwise rm -rf wipe |
Vojtech Bocek | 8b44bbd | 2013-07-25 20:43:29 +0200 | [diff] [blame] | 207 | bool Wipe_EXFAT(); // Formats as EXFAT |
| 208 | bool Wipe_MTD(); // Formats as yaffs2 for MTD memory types |
| 209 | bool Wipe_RMRF(); // Uses rm -rf to wipe |
Dees_Troy | e501704 | 2013-08-29 16:38:55 +0000 | [diff] [blame] | 210 | bool Wipe_F2FS(); // Uses mkfs.f2fs to wipe |
Ethan Yonker | b81d905 | 2015-07-09 13:20:53 -0500 | [diff] [blame] | 211 | bool Wipe_NTFS(); // Uses mkntfs to wipe |
Vojtech Bocek | 8b44bbd | 2013-07-25 20:43:29 +0200 | [diff] [blame] | 212 | bool Wipe_Data_Without_Wiping_Media(); // Uses rm -rf to wipe but does not wipe /data/media |
Ethan Yonker | 66a1949 | 2015-12-10 10:19:45 -0600 | [diff] [blame] | 213 | bool Wipe_Data_Without_Wiping_Media_Func(const string& parent); // Uses rm -rf to wipe but does not wipe /data/media |
dianlujitao | 4879b37 | 2018-12-03 18:45:47 +0800 | [diff] [blame] | 214 | void Wipe_Crypto_Key(); // Wipe crypto key from either footer or block device |
bigbiff | ce8f83c | 2015-12-12 18:30:21 -0500 | [diff] [blame] | 215 | bool Backup_Tar(PartitionSettings *part_settings, pid_t *tar_fork_pid); // Backs up using tar for file systems |
| 216 | bool Backup_Image(PartitionSettings *part_settings); // Backs up using raw read/write for emmc memory types |
| 217 | bool Raw_Read_Write(PartitionSettings *part_settings); |
| 218 | bool Backup_Dump_Image(PartitionSettings *part_settings); // Backs up using dump_image for MTD memory types |
| 219 | string Get_Restore_File_System(PartitionSettings *part_settings); // Returns the file system that was in place at the time of the backup |
| 220 | bool Restore_Tar(PartitionSettings *part_settings); // Restore using tar for file systems |
| 221 | bool Restore_Image(PartitionSettings *part_settings); // Restore using dd for images |
James Christopher Adduono | 79ae093 | 2016-10-25 02:18:32 -0400 | [diff] [blame] | 222 | bool Check_Restore_File_MD5(const string& Filename); // Verifies MD5 matches for a file before restoration |
Vojtech Bocek | 8b44bbd | 2013-07-25 20:43:29 +0200 | [diff] [blame] | 223 | bool Get_Size_Via_statfs(bool Display_Error); // Get Partition size, used, and free space using statfs |
| 224 | bool Get_Size_Via_df(bool Display_Error); // Get Partition size, used, and free space using df command |
| 225 | bool Make_Dir(string Path, bool Display_Error); // Creates a directory if it doesn't already exist |
| 226 | bool Find_MTD_Block_Device(string MTD_Name); // Finds the mtd block device based on the name from the fstab |
| 227 | void Recreate_AndSec_Folder(void); // Recreates the .android_secure folder |
Kjell Braden | 3126a11 | 2016-06-19 16:58:15 +0000 | [diff] [blame] | 228 | 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 Yonker | 472f506 | 2016-02-25 13:47:30 -0600 | [diff] [blame] | 229 | bool Is_Sparse_Image(const string& Filename); // Determines if a file is in sparse image format |
| 230 | bool Flash_Sparse_Image(const string& Filename); // Flashes a sparse image using simg2img |
| 231 | bool Flash_Image_FI(const string& Filename, ProgressTracking *progress); // Flashes an image to the partition using flash_image for mtd nand |
Ethan Yonker | bd7492d | 2016-12-07 13:55:01 -0600 | [diff] [blame] | 232 | void ExcludeAll(const string& path); // Adds an exclusion for path to both the backup and wipe exclusion lists |
Vojtech Bocek | 8b44bbd | 2013-07-25 20:43:29 +0200 | [diff] [blame] | 233 | |
| 234 | private: |
Dees_Troy | 240e4a7 | 2012-09-04 09:22:39 -0400 | [diff] [blame] | 235 | bool Can_Be_Mounted; // Indicates that the partition can be mounted |
| 236 | bool Can_Be_Wiped; // Indicates that the partition can be wiped |
Dees_Troy | a13d74f | 2013-03-24 08:54:55 -0500 | [diff] [blame] | 237 | bool Can_Be_Backed_Up; // Indicates that the partition will show up in the backup list |
Hashcode | dabfd49 | 2013-08-29 22:45:30 -0700 | [diff] [blame] | 238 | bool Use_Rm_Rf; // Indicates that the partition will always be formatted w/ "rm -rf *" |
Dees_Troy | 51a0e82 | 2012-09-05 15:24:24 -0400 | [diff] [blame] | 239 | bool Wipe_During_Factory_Reset; // Indicates that this partition is wiped during a factory reset |
Dees_Troy | 240e4a7 | 2012-09-04 09:22:39 -0400 | [diff] [blame] | 240 | bool Wipe_Available_in_GUI; // Inidcates that the wipe can be user initiated in the GUI system |
| 241 | bool Is_SubPartition; // Indicates that this partition is a sub-partition of another partition (e.g. datadata is a sub-partition of data) |
Dees_Troy | 5112731 | 2012-09-08 13:08:49 -0400 | [diff] [blame] | 242 | bool Has_SubPartition; // Indicates that this partition has a sub-partition |
Dees_Troy | 5bf4392 | 2012-09-07 16:07:55 -0400 | [diff] [blame] | 243 | string SubPartition_Of; // Indicates which partition is the parent partition of this partition (e.g. /data is the parent partition of /datadata) |
Dees_Troy | 240e4a7 | 2012-09-04 09:22:39 -0400 | [diff] [blame] | 244 | string Symlink_Path; // Symlink path (e.g. /data/media) |
| 245 | string Symlink_Mount_Point; // /sdcard could be the symlink mount point for /data/media |
| 246 | string Mount_Point; // Mount point for this partition (e.g. /system or /data) |
Dees_Troy | e58d526 | 2012-09-21 12:27:57 -0400 | [diff] [blame] | 247 | string Backup_Path; // Path for backup |
Ethan Yonker | 6e8c27a | 2016-12-22 17:55:57 -0600 | [diff] [blame] | 248 | bool Wildcard_Block_Device; // If the block device contains an asterisk, we set this flag |
| 249 | 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_Troy | 38bd760 | 2012-09-14 13:33:53 -0400 | [diff] [blame] | 250 | string Primary_Block_Device; // Block device (e.g. /dev/block/mmcblk1p1) |
Dees_Troy | 240e4a7 | 2012-09-04 09:22:39 -0400 | [diff] [blame] | 251 | string Alternate_Block_Device; // Alternate block device (e.g. /dev/block/mmcblk1) |
Dees_Troy | 38bd760 | 2012-09-14 13:33:53 -0400 | [diff] [blame] | 252 | string Decrypted_Block_Device; // Decrypted block device available after decryption |
Dees_Troy | 240e4a7 | 2012-09-04 09:22:39 -0400 | [diff] [blame] | 253 | bool Removable; // Indicates if this partition is removable -- affects how often we check overall size, if present, etc. |
Dees_Troy | 240e4a7 | 2012-09-04 09:22:39 -0400 | [diff] [blame] | 254 | int Length; // Used by make_ext4fs to leave free space at the end of the partition block for things like a crypto footer |
| 255 | unsigned long long Size; // Overall size of the partition |
| 256 | unsigned long long Used; // Overall used space |
| 257 | unsigned long long Free; // Overall free space |
| 258 | unsigned long long Backup_Size; // Backup size -- may be different than used space especially when /data/media is present |
Ethan Yonker | 1b7a31b | 2014-07-03 15:09:22 -0500 | [diff] [blame] | 259 | unsigned long long Restore_Size; // Restore size of the current restore operation |
Dees_Troy | 240e4a7 | 2012-09-04 09:22:39 -0400 | [diff] [blame] | 260 | bool Can_Be_Encrypted; // This partition might be encrypted, affects error handling, can only be true if crypto support is compiled in |
| 261 | bool Is_Encrypted; // This partition is thought to be encrypted -- it wouldn't mount for some reason, only avialble with crypto support |
| 262 | bool Is_Decrypted; // This partition has successfully been decrypted |
Ethan Yonker | bd7492d | 2016-12-07 13:55:01 -0600 | [diff] [blame] | 263 | bool Is_FBE; // File Based Encryption is present |
Ethan Yonker | 253368a | 2014-11-25 15:00:52 -0600 | [diff] [blame] | 264 | bool Mount_To_Decrypt; // Mount this partition during decrypt (/vendor, /firmware, etc in case we need proprietary libs or firmware files) |
Dees_Troy | 240e4a7 | 2012-09-04 09:22:39 -0400 | [diff] [blame] | 265 | string Display_Name; // Display name for the GUI |
| 266 | string Backup_Name; // Backup name -- used for backup filenames |
Dees_Troy | a13d74f | 2013-03-24 08:54:55 -0500 | [diff] [blame] | 267 | string Storage_Name; // Name displayed in the partition list for storage selection |
Dees_Troy | 63c8df7 | 2012-09-10 14:02:05 -0400 | [diff] [blame] | 268 | string Backup_FileName; // Actual backup filename |
Dees_Troy | 240e4a7 | 2012-09-04 09:22:39 -0400 | [diff] [blame] | 269 | Backup_Method_enum Backup_Method; // Method used for backup |
Dees_Troy | 83bd483 | 2013-05-04 12:39:56 +0000 | [diff] [blame] | 270 | bool Can_Encrypt_Backup; // Indicates if this item can be encrypted during backup |
| 271 | bool Use_Userdata_Encryption; // Indicates if we will use userdata encryption splitting on an encrypted backup |
Dees_Troy | e58d526 | 2012-09-21 12:27:57 -0400 | [diff] [blame] | 272 | bool Has_Android_Secure; // Indicates the presence of .android_secure on this partition |
Dees_Troy | 5bf4392 | 2012-09-07 16:07:55 -0400 | [diff] [blame] | 273 | bool Is_Storage; // Indicates if this partition is used for storage for backup, restore, and installing zips |
Dees_Troy | a13d74f | 2013-03-24 08:54:55 -0500 | [diff] [blame] | 274 | 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_Troy | 5bf4392 | 2012-09-07 16:07:55 -0400 | [diff] [blame] | 275 | string Storage_Path; // Indicates the path to the storage -- root indicates mount point, media/ indicates e.g. /data/media |
Dees_Troy | 5bf4392 | 2012-09-07 16:07:55 -0400 | [diff] [blame] | 276 | string Fstab_File_System; // File system from the recovery.fstab |
Hashcode | 62bd9e0 | 2013-11-19 21:59:42 -0800 | [diff] [blame] | 277 | int Mount_Flags; // File system flags from recovery.fstab |
| 278 | string Mount_Options; // File system options from recovery.fstab |
Ethan Yonker | a271915 | 2015-05-28 09:44:41 -0500 | [diff] [blame] | 279 | unsigned long Format_Block_Size; // Block size for formatting |
Dees_Troy | 68cab49 | 2012-12-12 19:29:35 +0000 | [diff] [blame] | 280 | bool Ignore_Blkid; // Ignore blkid results due to superblocks lying to us on certain devices / partitions |
Ethan Yonker | 96af84a | 2015-01-05 14:58:36 -0600 | [diff] [blame] | 281 | bool Can_Flash_Img; // Indicates if this partition can have images flashed to it via the GUI |
Ethan Yonker | eb32b1f | 2015-05-18 10:23:03 -0500 | [diff] [blame] | 282 | bool Mount_Read_Only; // Only mount this partition as read-only |
Ethan Yonker | 66a1949 | 2015-12-10 10:19:45 -0600 | [diff] [blame] | 283 | bool Is_Adopted_Storage; // Indicates that this partition is for adopted storage (android_expand) |
Ethan Yonker | 1b19016 | 2016-12-05 15:25:19 -0600 | [diff] [blame] | 284 | bool SlotSelect; // Partition has A/B slots |
| 285 | TWExclude backup_exclusions; // Exclusions for file based backups |
| 286 | TWExclude wipe_exclusions; // Exclusions for file based wipes (data/media devices only) |
bigbiff | ee7b7ff | 2020-03-23 15:08:27 -0400 | [diff] [blame] | 287 | string Key_Directory; // Metadata key directory needed for mounting FBE encrypted data partitions using metadata encryption |
Peter Cai | d68e641 | 2019-11-02 19:22:38 +0800 | [diff] [blame] | 288 | string Original_Path; |
| 289 | bool Use_Original_Path; |
Darth9 | 9fb13af | 2023-04-07 23:32:45 +0100 | [diff] [blame] | 290 | bool Needs_Fs_Compress; |
Peter Cai | d68e641 | 2019-11-02 19:22:38 +0800 | [diff] [blame] | 291 | |
Ethan Yonker | 6e8c27a | 2016-12-22 17:55:57 -0600 | [diff] [blame] | 292 | struct partition_fs_flags_struct { // This struct is used to store mount flags and options for different file systems for the same partition |
| 293 | string File_System; |
| 294 | int Mount_Flags; |
| 295 | string Mount_Options; |
| 296 | }; |
| 297 | |
| 298 | std::vector<partition_fs_flags_struct> fs_flags; // This vector stores mount flags and options for different file systems for the same partition |
bigbiff | ee7b7ff | 2020-03-23 15:08:27 -0400 | [diff] [blame] | 299 | bool Is_Super; // States whether partition should be loaded from the super partition |
Ethan Yonker | 6e8c27a | 2016-12-22 17:55:57 -0600 | [diff] [blame] | 300 | |
Dees_Troy | 240e4a7 | 2012-09-04 09:22:39 -0400 | [diff] [blame] | 301 | friend class TWPartitionManager; |
Dees_Troy | a13d74f | 2013-03-24 08:54:55 -0500 | [diff] [blame] | 302 | friend class DataManager; |
| 303 | friend class GUIPartitionList; |
Ethan Yonker | 87c7bac | 2014-05-25 21:41:08 -0500 | [diff] [blame] | 304 | friend class GUIAction; |
Ethan Yonker | 74db157 | 2015-10-28 12:44:49 -0500 | [diff] [blame] | 305 | friend class PageManager; |
Dees_Troy | 51a0e82 | 2012-09-05 15:24:24 -0400 | [diff] [blame] | 306 | }; |
Dees_Troy | 240e4a7 | 2012-09-04 09:22:39 -0400 | [diff] [blame] | 307 | |
Noah Jacobson | 81d638d | 2019-04-28 00:10:07 -0400 | [diff] [blame] | 308 | struct users_struct { |
| 309 | std::string userId; |
| 310 | std::string userName; |
| 311 | int type; |
| 312 | bool isDecrypted; |
| 313 | }; |
| 314 | |
Dees_Troy | 240e4a7 | 2012-09-04 09:22:39 -0400 | [diff] [blame] | 315 | class TWPartitionManager |
| 316 | { |
| 317 | public: |
Andreas Blaesius | 123fcd0 | 2015-11-16 01:40:36 +0200 | [diff] [blame] | 318 | TWPartitionManager(); // Constructor for TWRPartionManager |
Vojtech Bocek | 8b44bbd | 2013-07-25 20:43:29 +0200 | [diff] [blame] | 319 | ~TWPartitionManager() {} |
Dees_Troy | 5bf4392 | 2012-09-07 16:07:55 -0400 | [diff] [blame] | 320 | |
| 321 | public: |
bigbiff | 22851b9 | 2021-09-01 16:46:57 -0400 | [diff] [blame] | 322 | int Process_Fstab(string Fstab_Filename, bool Display_Error, bool recovery_mode); // Parses the fstab files |
| 323 | void Setup_Fstab_Partitions(bool Display_Error); // Populates the partitions |
Vojtech Bocek | 8b44bbd | 2013-07-25 20:43:29 +0200 | [diff] [blame] | 324 | int Write_Fstab(); // Creates /etc/fstab file that's used by the command line for mount commands |
bigbiff | 7ba7500 | 2020-04-11 20:47:09 -0400 | [diff] [blame] | 325 | void Decrypt_Data(); // Decrypt Data if enabled |
Vojtech Bocek | 8b44bbd | 2013-07-25 20:43:29 +0200 | [diff] [blame] | 326 | void Output_Partition_Logging(); // Outputs partition information to the log |
Ethan Yonker | 6e8c27a | 2016-12-22 17:55:57 -0600 | [diff] [blame] | 327 | void Output_Partition(TWPartition* Part); // Outputs partition details to the log |
Vojtech Bocek | 8b44bbd | 2013-07-25 20:43:29 +0200 | [diff] [blame] | 328 | int Mount_By_Path(string Path, bool Display_Error); // Mounts partition based on path (e.g. /system) |
Vojtech Bocek | 8b44bbd | 2013-07-25 20:43:29 +0200 | [diff] [blame] | 329 | int UnMount_By_Path(string Path, bool Display_Error); // Unmounts partition based on path |
Vojtech Bocek | 8b44bbd | 2013-07-25 20:43:29 +0200 | [diff] [blame] | 330 | int Is_Mounted_By_Path(string Path); // Checks if partition is mounted based on path |
Vojtech Bocek | 8b44bbd | 2013-07-25 20:43:29 +0200 | [diff] [blame] | 331 | int Mount_Current_Storage(bool Display_Error); // Mounts the current storage location |
| 332 | int Mount_Settings_Storage(bool Display_Error); // Mounts the settings file storage location (usually internal) |
Ethan Yonker | 6e8c27a | 2016-12-22 17:55:57 -0600 | [diff] [blame] | 333 | TWPartition* Find_Partition_By_Path(const string& Path); // Returns a pointer to a partition based on path |
| 334 | TWPartition* Find_Partition_By_Block_Device(const string& Block_Device); // Returns a pointer to a partition based on block device |
Ethan Yonker | 53796e7 | 2019-01-11 22:49:52 -0600 | [diff] [blame] | 335 | int Check_Backup_Name(const std::string& Backup_Name, bool Display_Error, bool Must_Be_Unique); // Checks the current backup name to ensure that it is valid and optionally that a backup with that name doesn't already exist |
bigbiff | ce8f83c | 2015-12-12 18:30:21 -0500 | [diff] [blame] | 336 | int Run_Backup(bool adbbackup); // Initiates a backup in the current storage |
Ethan Yonker | 472f506 | 2016-02-25 13:47:30 -0600 | [diff] [blame] | 337 | int Run_Restore(const string& Restore_Name); // Restores a backup |
bigbiff | ce8f83c | 2015-12-12 18:30:21 -0500 | [diff] [blame] | 338 | bool Write_ADB_Stream_Header(uint64_t partition_count); // Write ADB header over twrpbu FIFO |
| 339 | bool Write_ADB_Stream_Trailer(); // Write ADB trailer over twrpbu FIFO |
Vojtech Bocek | 8b44bbd | 2013-07-25 20:43:29 +0200 | [diff] [blame] | 340 | void Set_Restore_Files(string Restore_Name); // Used to gather a list of available backup partitions for the user to select for a restore |
| 341 | int Wipe_By_Path(string Path); // Wipes a partition based on path |
Ethan Yonker | 87c7bac | 2014-05-25 21:41:08 -0500 | [diff] [blame] | 342 | int Wipe_By_Path(string Path, string New_File_System); // Wipes a partition based on path |
Vojtech Bocek | 8b44bbd | 2013-07-25 20:43:29 +0200 | [diff] [blame] | 343 | int Factory_Reset(); // Performs a factory reset |
| 344 | int Wipe_Dalvik_Cache(); // Wipes dalvik cache |
| 345 | int Wipe_Rotate_Data(); // Wipes rotation data -- |
| 346 | int Wipe_Battery_Stats(); // Wipe battery stats -- /data/system/batterystats.bin |
| 347 | int Wipe_Android_Secure(); // Wipes android secure |
| 348 | int Format_Data(); // Really formats data on /data/media devices -- also removes encryption |
| 349 | int Wipe_Media_From_Data(); // Removes and recreates the media folder on /data/media devices |
Ethan Yonker | 87c7bac | 2014-05-25 21:41:08 -0500 | [diff] [blame] | 350 | int Repair_By_Path(string Path, bool Display_Error); // Repairs a partition based on path |
Ethan Yonker | a271915 | 2015-05-28 09:44:41 -0500 | [diff] [blame] | 351 | int Resize_By_Path(string Path, bool Display_Error); // Resizes a partition based on path |
Vojtech Bocek | 8b44bbd | 2013-07-25 20:43:29 +0200 | [diff] [blame] | 352 | void Update_System_Details(); // Updates fstab, file systems, sizes, etc. |
Noah Jacobson | 81d638d | 2019-04-28 00:10:07 -0400 | [diff] [blame] | 353 | int Decrypt_Device(string Password, int user_id = 0); // Attempt to decrypt any encrypted partitions |
| 354 | void Parse_Users(); // Parse FBE users |
Vojtech Bocek | 8b44bbd | 2013-07-25 20:43:29 +0200 | [diff] [blame] | 355 | int usb_storage_enable(void); // Enable USB storage mode |
| 356 | int usb_storage_disable(void); // Disable USB storage mode |
| 357 | void Mount_All_Storage(void); // Mounts all storage locations |
| 358 | void UnMount_Main_Partitions(void); // Unmounts system and data if not data/media and boot if boot is mountable |
| 359 | int Partition_SDCard(void); // Repartitions the sdcard |
Vojtech Bocek | 93cb1ef | 2014-05-12 15:41:52 +0200 | [diff] [blame] | 360 | TWPartition *Get_Default_Storage_Partition(); // Returns a pointer to a default storage partition |
Ethan Yonker | 472f506 | 2016-02-25 13:47:30 -0600 | [diff] [blame] | 361 | int Check_Backup_Cancel(); // Returns the value of stop_backup |
bigbiff | 7abc5fe | 2015-01-17 16:53:12 -0500 | [diff] [blame] | 362 | int Cancel_Backup(); // Signals partition backup to cancel |
Andreas Blaesius | 123fcd0 | 2015-11-16 01:40:36 +0200 | [diff] [blame] | 363 | void Clean_Backup_Folder(string Backup_Folder); // Clean Backup Folder on Error |
Ethan Yonker | b5fab76 | 2016-01-28 14:03:33 -0600 | [diff] [blame] | 364 | int Fix_Contexts(); |
Vojtech Bocek | 8b44bbd | 2013-07-25 20:43:29 +0200 | [diff] [blame] | 365 | void Get_Partition_List(string ListType, std::vector<PartitionList> *Partition_List); |
| 366 | int Fstab_Processed(); // Indicates if the fstab has been processed or not |
| 367 | void Output_Storage_Fstab(); // Creates a /cache/recovery/storage.fstab file with a list of all potential storage locations for app use |
bigbiff bigbiff | c7eee6f | 2014-09-02 18:59:01 -0400 | [diff] [blame] | 368 | bool Enable_MTP(); // Enables MTP |
Ethan Yonker | 1b03920 | 2015-01-30 10:08:48 -0600 | [diff] [blame] | 369 | void Add_All_MTP_Storage(); // Adds all storage objects for MTP |
bigbiff bigbiff | c7eee6f | 2014-09-02 18:59:01 -0400 | [diff] [blame] | 370 | bool Disable_MTP(); // Disables MTP |
Ethan Yonker | 726a020 | 2014-12-16 20:01:38 -0600 | [diff] [blame] | 371 | bool Add_MTP_Storage(string Mount_Point); // Adds or removes an MTP Storage partition |
| 372 | bool Add_MTP_Storage(unsigned int Storage_ID); // Adds or removes an MTP Storage partition |
| 373 | bool Remove_MTP_Storage(string Mount_Point); // Adds or removes an MTP Storage partition |
| 374 | bool Remove_MTP_Storage(unsigned int Storage_ID); // Adds or removes an MTP Storage partition |
Ethan Yonker | 74db157 | 2015-10-28 12:44:49 -0500 | [diff] [blame] | 375 | void Translate_Partition(const char* path, const char* resource_name, const char* default_value); |
| 376 | 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 Yonker | 01f4e03 | 2017-02-03 15:30:52 -0600 | [diff] [blame] | 377 | 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 Yonker | 74db157 | 2015-10-28 12:44:49 -0500 | [diff] [blame] | 378 | void Translate_Partition_Display_Names(); // Updates display names based on translations |
Ethan Yonker | 6e8c27a | 2016-12-22 17:55:57 -0600 | [diff] [blame] | 379 | bool Decrypt_Adopted(); // Attempt to identy and decrypt any adopted storage partitions |
Ethan Yonker | fcf3f24 | 2016-02-16 12:30:26 -0600 | [diff] [blame] | 380 | void Remove_Partition_By_Path(string Path); // Removes / erases a partition entry from the partition list |
bigbiff | ee7b7ff | 2020-03-23 15:08:27 -0400 | [diff] [blame] | 381 | bool Prepare_All_Super_Volumes(); // Prepare all known super volumes from super partition |
Ethan Yonker | e080c1f | 2016-09-19 13:50:25 -0500 | [diff] [blame] | 382 | bool Flash_Image(string& path, string& filename); // Flashes an image to a selected partition from the partition list |
| 383 | bool Restore_Partition(struct PartitionSettings *part_settings); // Restore the partitions based on type |
bigbiff | 7abc5fe | 2015-01-17 16:53:12 -0500 | [diff] [blame] | 384 | TWAtomicInt stop_backup; |
bigbiff | 74a4627 | 2021-07-31 19:02:26 -0400 | [diff] [blame] | 385 | void Override_Active_Slot(const string& Slot); // Override the active slot for repacking |
Ethan Yonker | 1b19016 | 2016-12-05 15:25:19 -0600 | [diff] [blame] | 386 | void Set_Active_Slot(const string& Slot); // Sets the active slot to A or B |
| 387 | string Get_Active_Slot_Suffix(); // Returns active slot _a or _b |
| 388 | string Get_Active_Slot_Display(); // Returns active slot A or B for display purposes |
Captain Throwback | 9d6feb5 | 2018-07-27 10:05:24 -0400 | [diff] [blame] | 389 | string Get_Android_Root_Path(); // Returns path of ANDROID_ROOT environment variable |
Ethan Yonker | 6e8c27a | 2016-12-22 17:55:57 -0600 | [diff] [blame] | 390 | struct pollfd uevent_pfd; // Used for uevent code |
| 391 | void Remove_Uevent_Devices(const string& sysfs_path); // Removes subpartitions from the Partitions vector for a matched uevent device |
| 392 | void Handle_Uevent(const Uevent_Block_Data& uevent_data); // Handle uevent data |
| 393 | void setup_uevent(); // Opens the uevent netlink socket |
| 394 | 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 |
| 395 | void read_uevent(); // Reads uevent data into a buffer |
| 396 | void close_uevent(); // Closes the uevent netlink socket |
| 397 | void Add_Partition(TWPartition* Part); // Adds a new partition to the Partitions vector |
bigbiff | cfa875c | 2021-06-20 16:20:27 -0400 | [diff] [blame] | 398 | std::string Get_Bare_Partition_Name(std::string Mount_Point); |
bigbiff | ee7b7ff | 2020-03-23 15:08:27 -0400 | [diff] [blame] | 399 | bool Prepare_Super_Volume(TWPartition* twrpPart); // Prepare logical super partition volume for mounting |
| 400 | std::string Get_Super_Partition(); // Get Super Partition block device path |
| 401 | void Setup_Super_Devices(); // Setup logical dm devices on super partition |
| 402 | bool Get_Super_Status(); // Return whether device has a super partition |
bigbiff | 7ba7500 | 2020-04-11 20:47:09 -0400 | [diff] [blame] | 403 | void Setup_Super_Partition(); // Setup the super partition for backup and restore |
bigbiff | 25d25b9 | 2020-06-19 16:07:38 -0400 | [diff] [blame] | 404 | bool Recreate_Logs_Dir(); // Recreate TWRP_AB_LOGS_DIR after wipe |
Noah Jacobson | 81d638d | 2019-04-28 00:10:07 -0400 | [diff] [blame] | 405 | std::vector<users_struct>* Get_Users_List(); // Returns pointer to list of users |
Captain Throwback | 37c3aef | 2021-10-06 11:38:18 -0400 | [diff] [blame] | 406 | void Set_Crypto_State(); // Sets encryption state for devices (ro.crypto.state) |
| 407 | int Set_Crypto_Type(const char* crypto_type); // Sets encryption type for FDE (block) and FBE (file) devices (ro.crypto.type) |
bigbiff | 1f9e484 | 2020-10-31 11:33:15 -0400 | [diff] [blame] | 408 | void Unlock_Block_Partitions(); // Unlock all block devices after update_engine runs |
bigbiff | cfa875c | 2021-06-20 16:20:27 -0400 | [diff] [blame] | 409 | bool Unmap_Super_Devices(); // Unmap super devices in TWRP |
bigbiff | d21252f | 2021-09-18 15:56:32 -0400 | [diff] [blame] | 410 | bool Check_Pending_Merges(); // Check and run pending merges on data for VAB devices |
bigbiff | 7abc5fe | 2015-01-17 16:53:12 -0500 | [diff] [blame] | 411 | |
Dees_Troy | 240e4a7 | 2012-09-04 09:22:39 -0400 | [diff] [blame] | 412 | private: |
Matt Mower | bf4efa3 | 2014-04-14 23:25:26 -0500 | [diff] [blame] | 413 | void Setup_Settings_Storage_Partition(TWPartition* Part); // Sets up settings storage |
| 414 | void Setup_Android_Secure_Location(TWPartition* Part); // Sets up .android_secure if needed |
Ethan Yonker | e080c1f | 2016-09-19 13:50:25 -0500 | [diff] [blame] | 415 | bool Backup_Partition(struct PartitionSettings *part_settings); // Backup the partitions based on type |
Ethan Yonker | 726a020 | 2014-12-16 20:01:38 -0600 | [diff] [blame] | 416 | TWPartition* Find_Partition_By_MTP_Storage_ID(unsigned int Storage_ID); // Returns a pointer to a partition based on MTP Storage ID |
Andreas Blaesius | 123fcd0 | 2015-11-16 01:40:36 +0200 | [diff] [blame] | 417 | bool Add_Remove_MTP_Storage(TWPartition* Part, int message_type); // Adds or removes an MTP Storage partition |
Ethan Yonker | 66a1949 | 2015-12-10 10:19:45 -0600 | [diff] [blame] | 418 | TWPartition* Find_Next_Storage(string Path, bool Exclude_Data_Media); |
Dees_Troy | d21618c | 2012-10-14 18:48:49 -0400 | [diff] [blame] | 419 | int Open_Lun_File(string Partition_Path, string Lun_File); |
Ethan Yonker | bd7492d | 2016-12-07 13:55:01 -0600 | [diff] [blame] | 420 | void Post_Decrypt(const string& Block_Device); // Completes various post-decrypt tasks |
Ethan Yonker | 6e8c27a | 2016-12-22 17:55:57 -0600 | [diff] [blame] | 421 | 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 |
| 422 | void Coldboot(); // Starts the scan of the /sys/block folder |
Ethan Yonker | 53796e7 | 2019-01-11 22:49:52 -0600 | [diff] [blame] | 423 | bool Prepare_Empty_Folder(const std::string& Folder); // Creates an empty folder at Folder. If the folder already exists, the folder is deleted, then created |
Ethan Yonker | 8dfa777 | 2014-09-04 21:48:41 -0500 | [diff] [blame] | 424 | pid_t mtppid; |
bigbiff bigbiff | c7eee6f | 2014-09-02 18:59:01 -0400 | [diff] [blame] | 425 | bool mtp_was_enabled; |
Ethan Yonker | 726a020 | 2014-12-16 20:01:38 -0600 | [diff] [blame] | 426 | int mtp_write_fd; |
bigbiff | ce8f83c | 2015-12-12 18:30:21 -0500 | [diff] [blame] | 427 | pid_t tar_fork_pid; // PID of twrpTar fork |
| 428 | Backup_Method_enum Backup_Method; // Method used for backup |
bigbiff | ad58e1b | 2020-07-06 20:24:34 -0400 | [diff] [blame] | 429 | std::string original_ramdisk_format; // Ramdisk format of boot partition |
| 430 | std::string repacked_ramdisk_format; // Ramdisk format of boot image to repack from |
Noah Jacobson | 81d638d | 2019-04-28 00:10:07 -0400 | [diff] [blame] | 431 | void Mark_User_Decrypted(int userID); // Marks given user ID in Users_List as decrypted |
bigbiff | cfa875c | 2021-06-20 16:20:27 -0400 | [diff] [blame] | 432 | void Check_Users_Decryption_Status(); // Checks to see if all users are decrypted |
Dees_Troy | 43d8b00 | 2012-09-17 16:00:01 -0400 | [diff] [blame] | 433 | |
| 434 | private: |
Dees_Troy | 5112731 | 2012-09-08 13:08:49 -0400 | [diff] [blame] | 435 | std::vector<TWPartition*> Partitions; // Vector list of all partitions |
Ethan Yonker | 1b19016 | 2016-12-05 15:25:19 -0600 | [diff] [blame] | 436 | string Active_Slot_Display; // Current Active Slot (A or B) for display purposes |
Noah Jacobson | 81d638d | 2019-04-28 00:10:07 -0400 | [diff] [blame] | 437 | std::vector<users_struct> Users_List; // List of FBE users |
bigbiff | 998f839 | 2021-08-06 19:19:33 -0400 | [diff] [blame] | 438 | std::vector<std::string> Super_Partition_List; // Display value for super partitions |
Dees_Troy | 51a0e82 | 2012-09-05 15:24:24 -0400 | [diff] [blame] | 439 | }; |
Dees_Troy | 240e4a7 | 2012-09-04 09:22:39 -0400 | [diff] [blame] | 440 | |
Dees_Troy | 5bf4392 | 2012-09-07 16:07:55 -0400 | [diff] [blame] | 441 | extern TWPartitionManager PartitionManager; |
| 442 | |
| 443 | #endif // __TWRP_Partition_Manager |