blob: 0609712cbad589ed5fc2c9fdb1c58a3a3ef2bbd3 [file] [log] [blame]
Dees_Troy240e4a72012-09-04 09:22:39 -04001/* 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_Troy240e4a72012-09-04 09:22:39 -040026#include <vector>
27#include <string>
Dees_Troy5bf43922012-09-07 16:07:55 -040028
29#define MAX_FSTAB_LINE_LENGTH 2048
Dees_Troy240e4a72012-09-04 09:22:39 -040030
Dees_Troy51a0e822012-09-05 15:24:24 -040031using namespace std;
32
Dees_Troy240e4a72012-09-04 09:22:39 -040033// Partition class
34class TWPartition
35{
36public:
37 enum Backup_Method_enum {
38 NONE = 0,
39 FILES = 1,
40 DD = 2,
41 FLASH_UTILS = 3,
42 };
43
44public:
45 TWPartition();
46 virtual ~TWPartition();
47
48public:
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
52 virtual bool Wipe(); // Wipes the partition
53 virtual bool Backup(string backup_folder); // Backs up the partition to the folder specified
54 virtual bool Restore(string restore_folder); // Restores the partition using the backup folder provided
Dees_Troy51127312012-09-08 13:08:49 -040055 virtual string Backup_Method_By_Name(); // Returns a string of the backup method for human readable output
Dees_Troy240e4a72012-09-04 09:22:39 -040056 virtual bool Decrypt(string Password); // Decrypts the partition, return 0 for failure and -1 for success
57 virtual bool Wipe_Encryption(); // Ignores wipe commands for /data/media devices and formats the original block device
Dees_Troy5bf43922012-09-07 16:07:55 -040058 virtual void Check_FS_Type(); // Checks the fs type using blkid, does not do anything on MTD / yaffs2 because this crashes on some devices
59 virtual bool Update_Size(bool Display_Error); // Updates size information
Dees_Troy240e4a72012-09-04 09:22:39 -040060
61protected:
Dees_Troy5bf43922012-09-07 16:07:55 -040062 bool Process_Fstab_Line(string Line, bool Display_Error); // Processes a fstab line
Dees_Troy240e4a72012-09-04 09:22:39 -040063
64protected:
65 bool Can_Be_Mounted; // Indicates that the partition can be mounted
66 bool Can_Be_Wiped; // Indicates that the partition can be wiped
Dees_Troy51a0e822012-09-05 15:24:24 -040067 bool Wipe_During_Factory_Reset; // Indicates that this partition is wiped during a factory reset
Dees_Troy240e4a72012-09-04 09:22:39 -040068 bool Wipe_Available_in_GUI; // Inidcates that the wipe can be user initiated in the GUI system
69 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 -040070 bool Has_SubPartition; // Indicates that this partition has a sub-partition
Dees_Troy5bf43922012-09-07 16:07:55 -040071 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 -040072 string Symlink_Path; // Symlink path (e.g. /data/media)
73 string Symlink_Mount_Point; // /sdcard could be the symlink mount point for /data/media
74 string Mount_Point; // Mount point for this partition (e.g. /system or /data)
75 string Block_Device; // Block device (e.g. /dev/block/mmcblk1p1)
76 string Alternate_Block_Device; // Alternate block device (e.g. /dev/block/mmcblk1)
77 bool Removable; // Indicates if this partition is removable -- affects how often we check overall size, if present, etc.
78 bool Is_Present; // Indicates if the partition is currently present as a block device
79 int Length; // Used by make_ext4fs to leave free space at the end of the partition block for things like a crypto footer
80 unsigned long long Size; // Overall size of the partition
81 unsigned long long Used; // Overall used space
82 unsigned long long Free; // Overall free space
83 unsigned long long Backup_Size; // Backup size -- may be different than used space especially when /data/media is present
84 bool Can_Be_Encrypted; // This partition might be encrypted, affects error handling, can only be true if crypto support is compiled in
85 bool Is_Encrypted; // This partition is thought to be encrypted -- it wouldn't mount for some reason, only avialble with crypto support
86 bool Is_Decrypted; // This partition has successfully been decrypted
87 string Decrypted_Block_Device; // Decrypted block device available after decryption
88 string Display_Name; // Display name for the GUI
89 string Backup_Name; // Backup name -- used for backup filenames
Dees_Troy63c8df72012-09-10 14:02:05 -040090 string Backup_FileName; // Actual backup filename
Dees_Troy240e4a72012-09-04 09:22:39 -040091 Backup_Method_enum Backup_Method; // Method used for backup
Dees_Troy5bf43922012-09-07 16:07:55 -040092 bool Has_Data_Media; // Indicates presence of /data/media, may affect wiping and backup methods
93 bool Is_Storage; // Indicates if this partition is used for storage for backup, restore, and installing zips
94 string Storage_Path; // Indicates the path to the storage -- root indicates mount point, media/ indicates e.g. /data/media
95 string Current_File_System; // Current file system
96 string Fstab_File_System; // File system from the recovery.fstab
97 int Format_Block_Size; // Block size for formatting
Dees_Troy240e4a72012-09-04 09:22:39 -040098
99private:
Dees_Troy51127312012-09-08 13:08:49 -0400100 bool Process_Flags(string Flags, bool Display_Error); // Process custom fstab flags
Dees_Troy5bf43922012-09-07 16:07:55 -0400101 bool Is_File_System(string File_System); // Checks to see if the file system given is considered a file system
102 bool Is_Image(string File_System); // Checks to see if the file system given is considered an image
103 void Setup_File_System(bool Display_Error); // Sets defaults for a file system partition
104 void Setup_Image(bool Display_Error); // Sets defaults for an image partition
105 bool Path_Exists(string Path); // Checks to see if the Path exists in the file system
106 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
107 bool Find_Partition_Size(); // Finds the partition size from /proc/partitions
Dees_Troy5bf43922012-09-07 16:07:55 -0400108 unsigned long long Get_Size_Via_du(string Path, bool Display_Error); // Uses du to get sizes
109 void Flip_Block_Device(); // Flips the Block_Device and Alternate_Block_Device
Dees_Troy240e4a72012-09-04 09:22:39 -0400110 bool Wipe_EXT23(); // Formats as ext3 or ext2
111 bool Wipe_EXT4(); // Formats using ext4, uses make_ext4fs when present
112 bool Wipe_FAT(); // Formats as FAT except that mkdosfs from busybox usually fails so oftentimes this is actually a rm -rf wipe
113 bool Wipe_YAFFS2(); // Formats as yaffs2 for MTD memory types
114 bool Wipe_RMRF(); // Uses rm -rf to wipe
115 bool Wipe_Data_Without_Wiping_Media(); // Uses rm -rf to wipe but does not wipe /data/media
116 bool Backup_Tar(string backup_folder); // Backs up using tar for file systems
117 bool Backup_DD(string backup_folder); // Backs up using dd for emmc memory types
118 bool Backup_Dump_Image(string backup_folder); // Backs up using dump_image for MTD memory types
119 bool Restore_Tar(string restore_folder); // Restore using tar for file systems
120 bool Restore_DD(string restore_folder); // Restore using dd for emmc memory types
121 bool Restore_Flash_Image(string restore_folder); // Restore using flash_image for MTD memory types
Dees_Troy51127312012-09-08 13:08:49 -0400122 bool Get_Size_Via_statfs(bool Display_Error); // Get Partition size, used, and free space using statfs
123 bool Get_Size_Via_df(bool Display_Error); // Get Partition size, used, and free space using df command
124 unsigned long long Get_Folder_Size(string Path, bool Display_Error); // Gets the size of the files in a folder and all of its subfolders
125 bool Make_Dir(string Path, bool Display_Error); // Creates a directory if it doesn't already exist
Dees_Troy240e4a72012-09-04 09:22:39 -0400126
127friend class TWPartitionManager;
Dees_Troy51a0e822012-09-05 15:24:24 -0400128};
Dees_Troy240e4a72012-09-04 09:22:39 -0400129
130class TWPartitionManager
131{
132public:
Dees_Troy5bf43922012-09-07 16:07:55 -0400133 TWPartitionManager() {}
134 virtual ~TWPartitionManager() {}
135
136public:
137 virtual int Process_Fstab(string Fstab_Filename, bool Display_Error); // Parses the fstab and populates the partitions
138 virtual int Write_Fstab(); // Creates /etc/fstab file that's used by the command line for mount commands
139 virtual int Mount_By_Path(string Path, bool Display_Error); // Mounts partition based on path (e.g. /system)
140 virtual int Mount_By_Block(string Block, bool Display_Error); // Mounts partition based on block device (e.g. /dev/block/mmcblk1p1)
141 virtual int Mount_By_Name(string Name, bool Display_Error); // Mounts partition based on display name (e.g. System)
142 virtual int UnMount_By_Path(string Path, bool Display_Error); // Unmounts partition based on path
143 virtual int UnMount_By_Block(string Block, bool Display_Error); // Unmounts partition based on block device
144 virtual int UnMount_By_Name(string Name, bool Display_Error); // Unmounts partition based on display name
145 virtual int Is_Mounted_By_Path(string Path); // Checks if partition is mounted based on path
146 virtual int Is_Mounted_By_Block(string Block); // Checks if partition is mounted based on block device
147 virtual int Is_Mounted_By_Name(string Name); // Checks if partition is mounted based on display name
148 virtual int Mount_Current_Storage(bool Display_Error); // Mounts the current storage location
149 virtual int Mount_Settings_Storage(bool Display_Error); // Mounts the settings file storage location (usually internal)
150 TWPartition* Find_Partition_By_Path(string Path); // Returns a pointer to a partition based on path
151 TWPartition* Find_Partition_By_Block(string Block); // Returns a pointer to a partition based on block device
152 TWPartition* Find_Partition_By_Name(string Block); // Returns a pointer to a partition based on name
153 virtual int Run_Backup(string Backup_Name); // Initiates a backup in the current storage
154 virtual int Run_Restore(string Restore_Name); // Restores a backup
155 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
156 virtual int Wipe_By_Path(string Path); // Wipes a partition based on path
157 virtual int Wipe_By_Block(string Block); // Wipes a partition based on block device
158 virtual int Wipe_By_Name(string Name); // Wipes a partition based on display name
159 virtual int Factory_Reset(); // Performs a factory reset
160 virtual void Refresh_Sizes(); // Refreshes size data of partitions
161 virtual void Update_System_Details(); // Updates fstab, file systems, sizes, etc.
162 virtual int Decrypt_Device(string Password); // Attempt to decrypt any encrypted partitions
Dees_Troy51127312012-09-08 13:08:49 -0400163 virtual string Get_Root_Path(string Path); // Trims any trailing folders or filenames from the path, also adds a leading / if not present
Dees_Troy240e4a72012-09-04 09:22:39 -0400164
165private:
Dees_Troy51127312012-09-08 13:08:49 -0400166 std::vector<TWPartition*> Partitions; // Vector list of all partitions
Dees_Troy51a0e822012-09-05 15:24:24 -0400167};
Dees_Troy240e4a72012-09-04 09:22:39 -0400168
Dees_Troy5bf43922012-09-07 16:07:55 -0400169extern TWPartitionManager PartitionManager;
170
171#endif // __TWRP_Partition_Manager