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