Dees Troy | 3be70a8 | 2013-10-22 14:25:12 +0000 | [diff] [blame] | 1 | /* |
| 2 | Copyright 2012 bigbiff/Dees_Troy TeamWin |
| 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 | 51a0e82 | 2012-09-05 15:24:24 -0400 | [diff] [blame] | 18 | |
| 19 | #include <stdio.h> |
| 20 | #include <stdlib.h> |
| 21 | #include <string.h> |
| 22 | #include <sys/stat.h> |
| 23 | #include <sys/vfs.h> |
| 24 | #include <unistd.h> |
Dees_Troy | 5bf4392 | 2012-09-07 16:07:55 -0400 | [diff] [blame] | 25 | #include <vector> |
Dees_Troy | 63c8df7 | 2012-09-10 14:02:05 -0400 | [diff] [blame] | 26 | #include <dirent.h> |
| 27 | #include <time.h> |
Dees_Troy | 8170a92 | 2012-09-18 15:40:25 -0400 | [diff] [blame] | 28 | #include <errno.h> |
| 29 | #include <fcntl.h> |
bigbiff bigbiff | 9c75405 | 2013-01-09 09:09:08 -0500 | [diff] [blame] | 30 | #include <iostream> |
| 31 | #include <iomanip> |
Dees_Troy | 51a0e82 | 2012-09-05 15:24:24 -0400 | [diff] [blame] | 32 | #include "variables.h" |
Dees_Troy | 2673cec | 2013-04-02 20:22:16 +0000 | [diff] [blame] | 33 | #include "twcommon.h" |
Dees_Troy | 51a0e82 | 2012-09-05 15:24:24 -0400 | [diff] [blame] | 34 | #include "partitions.hpp" |
Dees_Troy | 5bf4392 | 2012-09-07 16:07:55 -0400 | [diff] [blame] | 35 | #include "data.hpp" |
Dees_Troy | 38bd760 | 2012-09-14 13:33:53 -0400 | [diff] [blame] | 36 | #include "twrp-functions.hpp" |
bigbiff bigbiff | a0f8a59 | 2012-10-09 21:01:03 -0400 | [diff] [blame] | 37 | #include "fixPermissions.hpp" |
bigbiff bigbiff | cdcfee4 | 2013-02-27 21:11:26 -0500 | [diff] [blame] | 38 | #include "twrpDigest.hpp" |
bigbiff bigbiff | 34684ff | 2013-12-01 21:03:45 -0500 | [diff] [blame] | 39 | #include "twrpDU.hpp" |
Dees_Troy | 38bd760 | 2012-09-14 13:33:53 -0400 | [diff] [blame] | 40 | |
Dees Troy | 6f6441d | 2014-01-23 02:07:03 +0000 | [diff] [blame] | 41 | extern "C" { |
| 42 | #include "cutils/properties.h" |
| 43 | } |
| 44 | |
Dees_Troy | 5bf4392 | 2012-09-07 16:07:55 -0400 | [diff] [blame] | 45 | #ifdef TW_INCLUDE_CRYPTO |
| 46 | #ifdef TW_INCLUDE_JB_CRYPTO |
| 47 | #include "crypto/jb/cryptfs.h" |
| 48 | #else |
| 49 | #include "crypto/ics/cryptfs.h" |
| 50 | #endif |
Dees_Troy | 5bf4392 | 2012-09-07 16:07:55 -0400 | [diff] [blame] | 51 | #endif |
Dees_Troy | 51a0e82 | 2012-09-05 15:24:24 -0400 | [diff] [blame] | 52 | |
bigbiff bigbiff | 34684ff | 2013-12-01 21:03:45 -0500 | [diff] [blame] | 53 | TWPartitionManager::TWPartitionManager(void) { |
| 54 | } |
| 55 | |
Dees_Troy | 51a0e82 | 2012-09-05 15:24:24 -0400 | [diff] [blame] | 56 | int TWPartitionManager::Process_Fstab(string Fstab_Filename, bool Display_Error) { |
Dees_Troy | 5bf4392 | 2012-09-07 16:07:55 -0400 | [diff] [blame] | 57 | FILE *fstabFile; |
| 58 | char fstab_line[MAX_FSTAB_LINE_LENGTH]; |
Dees Troy | 02a6453 | 2014-03-19 15:23:32 +0000 | [diff] [blame] | 59 | TWPartition* settings_partition = NULL; |
Matt Mower | bf4efa3 | 2014-04-14 23:25:26 -0500 | [diff] [blame] | 60 | TWPartition* andsec_partition = NULL; |
Dees_Troy | 5bf4392 | 2012-09-07 16:07:55 -0400 | [diff] [blame] | 61 | |
| 62 | fstabFile = fopen(Fstab_Filename.c_str(), "rt"); |
| 63 | if (fstabFile == NULL) { |
Dees_Troy | 2673cec | 2013-04-02 20:22:16 +0000 | [diff] [blame] | 64 | LOGERR("Critical Error: Unable to open fstab at '%s'.\n", Fstab_Filename.c_str()); |
Dees_Troy | 5bf4392 | 2012-09-07 16:07:55 -0400 | [diff] [blame] | 65 | return false; |
| 66 | } |
| 67 | |
| 68 | while (fgets(fstab_line, sizeof(fstab_line), fstabFile) != NULL) { |
| 69 | if (fstab_line[0] != '/') |
| 70 | continue; |
| 71 | |
Dees_Troy | 2a92358 | 2012-09-20 12:13:34 -0400 | [diff] [blame] | 72 | if (fstab_line[strlen(fstab_line) - 1] != '\n') |
| 73 | fstab_line[strlen(fstab_line)] = '\n'; |
| 74 | |
Dees_Troy | 5bf4392 | 2012-09-07 16:07:55 -0400 | [diff] [blame] | 75 | TWPartition* partition = new TWPartition(); |
Dees_Troy | 2a92358 | 2012-09-20 12:13:34 -0400 | [diff] [blame] | 76 | string line = fstab_line; |
Dees_Troy | ab10ee2 | 2012-09-21 14:27:30 -0400 | [diff] [blame] | 77 | memset(fstab_line, 0, sizeof(fstab_line)); |
Dees_Troy | 2a92358 | 2012-09-20 12:13:34 -0400 | [diff] [blame] | 78 | |
Dees_Troy | 5bf4392 | 2012-09-07 16:07:55 -0400 | [diff] [blame] | 79 | if (partition->Process_Fstab_Line(line, Display_Error)) { |
Matt Mower | ed71fa3 | 2014-04-16 13:21:47 -0500 | [diff] [blame] | 80 | if (!settings_partition && partition->Is_Settings_Storage && partition->Is_Present) { |
Dees Troy | 02a6453 | 2014-03-19 15:23:32 +0000 | [diff] [blame] | 81 | settings_partition = partition; |
Dees_Troy | a13d74f | 2013-03-24 08:54:55 -0500 | [diff] [blame] | 82 | } else { |
| 83 | partition->Is_Settings_Storage = false; |
Dees_Troy | a13d74f | 2013-03-24 08:54:55 -0500 | [diff] [blame] | 84 | } |
Matt Mower | ed71fa3 | 2014-04-16 13:21:47 -0500 | [diff] [blame] | 85 | if (!andsec_partition && partition->Has_Android_Secure && partition->Is_Present) { |
Matt Mower | bf4efa3 | 2014-04-14 23:25:26 -0500 | [diff] [blame] | 86 | andsec_partition = partition; |
| 87 | } else { |
| 88 | partition->Has_Android_Secure = false; |
| 89 | } |
Ethan Yonker | c05c598 | 2014-03-13 09:19:56 -0500 | [diff] [blame] | 90 | Partitions.push_back(partition); |
Dees_Troy | 5bf4392 | 2012-09-07 16:07:55 -0400 | [diff] [blame] | 91 | } else { |
| 92 | delete partition; |
| 93 | } |
| 94 | } |
| 95 | fclose(fstabFile); |
Dees Troy | 02a6453 | 2014-03-19 15:23:32 +0000 | [diff] [blame] | 96 | if (!settings_partition) { |
Dees_Troy | a13d74f | 2013-03-24 08:54:55 -0500 | [diff] [blame] | 97 | std::vector<TWPartition*>::iterator iter; |
| 98 | for (iter = Partitions.begin(); iter != Partitions.end(); iter++) { |
| 99 | if ((*iter)->Is_Storage) { |
Dees Troy | 02a6453 | 2014-03-19 15:23:32 +0000 | [diff] [blame] | 100 | settings_partition = (*iter); |
Dees_Troy | a13d74f | 2013-03-24 08:54:55 -0500 | [diff] [blame] | 101 | break; |
| 102 | } |
| 103 | } |
Dees Troy | 02a6453 | 2014-03-19 15:23:32 +0000 | [diff] [blame] | 104 | if (!settings_partition) |
Dees_Troy | 2673cec | 2013-04-02 20:22:16 +0000 | [diff] [blame] | 105 | LOGERR("Unable to locate storage partition for storing settings file.\n"); |
Dees_Troy | a13d74f | 2013-03-24 08:54:55 -0500 | [diff] [blame] | 106 | } |
Dees_Troy | 5bf4392 | 2012-09-07 16:07:55 -0400 | [diff] [blame] | 107 | if (!Write_Fstab()) { |
| 108 | if (Display_Error) |
Dees_Troy | 2673cec | 2013-04-02 20:22:16 +0000 | [diff] [blame] | 109 | LOGERR("Error creating fstab\n"); |
Dees_Troy | 5bf4392 | 2012-09-07 16:07:55 -0400 | [diff] [blame] | 110 | else |
Dees_Troy | 2673cec | 2013-04-02 20:22:16 +0000 | [diff] [blame] | 111 | LOGINFO("Error creating fstab\n"); |
Dees_Troy | 5bf4392 | 2012-09-07 16:07:55 -0400 | [diff] [blame] | 112 | } |
Matt Mower | ed71fa3 | 2014-04-16 13:21:47 -0500 | [diff] [blame] | 113 | |
Matt Mower | bf4efa3 | 2014-04-14 23:25:26 -0500 | [diff] [blame] | 114 | if (andsec_partition) { |
| 115 | Setup_Android_Secure_Location(andsec_partition); |
Matt Mower | ed71fa3 | 2014-04-16 13:21:47 -0500 | [diff] [blame] | 116 | } else if (settings_partition) { |
Matt Mower | bf4efa3 | 2014-04-14 23:25:26 -0500 | [diff] [blame] | 117 | Setup_Android_Secure_Location(settings_partition); |
| 118 | } |
Matt Mower | ed71fa3 | 2014-04-16 13:21:47 -0500 | [diff] [blame] | 119 | if (settings_partition) { |
| 120 | Setup_Settings_Storage_Partition(settings_partition); |
| 121 | } |
Dees_Troy | 5112731 | 2012-09-08 13:08:49 -0400 | [diff] [blame] | 122 | Update_System_Details(); |
Dees_Troy | d0384ef | 2012-10-12 12:15:42 -0400 | [diff] [blame] | 123 | UnMount_Main_Partitions(); |
Dees_Troy | 5bf4392 | 2012-09-07 16:07:55 -0400 | [diff] [blame] | 124 | return true; |
| 125 | } |
| 126 | |
| 127 | int TWPartitionManager::Write_Fstab(void) { |
| 128 | FILE *fp; |
| 129 | std::vector<TWPartition*>::iterator iter; |
| 130 | string Line; |
| 131 | |
| 132 | fp = fopen("/etc/fstab", "w"); |
| 133 | if (fp == NULL) { |
Dees_Troy | 2673cec | 2013-04-02 20:22:16 +0000 | [diff] [blame] | 134 | LOGINFO("Can not open /etc/fstab.\n"); |
Dees_Troy | 5bf4392 | 2012-09-07 16:07:55 -0400 | [diff] [blame] | 135 | return false; |
| 136 | } |
Dees_Troy | 63c8df7 | 2012-09-10 14:02:05 -0400 | [diff] [blame] | 137 | for (iter = Partitions.begin(); iter != Partitions.end(); iter++) { |
Dees_Troy | 5112731 | 2012-09-08 13:08:49 -0400 | [diff] [blame] | 138 | if ((*iter)->Can_Be_Mounted) { |
Dees_Troy | 38bd760 | 2012-09-14 13:33:53 -0400 | [diff] [blame] | 139 | Line = (*iter)->Actual_Block_Device + " " + (*iter)->Mount_Point + " " + (*iter)->Current_File_System + " rw\n"; |
Dees_Troy | 5bf4392 | 2012-09-07 16:07:55 -0400 | [diff] [blame] | 140 | fputs(Line.c_str(), fp); |
Dees_Troy | 91862e6 | 2013-04-04 23:48:21 +0000 | [diff] [blame] | 141 | } |
| 142 | // Handle subpartition tracking |
| 143 | if ((*iter)->Is_SubPartition) { |
| 144 | TWPartition* ParentPartition = Find_Partition_By_Path((*iter)->SubPartition_Of); |
| 145 | if (ParentPartition) |
| 146 | ParentPartition->Has_SubPartition = true; |
| 147 | else |
| 148 | LOGERR("Unable to locate parent partition '%s' of '%s'\n", (*iter)->SubPartition_Of.c_str(), (*iter)->Mount_Point.c_str()); |
Dees_Troy | 5bf4392 | 2012-09-07 16:07:55 -0400 | [diff] [blame] | 149 | } |
| 150 | } |
| 151 | fclose(fp); |
| 152 | return true; |
Dees_Troy | 51a0e82 | 2012-09-05 15:24:24 -0400 | [diff] [blame] | 153 | } |
| 154 | |
Ethan Yonker | c05c598 | 2014-03-13 09:19:56 -0500 | [diff] [blame] | 155 | void TWPartitionManager::Setup_Settings_Storage_Partition(TWPartition* Part) { |
Ethan Yonker | c05c598 | 2014-03-13 09:19:56 -0500 | [diff] [blame] | 156 | DataManager::SetValue("tw_settings_path", Part->Storage_Path); |
| 157 | DataManager::SetValue("tw_storage_path", Part->Storage_Path); |
| 158 | LOGINFO("Settings storage is '%s'\n", Part->Storage_Path.c_str()); |
| 159 | } |
| 160 | |
Matt Mower | bf4efa3 | 2014-04-14 23:25:26 -0500 | [diff] [blame] | 161 | void TWPartitionManager::Setup_Android_Secure_Location(TWPartition* Part) { |
| 162 | if (Part->Has_Android_Secure) |
| 163 | Part->Setup_AndSec(); |
| 164 | #ifndef RECOVERY_SDCARD_ON_DATA |
| 165 | else |
| 166 | Part->Setup_AndSec(); |
| 167 | #endif |
| 168 | } |
| 169 | |
Dees_Troy | 8170a92 | 2012-09-18 15:40:25 -0400 | [diff] [blame] | 170 | void TWPartitionManager::Output_Partition_Logging(void) { |
| 171 | std::vector<TWPartition*>::iterator iter; |
| 172 | |
| 173 | printf("\n\nPartition Logs:\n"); |
| 174 | for (iter = Partitions.begin(); iter != Partitions.end(); iter++) |
| 175 | Output_Partition((*iter)); |
| 176 | } |
| 177 | |
| 178 | void TWPartitionManager::Output_Partition(TWPartition* Part) { |
| 179 | unsigned long long mb = 1048576; |
| 180 | |
Gary Peck | 004d48b | 2012-11-21 16:28:18 -0800 | [diff] [blame] | 181 | printf("%s | %s | Size: %iMB", Part->Mount_Point.c_str(), Part->Actual_Block_Device.c_str(), (int)(Part->Size / mb)); |
Dees_Troy | 8170a92 | 2012-09-18 15:40:25 -0400 | [diff] [blame] | 182 | if (Part->Can_Be_Mounted) { |
Gary Peck | 004d48b | 2012-11-21 16:28:18 -0800 | [diff] [blame] | 183 | printf(" Used: %iMB Free: %iMB Backup Size: %iMB", (int)(Part->Used / mb), (int)(Part->Free / mb), (int)(Part->Backup_Size / mb)); |
Dees_Troy | 8170a92 | 2012-09-18 15:40:25 -0400 | [diff] [blame] | 184 | } |
Gary Peck | 004d48b | 2012-11-21 16:28:18 -0800 | [diff] [blame] | 185 | printf("\n Flags: "); |
Dees_Troy | a13d74f | 2013-03-24 08:54:55 -0500 | [diff] [blame] | 186 | if (Part->Can_Be_Mounted) |
| 187 | printf("Can_Be_Mounted "); |
Gary Peck | 004d48b | 2012-11-21 16:28:18 -0800 | [diff] [blame] | 188 | if (Part->Can_Be_Wiped) |
| 189 | printf("Can_Be_Wiped "); |
Hashcode | dabfd49 | 2013-08-29 22:45:30 -0700 | [diff] [blame] | 190 | if (Part->Use_Rm_Rf) |
| 191 | printf("Use_Rm_Rf "); |
Dees_Troy | a13d74f | 2013-03-24 08:54:55 -0500 | [diff] [blame] | 192 | if (Part->Can_Be_Backed_Up) |
| 193 | printf("Can_Be_Backed_Up "); |
Gary Peck | 004d48b | 2012-11-21 16:28:18 -0800 | [diff] [blame] | 194 | if (Part->Wipe_During_Factory_Reset) |
| 195 | printf("Wipe_During_Factory_Reset "); |
| 196 | if (Part->Wipe_Available_in_GUI) |
| 197 | printf("Wipe_Available_in_GUI "); |
| 198 | if (Part->Is_SubPartition) |
| 199 | printf("Is_SubPartition "); |
| 200 | if (Part->Has_SubPartition) |
| 201 | printf("Has_SubPartition "); |
| 202 | if (Part->Removable) |
| 203 | printf("Removable "); |
| 204 | if (Part->Is_Present) |
| 205 | printf("IsPresent "); |
| 206 | if (Part->Can_Be_Encrypted) |
| 207 | printf("Can_Be_Encrypted "); |
| 208 | if (Part->Is_Encrypted) |
| 209 | printf("Is_Encrypted "); |
| 210 | if (Part->Is_Decrypted) |
| 211 | printf("Is_Decrypted "); |
| 212 | if (Part->Has_Data_Media) |
| 213 | printf("Has_Data_Media "); |
Dees_Troy | 83bd483 | 2013-05-04 12:39:56 +0000 | [diff] [blame] | 214 | if (Part->Can_Encrypt_Backup) |
| 215 | printf("Can_Encrypt_Backup "); |
| 216 | if (Part->Use_Userdata_Encryption) |
| 217 | printf("Use_Userdata_Encryption "); |
Gary Peck | 004d48b | 2012-11-21 16:28:18 -0800 | [diff] [blame] | 218 | if (Part->Has_Android_Secure) |
| 219 | printf("Has_Android_Secure "); |
| 220 | if (Part->Is_Storage) |
| 221 | printf("Is_Storage "); |
Dees_Troy | a13d74f | 2013-03-24 08:54:55 -0500 | [diff] [blame] | 222 | if (Part->Is_Settings_Storage) |
| 223 | printf("Is_Settings_Storage "); |
Dees_Troy | 68cab49 | 2012-12-12 19:29:35 +0000 | [diff] [blame] | 224 | if (Part->Ignore_Blkid) |
| 225 | printf("Ignore_Blkid "); |
Dees_Troy | 16c2b31 | 2013-01-15 16:51:18 +0000 | [diff] [blame] | 226 | if (Part->Retain_Layout_Version) |
| 227 | printf("Retain_Layout_Version "); |
Gary Peck | 004d48b | 2012-11-21 16:28:18 -0800 | [diff] [blame] | 228 | printf("\n"); |
| 229 | if (!Part->SubPartition_Of.empty()) |
| 230 | printf(" SubPartition_Of: %s\n", Part->SubPartition_Of.c_str()); |
| 231 | if (!Part->Symlink_Path.empty()) |
| 232 | printf(" Symlink_Path: %s\n", Part->Symlink_Path.c_str()); |
| 233 | if (!Part->Symlink_Mount_Point.empty()) |
| 234 | printf(" Symlink_Mount_Point: %s\n", Part->Symlink_Mount_Point.c_str()); |
| 235 | if (!Part->Primary_Block_Device.empty()) |
| 236 | printf(" Primary_Block_Device: %s\n", Part->Primary_Block_Device.c_str()); |
| 237 | if (!Part->Alternate_Block_Device.empty()) |
| 238 | printf(" Alternate_Block_Device: %s\n", Part->Alternate_Block_Device.c_str()); |
| 239 | if (!Part->Decrypted_Block_Device.empty()) |
| 240 | printf(" Decrypted_Block_Device: %s\n", Part->Decrypted_Block_Device.c_str()); |
| 241 | if (Part->Length != 0) |
| 242 | printf(" Length: %i\n", Part->Length); |
| 243 | if (!Part->Display_Name.empty()) |
| 244 | printf(" Display_Name: %s\n", Part->Display_Name.c_str()); |
Dees_Troy | a13d74f | 2013-03-24 08:54:55 -0500 | [diff] [blame] | 245 | if (!Part->Storage_Name.empty()) |
| 246 | printf(" Storage_Name: %s\n", Part->Storage_Name.c_str()); |
Gary Peck | 004d48b | 2012-11-21 16:28:18 -0800 | [diff] [blame] | 247 | if (!Part->Backup_Path.empty()) |
| 248 | printf(" Backup_Path: %s\n", Part->Backup_Path.c_str()); |
| 249 | if (!Part->Backup_Name.empty()) |
| 250 | printf(" Backup_Name: %s\n", Part->Backup_Name.c_str()); |
Dees_Troy | a13d74f | 2013-03-24 08:54:55 -0500 | [diff] [blame] | 251 | if (!Part->Backup_Display_Name.empty()) |
| 252 | printf(" Backup_Display_Name: %s\n", Part->Backup_Display_Name.c_str()); |
Gary Peck | 004d48b | 2012-11-21 16:28:18 -0800 | [diff] [blame] | 253 | if (!Part->Backup_FileName.empty()) |
| 254 | printf(" Backup_FileName: %s\n", Part->Backup_FileName.c_str()); |
| 255 | if (!Part->Storage_Path.empty()) |
| 256 | printf(" Storage_Path: %s\n", Part->Storage_Path.c_str()); |
| 257 | if (!Part->Current_File_System.empty()) |
| 258 | printf(" Current_File_System: %s\n", Part->Current_File_System.c_str()); |
| 259 | if (!Part->Fstab_File_System.empty()) |
| 260 | printf(" Fstab_File_System: %s\n", Part->Fstab_File_System.c_str()); |
| 261 | if (Part->Format_Block_Size != 0) |
| 262 | printf(" Format_Block_Size: %i\n", Part->Format_Block_Size); |
Dees_Troy | 094207a | 2012-09-26 12:00:39 -0400 | [diff] [blame] | 263 | if (!Part->MTD_Name.empty()) |
| 264 | printf(" MTD_Name: %s\n", Part->MTD_Name.c_str()); |
Dees_Troy | 8170a92 | 2012-09-18 15:40:25 -0400 | [diff] [blame] | 265 | string back_meth = Part->Backup_Method_By_Name(); |
| 266 | printf(" Backup_Method: %s\n\n", back_meth.c_str()); |
Hashcode | 62bd9e0 | 2013-11-19 21:59:42 -0800 | [diff] [blame] | 267 | if (Part->Mount_Flags || !Part->Mount_Options.empty()) |
| 268 | printf(" Mount_Flags=0x%8x, Mount_Options=%s\n", Part->Mount_Flags, Part->Mount_Options.c_str()); |
Dees_Troy | 8170a92 | 2012-09-18 15:40:25 -0400 | [diff] [blame] | 269 | } |
| 270 | |
Dees_Troy | 51a0e82 | 2012-09-05 15:24:24 -0400 | [diff] [blame] | 271 | int TWPartitionManager::Mount_By_Path(string Path, bool Display_Error) { |
Dees_Troy | 5bf4392 | 2012-09-07 16:07:55 -0400 | [diff] [blame] | 272 | std::vector<TWPartition*>::iterator iter; |
| 273 | int ret = false; |
| 274 | bool found = false; |
Dees_Troy | 38bd760 | 2012-09-14 13:33:53 -0400 | [diff] [blame] | 275 | string Local_Path = TWFunc::Get_Root_Path(Path); |
Dees_Troy | 5bf4392 | 2012-09-07 16:07:55 -0400 | [diff] [blame] | 276 | |
Dees_Troy | d93bda5 | 2013-07-03 19:55:19 +0000 | [diff] [blame] | 277 | if (Local_Path == "/tmp" || Local_Path == "/") |
Dees_Troy | 43d8b00 | 2012-09-17 16:00:01 -0400 | [diff] [blame] | 278 | return true; |
| 279 | |
Dees_Troy | 5bf4392 | 2012-09-07 16:07:55 -0400 | [diff] [blame] | 280 | // Iterate through all partitions |
| 281 | for (iter = Partitions.begin(); iter != Partitions.end(); iter++) { |
Dees_Troy | 657c309 | 2012-09-10 20:32:10 -0400 | [diff] [blame] | 282 | if ((*iter)->Mount_Point == Local_Path || (!(*iter)->Symlink_Mount_Point.empty() && (*iter)->Symlink_Mount_Point == Local_Path)) { |
Dees_Troy | 5bf4392 | 2012-09-07 16:07:55 -0400 | [diff] [blame] | 283 | ret = (*iter)->Mount(Display_Error); |
| 284 | found = true; |
Dees_Troy | 5112731 | 2012-09-08 13:08:49 -0400 | [diff] [blame] | 285 | } else if ((*iter)->Is_SubPartition && (*iter)->SubPartition_Of == Local_Path) { |
Dees_Troy | 5bf4392 | 2012-09-07 16:07:55 -0400 | [diff] [blame] | 286 | (*iter)->Mount(Display_Error); |
Dees_Troy | 5112731 | 2012-09-08 13:08:49 -0400 | [diff] [blame] | 287 | } |
Dees_Troy | 5bf4392 | 2012-09-07 16:07:55 -0400 | [diff] [blame] | 288 | } |
| 289 | if (found) { |
| 290 | return ret; |
| 291 | } else if (Display_Error) { |
Dees_Troy | 2673cec | 2013-04-02 20:22:16 +0000 | [diff] [blame] | 292 | LOGERR("Mount: Unable to find partition for path '%s'\n", Local_Path.c_str()); |
Dees_Troy | 5bf4392 | 2012-09-07 16:07:55 -0400 | [diff] [blame] | 293 | } else { |
Dees_Troy | 2673cec | 2013-04-02 20:22:16 +0000 | [diff] [blame] | 294 | LOGINFO("Mount: Unable to find partition for path '%s'\n", Local_Path.c_str()); |
Dees_Troy | 5bf4392 | 2012-09-07 16:07:55 -0400 | [diff] [blame] | 295 | } |
| 296 | return false; |
Dees_Troy | 51a0e82 | 2012-09-05 15:24:24 -0400 | [diff] [blame] | 297 | } |
| 298 | |
| 299 | int TWPartitionManager::Mount_By_Block(string Block, bool Display_Error) { |
Dees_Troy | 5112731 | 2012-09-08 13:08:49 -0400 | [diff] [blame] | 300 | TWPartition* Part = Find_Partition_By_Block(Block); |
Dees_Troy | 5bf4392 | 2012-09-07 16:07:55 -0400 | [diff] [blame] | 301 | |
Dees_Troy | 5112731 | 2012-09-08 13:08:49 -0400 | [diff] [blame] | 302 | if (Part) { |
| 303 | if (Part->Has_SubPartition) { |
| 304 | std::vector<TWPartition*>::iterator subpart; |
| 305 | |
| 306 | for (subpart = Partitions.begin(); subpart != Partitions.end(); subpart++) { |
| 307 | if ((*subpart)->Is_SubPartition && (*subpart)->SubPartition_Of == Part->Mount_Point) |
| 308 | (*subpart)->Mount(Display_Error); |
| 309 | } |
| 310 | return Part->Mount(Display_Error); |
| 311 | } else |
| 312 | return Part->Mount(Display_Error); |
Dees_Troy | 5bf4392 | 2012-09-07 16:07:55 -0400 | [diff] [blame] | 313 | } |
| 314 | if (Display_Error) |
Dees_Troy | 2673cec | 2013-04-02 20:22:16 +0000 | [diff] [blame] | 315 | LOGERR("Mount: Unable to find partition for block '%s'\n", Block.c_str()); |
Dees_Troy | 5bf4392 | 2012-09-07 16:07:55 -0400 | [diff] [blame] | 316 | else |
Dees_Troy | 2673cec | 2013-04-02 20:22:16 +0000 | [diff] [blame] | 317 | LOGINFO("Mount: Unable to find partition for block '%s'\n", Block.c_str()); |
Dees_Troy | 5bf4392 | 2012-09-07 16:07:55 -0400 | [diff] [blame] | 318 | return false; |
Dees_Troy | 51a0e82 | 2012-09-05 15:24:24 -0400 | [diff] [blame] | 319 | } |
| 320 | |
| 321 | int TWPartitionManager::Mount_By_Name(string Name, bool Display_Error) { |
Dees_Troy | 5112731 | 2012-09-08 13:08:49 -0400 | [diff] [blame] | 322 | TWPartition* Part = Find_Partition_By_Name(Name); |
Dees_Troy | 5bf4392 | 2012-09-07 16:07:55 -0400 | [diff] [blame] | 323 | |
Dees_Troy | 5112731 | 2012-09-08 13:08:49 -0400 | [diff] [blame] | 324 | if (Part) { |
| 325 | if (Part->Has_SubPartition) { |
| 326 | std::vector<TWPartition*>::iterator subpart; |
| 327 | |
| 328 | for (subpart = Partitions.begin(); subpart != Partitions.end(); subpart++) { |
| 329 | if ((*subpart)->Is_SubPartition && (*subpart)->SubPartition_Of == Part->Mount_Point) |
| 330 | (*subpart)->Mount(Display_Error); |
| 331 | } |
| 332 | return Part->Mount(Display_Error); |
| 333 | } else |
| 334 | return Part->Mount(Display_Error); |
Dees_Troy | 5bf4392 | 2012-09-07 16:07:55 -0400 | [diff] [blame] | 335 | } |
| 336 | if (Display_Error) |
Dees_Troy | 2673cec | 2013-04-02 20:22:16 +0000 | [diff] [blame] | 337 | LOGERR("Mount: Unable to find partition for name '%s'\n", Name.c_str()); |
Dees_Troy | 5bf4392 | 2012-09-07 16:07:55 -0400 | [diff] [blame] | 338 | else |
Dees_Troy | 2673cec | 2013-04-02 20:22:16 +0000 | [diff] [blame] | 339 | LOGINFO("Mount: Unable to find partition for name '%s'\n", Name.c_str()); |
Dees_Troy | 5bf4392 | 2012-09-07 16:07:55 -0400 | [diff] [blame] | 340 | return false; |
Dees_Troy | 51a0e82 | 2012-09-05 15:24:24 -0400 | [diff] [blame] | 341 | } |
| 342 | |
| 343 | int TWPartitionManager::UnMount_By_Path(string Path, bool Display_Error) { |
Dees_Troy | 5112731 | 2012-09-08 13:08:49 -0400 | [diff] [blame] | 344 | std::vector<TWPartition*>::iterator iter; |
| 345 | int ret = false; |
| 346 | bool found = false; |
Dees_Troy | 38bd760 | 2012-09-14 13:33:53 -0400 | [diff] [blame] | 347 | string Local_Path = TWFunc::Get_Root_Path(Path); |
Dees_Troy | 5112731 | 2012-09-08 13:08:49 -0400 | [diff] [blame] | 348 | |
| 349 | // Iterate through all partitions |
| 350 | for (iter = Partitions.begin(); iter != Partitions.end(); iter++) { |
Dees_Troy | 657c309 | 2012-09-10 20:32:10 -0400 | [diff] [blame] | 351 | if ((*iter)->Mount_Point == Local_Path || (!(*iter)->Symlink_Mount_Point.empty() && (*iter)->Symlink_Mount_Point == Local_Path)) { |
Dees_Troy | 5112731 | 2012-09-08 13:08:49 -0400 | [diff] [blame] | 352 | ret = (*iter)->UnMount(Display_Error); |
| 353 | found = true; |
| 354 | } else if ((*iter)->Is_SubPartition && (*iter)->SubPartition_Of == Local_Path) { |
| 355 | (*iter)->UnMount(Display_Error); |
| 356 | } |
| 357 | } |
| 358 | if (found) { |
| 359 | return ret; |
| 360 | } else if (Display_Error) { |
Dees_Troy | 2673cec | 2013-04-02 20:22:16 +0000 | [diff] [blame] | 361 | LOGERR("UnMount: Unable to find partition for path '%s'\n", Local_Path.c_str()); |
Dees_Troy | 5112731 | 2012-09-08 13:08:49 -0400 | [diff] [blame] | 362 | } else { |
Dees_Troy | 2673cec | 2013-04-02 20:22:16 +0000 | [diff] [blame] | 363 | LOGINFO("UnMount: Unable to find partition for path '%s'\n", Local_Path.c_str()); |
Dees_Troy | 5112731 | 2012-09-08 13:08:49 -0400 | [diff] [blame] | 364 | } |
| 365 | return false; |
Dees_Troy | 51a0e82 | 2012-09-05 15:24:24 -0400 | [diff] [blame] | 366 | } |
| 367 | |
| 368 | int TWPartitionManager::UnMount_By_Block(string Block, bool Display_Error) { |
Dees_Troy | 5112731 | 2012-09-08 13:08:49 -0400 | [diff] [blame] | 369 | TWPartition* Part = Find_Partition_By_Block(Block); |
| 370 | |
| 371 | if (Part) { |
| 372 | if (Part->Has_SubPartition) { |
| 373 | std::vector<TWPartition*>::iterator subpart; |
| 374 | |
| 375 | for (subpart = Partitions.begin(); subpart != Partitions.end(); subpart++) { |
| 376 | if ((*subpart)->Is_SubPartition && (*subpart)->SubPartition_Of == Part->Mount_Point) |
| 377 | (*subpart)->UnMount(Display_Error); |
| 378 | } |
| 379 | return Part->UnMount(Display_Error); |
| 380 | } else |
| 381 | return Part->UnMount(Display_Error); |
| 382 | } |
| 383 | if (Display_Error) |
Dees_Troy | 2673cec | 2013-04-02 20:22:16 +0000 | [diff] [blame] | 384 | LOGERR("UnMount: Unable to find partition for block '%s'\n", Block.c_str()); |
Dees_Troy | 5112731 | 2012-09-08 13:08:49 -0400 | [diff] [blame] | 385 | else |
Dees_Troy | 2673cec | 2013-04-02 20:22:16 +0000 | [diff] [blame] | 386 | LOGINFO("UnMount: Unable to find partition for block '%s'\n", Block.c_str()); |
Dees_Troy | 5112731 | 2012-09-08 13:08:49 -0400 | [diff] [blame] | 387 | return false; |
Dees_Troy | 51a0e82 | 2012-09-05 15:24:24 -0400 | [diff] [blame] | 388 | } |
| 389 | |
| 390 | int TWPartitionManager::UnMount_By_Name(string Name, bool Display_Error) { |
Dees_Troy | 5112731 | 2012-09-08 13:08:49 -0400 | [diff] [blame] | 391 | TWPartition* Part = Find_Partition_By_Name(Name); |
| 392 | |
| 393 | if (Part) { |
| 394 | if (Part->Has_SubPartition) { |
| 395 | std::vector<TWPartition*>::iterator subpart; |
| 396 | |
| 397 | for (subpart = Partitions.begin(); subpart != Partitions.end(); subpart++) { |
| 398 | if ((*subpart)->Is_SubPartition && (*subpart)->SubPartition_Of == Part->Mount_Point) |
| 399 | (*subpart)->UnMount(Display_Error); |
| 400 | } |
| 401 | return Part->UnMount(Display_Error); |
| 402 | } else |
| 403 | return Part->UnMount(Display_Error); |
| 404 | } |
| 405 | if (Display_Error) |
Dees_Troy | 2673cec | 2013-04-02 20:22:16 +0000 | [diff] [blame] | 406 | LOGERR("UnMount: Unable to find partition for name '%s'\n", Name.c_str()); |
Dees_Troy | 5112731 | 2012-09-08 13:08:49 -0400 | [diff] [blame] | 407 | else |
Dees_Troy | 2673cec | 2013-04-02 20:22:16 +0000 | [diff] [blame] | 408 | LOGINFO("UnMount: Unable to find partition for name '%s'\n", Name.c_str()); |
Dees_Troy | 5112731 | 2012-09-08 13:08:49 -0400 | [diff] [blame] | 409 | return false; |
Dees_Troy | 51a0e82 | 2012-09-05 15:24:24 -0400 | [diff] [blame] | 410 | } |
| 411 | |
| 412 | int TWPartitionManager::Is_Mounted_By_Path(string Path) { |
Dees_Troy | 5112731 | 2012-09-08 13:08:49 -0400 | [diff] [blame] | 413 | TWPartition* Part = Find_Partition_By_Path(Path); |
| 414 | |
| 415 | if (Part) |
| 416 | return Part->Is_Mounted(); |
| 417 | else |
Dees_Troy | 2673cec | 2013-04-02 20:22:16 +0000 | [diff] [blame] | 418 | LOGINFO("Is_Mounted: Unable to find partition for path '%s'\n", Path.c_str()); |
Dees_Troy | 5112731 | 2012-09-08 13:08:49 -0400 | [diff] [blame] | 419 | return false; |
Dees_Troy | 51a0e82 | 2012-09-05 15:24:24 -0400 | [diff] [blame] | 420 | } |
| 421 | |
| 422 | int TWPartitionManager::Is_Mounted_By_Block(string Block) { |
Dees_Troy | 5112731 | 2012-09-08 13:08:49 -0400 | [diff] [blame] | 423 | TWPartition* Part = Find_Partition_By_Block(Block); |
| 424 | |
| 425 | if (Part) |
| 426 | return Part->Is_Mounted(); |
| 427 | else |
Dees_Troy | 2673cec | 2013-04-02 20:22:16 +0000 | [diff] [blame] | 428 | LOGINFO("Is_Mounted: Unable to find partition for block '%s'\n", Block.c_str()); |
Dees_Troy | 5112731 | 2012-09-08 13:08:49 -0400 | [diff] [blame] | 429 | return false; |
Dees_Troy | 51a0e82 | 2012-09-05 15:24:24 -0400 | [diff] [blame] | 430 | } |
| 431 | |
| 432 | int TWPartitionManager::Is_Mounted_By_Name(string Name) { |
Dees_Troy | 5112731 | 2012-09-08 13:08:49 -0400 | [diff] [blame] | 433 | TWPartition* Part = Find_Partition_By_Name(Name); |
| 434 | |
| 435 | if (Part) |
| 436 | return Part->Is_Mounted(); |
| 437 | else |
Dees_Troy | 2673cec | 2013-04-02 20:22:16 +0000 | [diff] [blame] | 438 | LOGINFO("Is_Mounted: Unable to find partition for name '%s'\n", Name.c_str()); |
Dees_Troy | 5112731 | 2012-09-08 13:08:49 -0400 | [diff] [blame] | 439 | return false; |
Dees_Troy | 51a0e82 | 2012-09-05 15:24:24 -0400 | [diff] [blame] | 440 | } |
| 441 | |
Dees_Troy | 5bf4392 | 2012-09-07 16:07:55 -0400 | [diff] [blame] | 442 | int TWPartitionManager::Mount_Current_Storage(bool Display_Error) { |
Dees_Troy | 5112731 | 2012-09-08 13:08:49 -0400 | [diff] [blame] | 443 | string current_storage_path = DataManager::GetCurrentStoragePath(); |
| 444 | |
| 445 | if (Mount_By_Path(current_storage_path, Display_Error)) { |
| 446 | TWPartition* FreeStorage = Find_Partition_By_Path(current_storage_path); |
| 447 | if (FreeStorage) |
| 448 | DataManager::SetValue(TW_STORAGE_FREE_SIZE, (int)(FreeStorage->Free / 1048576LLU)); |
| 449 | return true; |
| 450 | } |
| 451 | return false; |
Dees_Troy | 51a0e82 | 2012-09-05 15:24:24 -0400 | [diff] [blame] | 452 | } |
| 453 | |
Dees_Troy | 5bf4392 | 2012-09-07 16:07:55 -0400 | [diff] [blame] | 454 | int TWPartitionManager::Mount_Settings_Storage(bool Display_Error) { |
| 455 | return Mount_By_Path(DataManager::GetSettingsStoragePath(), Display_Error); |
| 456 | } |
| 457 | |
| 458 | TWPartition* TWPartitionManager::Find_Partition_By_Path(string Path) { |
| 459 | std::vector<TWPartition*>::iterator iter; |
Dees_Troy | 38bd760 | 2012-09-14 13:33:53 -0400 | [diff] [blame] | 460 | string Local_Path = TWFunc::Get_Root_Path(Path); |
Dees_Troy | 5bf4392 | 2012-09-07 16:07:55 -0400 | [diff] [blame] | 461 | |
| 462 | for (iter = Partitions.begin(); iter != Partitions.end(); iter++) { |
Dees_Troy | 657c309 | 2012-09-10 20:32:10 -0400 | [diff] [blame] | 463 | if ((*iter)->Mount_Point == Local_Path || (!(*iter)->Symlink_Mount_Point.empty() && (*iter)->Symlink_Mount_Point == Local_Path)) |
Dees_Troy | 5bf4392 | 2012-09-07 16:07:55 -0400 | [diff] [blame] | 464 | return (*iter); |
| 465 | } |
Dees_Troy | 51a0e82 | 2012-09-05 15:24:24 -0400 | [diff] [blame] | 466 | return NULL; |
| 467 | } |
| 468 | |
Dees_Troy | 5bf4392 | 2012-09-07 16:07:55 -0400 | [diff] [blame] | 469 | TWPartition* TWPartitionManager::Find_Partition_By_Block(string Block) { |
Dees_Troy | 5112731 | 2012-09-08 13:08:49 -0400 | [diff] [blame] | 470 | std::vector<TWPartition*>::iterator iter; |
| 471 | |
| 472 | for (iter = Partitions.begin(); iter != Partitions.end(); iter++) { |
Dees_Troy | 38bd760 | 2012-09-14 13:33:53 -0400 | [diff] [blame] | 473 | if ((*iter)->Primary_Block_Device == Block || (*iter)->Alternate_Block_Device == Block || ((*iter)->Is_Decrypted && (*iter)->Decrypted_Block_Device == Block)) |
Dees_Troy | 5112731 | 2012-09-08 13:08:49 -0400 | [diff] [blame] | 474 | return (*iter); |
| 475 | } |
Dees_Troy | 51a0e82 | 2012-09-05 15:24:24 -0400 | [diff] [blame] | 476 | return NULL; |
Dees_Troy | 5bf4392 | 2012-09-07 16:07:55 -0400 | [diff] [blame] | 477 | } |
| 478 | |
| 479 | TWPartition* TWPartitionManager::Find_Partition_By_Name(string Name) { |
Dees_Troy | 5112731 | 2012-09-08 13:08:49 -0400 | [diff] [blame] | 480 | std::vector<TWPartition*>::iterator iter; |
| 481 | |
| 482 | for (iter = Partitions.begin(); iter != Partitions.end(); iter++) { |
| 483 | if ((*iter)->Display_Name == Name) |
| 484 | return (*iter); |
| 485 | } |
Dees_Troy | 5bf4392 | 2012-09-07 16:07:55 -0400 | [diff] [blame] | 486 | return NULL; |
| 487 | } |
Dees_Troy | 51a0e82 | 2012-09-05 15:24:24 -0400 | [diff] [blame] | 488 | |
Dees_Troy | c9ff7a3 | 2012-09-27 10:09:41 -0400 | [diff] [blame] | 489 | int TWPartitionManager::Check_Backup_Name(bool Display_Error) { |
| 490 | // Check the backup name to ensure that it is the correct size and contains only valid characters |
| 491 | // and that a backup with that name doesn't already exist |
| 492 | char backup_name[MAX_BACKUP_NAME_LEN]; |
| 493 | char backup_loc[255], tw_image_dir[255]; |
| 494 | int copy_size; |
| 495 | int index, cur_char; |
| 496 | string Backup_Name, Backup_Loc; |
| 497 | |
| 498 | DataManager::GetValue(TW_BACKUP_NAME, Backup_Name); |
| 499 | copy_size = Backup_Name.size(); |
| 500 | // Check size |
| 501 | if (copy_size > MAX_BACKUP_NAME_LEN) { |
| 502 | if (Display_Error) |
Dees_Troy | 2673cec | 2013-04-02 20:22:16 +0000 | [diff] [blame] | 503 | LOGERR("Backup name is too long.\n"); |
Dees_Troy | c9ff7a3 | 2012-09-27 10:09:41 -0400 | [diff] [blame] | 504 | return -2; |
| 505 | } |
| 506 | |
| 507 | // Check each character |
| 508 | strncpy(backup_name, Backup_Name.c_str(), copy_size); |
Dees_Troy | a13d74f | 2013-03-24 08:54:55 -0500 | [diff] [blame] | 509 | if (copy_size == 1 && strncmp(backup_name, "0", 1) == 0) |
Dees_Troy | c9ff7a3 | 2012-09-27 10:09:41 -0400 | [diff] [blame] | 510 | return 0; // A "0" (zero) means to use the current timestamp for the backup name |
| 511 | for (index=0; index<copy_size; index++) { |
| 512 | cur_char = (int)backup_name[index]; |
Matt Mower | fb1c4ff | 2014-04-16 13:43:36 -0500 | [diff] [blame] | 513 | if (cur_char == 32 || (cur_char >= 48 && cur_char <= 57) || (cur_char >= 65 && cur_char <= 91) || cur_char == 93 || cur_char == 95 || (cur_char >= 97 && cur_char <= 123) || cur_char == 125 || cur_char == 45 || cur_char == 46) { |
Dees_Troy | c9ff7a3 | 2012-09-27 10:09:41 -0400 | [diff] [blame] | 514 | // These are valid characters |
| 515 | // Numbers |
| 516 | // Upper case letters |
| 517 | // Lower case letters |
| 518 | // Space |
| 519 | // and -_.{}[] |
| 520 | } else { |
| 521 | if (Display_Error) |
Dees_Troy | 2673cec | 2013-04-02 20:22:16 +0000 | [diff] [blame] | 522 | LOGERR("Backup name '%s' contains invalid character: '%c'\n", backup_name, (char)cur_char); |
Dees_Troy | c9ff7a3 | 2012-09-27 10:09:41 -0400 | [diff] [blame] | 523 | return -3; |
| 524 | } |
| 525 | } |
| 526 | |
| 527 | // Check to make sure that a backup with this name doesn't already exist |
| 528 | DataManager::GetValue(TW_BACKUPS_FOLDER_VAR, Backup_Loc); |
| 529 | strcpy(backup_loc, Backup_Loc.c_str()); |
Dees_Troy | a13d74f | 2013-03-24 08:54:55 -0500 | [diff] [blame] | 530 | sprintf(tw_image_dir,"%s/%s", backup_loc, Backup_Name.c_str()); |
Matt Mower | fb1c4ff | 2014-04-16 13:43:36 -0500 | [diff] [blame] | 531 | if (TWFunc::Path_Exists(tw_image_dir)) { |
Dees_Troy | c9ff7a3 | 2012-09-27 10:09:41 -0400 | [diff] [blame] | 532 | if (Display_Error) |
Dees_Troy | 2673cec | 2013-04-02 20:22:16 +0000 | [diff] [blame] | 533 | LOGERR("A backup with this name already exists.\n"); |
Dees_Troy | c9ff7a3 | 2012-09-27 10:09:41 -0400 | [diff] [blame] | 534 | return -4; |
| 535 | } |
Dees_Troy | c9ff7a3 | 2012-09-27 10:09:41 -0400 | [diff] [blame] | 536 | // No problems found, return 0 |
| 537 | return 0; |
| 538 | } |
| 539 | |
Dees_Troy | 43d8b00 | 2012-09-17 16:00:01 -0400 | [diff] [blame] | 540 | bool TWPartitionManager::Make_MD5(bool generate_md5, string Backup_Folder, string Backup_Filename) |
| 541 | { |
bigbiff bigbiff | 9c75405 | 2013-01-09 09:09:08 -0500 | [diff] [blame] | 542 | string command; |
Dees_Troy | 43d8b00 | 2012-09-17 16:00:01 -0400 | [diff] [blame] | 543 | string Full_File = Backup_Folder + Backup_Filename; |
bigbiff bigbiff | 9c75405 | 2013-01-09 09:09:08 -0500 | [diff] [blame] | 544 | string result; |
bigbiff bigbiff | cdcfee4 | 2013-02-27 21:11:26 -0500 | [diff] [blame] | 545 | twrpDigest md5sum; |
Dees_Troy | 43d8b00 | 2012-09-17 16:00:01 -0400 | [diff] [blame] | 546 | |
Matt Mower | fb1c4ff | 2014-04-16 13:43:36 -0500 | [diff] [blame] | 547 | if (!generate_md5) |
Dees_Troy | 43d8b00 | 2012-09-17 16:00:01 -0400 | [diff] [blame] | 548 | return true; |
Dees_Troy | 43d8b00 | 2012-09-17 16:00:01 -0400 | [diff] [blame] | 549 | |
Dees_Troy | b46a684 | 2012-09-25 11:06:46 -0400 | [diff] [blame] | 550 | TWFunc::GUI_Operation_Text(TW_GENERATE_MD5_TEXT, "Generating MD5"); |
Dees_Troy | 2673cec | 2013-04-02 20:22:16 +0000 | [diff] [blame] | 551 | gui_print(" * Generating md5...\n"); |
Dees_Troy | 43d8b00 | 2012-09-17 16:00:01 -0400 | [diff] [blame] | 552 | |
| 553 | if (TWFunc::Path_Exists(Full_File)) { |
bigbiff bigbiff | cdcfee4 | 2013-02-27 21:11:26 -0500 | [diff] [blame] | 554 | md5sum.setfn(Backup_Folder + Backup_Filename); |
| 555 | if (md5sum.computeMD5() == 0) |
| 556 | if (md5sum.write_md5digest() == 0) |
Dees_Troy | 2673cec | 2013-04-02 20:22:16 +0000 | [diff] [blame] | 557 | gui_print(" * MD5 Created.\n"); |
bigbiff bigbiff | cdcfee4 | 2013-02-27 21:11:26 -0500 | [diff] [blame] | 558 | else |
| 559 | return -1; |
| 560 | else |
Dees_Troy | 2673cec | 2013-04-02 20:22:16 +0000 | [diff] [blame] | 561 | gui_print(" * MD5 Error!\n"); |
Dees_Troy | 43d8b00 | 2012-09-17 16:00:01 -0400 | [diff] [blame] | 562 | } else { |
| 563 | char filename[512]; |
| 564 | int index = 0; |
bigbiff bigbiff | cdcfee4 | 2013-02-27 21:11:26 -0500 | [diff] [blame] | 565 | string strfn; |
Dees_Troy | 43d8b00 | 2012-09-17 16:00:01 -0400 | [diff] [blame] | 566 | sprintf(filename, "%s%03i", Full_File.c_str(), index); |
bigbiff bigbiff | cdcfee4 | 2013-02-27 21:11:26 -0500 | [diff] [blame] | 567 | strfn = filename; |
Dees_Troy | 83bd483 | 2013-05-04 12:39:56 +0000 | [diff] [blame] | 568 | while (index < 1000) { |
bigbiff bigbiff | 65a4c73 | 2013-03-15 15:17:50 -0400 | [diff] [blame] | 569 | md5sum.setfn(filename); |
Dees_Troy | 83bd483 | 2013-05-04 12:39:56 +0000 | [diff] [blame] | 570 | if (TWFunc::Path_Exists(filename)) { |
| 571 | if (md5sum.computeMD5() == 0) { |
| 572 | if (md5sum.write_md5digest() != 0) |
| 573 | { |
| 574 | gui_print(" * MD5 Error.\n"); |
| 575 | return false; |
| 576 | } |
| 577 | } else { |
| 578 | gui_print(" * Error computing MD5.\n"); |
bigbiff bigbiff | cdcfee4 | 2013-02-27 21:11:26 -0500 | [diff] [blame] | 579 | return false; |
| 580 | } |
| 581 | } |
Dees_Troy | 43d8b00 | 2012-09-17 16:00:01 -0400 | [diff] [blame] | 582 | index++; |
Dees_Troy | 4a2a126 | 2012-09-18 09:33:47 -0400 | [diff] [blame] | 583 | sprintf(filename, "%s%03i", Full_File.c_str(), index); |
bigbiff bigbiff | cdcfee4 | 2013-02-27 21:11:26 -0500 | [diff] [blame] | 584 | strfn = filename; |
Dees_Troy | 43d8b00 | 2012-09-17 16:00:01 -0400 | [diff] [blame] | 585 | } |
| 586 | if (index == 0) { |
Dees_Troy | 2673cec | 2013-04-02 20:22:16 +0000 | [diff] [blame] | 587 | LOGERR("Backup file: '%s' not found!\n", filename); |
Dees_Troy | 43d8b00 | 2012-09-17 16:00:01 -0400 | [diff] [blame] | 588 | return false; |
| 589 | } |
Dees_Troy | 2673cec | 2013-04-02 20:22:16 +0000 | [diff] [blame] | 590 | gui_print(" * MD5 Created.\n"); |
Dees_Troy | 43d8b00 | 2012-09-17 16:00:01 -0400 | [diff] [blame] | 591 | } |
| 592 | return true; |
| 593 | } |
| 594 | |
Dees_Troy | 093b764 | 2012-09-21 15:59:38 -0400 | [diff] [blame] | 595 | bool TWPartitionManager::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) { |
Dees_Troy | 43d8b00 | 2012-09-17 16:00:01 -0400 | [diff] [blame] | 596 | time_t start, stop; |
bigbiff bigbiff | 2c57d78 | 2013-02-19 10:09:21 -0500 | [diff] [blame] | 597 | int img_bps; |
| 598 | unsigned long long file_bps; |
Dees_Troy | 093b764 | 2012-09-21 15:59:38 -0400 | [diff] [blame] | 599 | unsigned long total_time, remain_time, section_time; |
| 600 | int use_compression, backup_time; |
| 601 | float pos; |
Ethan Yonker | 1b7a31b | 2014-07-03 15:09:22 -0500 | [diff] [blame] | 602 | unsigned long long total_size, current_size; |
Dees_Troy | 43d8b00 | 2012-09-17 16:00:01 -0400 | [diff] [blame] | 603 | |
| 604 | if (Part == NULL) |
| 605 | return true; |
| 606 | |
Dees_Troy | 093b764 | 2012-09-21 15:59:38 -0400 | [diff] [blame] | 607 | DataManager::GetValue(TW_BACKUP_AVG_IMG_RATE, img_bps); |
| 608 | |
| 609 | DataManager::GetValue(TW_USE_COMPRESSION_VAR, use_compression); |
| 610 | if (use_compression) |
| 611 | DataManager::GetValue(TW_BACKUP_AVG_FILE_COMP_RATE, file_bps); |
| 612 | else |
| 613 | DataManager::GetValue(TW_BACKUP_AVG_FILE_RATE, file_bps); |
| 614 | |
| 615 | // We know the speed for both, how far into the whole backup are we, based on time |
| 616 | total_time = (*img_bytes / (unsigned long)img_bps) + (*file_bytes / (unsigned long)file_bps); |
| 617 | remain_time = (*img_bytes_remaining / (unsigned long)img_bps) + (*file_bytes_remaining / (unsigned long)file_bps); |
| 618 | |
Ethan Yonker | 1b7a31b | 2014-07-03 15:09:22 -0500 | [diff] [blame] | 619 | //pos = (total_time - remain_time) / (float) total_time; |
| 620 | total_size = *file_bytes + *img_bytes; |
| 621 | current_size = *file_bytes + *img_bytes - *file_bytes_remaining - *img_bytes_remaining; |
| 622 | pos = ((float)(current_size) / (float)(total_size)); |
Dees_Troy | 2673cec | 2013-04-02 20:22:16 +0000 | [diff] [blame] | 623 | DataManager::SetProgress(pos); |
Dees_Troy | 093b764 | 2012-09-21 15:59:38 -0400 | [diff] [blame] | 624 | |
Matt Mower | fb1c4ff | 2014-04-16 13:43:36 -0500 | [diff] [blame] | 625 | LOGINFO("Estimated total time: %lu\nEstimated remaining time: %lu\n", total_time, remain_time); |
Dees_Troy | 093b764 | 2012-09-21 15:59:38 -0400 | [diff] [blame] | 626 | |
| 627 | // And get the time |
| 628 | if (Part->Backup_Method == 1) |
| 629 | section_time = Part->Backup_Size / file_bps; |
| 630 | else |
| 631 | section_time = Part->Backup_Size / img_bps; |
| 632 | |
| 633 | // Set the position |
| 634 | pos = section_time / (float) total_time; |
Ethan Yonker | 1b7a31b | 2014-07-03 15:09:22 -0500 | [diff] [blame] | 635 | //DataManager::ShowProgress(pos, section_time); |
Dees_Troy | 093b764 | 2012-09-21 15:59:38 -0400 | [diff] [blame] | 636 | |
Dees_Troy | 43d8b00 | 2012-09-17 16:00:01 -0400 | [diff] [blame] | 637 | time(&start); |
| 638 | |
Ethan Yonker | 1b7a31b | 2014-07-03 15:09:22 -0500 | [diff] [blame] | 639 | if (Part->Backup(Backup_Folder, &total_size, ¤t_size)) { |
| 640 | current_size += Part->Backup_Size; |
| 641 | pos = (float)((float)(current_size) / (float)(total_size)); |
| 642 | DataManager::SetProgress(pos); |
Dees_Troy | 8170a92 | 2012-09-18 15:40:25 -0400 | [diff] [blame] | 643 | if (Part->Has_SubPartition) { |
| 644 | std::vector<TWPartition*>::iterator subpart; |
| 645 | |
| 646 | for (subpart = Partitions.begin(); subpart != Partitions.end(); subpart++) { |
Dees_Troy | a13d74f | 2013-03-24 08:54:55 -0500 | [diff] [blame] | 647 | if ((*subpart)->Can_Be_Backed_Up && (*subpart)->Is_SubPartition && (*subpart)->SubPartition_Of == Part->Mount_Point) { |
Ethan Yonker | 1b7a31b | 2014-07-03 15:09:22 -0500 | [diff] [blame] | 648 | if (!(*subpart)->Backup(Backup_Folder, &total_size, ¤t_size)) |
Dees_Troy | 8170a92 | 2012-09-18 15:40:25 -0400 | [diff] [blame] | 649 | return false; |
Dees_Troy | 2727b99 | 2013-08-14 20:09:30 +0000 | [diff] [blame] | 650 | sync(); |
| 651 | sync(); |
Dees_Troy | 8170a92 | 2012-09-18 15:40:25 -0400 | [diff] [blame] | 652 | if (!Make_MD5(generate_md5, Backup_Folder, (*subpart)->Backup_FileName)) |
| 653 | return false; |
Dees_Troy | 093b764 | 2012-09-21 15:59:38 -0400 | [diff] [blame] | 654 | if (Part->Backup_Method == 1) { |
| 655 | *file_bytes_remaining -= (*subpart)->Backup_Size; |
| 656 | } else { |
| 657 | *img_bytes_remaining -= (*subpart)->Backup_Size; |
| 658 | } |
Ethan Yonker | 1b7a31b | 2014-07-03 15:09:22 -0500 | [diff] [blame] | 659 | current_size += Part->Backup_Size; |
| 660 | pos = (float)(current_size / total_size); |
| 661 | DataManager::SetProgress(pos); |
Dees_Troy | 8170a92 | 2012-09-18 15:40:25 -0400 | [diff] [blame] | 662 | } |
| 663 | } |
| 664 | } |
Dees_Troy | 43d8b00 | 2012-09-17 16:00:01 -0400 | [diff] [blame] | 665 | time(&stop); |
Dees_Troy | 093b764 | 2012-09-21 15:59:38 -0400 | [diff] [blame] | 666 | backup_time = (int) difftime(stop, start); |
Dees_Troy | 2673cec | 2013-04-02 20:22:16 +0000 | [diff] [blame] | 667 | LOGINFO("Partition Backup time: %d\n", backup_time); |
Dees_Troy | 43d8b00 | 2012-09-17 16:00:01 -0400 | [diff] [blame] | 668 | if (Part->Backup_Method == 1) { |
| 669 | *file_bytes_remaining -= Part->Backup_Size; |
Dees_Troy | 093b764 | 2012-09-21 15:59:38 -0400 | [diff] [blame] | 670 | *file_time += backup_time; |
Dees_Troy | 43d8b00 | 2012-09-17 16:00:01 -0400 | [diff] [blame] | 671 | } else { |
| 672 | *img_bytes_remaining -= Part->Backup_Size; |
Dees_Troy | 093b764 | 2012-09-21 15:59:38 -0400 | [diff] [blame] | 673 | *img_time += backup_time; |
Dees_Troy | 43d8b00 | 2012-09-17 16:00:01 -0400 | [diff] [blame] | 674 | } |
| 675 | return Make_MD5(generate_md5, Backup_Folder, Part->Backup_FileName); |
| 676 | } else { |
| 677 | return false; |
| 678 | } |
| 679 | } |
| 680 | |
| 681 | int TWPartitionManager::Run_Backup(void) { |
| 682 | int check, do_md5, partition_count = 0; |
Dees_Troy | a13d74f | 2013-03-24 08:54:55 -0500 | [diff] [blame] | 683 | string Backup_Folder, Backup_Name, Full_Backup_Path, Backup_List, backup_path; |
Dees_Troy | 8170a92 | 2012-09-18 15:40:25 -0400 | [diff] [blame] | 684 | unsigned long long total_bytes = 0, file_bytes = 0, img_bytes = 0, free_space = 0, img_bytes_remaining, file_bytes_remaining, subpart_size; |
Dees_Troy | 43d8b00 | 2012-09-17 16:00:01 -0400 | [diff] [blame] | 685 | unsigned long img_time = 0, file_time = 0; |
Dees_Troy | a13d74f | 2013-03-24 08:54:55 -0500 | [diff] [blame] | 686 | TWPartition* backup_part = NULL; |
Dees_Troy | 43d8b00 | 2012-09-17 16:00:01 -0400 | [diff] [blame] | 687 | TWPartition* storage = NULL; |
Dees_Troy | 8170a92 | 2012-09-18 15:40:25 -0400 | [diff] [blame] | 688 | std::vector<TWPartition*>::iterator subpart; |
Dees_Troy | 43d8b00 | 2012-09-17 16:00:01 -0400 | [diff] [blame] | 689 | struct tm *t; |
| 690 | time_t start, stop, seconds, total_start, total_stop; |
Dees_Troy | a13d74f | 2013-03-24 08:54:55 -0500 | [diff] [blame] | 691 | size_t start_pos = 0, end_pos = 0; |
Dees_Troy | 43d8b00 | 2012-09-17 16:00:01 -0400 | [diff] [blame] | 692 | seconds = time(0); |
Matt Mower | fb1c4ff | 2014-04-16 13:43:36 -0500 | [diff] [blame] | 693 | t = localtime(&seconds); |
Dees_Troy | 43d8b00 | 2012-09-17 16:00:01 -0400 | [diff] [blame] | 694 | |
| 695 | time(&total_start); |
| 696 | |
| 697 | Update_System_Details(); |
| 698 | |
| 699 | if (!Mount_Current_Storage(true)) |
| 700 | return false; |
| 701 | |
| 702 | DataManager::GetValue(TW_SKIP_MD5_GENERATE_VAR, do_md5); |
Dees_Troy | 4a2a126 | 2012-09-18 09:33:47 -0400 | [diff] [blame] | 703 | if (do_md5 == 0) |
Dees_Troy | 43d8b00 | 2012-09-17 16:00:01 -0400 | [diff] [blame] | 704 | do_md5 = true; |
Dees_Troy | c5865ab | 2012-09-24 15:08:04 -0400 | [diff] [blame] | 705 | else |
| 706 | do_md5 = false; |
Dees_Troy | 4a2a126 | 2012-09-18 09:33:47 -0400 | [diff] [blame] | 707 | |
Dees_Troy | 43d8b00 | 2012-09-17 16:00:01 -0400 | [diff] [blame] | 708 | DataManager::GetValue(TW_BACKUPS_FOLDER_VAR, Backup_Folder); |
| 709 | DataManager::GetValue(TW_BACKUP_NAME, Backup_Name); |
Dees Troy | b21cc64 | 2013-09-10 17:36:41 +0000 | [diff] [blame] | 710 | if (Backup_Name == "(Current Date)") { |
| 711 | Backup_Name = TWFunc::Get_Current_Date(); |
| 712 | } else if (Backup_Name == "(Auto Generate)" || Backup_Name == "0" || Backup_Name.empty()) { |
| 713 | TWFunc::Auto_Generate_Backup_Name(); |
| 714 | DataManager::GetValue(TW_BACKUP_NAME, Backup_Name); |
Dees_Troy | 43d8b00 | 2012-09-17 16:00:01 -0400 | [diff] [blame] | 715 | } |
Dees_Troy | 2673cec | 2013-04-02 20:22:16 +0000 | [diff] [blame] | 716 | LOGINFO("Backup Name is: '%s'\n", Backup_Name.c_str()); |
Dees_Troy | 43d8b00 | 2012-09-17 16:00:01 -0400 | [diff] [blame] | 717 | Full_Backup_Path = Backup_Folder + "/" + Backup_Name + "/"; |
Dees_Troy | 2673cec | 2013-04-02 20:22:16 +0000 | [diff] [blame] | 718 | LOGINFO("Full_Backup_Path is: '%s'\n", Full_Backup_Path.c_str()); |
Dees_Troy | 43d8b00 | 2012-09-17 16:00:01 -0400 | [diff] [blame] | 719 | |
Dees_Troy | 2673cec | 2013-04-02 20:22:16 +0000 | [diff] [blame] | 720 | LOGINFO("Calculating backup details...\n"); |
Dees_Troy | a13d74f | 2013-03-24 08:54:55 -0500 | [diff] [blame] | 721 | DataManager::GetValue("tw_backup_list", Backup_List); |
| 722 | if (!Backup_List.empty()) { |
| 723 | end_pos = Backup_List.find(";", start_pos); |
| 724 | while (end_pos != string::npos && start_pos < Backup_List.size()) { |
| 725 | backup_path = Backup_List.substr(start_pos, end_pos - start_pos); |
| 726 | backup_part = Find_Partition_By_Path(backup_path); |
| 727 | if (backup_part != NULL) { |
| 728 | partition_count++; |
| 729 | if (backup_part->Backup_Method == 1) |
| 730 | file_bytes += backup_part->Backup_Size; |
| 731 | else |
| 732 | img_bytes += backup_part->Backup_Size; |
| 733 | if (backup_part->Has_SubPartition) { |
| 734 | std::vector<TWPartition*>::iterator subpart; |
| 735 | |
| 736 | for (subpart = Partitions.begin(); subpart != Partitions.end(); subpart++) { |
Dees_Troy | 9e0b71c | 2013-04-08 13:35:37 +0000 | [diff] [blame] | 737 | if ((*subpart)->Can_Be_Backed_Up && (*subpart)->Is_Present && (*subpart)->Is_SubPartition && (*subpart)->SubPartition_Of == backup_part->Mount_Point) { |
Dees_Troy | a13d74f | 2013-03-24 08:54:55 -0500 | [diff] [blame] | 738 | partition_count++; |
| 739 | if ((*subpart)->Backup_Method == 1) |
| 740 | file_bytes += (*subpart)->Backup_Size; |
| 741 | else |
| 742 | img_bytes += (*subpart)->Backup_Size; |
| 743 | } |
| 744 | } |
Dees_Troy | 8170a92 | 2012-09-18 15:40:25 -0400 | [diff] [blame] | 745 | } |
Dees_Troy | a13d74f | 2013-03-24 08:54:55 -0500 | [diff] [blame] | 746 | } else { |
Dees_Troy | 2673cec | 2013-04-02 20:22:16 +0000 | [diff] [blame] | 747 | LOGERR("Unable to locate '%s' partition for backup calculations.\n", backup_path.c_str()); |
Dees_Troy | 8170a92 | 2012-09-18 15:40:25 -0400 | [diff] [blame] | 748 | } |
Dees_Troy | a13d74f | 2013-03-24 08:54:55 -0500 | [diff] [blame] | 749 | start_pos = end_pos + 1; |
| 750 | end_pos = Backup_List.find(";", start_pos); |
Dees_Troy | 43d8b00 | 2012-09-17 16:00:01 -0400 | [diff] [blame] | 751 | } |
| 752 | } |
Dees_Troy | 43d8b00 | 2012-09-17 16:00:01 -0400 | [diff] [blame] | 753 | |
| 754 | if (partition_count == 0) { |
Dees_Troy | 2673cec | 2013-04-02 20:22:16 +0000 | [diff] [blame] | 755 | gui_print("No partitions selected for backup.\n"); |
Dees_Troy | 43d8b00 | 2012-09-17 16:00:01 -0400 | [diff] [blame] | 756 | return false; |
| 757 | } |
| 758 | total_bytes = file_bytes + img_bytes; |
Dees_Troy | 2673cec | 2013-04-02 20:22:16 +0000 | [diff] [blame] | 759 | gui_print(" * Total number of partitions to back up: %d\n", partition_count); |
Matt Mower | fb1c4ff | 2014-04-16 13:43:36 -0500 | [diff] [blame] | 760 | gui_print(" * Total size of all data: %lluMB\n", total_bytes / 1024 / 1024); |
Dees_Troy | 43d8b00 | 2012-09-17 16:00:01 -0400 | [diff] [blame] | 761 | storage = Find_Partition_By_Path(DataManager::GetCurrentStoragePath()); |
| 762 | if (storage != NULL) { |
| 763 | free_space = storage->Free; |
Dees_Troy | 2673cec | 2013-04-02 20:22:16 +0000 | [diff] [blame] | 764 | gui_print(" * Available space: %lluMB\n", free_space / 1024 / 1024); |
Dees_Troy | 43d8b00 | 2012-09-17 16:00:01 -0400 | [diff] [blame] | 765 | } else { |
Dees_Troy | 2673cec | 2013-04-02 20:22:16 +0000 | [diff] [blame] | 766 | LOGERR("Unable to locate storage device.\n"); |
Dees_Troy | 43d8b00 | 2012-09-17 16:00:01 -0400 | [diff] [blame] | 767 | return false; |
| 768 | } |
Dees_Troy | d4b22b0 | 2013-01-18 17:17:58 +0000 | [diff] [blame] | 769 | if (free_space - (32 * 1024 * 1024) < total_bytes) { |
Dees_Troy | 43d8b00 | 2012-09-17 16:00:01 -0400 | [diff] [blame] | 770 | // We require an extra 32MB just in case |
Dees_Troy | 2673cec | 2013-04-02 20:22:16 +0000 | [diff] [blame] | 771 | LOGERR("Not enough free space on storage.\n"); |
Dees_Troy | 43d8b00 | 2012-09-17 16:00:01 -0400 | [diff] [blame] | 772 | return false; |
| 773 | } |
| 774 | img_bytes_remaining = img_bytes; |
Matt Mower | fb1c4ff | 2014-04-16 13:43:36 -0500 | [diff] [blame] | 775 | file_bytes_remaining = file_bytes; |
Dees_Troy | 43d8b00 | 2012-09-17 16:00:01 -0400 | [diff] [blame] | 776 | |
Dees_Troy | 2673cec | 2013-04-02 20:22:16 +0000 | [diff] [blame] | 777 | gui_print("\n[BACKUP STARTED]\n"); |
| 778 | gui_print(" * Backup Folder: %s\n", Full_Backup_Path.c_str()); |
Dees_Troy | d4b22b0 | 2013-01-18 17:17:58 +0000 | [diff] [blame] | 779 | if (!TWFunc::Recursive_Mkdir(Full_Backup_Path)) { |
Dees_Troy | 2673cec | 2013-04-02 20:22:16 +0000 | [diff] [blame] | 780 | LOGERR("Failed to make backup folder.\n"); |
Dees_Troy | d4b22b0 | 2013-01-18 17:17:58 +0000 | [diff] [blame] | 781 | return false; |
| 782 | } |
| 783 | |
Dees_Troy | 2673cec | 2013-04-02 20:22:16 +0000 | [diff] [blame] | 784 | DataManager::SetProgress(0.0); |
Dees_Troy | 093b764 | 2012-09-21 15:59:38 -0400 | [diff] [blame] | 785 | |
Dees_Troy | a13d74f | 2013-03-24 08:54:55 -0500 | [diff] [blame] | 786 | start_pos = 0; |
| 787 | end_pos = Backup_List.find(";", start_pos); |
| 788 | while (end_pos != string::npos && start_pos < Backup_List.size()) { |
| 789 | backup_path = Backup_List.substr(start_pos, end_pos - start_pos); |
| 790 | backup_part = Find_Partition_By_Path(backup_path); |
| 791 | if (backup_part != NULL) { |
| 792 | if (!Backup_Partition(backup_part, Full_Backup_Path, do_md5, &img_bytes_remaining, &file_bytes_remaining, &img_time, &file_time, &img_bytes, &file_bytes)) |
| 793 | return false; |
| 794 | } else { |
Dees_Troy | 2673cec | 2013-04-02 20:22:16 +0000 | [diff] [blame] | 795 | LOGERR("Unable to locate '%s' partition for backup process.\n", backup_path.c_str()); |
Dees_Troy | a13d74f | 2013-03-24 08:54:55 -0500 | [diff] [blame] | 796 | } |
| 797 | start_pos = end_pos + 1; |
| 798 | end_pos = Backup_List.find(";", start_pos); |
| 799 | } |
Dees_Troy | 43d8b00 | 2012-09-17 16:00:01 -0400 | [diff] [blame] | 800 | |
| 801 | // Average BPS |
| 802 | if (img_time == 0) |
| 803 | img_time = 1; |
| 804 | if (file_time == 0) |
| 805 | file_time = 1; |
Dees_Troy | 093b764 | 2012-09-21 15:59:38 -0400 | [diff] [blame] | 806 | int img_bps = (int)img_bytes / (int)img_time; |
bigbiff bigbiff | 2c57d78 | 2013-02-19 10:09:21 -0500 | [diff] [blame] | 807 | unsigned long long file_bps = file_bytes / (int)file_time; |
Dees_Troy | 43d8b00 | 2012-09-17 16:00:01 -0400 | [diff] [blame] | 808 | |
Dees_Troy | 2673cec | 2013-04-02 20:22:16 +0000 | [diff] [blame] | 809 | gui_print("Average backup rate for file systems: %llu MB/sec\n", (file_bps / (1024 * 1024))); |
| 810 | gui_print("Average backup rate for imaged drives: %lu MB/sec\n", (img_bps / (1024 * 1024))); |
Dees_Troy | 43d8b00 | 2012-09-17 16:00:01 -0400 | [diff] [blame] | 811 | |
| 812 | time(&total_stop); |
| 813 | int total_time = (int) difftime(total_stop, total_start); |
bigbiff bigbiff | 34684ff | 2013-12-01 21:03:45 -0500 | [diff] [blame] | 814 | uint64_t actual_backup_size = du.Get_Folder_Size(Full_Backup_Path); |
Matt Mower | fb1c4ff | 2014-04-16 13:43:36 -0500 | [diff] [blame] | 815 | actual_backup_size /= (1024LLU * 1024LLU); |
Dees_Troy | 43d8b00 | 2012-09-17 16:00:01 -0400 | [diff] [blame] | 816 | |
bigbiff bigbiff | 2c57d78 | 2013-02-19 10:09:21 -0500 | [diff] [blame] | 817 | int prev_img_bps, use_compression; |
| 818 | unsigned long long prev_file_bps; |
Dees_Troy | 093b764 | 2012-09-21 15:59:38 -0400 | [diff] [blame] | 819 | DataManager::GetValue(TW_BACKUP_AVG_IMG_RATE, prev_img_bps); |
| 820 | img_bps += (prev_img_bps * 4); |
Matt Mower | fb1c4ff | 2014-04-16 13:43:36 -0500 | [diff] [blame] | 821 | img_bps /= 5; |
Dees_Troy | 093b764 | 2012-09-21 15:59:38 -0400 | [diff] [blame] | 822 | |
Matt Mower | fb1c4ff | 2014-04-16 13:43:36 -0500 | [diff] [blame] | 823 | DataManager::GetValue(TW_USE_COMPRESSION_VAR, use_compression); |
Dees_Troy | 093b764 | 2012-09-21 15:59:38 -0400 | [diff] [blame] | 824 | if (use_compression) |
| 825 | DataManager::GetValue(TW_BACKUP_AVG_FILE_COMP_RATE, prev_file_bps); |
Matt Mower | fb1c4ff | 2014-04-16 13:43:36 -0500 | [diff] [blame] | 826 | else |
Dees_Troy | 093b764 | 2012-09-21 15:59:38 -0400 | [diff] [blame] | 827 | DataManager::GetValue(TW_BACKUP_AVG_FILE_RATE, prev_file_bps); |
| 828 | file_bps += (prev_file_bps * 4); |
Matt Mower | fb1c4ff | 2014-04-16 13:43:36 -0500 | [diff] [blame] | 829 | file_bps /= 5; |
Dees_Troy | 093b764 | 2012-09-21 15:59:38 -0400 | [diff] [blame] | 830 | |
Matt Mower | fb1c4ff | 2014-04-16 13:43:36 -0500 | [diff] [blame] | 831 | DataManager::SetValue(TW_BACKUP_AVG_IMG_RATE, img_bps); |
Dees_Troy | 093b764 | 2012-09-21 15:59:38 -0400 | [diff] [blame] | 832 | if (use_compression) |
| 833 | DataManager::SetValue(TW_BACKUP_AVG_FILE_COMP_RATE, file_bps); |
| 834 | else |
| 835 | DataManager::SetValue(TW_BACKUP_AVG_FILE_RATE, file_bps); |
| 836 | |
Dees_Troy | 2673cec | 2013-04-02 20:22:16 +0000 | [diff] [blame] | 837 | gui_print("[%llu MB TOTAL BACKED UP]\n", actual_backup_size); |
Dees_Troy | 43d8b00 | 2012-09-17 16:00:01 -0400 | [diff] [blame] | 838 | Update_System_Details(); |
Dees_Troy | d0384ef | 2012-10-12 12:15:42 -0400 | [diff] [blame] | 839 | UnMount_Main_Partitions(); |
Ethan Yonker | bf2cb1c | 2014-07-02 10:15:54 -0500 | [diff] [blame] | 840 | gui_print_color("highlight", "[BACKUP COMPLETED IN %d SECONDS]\n\n", total_time); // the end |
Dees_Troy | 3f5c4e8 | 2013-02-01 15:16:59 +0000 | [diff] [blame] | 841 | string backup_log = Full_Backup_Path + "recovery.log"; |
| 842 | TWFunc::copy_file("/tmp/recovery.log", backup_log, 0644); |
| 843 | return true; |
Dees_Troy | 51a0e82 | 2012-09-05 15:24:24 -0400 | [diff] [blame] | 844 | } |
| 845 | |
Ethan Yonker | 1b7a31b | 2014-07-03 15:09:22 -0500 | [diff] [blame] | 846 | bool TWPartitionManager::Restore_Partition(TWPartition* Part, string Restore_Name, int partition_count, const unsigned long long *total_restore_size, unsigned long long *already_restored_size) { |
Dees_Troy | 4a2a126 | 2012-09-18 09:33:47 -0400 | [diff] [blame] | 847 | time_t Start, Stop; |
| 848 | time(&Start); |
Ethan Yonker | 1b7a31b | 2014-07-03 15:09:22 -0500 | [diff] [blame] | 849 | //DataManager::ShowProgress(1.0 / (float)partition_count, 150); |
| 850 | if (!Part->Restore(Restore_Name, total_restore_size, already_restored_size)) |
Dees_Troy | 4a2a126 | 2012-09-18 09:33:47 -0400 | [diff] [blame] | 851 | return false; |
Dees_Troy | 8170a92 | 2012-09-18 15:40:25 -0400 | [diff] [blame] | 852 | if (Part->Has_SubPartition) { |
| 853 | std::vector<TWPartition*>::iterator subpart; |
| 854 | |
| 855 | for (subpart = Partitions.begin(); subpart != Partitions.end(); subpart++) { |
| 856 | if ((*subpart)->Is_SubPartition && (*subpart)->SubPartition_Of == Part->Mount_Point) { |
Ethan Yonker | 1b7a31b | 2014-07-03 15:09:22 -0500 | [diff] [blame] | 857 | if (!(*subpart)->Restore(Restore_Name, total_restore_size, already_restored_size)) |
Dees_Troy | 8170a92 | 2012-09-18 15:40:25 -0400 | [diff] [blame] | 858 | return false; |
| 859 | } |
| 860 | } |
| 861 | } |
Dees_Troy | 4a2a126 | 2012-09-18 09:33:47 -0400 | [diff] [blame] | 862 | time(&Stop); |
Dees_Troy | 2673cec | 2013-04-02 20:22:16 +0000 | [diff] [blame] | 863 | gui_print("[%s done (%d seconds)]\n\n", Part->Backup_Display_Name.c_str(), (int)difftime(Stop, Start)); |
Dees_Troy | 4a2a126 | 2012-09-18 09:33:47 -0400 | [diff] [blame] | 864 | return true; |
| 865 | } |
| 866 | |
Dees_Troy | 51a0e82 | 2012-09-05 15:24:24 -0400 | [diff] [blame] | 867 | int TWPartitionManager::Run_Restore(string Restore_Name) { |
Dees_Troy | 4a2a126 | 2012-09-18 09:33:47 -0400 | [diff] [blame] | 868 | int check_md5, check, partition_count = 0; |
Dees_Troy | a13d74f | 2013-03-24 08:54:55 -0500 | [diff] [blame] | 869 | TWPartition* restore_part = NULL; |
Dees_Troy | 4a2a126 | 2012-09-18 09:33:47 -0400 | [diff] [blame] | 870 | time_t rStart, rStop; |
| 871 | time(&rStart); |
Dees_Troy | a13d74f | 2013-03-24 08:54:55 -0500 | [diff] [blame] | 872 | string Restore_List, restore_path; |
| 873 | size_t start_pos = 0, end_pos; |
Ethan Yonker | 1b7a31b | 2014-07-03 15:09:22 -0500 | [diff] [blame] | 874 | unsigned long long total_restore_size = 0, already_restored_size = 0; |
Dees_Troy | 43d8b00 | 2012-09-17 16:00:01 -0400 | [diff] [blame] | 875 | |
Dees_Troy | 2673cec | 2013-04-02 20:22:16 +0000 | [diff] [blame] | 876 | gui_print("\n[RESTORE STARTED]\n\n"); |
| 877 | gui_print("Restore folder: '%s'\n", Restore_Name.c_str()); |
Dees_Troy | 43d8b00 | 2012-09-17 16:00:01 -0400 | [diff] [blame] | 878 | |
Dees_Troy | 4a2a126 | 2012-09-18 09:33:47 -0400 | [diff] [blame] | 879 | if (!Mount_Current_Storage(true)) |
| 880 | return false; |
| 881 | |
| 882 | DataManager::GetValue(TW_SKIP_MD5_CHECK_VAR, check_md5); |
Dees_Troy | a13d74f | 2013-03-24 08:54:55 -0500 | [diff] [blame] | 883 | if (check_md5 > 0) { |
| 884 | // Check MD5 files first before restoring to ensure that all of them match before starting a restore |
| 885 | TWFunc::GUI_Operation_Text(TW_VERIFY_MD5_TEXT, "Verifying MD5"); |
Dees_Troy | 2673cec | 2013-04-02 20:22:16 +0000 | [diff] [blame] | 886 | gui_print("Verifying MD5...\n"); |
Dees_Troy | a13d74f | 2013-03-24 08:54:55 -0500 | [diff] [blame] | 887 | } else { |
Dees_Troy | 2673cec | 2013-04-02 20:22:16 +0000 | [diff] [blame] | 888 | gui_print("Skipping MD5 check based on user setting.\n"); |
Dees_Troy | a13d74f | 2013-03-24 08:54:55 -0500 | [diff] [blame] | 889 | } |
Ethan Yonker | 1b7a31b | 2014-07-03 15:09:22 -0500 | [diff] [blame] | 890 | gui_print("Calculating restore details...\n"); |
Dees_Troy | a13d74f | 2013-03-24 08:54:55 -0500 | [diff] [blame] | 891 | DataManager::GetValue("tw_restore_selected", Restore_List); |
| 892 | if (!Restore_List.empty()) { |
| 893 | end_pos = Restore_List.find(";", start_pos); |
| 894 | while (end_pos != string::npos && start_pos < Restore_List.size()) { |
| 895 | restore_path = Restore_List.substr(start_pos, end_pos - start_pos); |
| 896 | restore_part = Find_Partition_By_Path(restore_path); |
| 897 | if (restore_part != NULL) { |
| 898 | partition_count++; |
| 899 | if (check_md5 > 0 && !restore_part->Check_MD5(Restore_Name)) |
| 900 | return false; |
Ethan Yonker | 1b7a31b | 2014-07-03 15:09:22 -0500 | [diff] [blame] | 901 | total_restore_size += restore_part->Get_Restore_Size(Restore_Name); |
Dees_Troy | a13d74f | 2013-03-24 08:54:55 -0500 | [diff] [blame] | 902 | if (restore_part->Has_SubPartition) { |
| 903 | std::vector<TWPartition*>::iterator subpart; |
| 904 | |
| 905 | for (subpart = Partitions.begin(); subpart != Partitions.end(); subpart++) { |
| 906 | if ((*subpart)->Is_SubPartition && (*subpart)->SubPartition_Of == restore_part->Mount_Point) { |
bigbiff bigbiff | 0733881 | 2014-03-30 14:56:41 -0400 | [diff] [blame] | 907 | if (check_md5 > 0 && !(*subpart)->Check_MD5(Restore_Name)) |
Dees_Troy | a13d74f | 2013-03-24 08:54:55 -0500 | [diff] [blame] | 908 | return false; |
Ethan Yonker | 1b7a31b | 2014-07-03 15:09:22 -0500 | [diff] [blame] | 909 | total_restore_size += (*subpart)->Get_Restore_Size(Restore_Name); |
Dees_Troy | a13d74f | 2013-03-24 08:54:55 -0500 | [diff] [blame] | 910 | } |
| 911 | } |
| 912 | } |
| 913 | } else { |
Dees_Troy | 59df926 | 2013-06-19 14:53:57 -0500 | [diff] [blame] | 914 | LOGERR("Unable to locate '%s' partition for restoring (restore list).\n", restore_path.c_str()); |
Dees_Troy | a13d74f | 2013-03-24 08:54:55 -0500 | [diff] [blame] | 915 | } |
| 916 | start_pos = end_pos + 1; |
| 917 | end_pos = Restore_List.find(";", start_pos); |
Dees_Troy | 4a2a126 | 2012-09-18 09:33:47 -0400 | [diff] [blame] | 918 | } |
Dees_Troy | 4a2a126 | 2012-09-18 09:33:47 -0400 | [diff] [blame] | 919 | } |
Dees_Troy | 4a2a126 | 2012-09-18 09:33:47 -0400 | [diff] [blame] | 920 | |
| 921 | if (partition_count == 0) { |
Dees_Troy | 2673cec | 2013-04-02 20:22:16 +0000 | [diff] [blame] | 922 | LOGERR("No partitions selected for restore.\n"); |
Dees_Troy | 4a2a126 | 2012-09-18 09:33:47 -0400 | [diff] [blame] | 923 | return false; |
| 924 | } |
| 925 | |
Dees_Troy | 2673cec | 2013-04-02 20:22:16 +0000 | [diff] [blame] | 926 | gui_print("Restoring %i partitions...\n", partition_count); |
Ethan Yonker | 1b7a31b | 2014-07-03 15:09:22 -0500 | [diff] [blame] | 927 | gui_print("Total restore size is %lluMB\n", total_restore_size / 1048576); |
Dees_Troy | 2673cec | 2013-04-02 20:22:16 +0000 | [diff] [blame] | 928 | DataManager::SetProgress(0.0); |
Ethan Yonker | 1b7a31b | 2014-07-03 15:09:22 -0500 | [diff] [blame] | 929 | |
Dees_Troy | a13d74f | 2013-03-24 08:54:55 -0500 | [diff] [blame] | 930 | start_pos = 0; |
| 931 | if (!Restore_List.empty()) { |
| 932 | end_pos = Restore_List.find(";", start_pos); |
| 933 | while (end_pos != string::npos && start_pos < Restore_List.size()) { |
| 934 | restore_path = Restore_List.substr(start_pos, end_pos - start_pos); |
| 935 | restore_part = Find_Partition_By_Path(restore_path); |
| 936 | if (restore_part != NULL) { |
| 937 | partition_count++; |
Ethan Yonker | 1b7a31b | 2014-07-03 15:09:22 -0500 | [diff] [blame] | 938 | if (!Restore_Partition(restore_part, Restore_Name, partition_count, &total_restore_size, &already_restored_size)) |
Dees_Troy | a13d74f | 2013-03-24 08:54:55 -0500 | [diff] [blame] | 939 | return false; |
| 940 | } else { |
Dees_Troy | 2673cec | 2013-04-02 20:22:16 +0000 | [diff] [blame] | 941 | LOGERR("Unable to locate '%s' partition for restoring.\n", restore_path.c_str()); |
Dees_Troy | a13d74f | 2013-03-24 08:54:55 -0500 | [diff] [blame] | 942 | } |
| 943 | start_pos = end_pos + 1; |
| 944 | end_pos = Restore_List.find(";", start_pos); |
| 945 | } |
| 946 | } |
Dees_Troy | b46a684 | 2012-09-25 11:06:46 -0400 | [diff] [blame] | 947 | TWFunc::GUI_Operation_Text(TW_UPDATE_SYSTEM_DETAILS_TEXT, "Updating System Details"); |
Dees_Troy | 43d8b00 | 2012-09-17 16:00:01 -0400 | [diff] [blame] | 948 | Update_System_Details(); |
Dees_Troy | d0384ef | 2012-10-12 12:15:42 -0400 | [diff] [blame] | 949 | UnMount_Main_Partitions(); |
Dees_Troy | 4a2a126 | 2012-09-18 09:33:47 -0400 | [diff] [blame] | 950 | time(&rStop); |
Ethan Yonker | bf2cb1c | 2014-07-02 10:15:54 -0500 | [diff] [blame] | 951 | gui_print_color("highlight", "[RESTORE COMPLETED IN %d SECONDS]\n\n",(int)difftime(rStop,rStart)); |
Ethan Yonker | 1b7a31b | 2014-07-03 15:09:22 -0500 | [diff] [blame] | 952 | DataManager::SetValue("tw_file_progress", ""); |
Dees_Troy | 63c8df7 | 2012-09-10 14:02:05 -0400 | [diff] [blame] | 953 | return true; |
Dees_Troy | 51a0e82 | 2012-09-05 15:24:24 -0400 | [diff] [blame] | 954 | } |
| 955 | |
| 956 | void TWPartitionManager::Set_Restore_Files(string Restore_Name) { |
Dees_Troy | 63c8df7 | 2012-09-10 14:02:05 -0400 | [diff] [blame] | 957 | // Start with the default values |
Dees_Troy | a13d74f | 2013-03-24 08:54:55 -0500 | [diff] [blame] | 958 | string Restore_List; |
Dees_Troy | 83bd483 | 2013-05-04 12:39:56 +0000 | [diff] [blame] | 959 | bool get_date = true, check_encryption = true; |
| 960 | |
| 961 | DataManager::SetValue("tw_restore_encrypted", 0); |
Dees_Troy | 63c8df7 | 2012-09-10 14:02:05 -0400 | [diff] [blame] | 962 | |
| 963 | DIR* d; |
| 964 | d = opendir(Restore_Name.c_str()); |
| 965 | if (d == NULL) |
| 966 | { |
Dees_Troy | 2673cec | 2013-04-02 20:22:16 +0000 | [diff] [blame] | 967 | LOGERR("Error opening %s\n", Restore_Name.c_str()); |
Dees_Troy | 63c8df7 | 2012-09-10 14:02:05 -0400 | [diff] [blame] | 968 | return; |
| 969 | } |
| 970 | |
| 971 | struct dirent* de; |
| 972 | while ((de = readdir(d)) != NULL) |
| 973 | { |
| 974 | // Strip off three components |
| 975 | char str[256]; |
| 976 | char* label; |
| 977 | char* fstype = NULL; |
| 978 | char* extn = NULL; |
| 979 | char* ptr; |
| 980 | |
| 981 | strcpy(str, de->d_name); |
| 982 | if (strlen(str) <= 2) |
| 983 | continue; |
| 984 | |
| 985 | if (get_date) { |
| 986 | char file_path[255]; |
| 987 | struct stat st; |
| 988 | |
| 989 | strcpy(file_path, Restore_Name.c_str()); |
| 990 | strcat(file_path, "/"); |
| 991 | strcat(file_path, str); |
| 992 | stat(file_path, &st); |
| 993 | string backup_date = ctime((const time_t*)(&st.st_mtime)); |
| 994 | DataManager::SetValue(TW_RESTORE_FILE_DATE, backup_date); |
| 995 | get_date = false; |
| 996 | } |
| 997 | |
| 998 | label = str; |
| 999 | ptr = label; |
| 1000 | while (*ptr && *ptr != '.') ptr++; |
| 1001 | if (*ptr == '.') |
| 1002 | { |
| 1003 | *ptr = 0x00; |
| 1004 | ptr++; |
| 1005 | fstype = ptr; |
| 1006 | } |
| 1007 | while (*ptr && *ptr != '.') ptr++; |
| 1008 | if (*ptr == '.') |
| 1009 | { |
| 1010 | *ptr = 0x00; |
| 1011 | ptr++; |
| 1012 | extn = ptr; |
| 1013 | } |
| 1014 | |
Dees_Troy | 83bd483 | 2013-05-04 12:39:56 +0000 | [diff] [blame] | 1015 | if (fstype == NULL || extn == NULL || strcmp(fstype, "log") == 0) continue; |
Dees_Troy | a13d74f | 2013-03-24 08:54:55 -0500 | [diff] [blame] | 1016 | int extnlength = strlen(extn); |
Dees_Troy | 83bd483 | 2013-05-04 12:39:56 +0000 | [diff] [blame] | 1017 | if (extnlength != 3 && extnlength != 6) continue; |
| 1018 | if (extnlength >= 3 && strncmp(extn, "win", 3) != 0) continue; |
| 1019 | //if (extnlength == 6 && strncmp(extn, "win000", 6) != 0) continue; |
| 1020 | |
| 1021 | if (check_encryption) { |
| 1022 | string filename = Restore_Name + "/"; |
| 1023 | filename += de->d_name; |
| 1024 | if (TWFunc::Get_File_Type(filename) == 2) { |
| 1025 | LOGINFO("'%s' is encrypted\n", filename.c_str()); |
| 1026 | DataManager::SetValue("tw_restore_encrypted", 1); |
| 1027 | } |
| 1028 | } |
Dees_Troy | a13d74f | 2013-03-24 08:54:55 -0500 | [diff] [blame] | 1029 | if (extnlength == 6 && strncmp(extn, "win000", 6) != 0) continue; |
Dees_Troy | 63c8df7 | 2012-09-10 14:02:05 -0400 | [diff] [blame] | 1030 | |
| 1031 | TWPartition* Part = Find_Partition_By_Path(label); |
| 1032 | if (Part == NULL) |
| 1033 | { |
Dees_Troy | 2673cec | 2013-04-02 20:22:16 +0000 | [diff] [blame] | 1034 | LOGERR(" Unable to locate partition by backup name: '%s'\n", label); |
Dees_Troy | 63c8df7 | 2012-09-10 14:02:05 -0400 | [diff] [blame] | 1035 | continue; |
| 1036 | } |
| 1037 | |
| 1038 | Part->Backup_FileName = de->d_name; |
| 1039 | if (strlen(extn) > 3) { |
| 1040 | Part->Backup_FileName.resize(Part->Backup_FileName.size() - strlen(extn) + 3); |
| 1041 | } |
| 1042 | |
Dees_Troy | a13d74f | 2013-03-24 08:54:55 -0500 | [diff] [blame] | 1043 | Restore_List += Part->Backup_Path + ";"; |
Dees_Troy | 63c8df7 | 2012-09-10 14:02:05 -0400 | [diff] [blame] | 1044 | } |
| 1045 | closedir(d); |
| 1046 | |
Dees_Troy | a13d74f | 2013-03-24 08:54:55 -0500 | [diff] [blame] | 1047 | // Set the final value |
| 1048 | DataManager::SetValue("tw_restore_list", Restore_List); |
| 1049 | DataManager::SetValue("tw_restore_selected", Restore_List); |
Dees_Troy | 51a0e82 | 2012-09-05 15:24:24 -0400 | [diff] [blame] | 1050 | return; |
| 1051 | } |
| 1052 | |
| 1053 | int TWPartitionManager::Wipe_By_Path(string Path) { |
Dees_Troy | 63c8df7 | 2012-09-10 14:02:05 -0400 | [diff] [blame] | 1054 | std::vector<TWPartition*>::iterator iter; |
| 1055 | int ret = false; |
| 1056 | bool found = false; |
Dees_Troy | 38bd760 | 2012-09-14 13:33:53 -0400 | [diff] [blame] | 1057 | string Local_Path = TWFunc::Get_Root_Path(Path); |
Dees_Troy | 63c8df7 | 2012-09-10 14:02:05 -0400 | [diff] [blame] | 1058 | |
| 1059 | // Iterate through all partitions |
| 1060 | for (iter = Partitions.begin(); iter != Partitions.end(); iter++) { |
Dees_Troy | 657c309 | 2012-09-10 20:32:10 -0400 | [diff] [blame] | 1061 | if ((*iter)->Mount_Point == Local_Path || (!(*iter)->Symlink_Mount_Point.empty() && (*iter)->Symlink_Mount_Point == Local_Path)) { |
Dees_Troy | e58d526 | 2012-09-21 12:27:57 -0400 | [diff] [blame] | 1062 | if (Path == "/and-sec") |
| 1063 | ret = (*iter)->Wipe_AndSec(); |
| 1064 | else |
| 1065 | ret = (*iter)->Wipe(); |
Dees_Troy | 63c8df7 | 2012-09-10 14:02:05 -0400 | [diff] [blame] | 1066 | found = true; |
| 1067 | } else if ((*iter)->Is_SubPartition && (*iter)->SubPartition_Of == Local_Path) { |
| 1068 | (*iter)->Wipe(); |
| 1069 | } |
| 1070 | } |
| 1071 | if (found) { |
| 1072 | return ret; |
| 1073 | } else |
Dees_Troy | 2673cec | 2013-04-02 20:22:16 +0000 | [diff] [blame] | 1074 | LOGERR("Wipe: Unable to find partition for path '%s'\n", Local_Path.c_str()); |
Dees_Troy | 63c8df7 | 2012-09-10 14:02:05 -0400 | [diff] [blame] | 1075 | return false; |
Dees_Troy | 51a0e82 | 2012-09-05 15:24:24 -0400 | [diff] [blame] | 1076 | } |
| 1077 | |
| 1078 | int TWPartitionManager::Wipe_By_Block(string Block) { |
Dees_Troy | 63c8df7 | 2012-09-10 14:02:05 -0400 | [diff] [blame] | 1079 | TWPartition* Part = Find_Partition_By_Block(Block); |
| 1080 | |
| 1081 | if (Part) { |
| 1082 | if (Part->Has_SubPartition) { |
| 1083 | std::vector<TWPartition*>::iterator subpart; |
| 1084 | |
| 1085 | for (subpart = Partitions.begin(); subpart != Partitions.end(); subpart++) { |
| 1086 | if ((*subpart)->Is_SubPartition && (*subpart)->SubPartition_Of == Part->Mount_Point) |
| 1087 | (*subpart)->Wipe(); |
| 1088 | } |
| 1089 | return Part->Wipe(); |
| 1090 | } else |
| 1091 | return Part->Wipe(); |
| 1092 | } |
Dees_Troy | 2673cec | 2013-04-02 20:22:16 +0000 | [diff] [blame] | 1093 | LOGERR("Wipe: Unable to find partition for block '%s'\n", Block.c_str()); |
Dees_Troy | 63c8df7 | 2012-09-10 14:02:05 -0400 | [diff] [blame] | 1094 | return false; |
Dees_Troy | 51a0e82 | 2012-09-05 15:24:24 -0400 | [diff] [blame] | 1095 | } |
| 1096 | |
| 1097 | int TWPartitionManager::Wipe_By_Name(string Name) { |
Dees_Troy | 63c8df7 | 2012-09-10 14:02:05 -0400 | [diff] [blame] | 1098 | TWPartition* Part = Find_Partition_By_Name(Name); |
| 1099 | |
| 1100 | if (Part) { |
| 1101 | if (Part->Has_SubPartition) { |
| 1102 | std::vector<TWPartition*>::iterator subpart; |
| 1103 | |
| 1104 | for (subpart = Partitions.begin(); subpart != Partitions.end(); subpart++) { |
| 1105 | if ((*subpart)->Is_SubPartition && (*subpart)->SubPartition_Of == Part->Mount_Point) |
| 1106 | (*subpart)->Wipe(); |
| 1107 | } |
| 1108 | return Part->Wipe(); |
| 1109 | } else |
| 1110 | return Part->Wipe(); |
| 1111 | } |
Dees_Troy | 2673cec | 2013-04-02 20:22:16 +0000 | [diff] [blame] | 1112 | LOGERR("Wipe: Unable to find partition for name '%s'\n", Name.c_str()); |
Dees_Troy | 63c8df7 | 2012-09-10 14:02:05 -0400 | [diff] [blame] | 1113 | return false; |
Dees_Troy | 51a0e82 | 2012-09-05 15:24:24 -0400 | [diff] [blame] | 1114 | } |
| 1115 | |
Ethan Yonker | 87c7bac | 2014-05-25 21:41:08 -0500 | [diff] [blame] | 1116 | int TWPartitionManager::Wipe_By_Path(string Path, string New_File_System) { |
| 1117 | std::vector<TWPartition*>::iterator iter; |
| 1118 | int ret = false; |
| 1119 | bool found = false; |
| 1120 | string Local_Path = TWFunc::Get_Root_Path(Path); |
| 1121 | |
| 1122 | // Iterate through all partitions |
| 1123 | for (iter = Partitions.begin(); iter != Partitions.end(); iter++) { |
| 1124 | if ((*iter)->Mount_Point == Local_Path || (!(*iter)->Symlink_Mount_Point.empty() && (*iter)->Symlink_Mount_Point == Local_Path)) { |
| 1125 | if (Path == "/and-sec") |
| 1126 | ret = (*iter)->Wipe_AndSec(); |
| 1127 | else |
| 1128 | ret = (*iter)->Wipe(New_File_System); |
| 1129 | found = true; |
| 1130 | } else if ((*iter)->Is_SubPartition && (*iter)->SubPartition_Of == Local_Path) { |
| 1131 | (*iter)->Wipe(New_File_System); |
| 1132 | } |
| 1133 | } |
| 1134 | if (found) { |
| 1135 | return ret; |
| 1136 | } else |
| 1137 | LOGERR("Wipe: Unable to find partition for path '%s'\n", Local_Path.c_str()); |
| 1138 | return false; |
| 1139 | } |
| 1140 | |
| 1141 | int TWPartitionManager::Wipe_By_Block(string Block, string New_File_System) { |
| 1142 | TWPartition* Part = Find_Partition_By_Block(Block); |
| 1143 | |
| 1144 | if (Part) { |
| 1145 | if (Part->Has_SubPartition) { |
| 1146 | std::vector<TWPartition*>::iterator subpart; |
| 1147 | |
| 1148 | for (subpart = Partitions.begin(); subpart != Partitions.end(); subpart++) { |
| 1149 | if ((*subpart)->Is_SubPartition && (*subpart)->SubPartition_Of == Part->Mount_Point) |
| 1150 | (*subpart)->Wipe(New_File_System); |
| 1151 | } |
| 1152 | return Part->Wipe(New_File_System); |
| 1153 | } else |
| 1154 | return Part->Wipe(New_File_System); |
| 1155 | } |
| 1156 | LOGERR("Wipe: Unable to find partition for block '%s'\n", Block.c_str()); |
| 1157 | return false; |
| 1158 | } |
| 1159 | |
| 1160 | int TWPartitionManager::Wipe_By_Name(string Name, string New_File_System) { |
| 1161 | TWPartition* Part = Find_Partition_By_Name(Name); |
| 1162 | |
| 1163 | if (Part) { |
| 1164 | if (Part->Has_SubPartition) { |
| 1165 | std::vector<TWPartition*>::iterator subpart; |
| 1166 | |
| 1167 | for (subpart = Partitions.begin(); subpart != Partitions.end(); subpart++) { |
| 1168 | if ((*subpart)->Is_SubPartition && (*subpart)->SubPartition_Of == Part->Mount_Point) |
| 1169 | (*subpart)->Wipe(); |
| 1170 | } |
| 1171 | return Part->Wipe(New_File_System); |
| 1172 | } else |
| 1173 | return Part->Wipe(New_File_System); |
| 1174 | } |
| 1175 | LOGERR("Wipe: Unable to find partition for name '%s'\n", Name.c_str()); |
| 1176 | return false; |
| 1177 | } |
| 1178 | |
Dees_Troy | 51a0e82 | 2012-09-05 15:24:24 -0400 | [diff] [blame] | 1179 | int TWPartitionManager::Factory_Reset(void) { |
Dees_Troy | 63c8df7 | 2012-09-10 14:02:05 -0400 | [diff] [blame] | 1180 | std::vector<TWPartition*>::iterator iter; |
| 1181 | int ret = true; |
| 1182 | |
| 1183 | for (iter = Partitions.begin(); iter != Partitions.end(); iter++) { |
Dees_Troy | 38bd760 | 2012-09-14 13:33:53 -0400 | [diff] [blame] | 1184 | if ((*iter)->Wipe_During_Factory_Reset && (*iter)->Is_Present) { |
Dees_Troy | 63c8df7 | 2012-09-10 14:02:05 -0400 | [diff] [blame] | 1185 | if (!(*iter)->Wipe()) |
| 1186 | ret = false; |
Dees_Troy | 094207a | 2012-09-26 12:00:39 -0400 | [diff] [blame] | 1187 | } else if ((*iter)->Has_Android_Secure) { |
| 1188 | if (!(*iter)->Wipe_AndSec()) |
| 1189 | ret = false; |
Dees_Troy | 63c8df7 | 2012-09-10 14:02:05 -0400 | [diff] [blame] | 1190 | } |
| 1191 | } |
| 1192 | return ret; |
Dees_Troy | 51a0e82 | 2012-09-05 15:24:24 -0400 | [diff] [blame] | 1193 | } |
| 1194 | |
Dees_Troy | 38bd760 | 2012-09-14 13:33:53 -0400 | [diff] [blame] | 1195 | int TWPartitionManager::Wipe_Dalvik_Cache(void) { |
| 1196 | struct stat st; |
bigbiff bigbiff | 9c75405 | 2013-01-09 09:09:08 -0500 | [diff] [blame] | 1197 | vector <string> dir; |
Dees_Troy | 38bd760 | 2012-09-14 13:33:53 -0400 | [diff] [blame] | 1198 | |
| 1199 | if (!Mount_By_Path("/data", true)) |
| 1200 | return false; |
| 1201 | |
| 1202 | if (!Mount_By_Path("/cache", true)) |
| 1203 | return false; |
| 1204 | |
bigbiff bigbiff | 9c75405 | 2013-01-09 09:09:08 -0500 | [diff] [blame] | 1205 | dir.push_back("/data/dalvik-cache"); |
| 1206 | dir.push_back("/cache/dalvik-cache"); |
| 1207 | dir.push_back("/cache/dc"); |
Dees_Troy | 2673cec | 2013-04-02 20:22:16 +0000 | [diff] [blame] | 1208 | gui_print("\nWiping Dalvik Cache Directories...\n"); |
Dees_Troy | a13d74f | 2013-03-24 08:54:55 -0500 | [diff] [blame] | 1209 | for (unsigned i = 0; i < dir.size(); ++i) { |
bigbiff bigbiff | 9c75405 | 2013-01-09 09:09:08 -0500 | [diff] [blame] | 1210 | if (stat(dir.at(i).c_str(), &st) == 0) { |
| 1211 | TWFunc::removeDir(dir.at(i), false); |
Dees_Troy | 2673cec | 2013-04-02 20:22:16 +0000 | [diff] [blame] | 1212 | gui_print("Cleaned: %s...\n", dir.at(i).c_str()); |
bigbiff bigbiff | 9c75405 | 2013-01-09 09:09:08 -0500 | [diff] [blame] | 1213 | } |
| 1214 | } |
Dees_Troy | 38bd760 | 2012-09-14 13:33:53 -0400 | [diff] [blame] | 1215 | TWPartition* sdext = Find_Partition_By_Path("/sd-ext"); |
Vojtech Bocek | fafb0c5 | 2013-07-25 22:53:02 +0200 | [diff] [blame] | 1216 | if (sdext && sdext->Is_Present && sdext->Mount(false)) |
| 1217 | { |
| 1218 | if (stat("/sd-ext/dalvik-cache", &st) == 0) |
| 1219 | { |
| 1220 | TWFunc::removeDir("/sd-ext/dalvik-cache", false); |
Matt Mower | fb1c4ff | 2014-04-16 13:43:36 -0500 | [diff] [blame] | 1221 | gui_print("Cleaned: /sd-ext/dalvik-cache...\n"); |
bigbiff bigbiff | 9c75405 | 2013-01-09 09:09:08 -0500 | [diff] [blame] | 1222 | } |
Vojtech Bocek | fafb0c5 | 2013-07-25 22:53:02 +0200 | [diff] [blame] | 1223 | } |
Dees_Troy | 2673cec | 2013-04-02 20:22:16 +0000 | [diff] [blame] | 1224 | gui_print("-- Dalvik Cache Directories Wipe Complete!\n\n"); |
Dees_Troy | 38bd760 | 2012-09-14 13:33:53 -0400 | [diff] [blame] | 1225 | return true; |
| 1226 | } |
| 1227 | |
| 1228 | int TWPartitionManager::Wipe_Rotate_Data(void) { |
| 1229 | if (!Mount_By_Path("/data", true)) |
| 1230 | return false; |
| 1231 | |
bigbiff bigbiff | 9c75405 | 2013-01-09 09:09:08 -0500 | [diff] [blame] | 1232 | unlink("/data/misc/akmd*"); |
| 1233 | unlink("/data/misc/rild*"); |
Dees_Troy | 2673cec | 2013-04-02 20:22:16 +0000 | [diff] [blame] | 1234 | gui_print("Rotation data wiped.\n"); |
Dees_Troy | 38bd760 | 2012-09-14 13:33:53 -0400 | [diff] [blame] | 1235 | return true; |
| 1236 | } |
| 1237 | |
| 1238 | int TWPartitionManager::Wipe_Battery_Stats(void) { |
| 1239 | struct stat st; |
| 1240 | |
| 1241 | if (!Mount_By_Path("/data", true)) |
| 1242 | return false; |
| 1243 | |
| 1244 | if (0 != stat("/data/system/batterystats.bin", &st)) { |
Dees_Troy | 2673cec | 2013-04-02 20:22:16 +0000 | [diff] [blame] | 1245 | gui_print("No Battery Stats Found. No Need To Wipe.\n"); |
Dees_Troy | 38bd760 | 2012-09-14 13:33:53 -0400 | [diff] [blame] | 1246 | } else { |
| 1247 | remove("/data/system/batterystats.bin"); |
Dees_Troy | 2673cec | 2013-04-02 20:22:16 +0000 | [diff] [blame] | 1248 | gui_print("Cleared battery stats.\n"); |
Dees_Troy | 38bd760 | 2012-09-14 13:33:53 -0400 | [diff] [blame] | 1249 | } |
| 1250 | return true; |
| 1251 | } |
| 1252 | |
Dees_Troy | 2ff5a8d | 2012-09-26 14:53:02 -0400 | [diff] [blame] | 1253 | int TWPartitionManager::Wipe_Android_Secure(void) { |
| 1254 | std::vector<TWPartition*>::iterator iter; |
| 1255 | int ret = false; |
| 1256 | bool found = false; |
| 1257 | |
| 1258 | // Iterate through all partitions |
| 1259 | for (iter = Partitions.begin(); iter != Partitions.end(); iter++) { |
| 1260 | if ((*iter)->Has_Android_Secure) { |
| 1261 | ret = (*iter)->Wipe_AndSec(); |
| 1262 | found = true; |
| 1263 | } |
| 1264 | } |
| 1265 | if (found) { |
| 1266 | return ret; |
| 1267 | } else { |
Dees_Troy | 2673cec | 2013-04-02 20:22:16 +0000 | [diff] [blame] | 1268 | LOGERR("No android secure partitions found.\n"); |
Dees_Troy | 2ff5a8d | 2012-09-26 14:53:02 -0400 | [diff] [blame] | 1269 | } |
| 1270 | return false; |
| 1271 | } |
| 1272 | |
Dees_Troy | 38bd760 | 2012-09-14 13:33:53 -0400 | [diff] [blame] | 1273 | int TWPartitionManager::Format_Data(void) { |
| 1274 | TWPartition* dat = Find_Partition_By_Path("/data"); |
| 1275 | |
| 1276 | if (dat != NULL) { |
| 1277 | if (!dat->UnMount(true)) |
| 1278 | return false; |
| 1279 | |
| 1280 | return dat->Wipe_Encryption(); |
| 1281 | } else { |
Dees_Troy | 2673cec | 2013-04-02 20:22:16 +0000 | [diff] [blame] | 1282 | LOGERR("Unable to locate /data.\n"); |
Dees_Troy | 38bd760 | 2012-09-14 13:33:53 -0400 | [diff] [blame] | 1283 | return false; |
| 1284 | } |
| 1285 | return false; |
| 1286 | } |
| 1287 | |
| 1288 | int TWPartitionManager::Wipe_Media_From_Data(void) { |
| 1289 | TWPartition* dat = Find_Partition_By_Path("/data"); |
| 1290 | |
| 1291 | if (dat != NULL) { |
| 1292 | if (!dat->Has_Data_Media) { |
Dees_Troy | 2673cec | 2013-04-02 20:22:16 +0000 | [diff] [blame] | 1293 | LOGERR("This device does not have /data/media\n"); |
Dees_Troy | 38bd760 | 2012-09-14 13:33:53 -0400 | [diff] [blame] | 1294 | return false; |
| 1295 | } |
| 1296 | if (!dat->Mount(true)) |
| 1297 | return false; |
| 1298 | |
Dees_Troy | 2673cec | 2013-04-02 20:22:16 +0000 | [diff] [blame] | 1299 | gui_print("Wiping internal storage -- /data/media...\n"); |
bigbiff bigbiff | 9c75405 | 2013-01-09 09:09:08 -0500 | [diff] [blame] | 1300 | TWFunc::removeDir("/data/media", false); |
| 1301 | if (mkdir("/data/media", S_IRWXU | S_IRWXG | S_IWGRP | S_IXGRP) != 0) |
| 1302 | return -1; |
Dees_Troy | 38bd760 | 2012-09-14 13:33:53 -0400 | [diff] [blame] | 1303 | if (dat->Has_Data_Media) { |
| 1304 | dat->Recreate_Media_Folder(); |
Dees_Troy | 74fb2e9 | 2013-04-15 14:35:47 +0000 | [diff] [blame] | 1305 | // Unmount and remount - slightly hackish way to ensure that the "/sdcard" folder is still mounted properly after wiping |
| 1306 | dat->UnMount(false); |
| 1307 | dat->Mount(false); |
Dees_Troy | 38bd760 | 2012-09-14 13:33:53 -0400 | [diff] [blame] | 1308 | } |
| 1309 | return true; |
| 1310 | } else { |
Dees_Troy | 2673cec | 2013-04-02 20:22:16 +0000 | [diff] [blame] | 1311 | LOGERR("Unable to locate /data.\n"); |
Dees_Troy | 38bd760 | 2012-09-14 13:33:53 -0400 | [diff] [blame] | 1312 | return false; |
| 1313 | } |
| 1314 | return false; |
| 1315 | } |
| 1316 | |
Ethan Yonker | 87c7bac | 2014-05-25 21:41:08 -0500 | [diff] [blame] | 1317 | int TWPartitionManager::Repair_By_Path(string Path, bool Display_Error) { |
| 1318 | std::vector<TWPartition*>::iterator iter; |
| 1319 | int ret = false; |
| 1320 | bool found = false; |
| 1321 | string Local_Path = TWFunc::Get_Root_Path(Path); |
| 1322 | |
| 1323 | if (Local_Path == "/tmp" || Local_Path == "/") |
| 1324 | return true; |
| 1325 | |
| 1326 | // Iterate through all partitions |
| 1327 | for (iter = Partitions.begin(); iter != Partitions.end(); iter++) { |
| 1328 | if ((*iter)->Mount_Point == Local_Path || (!(*iter)->Symlink_Mount_Point.empty() && (*iter)->Symlink_Mount_Point == Local_Path)) { |
| 1329 | ret = (*iter)->Repair(); |
| 1330 | found = true; |
| 1331 | } else if ((*iter)->Is_SubPartition && (*iter)->SubPartition_Of == Local_Path) { |
| 1332 | (*iter)->Repair(); |
| 1333 | } |
| 1334 | } |
| 1335 | if (found) { |
| 1336 | return ret; |
| 1337 | } else if (Display_Error) { |
| 1338 | LOGERR("Repair: Unable to find partition for path '%s'\n", Local_Path.c_str()); |
| 1339 | } else { |
| 1340 | LOGINFO("Repair: Unable to find partition for path '%s'\n", Local_Path.c_str()); |
| 1341 | } |
| 1342 | return false; |
| 1343 | } |
| 1344 | |
| 1345 | int TWPartitionManager::Repair_By_Block(string Block, bool Display_Error) { |
| 1346 | TWPartition* Part = Find_Partition_By_Block(Block); |
| 1347 | |
| 1348 | if (Part) { |
| 1349 | if (Part->Has_SubPartition) { |
| 1350 | std::vector<TWPartition*>::iterator subpart; |
| 1351 | |
| 1352 | for (subpart = Partitions.begin(); subpart != Partitions.end(); subpart++) { |
| 1353 | if ((*subpart)->Is_SubPartition && (*subpart)->SubPartition_Of == Part->Mount_Point) |
| 1354 | (*subpart)->Repair(); |
| 1355 | } |
| 1356 | return Part->Repair(); |
| 1357 | } else |
| 1358 | return Part->Repair(); |
| 1359 | } |
| 1360 | if (Display_Error) |
| 1361 | LOGERR("Repair: Unable to find partition for block '%s'\n", Block.c_str()); |
| 1362 | else |
| 1363 | LOGINFO("Repair: Unable to find partition for block '%s'\n", Block.c_str()); |
| 1364 | return false; |
| 1365 | } |
| 1366 | |
| 1367 | int TWPartitionManager::Repair_By_Name(string Name, bool Display_Error) { |
| 1368 | TWPartition* Part = Find_Partition_By_Name(Name); |
| 1369 | |
| 1370 | if (Part) { |
| 1371 | if (Part->Has_SubPartition) { |
| 1372 | std::vector<TWPartition*>::iterator subpart; |
| 1373 | |
| 1374 | for (subpart = Partitions.begin(); subpart != Partitions.end(); subpart++) { |
| 1375 | if ((*subpart)->Is_SubPartition && (*subpart)->SubPartition_Of == Part->Mount_Point) |
| 1376 | (*subpart)->Repair(); |
| 1377 | } |
| 1378 | return Part->Repair(); |
| 1379 | } else |
| 1380 | return Part->Repair(); |
| 1381 | } |
| 1382 | if (Display_Error) |
| 1383 | LOGERR("Repair: Unable to find partition for name '%s'\n", Name.c_str()); |
| 1384 | else |
| 1385 | LOGINFO("Repair: Unable to find partition for name '%s'\n", Name.c_str()); |
| 1386 | return false; |
| 1387 | } |
| 1388 | |
Dees_Troy | 51a0e82 | 2012-09-05 15:24:24 -0400 | [diff] [blame] | 1389 | void TWPartitionManager::Refresh_Sizes(void) { |
Dees_Troy | 5112731 | 2012-09-08 13:08:49 -0400 | [diff] [blame] | 1390 | Update_System_Details(); |
Dees_Troy | 51a0e82 | 2012-09-05 15:24:24 -0400 | [diff] [blame] | 1391 | return; |
| 1392 | } |
| 1393 | |
| 1394 | void TWPartitionManager::Update_System_Details(void) { |
Dees_Troy | 5bf4392 | 2012-09-07 16:07:55 -0400 | [diff] [blame] | 1395 | std::vector<TWPartition*>::iterator iter; |
Dees_Troy | 5112731 | 2012-09-08 13:08:49 -0400 | [diff] [blame] | 1396 | int data_size = 0; |
Dees_Troy | 5bf4392 | 2012-09-07 16:07:55 -0400 | [diff] [blame] | 1397 | |
Dees_Troy | 2673cec | 2013-04-02 20:22:16 +0000 | [diff] [blame] | 1398 | gui_print("Updating partition details...\n"); |
Dees_Troy | 5bf4392 | 2012-09-07 16:07:55 -0400 | [diff] [blame] | 1399 | for (iter = Partitions.begin(); iter != Partitions.end(); iter++) { |
Dees_Troy | 5112731 | 2012-09-08 13:08:49 -0400 | [diff] [blame] | 1400 | if ((*iter)->Can_Be_Mounted) { |
| 1401 | (*iter)->Update_Size(true); |
| 1402 | if ((*iter)->Mount_Point == "/system") { |
| 1403 | int backup_display_size = (int)((*iter)->Backup_Size / 1048576LLU); |
| 1404 | DataManager::SetValue(TW_BACKUP_SYSTEM_SIZE, backup_display_size); |
| 1405 | } else if ((*iter)->Mount_Point == "/data" || (*iter)->Mount_Point == "/datadata") { |
| 1406 | data_size += (int)((*iter)->Backup_Size / 1048576LLU); |
| 1407 | } else if ((*iter)->Mount_Point == "/cache") { |
| 1408 | int backup_display_size = (int)((*iter)->Backup_Size / 1048576LLU); |
| 1409 | DataManager::SetValue(TW_BACKUP_CACHE_SIZE, backup_display_size); |
| 1410 | } else if ((*iter)->Mount_Point == "/sd-ext") { |
| 1411 | int backup_display_size = (int)((*iter)->Backup_Size / 1048576LLU); |
| 1412 | DataManager::SetValue(TW_BACKUP_SDEXT_SIZE, backup_display_size); |
| 1413 | if ((*iter)->Backup_Size == 0) { |
| 1414 | DataManager::SetValue(TW_HAS_SDEXT_PARTITION, 0); |
| 1415 | DataManager::SetValue(TW_BACKUP_SDEXT_VAR, 0); |
| 1416 | } else |
| 1417 | DataManager::SetValue(TW_HAS_SDEXT_PARTITION, 1); |
Dees_Troy | e58d526 | 2012-09-21 12:27:57 -0400 | [diff] [blame] | 1418 | } else if ((*iter)->Has_Android_Secure) { |
Dees_Troy | 8170a92 | 2012-09-18 15:40:25 -0400 | [diff] [blame] | 1419 | int backup_display_size = (int)((*iter)->Backup_Size / 1048576LLU); |
Dees_Troy | e58d526 | 2012-09-21 12:27:57 -0400 | [diff] [blame] | 1420 | DataManager::SetValue(TW_BACKUP_ANDSEC_SIZE, backup_display_size); |
Dees_Troy | 8170a92 | 2012-09-18 15:40:25 -0400 | [diff] [blame] | 1421 | if ((*iter)->Backup_Size == 0) { |
| 1422 | DataManager::SetValue(TW_HAS_ANDROID_SECURE, 0); |
| 1423 | DataManager::SetValue(TW_BACKUP_ANDSEC_VAR, 0); |
| 1424 | } else |
| 1425 | DataManager::SetValue(TW_HAS_ANDROID_SECURE, 1); |
Dees_Troy | 2c50e18 | 2012-09-26 20:05:28 -0400 | [diff] [blame] | 1426 | } else if ((*iter)->Mount_Point == "/boot") { |
| 1427 | int backup_display_size = (int)((*iter)->Backup_Size / 1048576LLU); |
| 1428 | DataManager::SetValue(TW_BACKUP_BOOT_SIZE, backup_display_size); |
| 1429 | if ((*iter)->Backup_Size == 0) { |
| 1430 | DataManager::SetValue("tw_has_boot_partition", 0); |
| 1431 | DataManager::SetValue(TW_BACKUP_BOOT_VAR, 0); |
| 1432 | } else |
| 1433 | DataManager::SetValue("tw_has_boot_partition", 1); |
Dees_Troy | 5112731 | 2012-09-08 13:08:49 -0400 | [diff] [blame] | 1434 | } |
Dees_Troy | ab10ee2 | 2012-09-21 14:27:30 -0400 | [diff] [blame] | 1435 | #ifdef SP1_NAME |
| 1436 | if ((*iter)->Backup_Name == EXPAND(SP1_NAME)) { |
| 1437 | int backup_display_size = (int)((*iter)->Backup_Size / 1048576LLU); |
| 1438 | DataManager::SetValue(TW_BACKUP_SP1_SIZE, backup_display_size); |
| 1439 | } |
| 1440 | #endif |
| 1441 | #ifdef SP2_NAME |
| 1442 | if ((*iter)->Backup_Name == EXPAND(SP2_NAME)) { |
| 1443 | int backup_display_size = (int)((*iter)->Backup_Size / 1048576LLU); |
| 1444 | DataManager::SetValue(TW_BACKUP_SP2_SIZE, backup_display_size); |
| 1445 | } |
| 1446 | #endif |
| 1447 | #ifdef SP3_NAME |
| 1448 | if ((*iter)->Backup_Name == EXPAND(SP3_NAME)) { |
| 1449 | int backup_display_size = (int)((*iter)->Backup_Size / 1048576LLU); |
| 1450 | DataManager::SetValue(TW_BACKUP_SP3_SIZE, backup_display_size); |
| 1451 | } |
| 1452 | #endif |
Dees_Troy | aa9cc40 | 2012-10-13 12:14:05 -0400 | [diff] [blame] | 1453 | } else { |
| 1454 | // Handle unmountable partitions in case we reset defaults |
| 1455 | if ((*iter)->Mount_Point == "/boot") { |
| 1456 | int backup_display_size = (int)((*iter)->Backup_Size / 1048576LLU); |
| 1457 | DataManager::SetValue(TW_BACKUP_BOOT_SIZE, backup_display_size); |
| 1458 | if ((*iter)->Backup_Size == 0) { |
| 1459 | DataManager::SetValue(TW_HAS_BOOT_PARTITION, 0); |
| 1460 | DataManager::SetValue(TW_BACKUP_BOOT_VAR, 0); |
| 1461 | } else |
| 1462 | DataManager::SetValue(TW_HAS_BOOT_PARTITION, 1); |
| 1463 | } else if ((*iter)->Mount_Point == "/recovery") { |
| 1464 | int backup_display_size = (int)((*iter)->Backup_Size / 1048576LLU); |
| 1465 | DataManager::SetValue(TW_BACKUP_RECOVERY_SIZE, backup_display_size); |
| 1466 | if ((*iter)->Backup_Size == 0) { |
| 1467 | DataManager::SetValue(TW_HAS_RECOVERY_PARTITION, 0); |
| 1468 | DataManager::SetValue(TW_BACKUP_RECOVERY_VAR, 0); |
| 1469 | } else |
| 1470 | DataManager::SetValue(TW_HAS_RECOVERY_PARTITION, 1); |
Gary Peck | 82599a8 | 2012-11-21 16:23:12 -0800 | [diff] [blame] | 1471 | } else if ((*iter)->Mount_Point == "/data") { |
| 1472 | data_size += (int)((*iter)->Backup_Size / 1048576LLU); |
Dees_Troy | aa9cc40 | 2012-10-13 12:14:05 -0400 | [diff] [blame] | 1473 | } |
| 1474 | #ifdef SP1_NAME |
| 1475 | if ((*iter)->Backup_Name == EXPAND(SP1_NAME)) { |
| 1476 | int backup_display_size = (int)((*iter)->Backup_Size / 1048576LLU); |
| 1477 | DataManager::SetValue(TW_BACKUP_SP1_SIZE, backup_display_size); |
| 1478 | } |
| 1479 | #endif |
| 1480 | #ifdef SP2_NAME |
| 1481 | if ((*iter)->Backup_Name == EXPAND(SP2_NAME)) { |
| 1482 | int backup_display_size = (int)((*iter)->Backup_Size / 1048576LLU); |
| 1483 | DataManager::SetValue(TW_BACKUP_SP2_SIZE, backup_display_size); |
| 1484 | } |
| 1485 | #endif |
| 1486 | #ifdef SP3_NAME |
| 1487 | if ((*iter)->Backup_Name == EXPAND(SP3_NAME)) { |
| 1488 | int backup_display_size = (int)((*iter)->Backup_Size / 1048576LLU); |
| 1489 | DataManager::SetValue(TW_BACKUP_SP3_SIZE, backup_display_size); |
| 1490 | } |
| 1491 | #endif |
Dees_Troy | 5112731 | 2012-09-08 13:08:49 -0400 | [diff] [blame] | 1492 | } |
Dees_Troy | 5bf4392 | 2012-09-07 16:07:55 -0400 | [diff] [blame] | 1493 | } |
Dees_Troy | 5112731 | 2012-09-08 13:08:49 -0400 | [diff] [blame] | 1494 | DataManager::SetValue(TW_BACKUP_DATA_SIZE, data_size); |
| 1495 | string current_storage_path = DataManager::GetCurrentStoragePath(); |
| 1496 | TWPartition* FreeStorage = Find_Partition_By_Path(current_storage_path); |
Dees_Troy | 8170a92 | 2012-09-18 15:40:25 -0400 | [diff] [blame] | 1497 | if (FreeStorage != NULL) { |
| 1498 | // Attempt to mount storage |
| 1499 | if (!FreeStorage->Mount(false)) { |
| 1500 | // We couldn't mount storage... check to see if we have dual storage |
| 1501 | int has_dual_storage; |
| 1502 | DataManager::GetValue(TW_HAS_DUAL_STORAGE, has_dual_storage); |
| 1503 | if (has_dual_storage == 1) { |
| 1504 | // We have dual storage, see if we're using the internal storage that should always be present |
| 1505 | if (current_storage_path == DataManager::GetSettingsStoragePath()) { |
Dees_Troy | ab10ee2 | 2012-09-21 14:27:30 -0400 | [diff] [blame] | 1506 | if (!FreeStorage->Is_Encrypted) { |
| 1507 | // Not able to use internal, so error! |
Dees_Troy | 2673cec | 2013-04-02 20:22:16 +0000 | [diff] [blame] | 1508 | LOGERR("Unable to mount internal storage.\n"); |
Dees_Troy | ab10ee2 | 2012-09-21 14:27:30 -0400 | [diff] [blame] | 1509 | } |
Dees_Troy | 8170a92 | 2012-09-18 15:40:25 -0400 | [diff] [blame] | 1510 | DataManager::SetValue(TW_STORAGE_FREE_SIZE, 0); |
| 1511 | } else { |
| 1512 | // We were using external, flip to internal |
| 1513 | DataManager::SetValue(TW_USE_EXTERNAL_STORAGE, 0); |
| 1514 | current_storage_path = DataManager::GetCurrentStoragePath(); |
| 1515 | FreeStorage = Find_Partition_By_Path(current_storage_path); |
| 1516 | if (FreeStorage != NULL) { |
| 1517 | DataManager::SetValue(TW_STORAGE_FREE_SIZE, (int)(FreeStorage->Free / 1048576LLU)); |
| 1518 | } else { |
Dees_Troy | 2673cec | 2013-04-02 20:22:16 +0000 | [diff] [blame] | 1519 | LOGERR("Unable to locate internal storage partition.\n"); |
Dees_Troy | 8170a92 | 2012-09-18 15:40:25 -0400 | [diff] [blame] | 1520 | DataManager::SetValue(TW_STORAGE_FREE_SIZE, 0); |
| 1521 | } |
| 1522 | } |
| 1523 | } else { |
| 1524 | // No dual storage and unable to mount storage, error! |
Dees_Troy | 2673cec | 2013-04-02 20:22:16 +0000 | [diff] [blame] | 1525 | LOGERR("Unable to mount storage.\n"); |
Dees_Troy | 8170a92 | 2012-09-18 15:40:25 -0400 | [diff] [blame] | 1526 | DataManager::SetValue(TW_STORAGE_FREE_SIZE, 0); |
| 1527 | } |
| 1528 | } else { |
| 1529 | DataManager::SetValue(TW_STORAGE_FREE_SIZE, (int)(FreeStorage->Free / 1048576LLU)); |
| 1530 | } |
| 1531 | } else { |
Dees_Troy | 2673cec | 2013-04-02 20:22:16 +0000 | [diff] [blame] | 1532 | LOGINFO("Unable to find storage partition '%s'.\n", current_storage_path.c_str()); |
Dees_Troy | 8170a92 | 2012-09-18 15:40:25 -0400 | [diff] [blame] | 1533 | } |
Dees_Troy | 5bf4392 | 2012-09-07 16:07:55 -0400 | [diff] [blame] | 1534 | if (!Write_Fstab()) |
Dees_Troy | 2673cec | 2013-04-02 20:22:16 +0000 | [diff] [blame] | 1535 | LOGERR("Error creating fstab\n"); |
Dees_Troy | 51a0e82 | 2012-09-05 15:24:24 -0400 | [diff] [blame] | 1536 | return; |
| 1537 | } |
| 1538 | |
| 1539 | int TWPartitionManager::Decrypt_Device(string Password) { |
Dees_Troy | 5bf4392 | 2012-09-07 16:07:55 -0400 | [diff] [blame] | 1540 | #ifdef TW_INCLUDE_CRYPTO |
| 1541 | int ret_val, password_len; |
| 1542 | char crypto_blkdev[255], cPassword[255]; |
| 1543 | size_t result; |
| 1544 | |
| 1545 | property_set("ro.crypto.state", "encrypted"); |
| 1546 | #ifdef TW_INCLUDE_JB_CRYPTO |
| 1547 | // No extra flags needed |
| 1548 | #else |
| 1549 | property_set("ro.crypto.fs_type", CRYPTO_FS_TYPE); |
| 1550 | property_set("ro.crypto.fs_real_blkdev", CRYPTO_REAL_BLKDEV); |
| 1551 | property_set("ro.crypto.fs_mnt_point", CRYPTO_MNT_POINT); |
| 1552 | property_set("ro.crypto.fs_options", CRYPTO_FS_OPTIONS); |
| 1553 | property_set("ro.crypto.fs_flags", CRYPTO_FS_FLAGS); |
| 1554 | property_set("ro.crypto.keyfile.userdata", CRYPTO_KEY_LOC); |
a3955269 | 6ff55ce | 2013-01-08 16:14:56 +0000 | [diff] [blame] | 1555 | |
| 1556 | #ifdef CRYPTO_SD_FS_TYPE |
Ethan Yonker | 71413f4 | 2014-02-26 13:36:08 -0600 | [diff] [blame] | 1557 | property_set("ro.crypto.sd_fs_type", CRYPTO_SD_FS_TYPE); |
| 1558 | property_set("ro.crypto.sd_fs_real_blkdev", CRYPTO_SD_REAL_BLKDEV); |
| 1559 | property_set("ro.crypto.sd_fs_mnt_point", EXPAND(TW_INTERNAL_STORAGE_PATH)); |
Dees_Troy | 5bf4392 | 2012-09-07 16:07:55 -0400 | [diff] [blame] | 1560 | #endif |
a3955269 | 6ff55ce | 2013-01-08 16:14:56 +0000 | [diff] [blame] | 1561 | |
Matt Mower | fb1c4ff | 2014-04-16 13:43:36 -0500 | [diff] [blame] | 1562 | property_set("rw.km_fips_status", "ready"); |
a3955269 | 6ff55ce | 2013-01-08 16:14:56 +0000 | [diff] [blame] | 1563 | |
| 1564 | #endif |
| 1565 | |
| 1566 | // some samsung devices store "footer" on efs partition |
| 1567 | TWPartition *efs = Find_Partition_By_Path("/efs"); |
| 1568 | if(efs && !efs->Is_Mounted()) |
| 1569 | efs->Mount(false); |
| 1570 | else |
| 1571 | efs = 0; |
| 1572 | #ifdef TW_EXTERNAL_STORAGE_PATH |
Dees_Troy | 20c02c0 | 2013-01-10 14:14:10 +0000 | [diff] [blame] | 1573 | #ifdef TW_INCLUDE_CRYPTO_SAMSUNG |
a3955269 | 6ff55ce | 2013-01-08 16:14:56 +0000 | [diff] [blame] | 1574 | TWPartition* sdcard = Find_Partition_By_Path(EXPAND(TW_EXTERNAL_STORAGE_PATH)); |
Dees_Troy | 85f44ed | 2013-01-09 18:42:36 +0000 | [diff] [blame] | 1575 | if (sdcard && sdcard->Mount(false)) { |
a3955269 | 6ff55ce | 2013-01-08 16:14:56 +0000 | [diff] [blame] | 1576 | property_set("ro.crypto.external_encrypted", "1"); |
| 1577 | property_set("ro.crypto.external_blkdev", sdcard->Actual_Block_Device.c_str()); |
| 1578 | } else { |
| 1579 | property_set("ro.crypto.external_encrypted", "0"); |
| 1580 | } |
| 1581 | #endif |
Dees_Troy | 20c02c0 | 2013-01-10 14:14:10 +0000 | [diff] [blame] | 1582 | #endif |
a3955269 | 6ff55ce | 2013-01-08 16:14:56 +0000 | [diff] [blame] | 1583 | |
Dees_Troy | 5bf4392 | 2012-09-07 16:07:55 -0400 | [diff] [blame] | 1584 | strcpy(cPassword, Password.c_str()); |
a3955269 | 6ff55ce | 2013-01-08 16:14:56 +0000 | [diff] [blame] | 1585 | int pwret = cryptfs_check_passwd(cPassword); |
| 1586 | |
| 1587 | if (pwret != 0) { |
Dees_Troy | 2673cec | 2013-04-02 20:22:16 +0000 | [diff] [blame] | 1588 | LOGERR("Failed to decrypt data.\n"); |
Dees_Troy | 5bf4392 | 2012-09-07 16:07:55 -0400 | [diff] [blame] | 1589 | return -1; |
| 1590 | } |
a3955269 | 6ff55ce | 2013-01-08 16:14:56 +0000 | [diff] [blame] | 1591 | |
| 1592 | if(efs) |
| 1593 | efs->UnMount(false); |
| 1594 | |
Dees_Troy | 5bf4392 | 2012-09-07 16:07:55 -0400 | [diff] [blame] | 1595 | property_get("ro.crypto.fs_crypto_blkdev", crypto_blkdev, "error"); |
| 1596 | if (strcmp(crypto_blkdev, "error") == 0) { |
Dees_Troy | 2673cec | 2013-04-02 20:22:16 +0000 | [diff] [blame] | 1597 | LOGERR("Error retrieving decrypted data block device.\n"); |
Dees_Troy | 5bf4392 | 2012-09-07 16:07:55 -0400 | [diff] [blame] | 1598 | } else { |
| 1599 | TWPartition* dat = Find_Partition_By_Path("/data"); |
| 1600 | if (dat != NULL) { |
Dees_Troy | 38bd760 | 2012-09-14 13:33:53 -0400 | [diff] [blame] | 1601 | DataManager::SetValue(TW_DATA_BLK_DEVICE, dat->Primary_Block_Device); |
Dees_Troy | 5bf4392 | 2012-09-07 16:07:55 -0400 | [diff] [blame] | 1602 | DataManager::SetValue(TW_IS_DECRYPTED, 1); |
| 1603 | dat->Is_Decrypted = true; |
| 1604 | dat->Decrypted_Block_Device = crypto_blkdev; |
Gary Peck | 82599a8 | 2012-11-21 16:23:12 -0800 | [diff] [blame] | 1605 | dat->Setup_File_System(false); |
Dees_Troy | 74fb2e9 | 2013-04-15 14:35:47 +0000 | [diff] [blame] | 1606 | dat->Current_File_System = dat->Fstab_File_System; // Needed if we're ignoring blkid because encrypted devices start out as emmc |
Dees_Troy | 2673cec | 2013-04-02 20:22:16 +0000 | [diff] [blame] | 1607 | gui_print("Data successfully decrypted, new block device: '%s'\n", crypto_blkdev); |
a3955269 | 6ff55ce | 2013-01-08 16:14:56 +0000 | [diff] [blame] | 1608 | |
| 1609 | #ifdef CRYPTO_SD_FS_TYPE |
| 1610 | char crypto_blkdev_sd[255]; |
| 1611 | property_get("ro.crypto.sd_fs_crypto_blkdev", crypto_blkdev_sd, "error"); |
| 1612 | if (strcmp(crypto_blkdev_sd, "error") == 0) { |
Dees_Troy | 2673cec | 2013-04-02 20:22:16 +0000 | [diff] [blame] | 1613 | LOGERR("Error retrieving decrypted data block device.\n"); |
Dees_Troy | c8bafa1 | 2013-01-10 15:43:00 +0000 | [diff] [blame] | 1614 | } else if(TWPartition* emmc = Find_Partition_By_Path(EXPAND(TW_INTERNAL_STORAGE_PATH))){ |
a3955269 | 6ff55ce | 2013-01-08 16:14:56 +0000 | [diff] [blame] | 1615 | emmc->Is_Decrypted = true; |
| 1616 | emmc->Decrypted_Block_Device = crypto_blkdev_sd; |
| 1617 | emmc->Setup_File_System(false); |
Dees_Troy | 2673cec | 2013-04-02 20:22:16 +0000 | [diff] [blame] | 1618 | gui_print("Internal SD successfully decrypted, new block device: '%s'\n", crypto_blkdev_sd); |
a3955269 | 6ff55ce | 2013-01-08 16:14:56 +0000 | [diff] [blame] | 1619 | } |
a3955269 | 6ff55ce | 2013-01-08 16:14:56 +0000 | [diff] [blame] | 1620 | #endif //ifdef CRYPTO_SD_FS_TYPE |
Dees_Troy | 85f44ed | 2013-01-09 18:42:36 +0000 | [diff] [blame] | 1621 | #ifdef TW_EXTERNAL_STORAGE_PATH |
Dees_Troy | 20c02c0 | 2013-01-10 14:14:10 +0000 | [diff] [blame] | 1622 | #ifdef TW_INCLUDE_CRYPTO_SAMSUNG |
Dees_Troy | 85f44ed | 2013-01-09 18:42:36 +0000 | [diff] [blame] | 1623 | char is_external_decrypted[255]; |
| 1624 | property_get("ro.crypto.external_use_ecryptfs", is_external_decrypted, "0"); |
| 1625 | if (strcmp(is_external_decrypted, "1") == 0) { |
| 1626 | sdcard->Is_Decrypted = true; |
| 1627 | sdcard->EcryptFS_Password = Password; |
| 1628 | sdcard->Decrypted_Block_Device = sdcard->Actual_Block_Device; |
Dees_Troy | 999b39d | 2013-01-14 15:36:13 +0000 | [diff] [blame] | 1629 | string MetaEcfsFile = EXPAND(TW_EXTERNAL_STORAGE_PATH); |
| 1630 | MetaEcfsFile += "/.MetaEcfsFile"; |
| 1631 | if (!TWFunc::Path_Exists(MetaEcfsFile)) { |
| 1632 | // External storage isn't actually encrypted so unmount and remount without ecryptfs |
| 1633 | sdcard->UnMount(false); |
| 1634 | sdcard->Mount(false); |
| 1635 | } |
Dees_Troy | 85f44ed | 2013-01-09 18:42:36 +0000 | [diff] [blame] | 1636 | } else { |
Dees_Troy | 066eb30 | 2013-08-23 17:20:32 +0000 | [diff] [blame] | 1637 | LOGINFO("External storage '%s' is not encrypted.\n", sdcard->Mount_Point.c_str()); |
Dees_Troy | 85f44ed | 2013-01-09 18:42:36 +0000 | [diff] [blame] | 1638 | sdcard->Is_Decrypted = false; |
| 1639 | sdcard->Decrypted_Block_Device = ""; |
| 1640 | } |
Dees_Troy | 20c02c0 | 2013-01-10 14:14:10 +0000 | [diff] [blame] | 1641 | #endif |
Dees_Troy | 85f44ed | 2013-01-09 18:42:36 +0000 | [diff] [blame] | 1642 | #endif //ifdef TW_EXTERNAL_STORAGE_PATH |
a3955269 | 6ff55ce | 2013-01-08 16:14:56 +0000 | [diff] [blame] | 1643 | |
Dees_Troy | 5bf4392 | 2012-09-07 16:07:55 -0400 | [diff] [blame] | 1644 | // Sleep for a bit so that the device will be ready |
| 1645 | sleep(1); |
Dees_Troy | 16b7435 | 2012-11-14 22:27:31 +0000 | [diff] [blame] | 1646 | #ifdef RECOVERY_SDCARD_ON_DATA |
| 1647 | if (dat->Mount(false) && TWFunc::Path_Exists("/data/media/0")) { |
| 1648 | dat->Storage_Path = "/data/media/0"; |
| 1649 | dat->Symlink_Path = dat->Storage_Path; |
Dees Troy | 98fb46c | 2013-12-04 16:56:45 +0000 | [diff] [blame] | 1650 | DataManager::SetValue("tw_storage_path", "/data/media/0"); |
Dees_Troy | 16b7435 | 2012-11-14 22:27:31 +0000 | [diff] [blame] | 1651 | dat->UnMount(false); |
Dees_Troy | dc8bc1b | 2013-01-17 01:39:28 +0000 | [diff] [blame] | 1652 | Output_Partition(dat); |
Dees_Troy | 16b7435 | 2012-11-14 22:27:31 +0000 | [diff] [blame] | 1653 | } |
| 1654 | #endif |
Dees_Troy | 5bf4392 | 2012-09-07 16:07:55 -0400 | [diff] [blame] | 1655 | Update_System_Details(); |
Dees_Troy | d0384ef | 2012-10-12 12:15:42 -0400 | [diff] [blame] | 1656 | UnMount_Main_Partitions(); |
Dees_Troy | 5bf4392 | 2012-09-07 16:07:55 -0400 | [diff] [blame] | 1657 | } else |
Dees_Troy | 2673cec | 2013-04-02 20:22:16 +0000 | [diff] [blame] | 1658 | LOGERR("Unable to locate data partition.\n"); |
Dees_Troy | 5bf4392 | 2012-09-07 16:07:55 -0400 | [diff] [blame] | 1659 | } |
| 1660 | return 0; |
| 1661 | #else |
Dees_Troy | 2673cec | 2013-04-02 20:22:16 +0000 | [diff] [blame] | 1662 | LOGERR("No crypto support was compiled into this build.\n"); |
Dees_Troy | 5bf4392 | 2012-09-07 16:07:55 -0400 | [diff] [blame] | 1663 | return -1; |
| 1664 | #endif |
Dees_Troy | 51a0e82 | 2012-09-05 15:24:24 -0400 | [diff] [blame] | 1665 | return 1; |
Dees_Troy | 5112731 | 2012-09-08 13:08:49 -0400 | [diff] [blame] | 1666 | } |
| 1667 | |
bigbiff bigbiff | a0f8a59 | 2012-10-09 21:01:03 -0400 | [diff] [blame] | 1668 | int TWPartitionManager::Fix_Permissions(void) { |
| 1669 | int result = 0; |
| 1670 | if (!Mount_By_Path("/data", true)) |
| 1671 | return false; |
| 1672 | |
| 1673 | if (!Mount_By_Path("/system", true)) |
| 1674 | return false; |
| 1675 | |
| 1676 | Mount_By_Path("/sd-ext", false); |
| 1677 | |
| 1678 | fixPermissions perms; |
| 1679 | result = perms.fixPerms(true, false); |
Dees_Troy | 1a650e6 | 2012-10-19 20:54:32 -0400 | [diff] [blame] | 1680 | UnMount_Main_Partitions(); |
Dees_Troy | 2673cec | 2013-04-02 20:22:16 +0000 | [diff] [blame] | 1681 | gui_print("Done.\n\n"); |
bigbiff bigbiff | a0f8a59 | 2012-10-09 21:01:03 -0400 | [diff] [blame] | 1682 | return result; |
| 1683 | } |
| 1684 | |
Ethan Yonker | 47360be | 2014-04-01 10:34:34 -0500 | [diff] [blame] | 1685 | TWPartition* TWPartitionManager::Find_Next_Storage(string Path, string Exclude) { |
| 1686 | std::vector<TWPartition*>::iterator iter = Partitions.begin(); |
| 1687 | |
| 1688 | if (!Path.empty()) { |
| 1689 | string Search_Path = TWFunc::Get_Root_Path(Path); |
| 1690 | for (; iter != Partitions.end(); iter++) { |
| 1691 | if ((*iter)->Mount_Point == Search_Path) { |
| 1692 | iter++; |
| 1693 | break; |
| 1694 | } |
| 1695 | } |
| 1696 | } |
| 1697 | |
| 1698 | for (; iter != Partitions.end(); iter++) { |
| 1699 | if ((*iter)->Is_Storage && (*iter)->Is_Present && (*iter)->Mount_Point != Exclude) { |
| 1700 | return (*iter); |
| 1701 | } |
| 1702 | } |
| 1703 | |
| 1704 | return NULL; |
| 1705 | } |
| 1706 | |
Dees_Troy | d21618c | 2012-10-14 18:48:49 -0400 | [diff] [blame] | 1707 | int TWPartitionManager::Open_Lun_File(string Partition_Path, string Lun_File) { |
Dees_Troy | d21618c | 2012-10-14 18:48:49 -0400 | [diff] [blame] | 1708 | TWPartition* Part = Find_Partition_By_Path(Partition_Path); |
| 1709 | |
| 1710 | if (Part == NULL) { |
Ethan Yonker | 47360be | 2014-04-01 10:34:34 -0500 | [diff] [blame] | 1711 | LOGERR("Unable to locate '%s' for USB storage mode.", Partition_Path.c_str()); |
Dees_Troy | d21618c | 2012-10-14 18:48:49 -0400 | [diff] [blame] | 1712 | return false; |
| 1713 | } |
Ethan Yonker | 47360be | 2014-04-01 10:34:34 -0500 | [diff] [blame] | 1714 | LOGINFO("USB mount '%s', '%s' > '%s'\n", Partition_Path.c_str(), Part->Actual_Block_Device.c_str(), Lun_File.c_str()); |
| 1715 | if (!Part->UnMount(true) || !Part->Is_Present) |
Dees_Troy | d21618c | 2012-10-14 18:48:49 -0400 | [diff] [blame] | 1716 | return false; |
| 1717 | |
Dees_Troy | 2673cec | 2013-04-02 20:22:16 +0000 | [diff] [blame] | 1718 | if (TWFunc::write_file(Lun_File, Part->Actual_Block_Device)) { |
| 1719 | LOGERR("Unable to write to ums lunfile '%s': (%s)\n", Lun_File.c_str(), strerror(errno)); |
Dees_Troy | d21618c | 2012-10-14 18:48:49 -0400 | [diff] [blame] | 1720 | return false; |
| 1721 | } |
Dees_Troy | d21618c | 2012-10-14 18:48:49 -0400 | [diff] [blame] | 1722 | return true; |
| 1723 | } |
| 1724 | |
Dees_Troy | 8170a92 | 2012-09-18 15:40:25 -0400 | [diff] [blame] | 1725 | int TWPartitionManager::usb_storage_enable(void) { |
Dees_Troy | d21618c | 2012-10-14 18:48:49 -0400 | [diff] [blame] | 1726 | int has_dual, has_data_media; |
Dees_Troy | 8170a92 | 2012-09-18 15:40:25 -0400 | [diff] [blame] | 1727 | char lun_file[255]; |
Dees_Troy | d21618c | 2012-10-14 18:48:49 -0400 | [diff] [blame] | 1728 | bool has_multiple_lun = false; |
Dees_Troy | 8170a92 | 2012-09-18 15:40:25 -0400 | [diff] [blame] | 1729 | |
Dees_Troy | 8170a92 | 2012-09-18 15:40:25 -0400 | [diff] [blame] | 1730 | DataManager::GetValue(TW_HAS_DATA_MEDIA, has_data_media); |
Ethan Yonker | 47360be | 2014-04-01 10:34:34 -0500 | [diff] [blame] | 1731 | string Lun_File_str = CUSTOM_LUN_FILE; |
| 1732 | size_t found = Lun_File_str.find("%"); |
| 1733 | if (found != string::npos) { |
| 1734 | sprintf(lun_file, CUSTOM_LUN_FILE, 1); |
| 1735 | if (TWFunc::Path_Exists(lun_file)) |
| 1736 | has_multiple_lun = true; |
| 1737 | } |
| 1738 | if (!has_multiple_lun) { |
| 1739 | LOGINFO("Device doesn't have multiple lun files, mount current storage\n"); |
| 1740 | sprintf(lun_file, CUSTOM_LUN_FILE, 0); |
| 1741 | if (TWFunc::Get_Root_Path(DataManager::GetCurrentStoragePath()) == "/data") { |
| 1742 | TWPartition* Mount = Find_Next_Storage("", "/data"); |
| 1743 | if (Mount) { |
| 1744 | if (!Open_Lun_File(Mount->Mount_Point, lun_file)) |
| 1745 | return false; |
| 1746 | } else { |
| 1747 | LOGERR("Unable to find storage partition to mount to USB\n"); |
Dees_Troy | f4ca612 | 2012-10-13 22:17:20 -0400 | [diff] [blame] | 1748 | return false; |
Ethan Yonker | 47360be | 2014-04-01 10:34:34 -0500 | [diff] [blame] | 1749 | } |
| 1750 | } else if (!Open_Lun_File(DataManager::GetCurrentStoragePath(), lun_file)) { |
| 1751 | return false; |
Dees_Troy | 8170a92 | 2012-09-18 15:40:25 -0400 | [diff] [blame] | 1752 | } |
Dees_Troy | 8170a92 | 2012-09-18 15:40:25 -0400 | [diff] [blame] | 1753 | } else { |
Ethan Yonker | 47360be | 2014-04-01 10:34:34 -0500 | [diff] [blame] | 1754 | LOGINFO("Device has multiple lun files\n"); |
| 1755 | TWPartition* Mount1; |
| 1756 | TWPartition* Mount2; |
Dees_Troy | 8170a92 | 2012-09-18 15:40:25 -0400 | [diff] [blame] | 1757 | sprintf(lun_file, CUSTOM_LUN_FILE, 0); |
Ethan Yonker | 47360be | 2014-04-01 10:34:34 -0500 | [diff] [blame] | 1758 | Mount1 = Find_Next_Storage("", "/data"); |
| 1759 | if (Mount1) { |
| 1760 | if (!Open_Lun_File(Mount1->Mount_Point, lun_file)) |
| 1761 | return false; |
Matt Mower | ee71706 | 2014-04-26 01:46:46 -0500 | [diff] [blame] | 1762 | sprintf(lun_file, CUSTOM_LUN_FILE, 1); |
Ethan Yonker | 47360be | 2014-04-01 10:34:34 -0500 | [diff] [blame] | 1763 | Mount2 = Find_Next_Storage(Mount1->Mount_Point, "/data"); |
| 1764 | if (Mount2) { |
Matt Mower | ee71706 | 2014-04-26 01:46:46 -0500 | [diff] [blame] | 1765 | Open_Lun_File(Mount2->Mount_Point, lun_file); |
Ethan Yonker | 47360be | 2014-04-01 10:34:34 -0500 | [diff] [blame] | 1766 | } |
| 1767 | } else { |
| 1768 | LOGERR("Unable to find storage partition to mount to USB\n"); |
| 1769 | return false; |
| 1770 | } |
Dees_Troy | 8170a92 | 2012-09-18 15:40:25 -0400 | [diff] [blame] | 1771 | } |
Ethan Yonker | 47360be | 2014-04-01 10:34:34 -0500 | [diff] [blame] | 1772 | property_set("sys.storage.ums_enabled", "1"); |
Dees_Troy | 8170a92 | 2012-09-18 15:40:25 -0400 | [diff] [blame] | 1773 | return true; |
| 1774 | } |
| 1775 | |
| 1776 | int TWPartitionManager::usb_storage_disable(void) { |
Dees_Troy | 2673cec | 2013-04-02 20:22:16 +0000 | [diff] [blame] | 1777 | int index, ret; |
| 1778 | char lun_file[255], ch[2] = {0, 0}; |
| 1779 | string str = ch; |
Dees_Troy | 8170a92 | 2012-09-18 15:40:25 -0400 | [diff] [blame] | 1780 | |
| 1781 | for (index=0; index<2; index++) { |
| 1782 | sprintf(lun_file, CUSTOM_LUN_FILE, index); |
Dees_Troy | 2673cec | 2013-04-02 20:22:16 +0000 | [diff] [blame] | 1783 | ret = TWFunc::write_file(lun_file, str); |
Dees_Troy | 2673cec | 2013-04-02 20:22:16 +0000 | [diff] [blame] | 1784 | if (ret < 0) { |
| 1785 | break; |
Dees_Troy | 8170a92 | 2012-09-18 15:40:25 -0400 | [diff] [blame] | 1786 | } |
Dees_Troy | 8170a92 | 2012-09-18 15:40:25 -0400 | [diff] [blame] | 1787 | } |
Dees_Troy | e58d526 | 2012-09-21 12:27:57 -0400 | [diff] [blame] | 1788 | Mount_All_Storage(); |
| 1789 | Update_System_Details(); |
Dees_Troy | cfd73ef | 2012-10-12 16:52:00 -0400 | [diff] [blame] | 1790 | UnMount_Main_Partitions(); |
Matt Mower | d9cb906 | 2013-12-14 20:34:45 -0600 | [diff] [blame] | 1791 | property_set("sys.storage.ums_enabled", "0"); |
Dees_Troy | 2673cec | 2013-04-02 20:22:16 +0000 | [diff] [blame] | 1792 | if (ret < 0 && index == 0) { |
| 1793 | LOGERR("Unable to write to ums lunfile '%s'.", lun_file); |
| 1794 | return false; |
| 1795 | } else { |
| 1796 | return true; |
| 1797 | } |
Dees_Troy | 8170a92 | 2012-09-18 15:40:25 -0400 | [diff] [blame] | 1798 | return true; |
Dees_Troy | 812660f | 2012-09-20 09:55:17 -0400 | [diff] [blame] | 1799 | } |
| 1800 | |
| 1801 | void TWPartitionManager::Mount_All_Storage(void) { |
| 1802 | std::vector<TWPartition*>::iterator iter; |
| 1803 | |
| 1804 | for (iter = Partitions.begin(); iter != Partitions.end(); iter++) { |
| 1805 | if ((*iter)->Is_Storage) |
| 1806 | (*iter)->Mount(false); |
| 1807 | } |
Dees_Troy | 2c50e18 | 2012-09-26 20:05:28 -0400 | [diff] [blame] | 1808 | } |
Dees_Troy | 9350b8d | 2012-09-27 12:38:38 -0400 | [diff] [blame] | 1809 | |
Dees_Troy | d0384ef | 2012-10-12 12:15:42 -0400 | [diff] [blame] | 1810 | void TWPartitionManager::UnMount_Main_Partitions(void) { |
| 1811 | // Unmounts system and data if data is not data/media |
| 1812 | // Also unmounts boot if boot is mountable |
Dees_Troy | 2673cec | 2013-04-02 20:22:16 +0000 | [diff] [blame] | 1813 | LOGINFO("Unmounting main partitions...\n"); |
Dees_Troy | d0384ef | 2012-10-12 12:15:42 -0400 | [diff] [blame] | 1814 | |
| 1815 | TWPartition* Boot_Partition = Find_Partition_By_Path("/boot"); |
| 1816 | |
| 1817 | UnMount_By_Path("/system", true); |
| 1818 | #ifndef RECOVERY_SDCARD_ON_DATA |
| 1819 | UnMount_By_Path("/data", true); |
| 1820 | #endif |
| 1821 | if (Boot_Partition != NULL && Boot_Partition->Can_Be_Mounted) |
| 1822 | Boot_Partition->UnMount(true); |
| 1823 | } |
| 1824 | |
Dees_Troy | 9350b8d | 2012-09-27 12:38:38 -0400 | [diff] [blame] | 1825 | int TWPartitionManager::Partition_SDCard(void) { |
| 1826 | char mkdir_path[255], temp[255], line[512]; |
| 1827 | string Command, Device, fat_str, ext_str, swap_str, start_loc, end_loc, ext_format, sd_path, tmpdevice; |
| 1828 | int ext, swap, total_size = 0, fat_size; |
| 1829 | FILE* fp; |
| 1830 | |
Dees_Troy | 2673cec | 2013-04-02 20:22:16 +0000 | [diff] [blame] | 1831 | gui_print("Partitioning SD Card...\n"); |
Dees_Troy | 9350b8d | 2012-09-27 12:38:38 -0400 | [diff] [blame] | 1832 | #ifdef TW_EXTERNAL_STORAGE_PATH |
| 1833 | TWPartition* SDCard = Find_Partition_By_Path(EXPAND(TW_EXTERNAL_STORAGE_PATH)); |
| 1834 | #else |
| 1835 | TWPartition* SDCard = Find_Partition_By_Path("/sdcard"); |
| 1836 | #endif |
| 1837 | if (SDCard == NULL) { |
Dees_Troy | 2673cec | 2013-04-02 20:22:16 +0000 | [diff] [blame] | 1838 | LOGERR("Unable to locate device to partition.\n"); |
Dees_Troy | 9350b8d | 2012-09-27 12:38:38 -0400 | [diff] [blame] | 1839 | return false; |
| 1840 | } |
| 1841 | if (!SDCard->UnMount(true)) |
| 1842 | return false; |
| 1843 | TWPartition* SDext = Find_Partition_By_Path("/sd-ext"); |
| 1844 | if (SDext != NULL) { |
| 1845 | if (!SDext->UnMount(true)) |
| 1846 | return false; |
| 1847 | } |
Vojtech Bocek | 0553420 | 2013-09-11 08:11:56 +0200 | [diff] [blame] | 1848 | |
| 1849 | TWFunc::Exec_Cmd("umount \"$SWAPPATH\""); |
Dees_Troy | 9350b8d | 2012-09-27 12:38:38 -0400 | [diff] [blame] | 1850 | Device = SDCard->Actual_Block_Device; |
| 1851 | // Just use the root block device |
| 1852 | Device.resize(strlen("/dev/block/mmcblkX")); |
| 1853 | |
| 1854 | // Find the size of the block device: |
| 1855 | fp = fopen("/proc/partitions", "rt"); |
| 1856 | if (fp == NULL) { |
Dees_Troy | 2673cec | 2013-04-02 20:22:16 +0000 | [diff] [blame] | 1857 | LOGERR("Unable to open /proc/partitions\n"); |
Dees_Troy | 9350b8d | 2012-09-27 12:38:38 -0400 | [diff] [blame] | 1858 | return false; |
| 1859 | } |
| 1860 | |
| 1861 | while (fgets(line, sizeof(line), fp) != NULL) |
| 1862 | { |
| 1863 | unsigned long major, minor, blocks; |
| 1864 | char device[512]; |
| 1865 | char tmpString[64]; |
| 1866 | |
| 1867 | if (strlen(line) < 7 || line[0] == 'm') continue; |
| 1868 | sscanf(line + 1, "%lu %lu %lu %s", &major, &minor, &blocks, device); |
| 1869 | |
| 1870 | tmpdevice = "/dev/block/"; |
| 1871 | tmpdevice += device; |
| 1872 | if (tmpdevice == Device) { |
| 1873 | // Adjust block size to byte size |
Matt Mower | fb1c4ff | 2014-04-16 13:43:36 -0500 | [diff] [blame] | 1874 | total_size = (int)(blocks * 1024ULL / 1000000LLU); |
Dees_Troy | 9350b8d | 2012-09-27 12:38:38 -0400 | [diff] [blame] | 1875 | break; |
| 1876 | } |
| 1877 | } |
| 1878 | fclose(fp); |
| 1879 | |
| 1880 | DataManager::GetValue("tw_sdext_size", ext); |
| 1881 | DataManager::GetValue("tw_swap_size", swap); |
| 1882 | DataManager::GetValue("tw_sdpart_file_system", ext_format); |
| 1883 | fat_size = total_size - ext - swap; |
Dees_Troy | 2673cec | 2013-04-02 20:22:16 +0000 | [diff] [blame] | 1884 | LOGINFO("sd card block device is '%s', sdcard size is: %iMB, fat size: %iMB, ext size: %iMB, ext system: '%s', swap size: %iMB\n", Device.c_str(), total_size, fat_size, ext, ext_format.c_str(), swap); |
Dees_Troy | 9350b8d | 2012-09-27 12:38:38 -0400 | [diff] [blame] | 1885 | memset(temp, 0, sizeof(temp)); |
| 1886 | sprintf(temp, "%i", fat_size); |
| 1887 | fat_str = temp; |
| 1888 | memset(temp, 0, sizeof(temp)); |
| 1889 | sprintf(temp, "%i", fat_size + ext); |
| 1890 | ext_str = temp; |
| 1891 | memset(temp, 0, sizeof(temp)); |
| 1892 | sprintf(temp, "%i", fat_size + ext + swap); |
| 1893 | swap_str = temp; |
| 1894 | if (ext + swap > total_size) { |
Dees_Troy | 2673cec | 2013-04-02 20:22:16 +0000 | [diff] [blame] | 1895 | LOGERR("EXT + Swap size is larger than sdcard size.\n"); |
Dees_Troy | 9350b8d | 2012-09-27 12:38:38 -0400 | [diff] [blame] | 1896 | return false; |
| 1897 | } |
Dees_Troy | 2673cec | 2013-04-02 20:22:16 +0000 | [diff] [blame] | 1898 | gui_print("Removing partition table...\n"); |
Dees_Troy | 9350b8d | 2012-09-27 12:38:38 -0400 | [diff] [blame] | 1899 | Command = "parted -s " + Device + " mklabel msdos"; |
Dees_Troy | 2673cec | 2013-04-02 20:22:16 +0000 | [diff] [blame] | 1900 | LOGINFO("Command is: '%s'\n", Command.c_str()); |
Vojtech Bocek | 0553420 | 2013-09-11 08:11:56 +0200 | [diff] [blame] | 1901 | if (TWFunc::Exec_Cmd(Command) != 0) { |
Dees_Troy | 2673cec | 2013-04-02 20:22:16 +0000 | [diff] [blame] | 1902 | LOGERR("Unable to remove partition table.\n"); |
Dees_Troy | 9350b8d | 2012-09-27 12:38:38 -0400 | [diff] [blame] | 1903 | Update_System_Details(); |
| 1904 | return false; |
| 1905 | } |
Dees_Troy | 2673cec | 2013-04-02 20:22:16 +0000 | [diff] [blame] | 1906 | gui_print("Creating FAT32 partition...\n"); |
Dees_Troy | 9350b8d | 2012-09-27 12:38:38 -0400 | [diff] [blame] | 1907 | Command = "parted " + Device + " mkpartfs primary fat32 0 " + fat_str + "MB"; |
Dees_Troy | 2673cec | 2013-04-02 20:22:16 +0000 | [diff] [blame] | 1908 | LOGINFO("Command is: '%s'\n", Command.c_str()); |
Vojtech Bocek | 0553420 | 2013-09-11 08:11:56 +0200 | [diff] [blame] | 1909 | if (TWFunc::Exec_Cmd(Command) != 0) { |
Dees_Troy | 2673cec | 2013-04-02 20:22:16 +0000 | [diff] [blame] | 1910 | LOGERR("Unable to create FAT32 partition.\n"); |
Dees_Troy | 9350b8d | 2012-09-27 12:38:38 -0400 | [diff] [blame] | 1911 | return false; |
| 1912 | } |
| 1913 | if (ext > 0) { |
Dees_Troy | 2673cec | 2013-04-02 20:22:16 +0000 | [diff] [blame] | 1914 | gui_print("Creating EXT partition...\n"); |
Dees_Troy | 9350b8d | 2012-09-27 12:38:38 -0400 | [diff] [blame] | 1915 | Command = "parted " + Device + " mkpartfs primary ext2 " + fat_str + "MB " + ext_str + "MB"; |
Dees_Troy | 2673cec | 2013-04-02 20:22:16 +0000 | [diff] [blame] | 1916 | LOGINFO("Command is: '%s'\n", Command.c_str()); |
Vojtech Bocek | 0553420 | 2013-09-11 08:11:56 +0200 | [diff] [blame] | 1917 | if (TWFunc::Exec_Cmd(Command) != 0) { |
Dees_Troy | 2673cec | 2013-04-02 20:22:16 +0000 | [diff] [blame] | 1918 | LOGERR("Unable to create EXT partition.\n"); |
Dees_Troy | 9350b8d | 2012-09-27 12:38:38 -0400 | [diff] [blame] | 1919 | Update_System_Details(); |
| 1920 | return false; |
| 1921 | } |
| 1922 | } |
| 1923 | if (swap > 0) { |
Dees_Troy | 2673cec | 2013-04-02 20:22:16 +0000 | [diff] [blame] | 1924 | gui_print("Creating swap partition...\n"); |
Dees_Troy | 9350b8d | 2012-09-27 12:38:38 -0400 | [diff] [blame] | 1925 | Command = "parted " + Device + " mkpartfs primary linux-swap " + ext_str + "MB " + swap_str + "MB"; |
Dees_Troy | 2673cec | 2013-04-02 20:22:16 +0000 | [diff] [blame] | 1926 | LOGINFO("Command is: '%s'\n", Command.c_str()); |
Vojtech Bocek | 0553420 | 2013-09-11 08:11:56 +0200 | [diff] [blame] | 1927 | if (TWFunc::Exec_Cmd(Command) != 0) { |
Dees_Troy | 2673cec | 2013-04-02 20:22:16 +0000 | [diff] [blame] | 1928 | LOGERR("Unable to create swap partition.\n"); |
Dees_Troy | 9350b8d | 2012-09-27 12:38:38 -0400 | [diff] [blame] | 1929 | Update_System_Details(); |
| 1930 | return false; |
| 1931 | } |
| 1932 | } |
| 1933 | // recreate TWRP folder and rewrite settings - these will be gone after sdcard is partitioned |
| 1934 | #ifdef TW_EXTERNAL_STORAGE_PATH |
| 1935 | Mount_By_Path(EXPAND(TW_EXTERNAL_STORAGE_PATH), 1); |
| 1936 | DataManager::GetValue(TW_EXTERNAL_PATH, sd_path); |
| 1937 | memset(mkdir_path, 0, sizeof(mkdir_path)); |
| 1938 | sprintf(mkdir_path, "%s/TWRP", sd_path.c_str()); |
| 1939 | #else |
| 1940 | Mount_By_Path("/sdcard", 1); |
| 1941 | strcpy(mkdir_path, "/sdcard/TWRP"); |
| 1942 | #endif |
| 1943 | mkdir(mkdir_path, 0777); |
| 1944 | DataManager::Flush(); |
| 1945 | #ifdef TW_EXTERNAL_STORAGE_PATH |
| 1946 | DataManager::SetValue(TW_ZIP_EXTERNAL_VAR, EXPAND(TW_EXTERNAL_STORAGE_PATH)); |
| 1947 | if (DataManager::GetIntValue(TW_USE_EXTERNAL_STORAGE) == 1) |
| 1948 | DataManager::SetValue(TW_ZIP_LOCATION_VAR, EXPAND(TW_EXTERNAL_STORAGE_PATH)); |
| 1949 | #else |
| 1950 | DataManager::SetValue(TW_ZIP_EXTERNAL_VAR, "/sdcard"); |
| 1951 | if (DataManager::GetIntValue(TW_USE_EXTERNAL_STORAGE) == 1) |
| 1952 | DataManager::SetValue(TW_ZIP_LOCATION_VAR, "/sdcard"); |
| 1953 | #endif |
| 1954 | if (ext > 0) { |
| 1955 | if (SDext == NULL) { |
Dees_Troy | 2673cec | 2013-04-02 20:22:16 +0000 | [diff] [blame] | 1956 | LOGERR("Unable to locate sd-ext partition.\n"); |
Dees_Troy | 9350b8d | 2012-09-27 12:38:38 -0400 | [diff] [blame] | 1957 | return false; |
| 1958 | } |
| 1959 | Command = "mke2fs -t " + ext_format + " -m 0 " + SDext->Actual_Block_Device; |
Dees_Troy | 2673cec | 2013-04-02 20:22:16 +0000 | [diff] [blame] | 1960 | gui_print("Formatting sd-ext as %s...\n", ext_format.c_str()); |
| 1961 | LOGINFO("Formatting sd-ext after partitioning, command: '%s'\n", Command.c_str()); |
Vojtech Bocek | 0553420 | 2013-09-11 08:11:56 +0200 | [diff] [blame] | 1962 | TWFunc::Exec_Cmd(Command); |
Dees_Troy | 9350b8d | 2012-09-27 12:38:38 -0400 | [diff] [blame] | 1963 | } |
| 1964 | |
| 1965 | Update_System_Details(); |
Dees_Troy | 2673cec | 2013-04-02 20:22:16 +0000 | [diff] [blame] | 1966 | gui_print("Partitioning complete.\n"); |
Dees_Troy | 9350b8d | 2012-09-27 12:38:38 -0400 | [diff] [blame] | 1967 | return true; |
bigbiff bigbiff | a0f8a59 | 2012-10-09 21:01:03 -0400 | [diff] [blame] | 1968 | } |
Dees_Troy | a13d74f | 2013-03-24 08:54:55 -0500 | [diff] [blame] | 1969 | |
| 1970 | void TWPartitionManager::Get_Partition_List(string ListType, std::vector<PartitionList> *Partition_List) { |
| 1971 | std::vector<TWPartition*>::iterator iter; |
| 1972 | if (ListType == "mount") { |
| 1973 | for (iter = Partitions.begin(); iter != Partitions.end(); iter++) { |
| 1974 | if ((*iter)->Can_Be_Mounted && !(*iter)->Is_SubPartition) { |
| 1975 | struct PartitionList part; |
| 1976 | part.Display_Name = (*iter)->Display_Name; |
| 1977 | part.Mount_Point = (*iter)->Mount_Point; |
| 1978 | part.selected = (*iter)->Is_Mounted(); |
| 1979 | Partition_List->push_back(part); |
| 1980 | } |
| 1981 | } |
| 1982 | } else if (ListType == "storage") { |
| 1983 | char free_space[255]; |
| 1984 | string Current_Storage = DataManager::GetCurrentStoragePath(); |
| 1985 | for (iter = Partitions.begin(); iter != Partitions.end(); iter++) { |
| 1986 | if ((*iter)->Is_Storage) { |
| 1987 | struct PartitionList part; |
| 1988 | sprintf(free_space, "%llu", (*iter)->Free / 1024 / 1024); |
| 1989 | part.Display_Name = (*iter)->Storage_Name + " ("; |
| 1990 | part.Display_Name += free_space; |
| 1991 | part.Display_Name += "MB)"; |
| 1992 | part.Mount_Point = (*iter)->Storage_Path; |
| 1993 | if ((*iter)->Storage_Path == Current_Storage) |
| 1994 | part.selected = 1; |
| 1995 | else |
| 1996 | part.selected = 0; |
| 1997 | Partition_List->push_back(part); |
| 1998 | } |
| 1999 | } |
| 2000 | } else if (ListType == "backup") { |
| 2001 | char backup_size[255]; |
Dees_Troy | 9e0b71c | 2013-04-08 13:35:37 +0000 | [diff] [blame] | 2002 | unsigned long long Backup_Size; |
Dees_Troy | a13d74f | 2013-03-24 08:54:55 -0500 | [diff] [blame] | 2003 | for (iter = Partitions.begin(); iter != Partitions.end(); iter++) { |
Dees_Troy | 9e0b71c | 2013-04-08 13:35:37 +0000 | [diff] [blame] | 2004 | if ((*iter)->Can_Be_Backed_Up && !(*iter)->Is_SubPartition && (*iter)->Is_Present) { |
Dees_Troy | a13d74f | 2013-03-24 08:54:55 -0500 | [diff] [blame] | 2005 | struct PartitionList part; |
Dees_Troy | 9e0b71c | 2013-04-08 13:35:37 +0000 | [diff] [blame] | 2006 | Backup_Size = (*iter)->Backup_Size; |
| 2007 | if ((*iter)->Has_SubPartition) { |
| 2008 | std::vector<TWPartition*>::iterator subpart; |
| 2009 | |
| 2010 | for (subpart = Partitions.begin(); subpart != Partitions.end(); subpart++) { |
| 2011 | if ((*subpart)->Is_SubPartition && (*subpart)->Can_Be_Backed_Up && (*subpart)->Is_Present && (*subpart)->SubPartition_Of == (*iter)->Mount_Point) |
| 2012 | Backup_Size += (*subpart)->Backup_Size; |
| 2013 | } |
| 2014 | } |
| 2015 | sprintf(backup_size, "%llu", Backup_Size / 1024 / 1024); |
Dees_Troy | a13d74f | 2013-03-24 08:54:55 -0500 | [diff] [blame] | 2016 | part.Display_Name = (*iter)->Backup_Display_Name + " ("; |
| 2017 | part.Display_Name += backup_size; |
| 2018 | part.Display_Name += "MB)"; |
| 2019 | part.Mount_Point = (*iter)->Backup_Path; |
| 2020 | part.selected = 0; |
| 2021 | Partition_List->push_back(part); |
| 2022 | } |
| 2023 | } |
| 2024 | } else if (ListType == "restore") { |
| 2025 | string Restore_List, restore_path; |
| 2026 | TWPartition* restore_part = NULL; |
| 2027 | |
| 2028 | DataManager::GetValue("tw_restore_list", Restore_List); |
| 2029 | if (!Restore_List.empty()) { |
| 2030 | size_t start_pos = 0, end_pos = Restore_List.find(";", start_pos); |
| 2031 | while (end_pos != string::npos && start_pos < Restore_List.size()) { |
| 2032 | restore_path = Restore_List.substr(start_pos, end_pos - start_pos); |
Dees_Troy | 59df926 | 2013-06-19 14:53:57 -0500 | [diff] [blame] | 2033 | if ((restore_part = Find_Partition_By_Path(restore_path)) != NULL) { |
Dees Troy | 4159aed | 2014-02-28 17:24:43 +0000 | [diff] [blame] | 2034 | if ((restore_part->Backup_Name == "recovery" && !restore_part->Can_Be_Backed_Up) || restore_part->Is_SubPartition) { |
Dees_Troy | a13d74f | 2013-03-24 08:54:55 -0500 | [diff] [blame] | 2035 | // Don't allow restore of recovery (causes problems on some devices) |
Dees_Troy | 59df926 | 2013-06-19 14:53:57 -0500 | [diff] [blame] | 2036 | // Don't add subpartitions to the list of items |
Dees_Troy | a13d74f | 2013-03-24 08:54:55 -0500 | [diff] [blame] | 2037 | } else { |
| 2038 | struct PartitionList part; |
| 2039 | part.Display_Name = restore_part->Backup_Display_Name; |
| 2040 | part.Mount_Point = restore_part->Backup_Path; |
| 2041 | part.selected = 1; |
| 2042 | Partition_List->push_back(part); |
| 2043 | } |
| 2044 | } else { |
Dees_Troy | 2673cec | 2013-04-02 20:22:16 +0000 | [diff] [blame] | 2045 | LOGERR("Unable to locate '%s' partition for restore.\n", restore_path.c_str()); |
Dees_Troy | a13d74f | 2013-03-24 08:54:55 -0500 | [diff] [blame] | 2046 | } |
| 2047 | start_pos = end_pos + 1; |
| 2048 | end_pos = Restore_List.find(";", start_pos); |
| 2049 | } |
| 2050 | } |
| 2051 | } else if (ListType == "wipe") { |
| 2052 | struct PartitionList dalvik; |
| 2053 | dalvik.Display_Name = "Dalvik Cache"; |
| 2054 | dalvik.Mount_Point = "DALVIK"; |
| 2055 | dalvik.selected = 0; |
| 2056 | Partition_List->push_back(dalvik); |
| 2057 | for (iter = Partitions.begin(); iter != Partitions.end(); iter++) { |
| 2058 | if ((*iter)->Wipe_Available_in_GUI && !(*iter)->Is_SubPartition) { |
| 2059 | struct PartitionList part; |
| 2060 | part.Display_Name = (*iter)->Display_Name; |
| 2061 | part.Mount_Point = (*iter)->Mount_Point; |
| 2062 | part.selected = 0; |
| 2063 | Partition_List->push_back(part); |
| 2064 | } |
| 2065 | if ((*iter)->Has_Android_Secure) { |
| 2066 | struct PartitionList part; |
| 2067 | part.Display_Name = (*iter)->Backup_Display_Name; |
| 2068 | part.Mount_Point = (*iter)->Backup_Path; |
| 2069 | part.selected = 0; |
| 2070 | Partition_List->push_back(part); |
| 2071 | } |
Dees_Troy | 74fb2e9 | 2013-04-15 14:35:47 +0000 | [diff] [blame] | 2072 | if ((*iter)->Has_Data_Media) { |
| 2073 | struct PartitionList datamedia; |
| 2074 | datamedia.Display_Name = (*iter)->Storage_Name; |
| 2075 | datamedia.Mount_Point = "INTERNAL"; |
| 2076 | datamedia.selected = 0; |
| 2077 | Partition_List->push_back(datamedia); |
| 2078 | } |
Dees_Troy | a13d74f | 2013-03-24 08:54:55 -0500 | [diff] [blame] | 2079 | } |
| 2080 | } else { |
Dees_Troy | 2673cec | 2013-04-02 20:22:16 +0000 | [diff] [blame] | 2081 | LOGERR("Unknown list type '%s' requested for TWPartitionManager::Get_Partition_List\n", ListType.c_str()); |
Dees_Troy | a13d74f | 2013-03-24 08:54:55 -0500 | [diff] [blame] | 2082 | } |
| 2083 | } |
| 2084 | |
| 2085 | int TWPartitionManager::Fstab_Processed(void) { |
| 2086 | return Partitions.size(); |
| 2087 | } |
Dees_Troy | d93bda5 | 2013-07-03 19:55:19 +0000 | [diff] [blame] | 2088 | |
| 2089 | void TWPartitionManager::Output_Storage_Fstab(void) { |
| 2090 | std::vector<TWPartition*>::iterator iter; |
| 2091 | char storage_partition[255]; |
| 2092 | string Temp; |
| 2093 | FILE *fp = fopen("/cache/recovery/storage.fstab", "w"); |
| 2094 | |
| 2095 | if (fp == NULL) { |
| 2096 | LOGERR("Unable to open '/cache/recovery/storage.fstab'.\n"); |
| 2097 | return; |
| 2098 | } |
| 2099 | |
| 2100 | // Iterate through all partitions |
| 2101 | for (iter = Partitions.begin(); iter != Partitions.end(); iter++) { |
| 2102 | if ((*iter)->Is_Storage) { |
| 2103 | Temp = (*iter)->Storage_Path + ";" + (*iter)->Storage_Name + ";\n"; |
| 2104 | strcpy(storage_partition, Temp.c_str()); |
| 2105 | fwrite(storage_partition, sizeof(storage_partition[0]), strlen(storage_partition) / sizeof(storage_partition[0]), fp); |
| 2106 | } |
| 2107 | } |
| 2108 | fclose(fp); |
Vojtech Bocek | fafb0c5 | 2013-07-25 22:53:02 +0200 | [diff] [blame] | 2109 | } |
Vojtech Bocek | 93cb1ef | 2014-05-12 15:41:52 +0200 | [diff] [blame] | 2110 | |
| 2111 | TWPartition *TWPartitionManager::Get_Default_Storage_Partition() |
| 2112 | { |
| 2113 | TWPartition *res = NULL; |
| 2114 | for (std::vector<TWPartition*>::iterator iter = Partitions.begin(); iter != Partitions.end(); ++iter) { |
| 2115 | if(!(*iter)->Is_Storage) |
| 2116 | continue; |
| 2117 | |
| 2118 | if((*iter)->Is_Settings_Storage) |
| 2119 | return *iter; |
| 2120 | |
| 2121 | if(!res) |
| 2122 | res = *iter; |
| 2123 | } |
| 2124 | return res; |
| 2125 | } |