Dees_Troy | 240e4a7 | 2012-09-04 09:22:39 -0400 | [diff] [blame] | 1 | /* Partition Management classes for TWRP |
| 2 | * |
| 3 | * This program is free software; you can redistribute it and/or modify |
| 4 | * it under the terms of the GNU General Public License version 2 and |
| 5 | * only version 2 as published by the Free Software Foundation. |
| 6 | * |
| 7 | * This program is distributed in the hope that it will be useful, |
| 8 | * but WITHOUT ANY WARRANTY; without even the implied warranty of |
| 9 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
| 10 | * GNU General Public License for more details. |
| 11 | * |
| 12 | * You should have received a copy of the GNU General Public License |
| 13 | * along with this program; if not, write to the Free Software |
| 14 | * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA |
| 15 | * 02110-1301, USA. |
| 16 | * |
| 17 | * The code was written from scratch by Dees_Troy dees_troy at |
| 18 | * yahoo |
| 19 | * |
| 20 | * Copyright (c) 2012 |
| 21 | */ |
| 22 | |
| 23 | #ifndef __TWRP_Partition_Manager |
| 24 | #define __TWRP_Partition_Manager |
| 25 | |
Dees_Troy | 240e4a7 | 2012-09-04 09:22:39 -0400 | [diff] [blame] | 26 | #include <vector> |
| 27 | #include <string> |
Dees_Troy | 5bf4392 | 2012-09-07 16:07:55 -0400 | [diff] [blame] | 28 | |
| 29 | #define MAX_FSTAB_LINE_LENGTH 2048 |
Dees_Troy | 240e4a7 | 2012-09-04 09:22:39 -0400 | [diff] [blame] | 30 | |
Dees_Troy | 51a0e82 | 2012-09-05 15:24:24 -0400 | [diff] [blame] | 31 | using namespace std; |
| 32 | |
Dees_Troy | 240e4a7 | 2012-09-04 09:22:39 -0400 | [diff] [blame] | 33 | // Partition class |
| 34 | class TWPartition |
| 35 | { |
| 36 | public: |
| 37 | enum Backup_Method_enum { |
| 38 | NONE = 0, |
| 39 | FILES = 1, |
| 40 | DD = 2, |
| 41 | FLASH_UTILS = 3, |
| 42 | }; |
| 43 | |
| 44 | public: |
| 45 | TWPartition(); |
| 46 | virtual ~TWPartition(); |
| 47 | |
| 48 | public: |
| 49 | virtual bool Is_Mounted(); // Checks mount to see if the partition is currently mounted |
| 50 | virtual bool Mount(bool Display_Error); // Mounts the partition if it is not mounted |
| 51 | virtual bool UnMount(bool Display_Error); // Unmounts the partition if it is mounted |
Gary Peck | 43acadf | 2012-11-21 21:19:01 -0800 | [diff] [blame] | 52 | virtual bool Wipe(string New_File_System); // Wipes the partition |
Dees_Troy | 240e4a7 | 2012-09-04 09:22:39 -0400 | [diff] [blame] | 53 | virtual bool Wipe(); // Wipes the partition |
Dees_Troy | e58d526 | 2012-09-21 12:27:57 -0400 | [diff] [blame] | 54 | virtual bool Wipe_AndSec(); // Wipes android secure |
Dees_Troy | 240e4a7 | 2012-09-04 09:22:39 -0400 | [diff] [blame] | 55 | virtual bool Backup(string backup_folder); // Backs up the partition to the folder specified |
Dees_Troy | 43d8b00 | 2012-09-17 16:00:01 -0400 | [diff] [blame] | 56 | virtual bool Check_MD5(string restore_folder); // Checks MD5 of a backup |
Dees_Troy | 240e4a7 | 2012-09-04 09:22:39 -0400 | [diff] [blame] | 57 | virtual bool Restore(string restore_folder); // Restores the partition using the backup folder provided |
Dees_Troy | 5112731 | 2012-09-08 13:08:49 -0400 | [diff] [blame] | 58 | virtual string Backup_Method_By_Name(); // Returns a string of the backup method for human readable output |
Dees_Troy | 240e4a7 | 2012-09-04 09:22:39 -0400 | [diff] [blame] | 59 | virtual bool Decrypt(string Password); // Decrypts the partition, return 0 for failure and -1 for success |
| 60 | virtual bool Wipe_Encryption(); // Ignores wipe commands for /data/media devices and formats the original block device |
Dees_Troy | 5bf4392 | 2012-09-07 16:07:55 -0400 | [diff] [blame] | 61 | virtual void Check_FS_Type(); // Checks the fs type using blkid, does not do anything on MTD / yaffs2 because this crashes on some devices |
| 62 | virtual bool Update_Size(bool Display_Error); // Updates size information |
Dees_Troy | 38bd760 | 2012-09-14 13:33:53 -0400 | [diff] [blame] | 63 | virtual void Recreate_Media_Folder(); // Recreates the /data/media folder |
Dees_Troy | 240e4a7 | 2012-09-04 09:22:39 -0400 | [diff] [blame] | 64 | |
Dees_Troy | 7c2dec8 | 2012-09-26 09:49:14 -0400 | [diff] [blame] | 65 | public: |
| 66 | string Current_File_System; // Current file system |
| 67 | string Actual_Block_Device; // Actual block device (one of primary, alternate, or decrypted) |
Dees_Troy | 094207a | 2012-09-26 12:00:39 -0400 | [diff] [blame] | 68 | string MTD_Name; // Name of the partition for MTD devices |
Dees_Troy | 7c2dec8 | 2012-09-26 09:49:14 -0400 | [diff] [blame] | 69 | |
Dees_Troy | 240e4a7 | 2012-09-04 09:22:39 -0400 | [diff] [blame] | 70 | protected: |
Dees_Troy | 5bf4392 | 2012-09-07 16:07:55 -0400 | [diff] [blame] | 71 | bool Process_Fstab_Line(string Line, bool Display_Error); // Processes a fstab line |
Dees_Troy | 38bd760 | 2012-09-14 13:33:53 -0400 | [diff] [blame] | 72 | void Find_Actual_Block_Device(); // Determines the correct block device and stores it in Actual_Block_Device |
Dees_Troy | 240e4a7 | 2012-09-04 09:22:39 -0400 | [diff] [blame] | 73 | |
| 74 | protected: |
| 75 | bool Can_Be_Mounted; // Indicates that the partition can be mounted |
| 76 | bool Can_Be_Wiped; // Indicates that the partition can be wiped |
Dees_Troy | 51a0e82 | 2012-09-05 15:24:24 -0400 | [diff] [blame] | 77 | 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] | 78 | bool Wipe_Available_in_GUI; // Inidcates that the wipe can be user initiated in the GUI system |
| 79 | 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] | 80 | bool Has_SubPartition; // Indicates that this partition has a sub-partition |
Dees_Troy | 5bf4392 | 2012-09-07 16:07:55 -0400 | [diff] [blame] | 81 | 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] | 82 | string Symlink_Path; // Symlink path (e.g. /data/media) |
| 83 | string Symlink_Mount_Point; // /sdcard could be the symlink mount point for /data/media |
| 84 | 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] | 85 | string Backup_Path; // Path for backup |
Dees_Troy | 38bd760 | 2012-09-14 13:33:53 -0400 | [diff] [blame] | 86 | string Primary_Block_Device; // Block device (e.g. /dev/block/mmcblk1p1) |
Dees_Troy | 240e4a7 | 2012-09-04 09:22:39 -0400 | [diff] [blame] | 87 | string Alternate_Block_Device; // Alternate block device (e.g. /dev/block/mmcblk1) |
Dees_Troy | 38bd760 | 2012-09-14 13:33:53 -0400 | [diff] [blame] | 88 | string Decrypted_Block_Device; // Decrypted block device available after decryption |
Dees_Troy | 240e4a7 | 2012-09-04 09:22:39 -0400 | [diff] [blame] | 89 | bool Removable; // Indicates if this partition is removable -- affects how often we check overall size, if present, etc. |
| 90 | bool Is_Present; // Indicates if the partition is currently present as a block device |
| 91 | int Length; // Used by make_ext4fs to leave free space at the end of the partition block for things like a crypto footer |
| 92 | unsigned long long Size; // Overall size of the partition |
| 93 | unsigned long long Used; // Overall used space |
| 94 | unsigned long long Free; // Overall free space |
| 95 | unsigned long long Backup_Size; // Backup size -- may be different than used space especially when /data/media is present |
| 96 | bool Can_Be_Encrypted; // This partition might be encrypted, affects error handling, can only be true if crypto support is compiled in |
| 97 | bool Is_Encrypted; // This partition is thought to be encrypted -- it wouldn't mount for some reason, only avialble with crypto support |
| 98 | bool Is_Decrypted; // This partition has successfully been decrypted |
Dees_Troy | 240e4a7 | 2012-09-04 09:22:39 -0400 | [diff] [blame] | 99 | string Display_Name; // Display name for the GUI |
| 100 | string Backup_Name; // Backup name -- used for backup filenames |
Dees_Troy | 63c8df7 | 2012-09-10 14:02:05 -0400 | [diff] [blame] | 101 | string Backup_FileName; // Actual backup filename |
Dees_Troy | 240e4a7 | 2012-09-04 09:22:39 -0400 | [diff] [blame] | 102 | Backup_Method_enum Backup_Method; // Method used for backup |
Dees_Troy | 5bf4392 | 2012-09-07 16:07:55 -0400 | [diff] [blame] | 103 | bool Has_Data_Media; // Indicates presence of /data/media, may affect wiping and backup methods |
Dees_Troy | e58d526 | 2012-09-21 12:27:57 -0400 | [diff] [blame] | 104 | 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] | 105 | bool Is_Storage; // Indicates if this partition is used for storage for backup, restore, and installing zips |
| 106 | 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] | 107 | string Fstab_File_System; // File system from the recovery.fstab |
| 108 | int Format_Block_Size; // Block size for formatting |
Dees_Troy | 68cab49 | 2012-12-12 19:29:35 +0000 | [diff] [blame] | 109 | bool Ignore_Blkid; // Ignore blkid results due to superblocks lying to us on certain devices / partitions |
Dees_Troy | 16c2b31 | 2013-01-15 16:51:18 +0000 | [diff] [blame] | 110 | 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) |
Dees_Troy | 85f44ed | 2013-01-09 18:42:36 +0000 | [diff] [blame] | 111 | #ifdef TW_INCLUDE_CRYPTO_SAMSUNG |
| 112 | string EcryptFS_Password; // Have to store the encryption password to remount |
| 113 | #endif |
Dees_Troy | 240e4a7 | 2012-09-04 09:22:39 -0400 | [diff] [blame] | 114 | |
| 115 | private: |
Dees_Troy | 5112731 | 2012-09-08 13:08:49 -0400 | [diff] [blame] | 116 | bool Process_Flags(string Flags, bool Display_Error); // Process custom fstab flags |
Dees_Troy | 5bf4392 | 2012-09-07 16:07:55 -0400 | [diff] [blame] | 117 | bool Is_File_System(string File_System); // Checks to see if the file system given is considered a file system |
| 118 | bool Is_Image(string File_System); // Checks to see if the file system given is considered an image |
| 119 | void Setup_File_System(bool Display_Error); // Sets defaults for a file system partition |
| 120 | void Setup_Image(bool Display_Error); // Sets defaults for an image partition |
Dees_Troy | e58d526 | 2012-09-21 12:27:57 -0400 | [diff] [blame] | 121 | void Setup_AndSec(void); // Sets up .android_secure settings |
Dees_Troy | 5bf4392 | 2012-09-07 16:07:55 -0400 | [diff] [blame] | 122 | 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 |
| 123 | bool Find_Partition_Size(); // Finds the partition size from /proc/partitions |
Dees_Troy | 5bf4392 | 2012-09-07 16:07:55 -0400 | [diff] [blame] | 124 | unsigned long long Get_Size_Via_du(string Path, bool Display_Error); // Uses du to get sizes |
Gary Peck | 43acadf | 2012-11-21 21:19:01 -0800 | [diff] [blame] | 125 | bool Wipe_EXT23(string File_System); // Formats as ext3 or ext2 |
Dees_Troy | 240e4a7 | 2012-09-04 09:22:39 -0400 | [diff] [blame] | 126 | bool Wipe_EXT4(); // Formats using ext4, uses make_ext4fs when present |
bigbiff bigbiff | 9c75405 | 2013-01-09 09:09:08 -0500 | [diff] [blame] | 127 | bool Wipe_FAT(); // Formats as FAT if mkdosfs exits otherwise rm -rf wipe |
| 128 | bool Wipe_EXFAT(); // Formats as EXFAT |
Dees_Troy | e58d526 | 2012-09-21 12:27:57 -0400 | [diff] [blame] | 129 | bool Wipe_MTD(); // Formats as yaffs2 for MTD memory types |
Dees_Troy | 240e4a7 | 2012-09-04 09:22:39 -0400 | [diff] [blame] | 130 | bool Wipe_RMRF(); // Uses rm -rf to wipe |
| 131 | bool Wipe_Data_Without_Wiping_Media(); // Uses rm -rf to wipe but does not wipe /data/media |
| 132 | bool Backup_Tar(string backup_folder); // Backs up using tar for file systems |
| 133 | bool Backup_DD(string backup_folder); // Backs up using dd for emmc memory types |
| 134 | bool Backup_Dump_Image(string backup_folder); // Backs up using dump_image for MTD memory types |
Gary Peck | 43acadf | 2012-11-21 21:19:01 -0800 | [diff] [blame] | 135 | bool Restore_Tar(string restore_folder, string Restore_File_System); // Restore using tar for file systems |
Dees_Troy | 240e4a7 | 2012-09-04 09:22:39 -0400 | [diff] [blame] | 136 | bool Restore_DD(string restore_folder); // Restore using dd for emmc memory types |
| 137 | bool Restore_Flash_Image(string restore_folder); // Restore using flash_image for MTD memory types |
Dees_Troy | 5112731 | 2012-09-08 13:08:49 -0400 | [diff] [blame] | 138 | bool Get_Size_Via_statfs(bool Display_Error); // Get Partition size, used, and free space using statfs |
| 139 | bool Get_Size_Via_df(bool Display_Error); // Get Partition size, used, and free space using df command |
Dees_Troy | 5112731 | 2012-09-08 13:08:49 -0400 | [diff] [blame] | 140 | bool Make_Dir(string Path, bool Display_Error); // Creates a directory if it doesn't already exist |
Dees_Troy | 38bd760 | 2012-09-14 13:33:53 -0400 | [diff] [blame] | 141 | bool Find_MTD_Block_Device(string MTD_Name); // Finds the mtd block device based on the name from the fstab |
Dees_Troy | e58d526 | 2012-09-21 12:27:57 -0400 | [diff] [blame] | 142 | void Recreate_AndSec_Folder(void); // Recreates the .android_secure folder |
Dees_Troy | 8e337f3 | 2012-10-13 22:07:49 -0400 | [diff] [blame] | 143 | void Mount_Storage_Retry(void); // Tries multiple times with a half second delay to mount a device in case storage is slow to mount |
Dees_Troy | 240e4a7 | 2012-09-04 09:22:39 -0400 | [diff] [blame] | 144 | |
| 145 | friend class TWPartitionManager; |
Dees_Troy | 51a0e82 | 2012-09-05 15:24:24 -0400 | [diff] [blame] | 146 | }; |
Dees_Troy | 240e4a7 | 2012-09-04 09:22:39 -0400 | [diff] [blame] | 147 | |
| 148 | class TWPartitionManager |
| 149 | { |
| 150 | public: |
Dees_Troy | 5bf4392 | 2012-09-07 16:07:55 -0400 | [diff] [blame] | 151 | TWPartitionManager() {} |
| 152 | virtual ~TWPartitionManager() {} |
| 153 | |
| 154 | public: |
| 155 | virtual int Process_Fstab(string Fstab_Filename, bool Display_Error); // Parses the fstab and populates the partitions |
| 156 | virtual int Write_Fstab(); // Creates /etc/fstab file that's used by the command line for mount commands |
Dees_Troy | 8170a92 | 2012-09-18 15:40:25 -0400 | [diff] [blame] | 157 | virtual void Output_Partition_Logging(); // Outputs partition information to the log |
Dees_Troy | 5bf4392 | 2012-09-07 16:07:55 -0400 | [diff] [blame] | 158 | virtual int Mount_By_Path(string Path, bool Display_Error); // Mounts partition based on path (e.g. /system) |
| 159 | virtual int Mount_By_Block(string Block, bool Display_Error); // Mounts partition based on block device (e.g. /dev/block/mmcblk1p1) |
| 160 | virtual int Mount_By_Name(string Name, bool Display_Error); // Mounts partition based on display name (e.g. System) |
| 161 | virtual int UnMount_By_Path(string Path, bool Display_Error); // Unmounts partition based on path |
| 162 | virtual int UnMount_By_Block(string Block, bool Display_Error); // Unmounts partition based on block device |
| 163 | virtual int UnMount_By_Name(string Name, bool Display_Error); // Unmounts partition based on display name |
| 164 | virtual int Is_Mounted_By_Path(string Path); // Checks if partition is mounted based on path |
| 165 | virtual int Is_Mounted_By_Block(string Block); // Checks if partition is mounted based on block device |
| 166 | virtual int Is_Mounted_By_Name(string Name); // Checks if partition is mounted based on display name |
| 167 | virtual int Mount_Current_Storage(bool Display_Error); // Mounts the current storage location |
| 168 | virtual int Mount_Settings_Storage(bool Display_Error); // Mounts the settings file storage location (usually internal) |
| 169 | TWPartition* Find_Partition_By_Path(string Path); // Returns a pointer to a partition based on path |
| 170 | TWPartition* Find_Partition_By_Block(string Block); // Returns a pointer to a partition based on block device |
| 171 | TWPartition* Find_Partition_By_Name(string Block); // Returns a pointer to a partition based on name |
Dees_Troy | c9ff7a3 | 2012-09-27 10:09:41 -0400 | [diff] [blame] | 172 | virtual int Check_Backup_Name(bool Display_Error); // Checks the current backup name to ensure that it is valid |
Dees_Troy | 43d8b00 | 2012-09-17 16:00:01 -0400 | [diff] [blame] | 173 | virtual int Run_Backup(); // Initiates a backup in the current storage |
Dees_Troy | 5bf4392 | 2012-09-07 16:07:55 -0400 | [diff] [blame] | 174 | virtual int Run_Restore(string Restore_Name); // Restores a backup |
| 175 | virtual void Set_Restore_Files(string Restore_Name); // Used to gather a list of available backup partitions for the user to select for a restore |
| 176 | virtual int Wipe_By_Path(string Path); // Wipes a partition based on path |
| 177 | virtual int Wipe_By_Block(string Block); // Wipes a partition based on block device |
| 178 | virtual int Wipe_By_Name(string Name); // Wipes a partition based on display name |
| 179 | virtual int Factory_Reset(); // Performs a factory reset |
Dees_Troy | 38bd760 | 2012-09-14 13:33:53 -0400 | [diff] [blame] | 180 | virtual int Wipe_Dalvik_Cache(); // Wipes dalvik cache |
| 181 | virtual int Wipe_Rotate_Data(); // Wipes rotation data -- |
| 182 | virtual int Wipe_Battery_Stats(); // Wipe battery stats -- /data/system/batterystats.bin |
Dees_Troy | 2ff5a8d | 2012-09-26 14:53:02 -0400 | [diff] [blame] | 183 | virtual int Wipe_Android_Secure(); // Wipes android secure |
Dees_Troy | 38bd760 | 2012-09-14 13:33:53 -0400 | [diff] [blame] | 184 | virtual int Format_Data(); // Really formats data on /data/media devices -- also removes encryption |
| 185 | virtual int Wipe_Media_From_Data(); // Removes and recreates the media folder on /data/media devices |
Dees_Troy | 5bf4392 | 2012-09-07 16:07:55 -0400 | [diff] [blame] | 186 | virtual void Refresh_Sizes(); // Refreshes size data of partitions |
| 187 | virtual void Update_System_Details(); // Updates fstab, file systems, sizes, etc. |
| 188 | virtual int Decrypt_Device(string Password); // Attempt to decrypt any encrypted partitions |
Dees_Troy | 8170a92 | 2012-09-18 15:40:25 -0400 | [diff] [blame] | 189 | virtual int usb_storage_enable(void); // Enable USB storage mode |
| 190 | virtual int usb_storage_disable(void); // Disable USB storage mode |
Dees_Troy | 812660f | 2012-09-20 09:55:17 -0400 | [diff] [blame] | 191 | virtual void Mount_All_Storage(void); // Mounts all storage locations |
Dees_Troy | d0384ef | 2012-10-12 12:15:42 -0400 | [diff] [blame] | 192 | virtual void UnMount_Main_Partitions(void); // Unmounts system and data if not data/media and boot if boot is mountable |
Dees_Troy | 9350b8d | 2012-09-27 12:38:38 -0400 | [diff] [blame] | 193 | virtual int Partition_SDCard(void); // Repartitions the sdcard |
Dees_Troy | 240e4a7 | 2012-09-04 09:22:39 -0400 | [diff] [blame] | 194 | |
bigbiff bigbiff | a0f8a59 | 2012-10-09 21:01:03 -0400 | [diff] [blame] | 195 | virtual int Fix_Permissions(); |
Dees_Troy | 240e4a7 | 2012-09-04 09:22:39 -0400 | [diff] [blame] | 196 | private: |
Dees_Troy | 43d8b00 | 2012-09-17 16:00:01 -0400 | [diff] [blame] | 197 | bool Make_MD5(bool generate_md5, string Backup_Folder, string Backup_Filename); // Generates an MD5 after a backup is made |
Dees_Troy | 093b764 | 2012-09-21 15:59:38 -0400 | [diff] [blame] | 198 | bool Backup_Partition(TWPartition* Part, string Backup_Folder, bool generate_md5, unsigned long long* img_bytes_remaining, unsigned long long* file_bytes_remaining, unsigned long *img_time, unsigned long *file_time, unsigned long long *img_bytes, unsigned long long *file_bytes); |
| 199 | bool Restore_Partition(TWPartition* Part, string Restore_Name, int partition_count); |
Dees_Troy | 8170a92 | 2012-09-18 15:40:25 -0400 | [diff] [blame] | 200 | void Output_Partition(TWPartition* Part); |
Dees_Troy | d21618c | 2012-10-14 18:48:49 -0400 | [diff] [blame] | 201 | int Open_Lun_File(string Partition_Path, string Lun_File); |
Dees_Troy | 43d8b00 | 2012-09-17 16:00:01 -0400 | [diff] [blame] | 202 | |
| 203 | private: |
Dees_Troy | 5112731 | 2012-09-08 13:08:49 -0400 | [diff] [blame] | 204 | std::vector<TWPartition*> Partitions; // Vector list of all partitions |
Dees_Troy | 51a0e82 | 2012-09-05 15:24:24 -0400 | [diff] [blame] | 205 | }; |
Dees_Troy | 240e4a7 | 2012-09-04 09:22:39 -0400 | [diff] [blame] | 206 | |
Dees_Troy | 5bf4392 | 2012-09-07 16:07:55 -0400 | [diff] [blame] | 207 | extern TWPartitionManager PartitionManager; |
| 208 | |
| 209 | #endif // __TWRP_Partition_Manager |