blob: 079d476b3beb9219d53332b32a19cf3599380a9a [file] [log] [blame]
Dees Troy3be70a82013-10-22 14:25:12 +00001/*
Ethan Yonker472f5062016-02-25 13:47:30 -06002 Copyright 2014 to 2016 TeamWin
Dees Troy3be70a82013-10-22 14:25:12 +00003 This file is part of TWRP/TeamWin Recovery Project.
4
5 TWRP is free software: you can redistribute it and/or modify
6 it under the terms of the GNU General Public License as published by
7 the Free Software Foundation, either version 3 of the License, or
8 (at your option) any later version.
9
10 TWRP is distributed in the hope that it will be useful,
11 but WITHOUT ANY WARRANTY; without even the implied warranty of
12 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 GNU General Public License for more details.
14
15 You should have received a copy of the GNU General Public License
16 along with TWRP. If not, see <http://www.gnu.org/licenses/>.
17*/
Dees_Troy51a0e822012-09-05 15:24:24 -040018
19#include <stdio.h>
20#include <stdlib.h>
21#include <string.h>
22#include <sys/stat.h>
23#include <sys/vfs.h>
24#include <unistd.h>
Dees_Troy5bf43922012-09-07 16:07:55 -040025#include <vector>
Dees_Troy63c8df72012-09-10 14:02:05 -040026#include <dirent.h>
27#include <time.h>
Dees_Troy8170a922012-09-18 15:40:25 -040028#include <errno.h>
29#include <fcntl.h>
bigbiffce8f83c2015-12-12 18:30:21 -050030#include <zlib.h>
bigbiff bigbiff9c754052013-01-09 09:09:08 -050031#include <iostream>
32#include <iomanip>
Ethan Yonker8613dc02014-09-11 09:28:20 -050033#include <sys/wait.h>
Ethan Yonker483e9f42016-01-11 22:21:18 -060034#include <linux/fs.h>
35#include <sys/mount.h>
Dees_Troy51a0e822012-09-05 15:24:24 -040036#include "variables.h"
Dees_Troy2673cec2013-04-02 20:22:16 +000037#include "twcommon.h"
Dees_Troy51a0e822012-09-05 15:24:24 -040038#include "partitions.hpp"
Dees_Troy5bf43922012-09-07 16:07:55 -040039#include "data.hpp"
Dees_Troy38bd7602012-09-14 13:33:53 -040040#include "twrp-functions.hpp"
Ethan Yonkerb5fab762016-01-28 14:03:33 -060041#include "fixContexts.hpp"
bigbiff bigbiffcdcfee42013-02-27 21:11:26 -050042#include "twrpDigest.hpp"
Ethan Yonker3fdcda42016-11-30 12:29:37 -060043#include "exclude.hpp"
Ethan Yonker4b94cfd2014-12-11 10:00:45 -060044#include "set_metadata.h"
bigbiff7abc5fe2015-01-17 16:53:12 -050045#include "tw_atomic.hpp"
Ethan Yonker74db1572015-10-28 12:44:49 -050046#include "gui/gui.hpp"
Ethan Yonker472f5062016-02-25 13:47:30 -060047#include "progresstracking.hpp"
bigbiffce8f83c2015-12-12 18:30:21 -050048#include "adbbu/libtwadbbu.hpp"
Dees_Troy38bd7602012-09-14 13:33:53 -040049
bigbiff bigbiffc7eee6f2014-09-02 18:59:01 -040050#ifdef TW_HAS_MTP
51#include "mtp/mtp_MtpServer.hpp"
52#include "mtp/twrpMtp.hpp"
Ethan Yonker726a0202014-12-16 20:01:38 -060053#include "mtp/MtpMessage.hpp"
bigbiff bigbiffc7eee6f2014-09-02 18:59:01 -040054#endif
55
Dees Troy6f6441d2014-01-23 02:07:03 +000056extern "C" {
57 #include "cutils/properties.h"
Ethan Yonker74db1572015-10-28 12:44:49 -050058 #include "gui/gui.h"
Dees Troy6f6441d2014-01-23 02:07:03 +000059}
60
Dees_Troy5bf43922012-09-07 16:07:55 -040061#ifdef TW_INCLUDE_CRYPTO
Ethan Yonker253368a2014-11-25 15:00:52 -060062 #include "crypto/lollipop/cryptfs.h"
Ethan Yonker66a19492015-12-10 10:19:45 -060063 #include "gui/rapidxml.hpp"
64 #include "gui/pages.hpp"
Dees_Troy5bf43922012-09-07 16:07:55 -040065#endif
Dees_Troy51a0e822012-09-05 15:24:24 -040066
Ethan Yonker6277c792014-09-15 14:54:30 -050067extern bool datamedia;
68
bigbiff bigbiff34684ff2013-12-01 21:03:45 -050069TWPartitionManager::TWPartitionManager(void) {
bigbiff bigbiffc7eee6f2014-09-02 18:59:01 -040070 mtp_was_enabled = false;
Ethan Yonker726a0202014-12-16 20:01:38 -060071 mtp_write_fd = -1;
bigbiff7abc5fe2015-01-17 16:53:12 -050072 stop_backup.set_value(0);
bigbiff bigbiff34684ff2013-12-01 21:03:45 -050073}
74
Dees_Troy51a0e822012-09-05 15:24:24 -040075int TWPartitionManager::Process_Fstab(string Fstab_Filename, bool Display_Error) {
Dees_Troy5bf43922012-09-07 16:07:55 -040076 FILE *fstabFile;
77 char fstab_line[MAX_FSTAB_LINE_LENGTH];
Dees Troy02a64532014-03-19 15:23:32 +000078 TWPartition* settings_partition = NULL;
Matt Mowerbf4efa32014-04-14 23:25:26 -050079 TWPartition* andsec_partition = NULL;
Ethan Yonker726a0202014-12-16 20:01:38 -060080 unsigned int storageid = 1 << 16; // upper 16 bits are for physical storage device, we pretend to have only one
Dees_Troy5bf43922012-09-07 16:07:55 -040081
82 fstabFile = fopen(Fstab_Filename.c_str(), "rt");
83 if (fstabFile == NULL) {
Dees_Troy2673cec2013-04-02 20:22:16 +000084 LOGERR("Critical Error: Unable to open fstab at '%s'.\n", Fstab_Filename.c_str());
Dees_Troy5bf43922012-09-07 16:07:55 -040085 return false;
86 }
87
88 while (fgets(fstab_line, sizeof(fstab_line), fstabFile) != NULL) {
89 if (fstab_line[0] != '/')
90 continue;
91
Dees_Troy2a923582012-09-20 12:13:34 -040092 if (fstab_line[strlen(fstab_line) - 1] != '\n')
93 fstab_line[strlen(fstab_line)] = '\n';
Dees_Troy2a923582012-09-20 12:13:34 -040094
Matt Mower2b2dd152016-04-26 11:24:08 -050095 TWPartition* partition = new TWPartition();
Matt Mower72c87ce2016-04-26 14:34:56 -050096 if (partition->Process_Fstab_Line(fstab_line, Display_Error))
Ethan Yonkerc05c5982014-03-13 09:19:56 -050097 Partitions.push_back(partition);
Matt Mower72c87ce2016-04-26 14:34:56 -050098 else
Dees_Troy5bf43922012-09-07 16:07:55 -040099 delete partition;
Matt Mower2b2dd152016-04-26 11:24:08 -0500100
101 memset(fstab_line, 0, sizeof(fstab_line));
Dees_Troy5bf43922012-09-07 16:07:55 -0400102 }
103 fclose(fstabFile);
Matt Mower72c87ce2016-04-26 14:34:56 -0500104
105 std::vector<TWPartition*>::iterator iter;
106 for (iter = Partitions.begin(); iter != Partitions.end(); iter++) {
107 (*iter)->Partition_Post_Processing(Display_Error);
108
109 if ((*iter)->Is_Storage) {
110 ++storageid;
111 (*iter)->MTP_Storage_ID = storageid;
112 }
113
114 if (!settings_partition && (*iter)->Is_Settings_Storage && (*iter)->Is_Present)
115 settings_partition = (*iter);
116 else
117 (*iter)->Is_Settings_Storage = false;
118
119 if (!andsec_partition && (*iter)->Has_Android_Secure && (*iter)->Is_Present)
120 andsec_partition = (*iter);
121 else
122 (*iter)->Has_Android_Secure = false;
123 }
124
Ethan Yonker6277c792014-09-15 14:54:30 -0500125 if (!datamedia && !settings_partition && Find_Partition_By_Path("/sdcard") == NULL && Find_Partition_By_Path("/internal_sd") == NULL && Find_Partition_By_Path("/internal_sdcard") == NULL && Find_Partition_By_Path("/emmc") == NULL) {
126 // Attempt to automatically identify /data/media emulated storage devices
127 TWPartition* Dat = Find_Partition_By_Path("/data");
128 if (Dat) {
129 LOGINFO("Using automatic handling for /data/media emulated storage device.\n");
130 datamedia = true;
that9e0593e2014-10-08 00:01:24 +0200131 Dat->Setup_Data_Media();
Ethan Yonker6277c792014-09-15 14:54:30 -0500132 settings_partition = Dat;
Ethan Yonker726a0202014-12-16 20:01:38 -0600133 // Since /data was not considered a storage partition earlier, we still need to assign an MTP ID
134 ++storageid;
135 Dat->MTP_Storage_ID = storageid;
Ethan Yonker6277c792014-09-15 14:54:30 -0500136 }
137 }
Dees Troy02a64532014-03-19 15:23:32 +0000138 if (!settings_partition) {
Dees_Troya13d74f2013-03-24 08:54:55 -0500139 for (iter = Partitions.begin(); iter != Partitions.end(); iter++) {
140 if ((*iter)->Is_Storage) {
Dees Troy02a64532014-03-19 15:23:32 +0000141 settings_partition = (*iter);
Dees_Troya13d74f2013-03-24 08:54:55 -0500142 break;
143 }
144 }
Dees Troy02a64532014-03-19 15:23:32 +0000145 if (!settings_partition)
Dees_Troy2673cec2013-04-02 20:22:16 +0000146 LOGERR("Unable to locate storage partition for storing settings file.\n");
Dees_Troya13d74f2013-03-24 08:54:55 -0500147 }
Dees_Troy5bf43922012-09-07 16:07:55 -0400148 if (!Write_Fstab()) {
149 if (Display_Error)
Dees_Troy2673cec2013-04-02 20:22:16 +0000150 LOGERR("Error creating fstab\n");
Dees_Troy5bf43922012-09-07 16:07:55 -0400151 else
Dees_Troy2673cec2013-04-02 20:22:16 +0000152 LOGINFO("Error creating fstab\n");
Dees_Troy5bf43922012-09-07 16:07:55 -0400153 }
Matt Mowered71fa32014-04-16 13:21:47 -0500154
Matt Mowerbf4efa32014-04-14 23:25:26 -0500155 if (andsec_partition) {
156 Setup_Android_Secure_Location(andsec_partition);
Matt Mowered71fa32014-04-16 13:21:47 -0500157 } else if (settings_partition) {
Matt Mowerbf4efa32014-04-14 23:25:26 -0500158 Setup_Android_Secure_Location(settings_partition);
159 }
Matt Mowered71fa32014-04-16 13:21:47 -0500160 if (settings_partition) {
161 Setup_Settings_Storage_Partition(settings_partition);
162 }
Ethan Yonker253368a2014-11-25 15:00:52 -0600163#ifdef TW_INCLUDE_CRYPTO
Ethan Yonkercceebb82014-11-18 10:17:59 -0600164 TWPartition* Decrypt_Data = Find_Partition_By_Path("/data");
165 if (Decrypt_Data && Decrypt_Data->Is_Encrypted && !Decrypt_Data->Is_Decrypted) {
166 int password_type = cryptfs_get_password_type();
167 if (password_type == CRYPT_TYPE_DEFAULT) {
168 LOGINFO("Device is encrypted with the default password, attempting to decrypt.\n");
169 if (Decrypt_Device("default_password") == 0) {
Ethan Yonker74db1572015-10-28 12:44:49 -0500170 gui_msg("decrypt_success=Successfully decrypted with default password.");
Ethan Yonkercceebb82014-11-18 10:17:59 -0600171 DataManager::SetValue(TW_IS_ENCRYPTED, 0);
172 } else {
Ethan Yonker74db1572015-10-28 12:44:49 -0500173 gui_err("unable_to_decrypt=Unable to decrypt with default password.");
Ethan Yonkercceebb82014-11-18 10:17:59 -0600174 }
175 } else {
176 DataManager::SetValue("TW_CRYPTO_TYPE", password_type);
177 }
178 }
Ethan Yonker66a19492015-12-10 10:19:45 -0600179 if (Decrypt_Data && (!Decrypt_Data->Is_Encrypted || Decrypt_Data->Is_Decrypted) && Decrypt_Data->Mount(false)) {
180 Decrypt_Adopted();
181 }
Ethan Yonkercceebb82014-11-18 10:17:59 -0600182#endif
Dees_Troy51127312012-09-08 13:08:49 -0400183 Update_System_Details();
Dees_Troyd0384ef2012-10-12 12:15:42 -0400184 UnMount_Main_Partitions();
Dees_Troy5bf43922012-09-07 16:07:55 -0400185 return true;
186}
187
188int TWPartitionManager::Write_Fstab(void) {
189 FILE *fp;
190 std::vector<TWPartition*>::iterator iter;
191 string Line;
192
193 fp = fopen("/etc/fstab", "w");
194 if (fp == NULL) {
Dees_Troy2673cec2013-04-02 20:22:16 +0000195 LOGINFO("Can not open /etc/fstab.\n");
Dees_Troy5bf43922012-09-07 16:07:55 -0400196 return false;
197 }
Dees_Troy63c8df72012-09-10 14:02:05 -0400198 for (iter = Partitions.begin(); iter != Partitions.end(); iter++) {
Dees_Troy51127312012-09-08 13:08:49 -0400199 if ((*iter)->Can_Be_Mounted) {
dianlujitao7d304c72016-01-02 12:15:50 +0800200 Line = (*iter)->Actual_Block_Device + " " + (*iter)->Mount_Point + " " + (*iter)->Current_File_System + " rw 0 0\n";
Dees_Troy5bf43922012-09-07 16:07:55 -0400201 fputs(Line.c_str(), fp);
Dees_Troy91862e62013-04-04 23:48:21 +0000202 }
203 // Handle subpartition tracking
204 if ((*iter)->Is_SubPartition) {
205 TWPartition* ParentPartition = Find_Partition_By_Path((*iter)->SubPartition_Of);
206 if (ParentPartition)
207 ParentPartition->Has_SubPartition = true;
208 else
209 LOGERR("Unable to locate parent partition '%s' of '%s'\n", (*iter)->SubPartition_Of.c_str(), (*iter)->Mount_Point.c_str());
Dees_Troy5bf43922012-09-07 16:07:55 -0400210 }
211 }
212 fclose(fp);
213 return true;
Dees_Troy51a0e822012-09-05 15:24:24 -0400214}
215
Ethan Yonkerc05c5982014-03-13 09:19:56 -0500216void TWPartitionManager::Setup_Settings_Storage_Partition(TWPartition* Part) {
Ethan Yonkerc05c5982014-03-13 09:19:56 -0500217 DataManager::SetValue("tw_settings_path", Part->Storage_Path);
218 DataManager::SetValue("tw_storage_path", Part->Storage_Path);
219 LOGINFO("Settings storage is '%s'\n", Part->Storage_Path.c_str());
220}
221
Matt Mowerbf4efa32014-04-14 23:25:26 -0500222void TWPartitionManager::Setup_Android_Secure_Location(TWPartition* Part) {
223 if (Part->Has_Android_Secure)
224 Part->Setup_AndSec();
Ethan Yonker6277c792014-09-15 14:54:30 -0500225 else if (!datamedia)
Matt Mowerbf4efa32014-04-14 23:25:26 -0500226 Part->Setup_AndSec();
Matt Mowerbf4efa32014-04-14 23:25:26 -0500227}
228
Dees_Troy8170a922012-09-18 15:40:25 -0400229void TWPartitionManager::Output_Partition_Logging(void) {
230 std::vector<TWPartition*>::iterator iter;
231
232 printf("\n\nPartition Logs:\n");
233 for (iter = Partitions.begin(); iter != Partitions.end(); iter++)
234 Output_Partition((*iter));
235}
236
237void TWPartitionManager::Output_Partition(TWPartition* Part) {
238 unsigned long long mb = 1048576;
239
Gary Peck004d48b2012-11-21 16:28:18 -0800240 printf("%s | %s | Size: %iMB", Part->Mount_Point.c_str(), Part->Actual_Block_Device.c_str(), (int)(Part->Size / mb));
Dees_Troy8170a922012-09-18 15:40:25 -0400241 if (Part->Can_Be_Mounted) {
Gary Peck004d48b2012-11-21 16:28:18 -0800242 printf(" Used: %iMB Free: %iMB Backup Size: %iMB", (int)(Part->Used / mb), (int)(Part->Free / mb), (int)(Part->Backup_Size / mb));
Dees_Troy8170a922012-09-18 15:40:25 -0400243 }
Gary Peck004d48b2012-11-21 16:28:18 -0800244 printf("\n Flags: ");
Dees_Troya13d74f2013-03-24 08:54:55 -0500245 if (Part->Can_Be_Mounted)
246 printf("Can_Be_Mounted ");
Gary Peck004d48b2012-11-21 16:28:18 -0800247 if (Part->Can_Be_Wiped)
248 printf("Can_Be_Wiped ");
Hashcodedabfd492013-08-29 22:45:30 -0700249 if (Part->Use_Rm_Rf)
250 printf("Use_Rm_Rf ");
Dees_Troya13d74f2013-03-24 08:54:55 -0500251 if (Part->Can_Be_Backed_Up)
252 printf("Can_Be_Backed_Up ");
Gary Peck004d48b2012-11-21 16:28:18 -0800253 if (Part->Wipe_During_Factory_Reset)
254 printf("Wipe_During_Factory_Reset ");
255 if (Part->Wipe_Available_in_GUI)
256 printf("Wipe_Available_in_GUI ");
257 if (Part->Is_SubPartition)
258 printf("Is_SubPartition ");
259 if (Part->Has_SubPartition)
260 printf("Has_SubPartition ");
261 if (Part->Removable)
262 printf("Removable ");
263 if (Part->Is_Present)
264 printf("IsPresent ");
265 if (Part->Can_Be_Encrypted)
266 printf("Can_Be_Encrypted ");
267 if (Part->Is_Encrypted)
268 printf("Is_Encrypted ");
269 if (Part->Is_Decrypted)
270 printf("Is_Decrypted ");
271 if (Part->Has_Data_Media)
272 printf("Has_Data_Media ");
Dees_Troy83bd4832013-05-04 12:39:56 +0000273 if (Part->Can_Encrypt_Backup)
274 printf("Can_Encrypt_Backup ");
275 if (Part->Use_Userdata_Encryption)
276 printf("Use_Userdata_Encryption ");
Gary Peck004d48b2012-11-21 16:28:18 -0800277 if (Part->Has_Android_Secure)
278 printf("Has_Android_Secure ");
279 if (Part->Is_Storage)
280 printf("Is_Storage ");
Dees_Troya13d74f2013-03-24 08:54:55 -0500281 if (Part->Is_Settings_Storage)
282 printf("Is_Settings_Storage ");
Dees_Troy68cab492012-12-12 19:29:35 +0000283 if (Part->Ignore_Blkid)
284 printf("Ignore_Blkid ");
Dees_Troy16c2b312013-01-15 16:51:18 +0000285 if (Part->Retain_Layout_Version)
286 printf("Retain_Layout_Version ");
Ethan Yonker253368a2014-11-25 15:00:52 -0600287 if (Part->Mount_To_Decrypt)
288 printf("Mount_To_Decrypt ");
Ethan Yonker96af84a2015-01-05 14:58:36 -0600289 if (Part->Can_Flash_Img)
290 printf("Can_Flash_Img ");
Ethan Yonker66a19492015-12-10 10:19:45 -0600291 if (Part->Is_Adopted_Storage)
292 printf("Is_Adopted_Storage ");
Gary Peck004d48b2012-11-21 16:28:18 -0800293 printf("\n");
294 if (!Part->SubPartition_Of.empty())
295 printf(" SubPartition_Of: %s\n", Part->SubPartition_Of.c_str());
296 if (!Part->Symlink_Path.empty())
297 printf(" Symlink_Path: %s\n", Part->Symlink_Path.c_str());
298 if (!Part->Symlink_Mount_Point.empty())
299 printf(" Symlink_Mount_Point: %s\n", Part->Symlink_Mount_Point.c_str());
300 if (!Part->Primary_Block_Device.empty())
301 printf(" Primary_Block_Device: %s\n", Part->Primary_Block_Device.c_str());
302 if (!Part->Alternate_Block_Device.empty())
303 printf(" Alternate_Block_Device: %s\n", Part->Alternate_Block_Device.c_str());
304 if (!Part->Decrypted_Block_Device.empty())
305 printf(" Decrypted_Block_Device: %s\n", Part->Decrypted_Block_Device.c_str());
Ethan Yonker253368a2014-11-25 15:00:52 -0600306 if (!Part->Crypto_Key_Location.empty() && Part->Crypto_Key_Location != "footer")
307 printf(" Crypto_Key_Location: %s\n", Part->Crypto_Key_Location.c_str());
Gary Peck004d48b2012-11-21 16:28:18 -0800308 if (Part->Length != 0)
309 printf(" Length: %i\n", Part->Length);
310 if (!Part->Display_Name.empty())
311 printf(" Display_Name: %s\n", Part->Display_Name.c_str());
Dees_Troya13d74f2013-03-24 08:54:55 -0500312 if (!Part->Storage_Name.empty())
313 printf(" Storage_Name: %s\n", Part->Storage_Name.c_str());
Gary Peck004d48b2012-11-21 16:28:18 -0800314 if (!Part->Backup_Path.empty())
315 printf(" Backup_Path: %s\n", Part->Backup_Path.c_str());
316 if (!Part->Backup_Name.empty())
317 printf(" Backup_Name: %s\n", Part->Backup_Name.c_str());
Dees_Troya13d74f2013-03-24 08:54:55 -0500318 if (!Part->Backup_Display_Name.empty())
319 printf(" Backup_Display_Name: %s\n", Part->Backup_Display_Name.c_str());
Gary Peck004d48b2012-11-21 16:28:18 -0800320 if (!Part->Backup_FileName.empty())
321 printf(" Backup_FileName: %s\n", Part->Backup_FileName.c_str());
322 if (!Part->Storage_Path.empty())
323 printf(" Storage_Path: %s\n", Part->Storage_Path.c_str());
324 if (!Part->Current_File_System.empty())
325 printf(" Current_File_System: %s\n", Part->Current_File_System.c_str());
326 if (!Part->Fstab_File_System.empty())
327 printf(" Fstab_File_System: %s\n", Part->Fstab_File_System.c_str());
328 if (Part->Format_Block_Size != 0)
Ethan Yonkerc798c9c2015-10-09 11:15:26 -0500329 printf(" Format_Block_Size: %lu\n", Part->Format_Block_Size);
Dees_Troy094207a2012-09-26 12:00:39 -0400330 if (!Part->MTD_Name.empty())
331 printf(" MTD_Name: %s\n", Part->MTD_Name.c_str());
Dees_Troy8170a922012-09-18 15:40:25 -0400332 string back_meth = Part->Backup_Method_By_Name();
Ethan Yonker6277c792014-09-15 14:54:30 -0500333 printf(" Backup_Method: %s\n", back_meth.c_str());
Hashcode62bd9e02013-11-19 21:59:42 -0800334 if (Part->Mount_Flags || !Part->Mount_Options.empty())
Matt Mower4ab42b12016-04-21 13:52:18 -0500335 printf(" Mount_Options: %s\n", Part->Mount_Options.c_str());
Ethan Yonker726a0202014-12-16 20:01:38 -0600336 if (Part->MTP_Storage_ID)
337 printf(" MTP_Storage_ID: %i\n", Part->MTP_Storage_ID);
Ethan Yonker6277c792014-09-15 14:54:30 -0500338 printf("\n");
Dees_Troy8170a922012-09-18 15:40:25 -0400339}
340
Dees_Troy51a0e822012-09-05 15:24:24 -0400341int TWPartitionManager::Mount_By_Path(string Path, bool Display_Error) {
Dees_Troy5bf43922012-09-07 16:07:55 -0400342 std::vector<TWPartition*>::iterator iter;
343 int ret = false;
344 bool found = false;
Dees_Troy38bd7602012-09-14 13:33:53 -0400345 string Local_Path = TWFunc::Get_Root_Path(Path);
Dees_Troy5bf43922012-09-07 16:07:55 -0400346
Dees_Troyd93bda52013-07-03 19:55:19 +0000347 if (Local_Path == "/tmp" || Local_Path == "/")
Dees_Troy43d8b002012-09-17 16:00:01 -0400348 return true;
349
Dees_Troy5bf43922012-09-07 16:07:55 -0400350 // Iterate through all partitions
351 for (iter = Partitions.begin(); iter != Partitions.end(); iter++) {
Dees_Troy657c3092012-09-10 20:32:10 -0400352 if ((*iter)->Mount_Point == Local_Path || (!(*iter)->Symlink_Mount_Point.empty() && (*iter)->Symlink_Mount_Point == Local_Path)) {
Dees_Troy5bf43922012-09-07 16:07:55 -0400353 ret = (*iter)->Mount(Display_Error);
354 found = true;
Dees_Troy51127312012-09-08 13:08:49 -0400355 } else if ((*iter)->Is_SubPartition && (*iter)->SubPartition_Of == Local_Path) {
Dees_Troy5bf43922012-09-07 16:07:55 -0400356 (*iter)->Mount(Display_Error);
Dees_Troy51127312012-09-08 13:08:49 -0400357 }
Dees_Troy5bf43922012-09-07 16:07:55 -0400358 }
359 if (found) {
360 return ret;
361 } else if (Display_Error) {
Ethan Yonker74db1572015-10-28 12:44:49 -0500362 gui_msg(Msg(msg::kError, "unable_find_part_path=Unable to find partition for path '{1}'")(Local_Path));
Dees_Troy5bf43922012-09-07 16:07:55 -0400363 } else {
Dees_Troy2673cec2013-04-02 20:22:16 +0000364 LOGINFO("Mount: Unable to find partition for path '%s'\n", Local_Path.c_str());
Dees_Troy5bf43922012-09-07 16:07:55 -0400365 }
366 return false;
Dees_Troy51a0e822012-09-05 15:24:24 -0400367}
368
Dees_Troy51a0e822012-09-05 15:24:24 -0400369int TWPartitionManager::UnMount_By_Path(string Path, bool Display_Error) {
Dees_Troy51127312012-09-08 13:08:49 -0400370 std::vector<TWPartition*>::iterator iter;
371 int ret = false;
372 bool found = false;
Dees_Troy38bd7602012-09-14 13:33:53 -0400373 string Local_Path = TWFunc::Get_Root_Path(Path);
Dees_Troy51127312012-09-08 13:08:49 -0400374
375 // Iterate through all partitions
376 for (iter = Partitions.begin(); iter != Partitions.end(); iter++) {
Dees_Troy657c3092012-09-10 20:32:10 -0400377 if ((*iter)->Mount_Point == Local_Path || (!(*iter)->Symlink_Mount_Point.empty() && (*iter)->Symlink_Mount_Point == Local_Path)) {
Dees_Troy51127312012-09-08 13:08:49 -0400378 ret = (*iter)->UnMount(Display_Error);
379 found = true;
380 } else if ((*iter)->Is_SubPartition && (*iter)->SubPartition_Of == Local_Path) {
381 (*iter)->UnMount(Display_Error);
382 }
383 }
384 if (found) {
385 return ret;
386 } else if (Display_Error) {
Ethan Yonker74db1572015-10-28 12:44:49 -0500387 gui_msg(Msg(msg::kError, "unable_find_part_path=Unable to find partition for path '{1}'")(Local_Path));
Dees_Troy51127312012-09-08 13:08:49 -0400388 } else {
Dees_Troy2673cec2013-04-02 20:22:16 +0000389 LOGINFO("UnMount: Unable to find partition for path '%s'\n", Local_Path.c_str());
Dees_Troy51127312012-09-08 13:08:49 -0400390 }
391 return false;
Dees_Troy51a0e822012-09-05 15:24:24 -0400392}
393
Dees_Troy51a0e822012-09-05 15:24:24 -0400394int TWPartitionManager::Is_Mounted_By_Path(string Path) {
Dees_Troy51127312012-09-08 13:08:49 -0400395 TWPartition* Part = Find_Partition_By_Path(Path);
396
397 if (Part)
398 return Part->Is_Mounted();
399 else
Dees_Troy2673cec2013-04-02 20:22:16 +0000400 LOGINFO("Is_Mounted: Unable to find partition for path '%s'\n", Path.c_str());
Dees_Troy51127312012-09-08 13:08:49 -0400401 return false;
Dees_Troy51a0e822012-09-05 15:24:24 -0400402}
403
Dees_Troy5bf43922012-09-07 16:07:55 -0400404int TWPartitionManager::Mount_Current_Storage(bool Display_Error) {
Dees_Troy51127312012-09-08 13:08:49 -0400405 string current_storage_path = DataManager::GetCurrentStoragePath();
406
407 if (Mount_By_Path(current_storage_path, Display_Error)) {
408 TWPartition* FreeStorage = Find_Partition_By_Path(current_storage_path);
409 if (FreeStorage)
410 DataManager::SetValue(TW_STORAGE_FREE_SIZE, (int)(FreeStorage->Free / 1048576LLU));
411 return true;
412 }
413 return false;
Dees_Troy51a0e822012-09-05 15:24:24 -0400414}
415
Dees_Troy5bf43922012-09-07 16:07:55 -0400416int TWPartitionManager::Mount_Settings_Storage(bool Display_Error) {
417 return Mount_By_Path(DataManager::GetSettingsStoragePath(), Display_Error);
418}
419
420TWPartition* TWPartitionManager::Find_Partition_By_Path(string Path) {
421 std::vector<TWPartition*>::iterator iter;
Dees_Troy38bd7602012-09-14 13:33:53 -0400422 string Local_Path = TWFunc::Get_Root_Path(Path);
Dees_Troy5bf43922012-09-07 16:07:55 -0400423
424 for (iter = Partitions.begin(); iter != Partitions.end(); iter++) {
Dees_Troy657c3092012-09-10 20:32:10 -0400425 if ((*iter)->Mount_Point == Local_Path || (!(*iter)->Symlink_Mount_Point.empty() && (*iter)->Symlink_Mount_Point == Local_Path))
Dees_Troy5bf43922012-09-07 16:07:55 -0400426 return (*iter);
427 }
Dees_Troy51a0e822012-09-05 15:24:24 -0400428 return NULL;
429}
430
Dees_Troyc9ff7a32012-09-27 10:09:41 -0400431int TWPartitionManager::Check_Backup_Name(bool Display_Error) {
432 // Check the backup name to ensure that it is the correct size and contains only valid characters
433 // and that a backup with that name doesn't already exist
434 char backup_name[MAX_BACKUP_NAME_LEN];
435 char backup_loc[255], tw_image_dir[255];
436 int copy_size;
437 int index, cur_char;
438 string Backup_Name, Backup_Loc;
439
440 DataManager::GetValue(TW_BACKUP_NAME, Backup_Name);
441 copy_size = Backup_Name.size();
442 // Check size
443 if (copy_size > MAX_BACKUP_NAME_LEN) {
444 if (Display_Error)
Ethan Yonker74db1572015-10-28 12:44:49 -0500445 gui_err("backup_name_len=Backup name is too long.");
Dees_Troyc9ff7a32012-09-27 10:09:41 -0400446 return -2;
447 }
448
449 // Check each character
450 strncpy(backup_name, Backup_Name.c_str(), copy_size);
Dees_Troya13d74f2013-03-24 08:54:55 -0500451 if (copy_size == 1 && strncmp(backup_name, "0", 1) == 0)
Dees_Troyc9ff7a32012-09-27 10:09:41 -0400452 return 0; // A "0" (zero) means to use the current timestamp for the backup name
453 for (index=0; index<copy_size; index++) {
454 cur_char = (int)backup_name[index];
Matt Mowerfb1c4ff2014-04-16 13:43:36 -0500455 if (cur_char == 32 || (cur_char >= 48 && cur_char <= 57) || (cur_char >= 65 && cur_char <= 91) || cur_char == 93 || cur_char == 95 || (cur_char >= 97 && cur_char <= 123) || cur_char == 125 || cur_char == 45 || cur_char == 46) {
Dees_Troyc9ff7a32012-09-27 10:09:41 -0400456 // These are valid characters
457 // Numbers
458 // Upper case letters
459 // Lower case letters
460 // Space
461 // and -_.{}[]
462 } else {
463 if (Display_Error)
Ethan Yonker4adc33e2016-01-22 16:07:11 -0600464 gui_msg(Msg(msg::kError, "backup_name_invalid=Backup name '{1}' contains invalid character: '{1}'")(Backup_Name)((char)cur_char));
Dees_Troyc9ff7a32012-09-27 10:09:41 -0400465 return -3;
466 }
467 }
468
469 // Check to make sure that a backup with this name doesn't already exist
470 DataManager::GetValue(TW_BACKUPS_FOLDER_VAR, Backup_Loc);
471 strcpy(backup_loc, Backup_Loc.c_str());
Dees_Troya13d74f2013-03-24 08:54:55 -0500472 sprintf(tw_image_dir,"%s/%s", backup_loc, Backup_Name.c_str());
Matt Mowerfb1c4ff2014-04-16 13:43:36 -0500473 if (TWFunc::Path_Exists(tw_image_dir)) {
Dees_Troyc9ff7a32012-09-27 10:09:41 -0400474 if (Display_Error)
Matt Mower3c366972015-12-25 19:28:31 -0600475 gui_err("backup_name_exists=A backup with that name already exists!");
bigbiffce8f83c2015-12-12 18:30:21 -0500476
Dees_Troyc9ff7a32012-09-27 10:09:41 -0400477 return -4;
478 }
Dees_Troyc9ff7a32012-09-27 10:09:41 -0400479 // No problems found, return 0
480 return 0;
481}
482
bigbiff bigbiffa481d362016-08-08 20:36:10 -0400483bool TWPartitionManager::Make_MD5(PartitionSettings *part_settings)
Dees_Troy43d8b002012-09-17 16:00:01 -0400484{
Ethan Yonkerdcf2b672016-09-13 14:41:53 -0500485 string command, result;
486
487 if (part_settings->Part == NULL)
488 return false;
Ethan Yonkere080c1f2016-09-19 13:50:25 -0500489 string Full_File = part_settings->Backup_Folder + "/" + part_settings->Part->Backup_FileName;
bigbiff bigbiffcdcfee42013-02-27 21:11:26 -0500490 twrpDigest md5sum;
Dees_Troy43d8b002012-09-17 16:00:01 -0400491
bigbiff bigbiffa481d362016-08-08 20:36:10 -0400492 if (!part_settings->generate_md5)
Dees_Troy43d8b002012-09-17 16:00:01 -0400493 return true;
Dees_Troy43d8b002012-09-17 16:00:01 -0400494
Ethan Yonker74db1572015-10-28 12:44:49 -0500495 TWFunc::GUI_Operation_Text(TW_GENERATE_MD5_TEXT, gui_parse_text("{@generating_md51}"));
496 gui_msg("generating_md52= * Generating md5...");
Dees_Troy43d8b002012-09-17 16:00:01 -0400497 if (TWFunc::Path_Exists(Full_File)) {
bigbiffce8f83c2015-12-12 18:30:21 -0500498 md5sum.setfn(Full_File);
bigbiff bigbiffcdcfee42013-02-27 21:11:26 -0500499 if (md5sum.computeMD5() == 0)
500 if (md5sum.write_md5digest() == 0)
Ethan Yonker74db1572015-10-28 12:44:49 -0500501 gui_msg("md5_created= * MD5 Created.");
bigbiff bigbiffcdcfee42013-02-27 21:11:26 -0500502 else
503 return -1;
504 else
Ethan Yonker74db1572015-10-28 12:44:49 -0500505 gui_err("md5_error= * MD5 Error!");
Dees_Troy43d8b002012-09-17 16:00:01 -0400506 } else {
507 char filename[512];
508 int index = 0;
bigbiff bigbiffcdcfee42013-02-27 21:11:26 -0500509 string strfn;
Dees_Troy43d8b002012-09-17 16:00:01 -0400510 sprintf(filename, "%s%03i", Full_File.c_str(), index);
bigbiff bigbiffcdcfee42013-02-27 21:11:26 -0500511 strfn = filename;
Dees_Troy83bd4832013-05-04 12:39:56 +0000512 while (index < 1000) {
bigbiff bigbiff65a4c732013-03-15 15:17:50 -0400513 md5sum.setfn(filename);
Dees_Troy83bd4832013-05-04 12:39:56 +0000514 if (TWFunc::Path_Exists(filename)) {
515 if (md5sum.computeMD5() == 0) {
516 if (md5sum.write_md5digest() != 0)
517 {
Ethan Yonker74db1572015-10-28 12:44:49 -0500518 gui_err("md5_error= * MD5 Error!");
Dees_Troy83bd4832013-05-04 12:39:56 +0000519 return false;
520 }
521 } else {
Ethan Yonker74db1572015-10-28 12:44:49 -0500522 gui_err("md5_compute_error= * Error computing MD5.");
bigbiff bigbiffcdcfee42013-02-27 21:11:26 -0500523 return false;
524 }
525 }
Dees_Troy43d8b002012-09-17 16:00:01 -0400526 index++;
Dees_Troy4a2a1262012-09-18 09:33:47 -0400527 sprintf(filename, "%s%03i", Full_File.c_str(), index);
bigbiff bigbiffcdcfee42013-02-27 21:11:26 -0500528 strfn = filename;
Dees_Troy43d8b002012-09-17 16:00:01 -0400529 }
530 if (index == 0) {
Dees_Troy2673cec2013-04-02 20:22:16 +0000531 LOGERR("Backup file: '%s' not found!\n", filename);
Dees_Troy43d8b002012-09-17 16:00:01 -0400532 return false;
533 }
Ethan Yonker74db1572015-10-28 12:44:49 -0500534 gui_msg("md5_created= * MD5 Created.");
Dees_Troy43d8b002012-09-17 16:00:01 -0400535 }
536 return true;
537}
538
bigbiffce8f83c2015-12-12 18:30:21 -0500539
540bool TWPartitionManager::Backup_Partition(PartitionSettings *part_settings) {
Dees_Troy43d8b002012-09-17 16:00:01 -0400541 time_t start, stop;
bigbiffce8f83c2015-12-12 18:30:21 -0500542 int use_compression, adb_control_bu_fd;
543 string backup_log = part_settings->Backup_Folder + "/recovery.log";
Dees_Troy43d8b002012-09-17 16:00:01 -0400544
bigbiffce8f83c2015-12-12 18:30:21 -0500545 if (part_settings->Part == NULL)
Dees_Troy43d8b002012-09-17 16:00:01 -0400546 return true;
547
Dees_Troy093b7642012-09-21 15:59:38 -0400548 DataManager::GetValue(TW_USE_COMPRESSION_VAR, use_compression);
Dees_Troy093b7642012-09-21 15:59:38 -0400549
Tom Hite5a926722014-09-15 01:31:03 +0000550 TWFunc::SetPerformanceMode(true);
Dees_Troy43d8b002012-09-17 16:00:01 -0400551 time(&start);
552
bigbiffce8f83c2015-12-12 18:30:21 -0500553 if (part_settings->Part->Backup(part_settings, &tar_fork_pid)) {
Tom Hite5a926722014-09-15 01:31:03 +0000554 bool md5Success = false;
bigbiff bigbiff8fd4b092016-08-30 20:48:53 -0400555 if (part_settings->adbbackup) {
556 md5Success = true;
557 }
558 else
559 md5Success = Make_MD5(part_settings);
560
561 TWFunc::SetPerformanceMode(false);
bigbiffce8f83c2015-12-12 18:30:21 -0500562 if (part_settings->Part->Has_SubPartition) {
Dees_Troy8170a922012-09-18 15:40:25 -0400563 std::vector<TWPartition*>::iterator subpart;
bigbiff bigbiff8fd4b092016-08-30 20:48:53 -0400564 TWPartition *parentPart = part_settings->Part;
Dees_Troy8170a922012-09-18 15:40:25 -0400565
566 for (subpart = Partitions.begin(); subpart != Partitions.end(); subpart++) {
bigbiff bigbiff8fd4b092016-08-30 20:48:53 -0400567 if ((*subpart)->Can_Be_Backed_Up && (*subpart)->Is_SubPartition && (*subpart)->SubPartition_Of == parentPart->Mount_Point) {
Ethan Yonkerdcf2b672016-09-13 14:41:53 -0500568 part_settings->Part = *subpart;
bigbiffce8f83c2015-12-12 18:30:21 -0500569 if (!(*subpart)->Backup(part_settings, &tar_fork_pid)) {
Tom Hite5a926722014-09-15 01:31:03 +0000570 TWFunc::SetPerformanceMode(false);
bigbiffce8f83c2015-12-12 18:30:21 -0500571 Clean_Backup_Folder(part_settings->Backup_Folder);
bigbiffbf1d6722015-02-14 16:25:59 -0500572 TWFunc::copy_file("/tmp/recovery.log", backup_log, 0644);
573 tw_set_default_metadata(backup_log.c_str());
Dees_Troy8170a922012-09-18 15:40:25 -0400574 return false;
Tom Hite5a926722014-09-15 01:31:03 +0000575 }
Dees_Troy2727b992013-08-14 20:09:30 +0000576 sync();
577 sync();
bigbiffce8f83c2015-12-12 18:30:21 -0500578 if (!part_settings->adbbackup) {
bigbiff bigbiffa481d362016-08-08 20:36:10 -0400579 if (!Make_MD5(part_settings)) {
bigbiffce8f83c2015-12-12 18:30:21 -0500580 TWFunc::SetPerformanceMode(false);
581 return false;
582 }
Tom Hite5a926722014-09-15 01:31:03 +0000583 }
Dees_Troy8170a922012-09-18 15:40:25 -0400584 }
585 }
586 }
Dees_Troy43d8b002012-09-17 16:00:01 -0400587 time(&stop);
that203bcc92015-05-09 17:27:33 +0200588 int backup_time = (int) difftime(stop, start);
Dees_Troy2673cec2013-04-02 20:22:16 +0000589 LOGINFO("Partition Backup time: %d\n", backup_time);
bigbiff bigbiff8fd4b092016-08-30 20:48:53 -0400590
bigbiffce8f83c2015-12-12 18:30:21 -0500591 if (part_settings->Part->Backup_Method == BM_FILES) {
592 part_settings->file_time += backup_time;
Dees_Troy43d8b002012-09-17 16:00:01 -0400593 } else {
bigbiffce8f83c2015-12-12 18:30:21 -0500594 part_settings->img_time += backup_time;
595
Dees_Troy43d8b002012-09-17 16:00:01 -0400596 }
Tom Hite5a926722014-09-15 01:31:03 +0000597
Tom Hite5a926722014-09-15 01:31:03 +0000598 return md5Success;
Dees_Troy43d8b002012-09-17 16:00:01 -0400599 } else {
bigbiffce8f83c2015-12-12 18:30:21 -0500600 Clean_Backup_Folder(part_settings->Backup_Folder);
bigbiffbf1d6722015-02-14 16:25:59 -0500601 TWFunc::copy_file("/tmp/recovery.log", backup_log, 0644);
602 tw_set_default_metadata(backup_log.c_str());
Tom Hite5a926722014-09-15 01:31:03 +0000603 TWFunc::SetPerformanceMode(false);
Dees_Troy43d8b002012-09-17 16:00:01 -0400604 return false;
605 }
bigbiff7abc5fe2015-01-17 16:53:12 -0500606 return 0;
607}
608
bigbiffbf1d6722015-02-14 16:25:59 -0500609void TWPartitionManager::Clean_Backup_Folder(string Backup_Folder) {
610 DIR *d = opendir(Backup_Folder.c_str());
611 struct dirent *p;
612 int r;
613
Ethan Yonker74db1572015-10-28 12:44:49 -0500614 gui_msg("backup_clean=Backup Failed. Cleaning Backup Folder.");
bigbiffbf1d6722015-02-14 16:25:59 -0500615
616 if (d == NULL) {
Ethan Yonker74db1572015-10-28 12:44:49 -0500617 gui_msg(Msg(msg::kError, "error_opening_strerr=Error opening: '{1}' ({2})")(Backup_Folder)(strerror(errno)));
bigbiffbf1d6722015-02-14 16:25:59 -0500618 return;
619 }
620
Matt Mower2b18a532015-02-20 16:58:05 -0600621 while ((p = readdir(d))) {
bigbiffbf1d6722015-02-14 16:25:59 -0500622 if (!strcmp(p->d_name, ".") || !strcmp(p->d_name, ".."))
623 continue;
624
Ethan Yonkere080c1f2016-09-19 13:50:25 -0500625 string path = Backup_Folder + "/" + p->d_name;
bigbiffbf1d6722015-02-14 16:25:59 -0500626
627 size_t dot = path.find_last_of(".") + 1;
628 if (path.substr(dot) == "win" || path.substr(dot) == "md5" || path.substr(dot) == "info") {
629 r = unlink(path.c_str());
630 if (r != 0) {
631 LOGINFO("Unable to unlink '%s: %s'\n", path.c_str(), strerror(errno));
632 }
633 }
634 }
635 closedir(d);
636}
637
Ethan Yonker472f5062016-02-25 13:47:30 -0600638int TWPartitionManager::Check_Backup_Cancel() {
639 return stop_backup.get_value();
640}
641
bigbiff7abc5fe2015-01-17 16:53:12 -0500642int TWPartitionManager::Cancel_Backup() {
643 string Backup_Folder, Backup_Name, Full_Backup_Path;
644
645 stop_backup.set_value(1);
646
647 if (tar_fork_pid != 0) {
648 DataManager::GetValue(TW_BACKUP_NAME, Backup_Name);
649 DataManager::GetValue(TW_BACKUPS_FOLDER_VAR, Backup_Folder);
Ethan Yonkere080c1f2016-09-19 13:50:25 -0500650 Full_Backup_Path = Backup_Folder + "/" + Backup_Name;
bigbiff7abc5fe2015-01-17 16:53:12 -0500651 LOGINFO("Killing pid: %d\n", tar_fork_pid);
652 kill(tar_fork_pid, SIGUSR2);
653 while (kill(tar_fork_pid, 0) == 0) {
654 usleep(1000);
655 }
656 LOGINFO("Backup_Run stopped and returning false, backup cancelled.\n");
657 LOGINFO("Removing directory %s\n", Full_Backup_Path.c_str());
658 TWFunc::removeDir(Full_Backup_Path, false);
659 tar_fork_pid = 0;
660 }
661
662 return 0;
Dees_Troy43d8b002012-09-17 16:00:01 -0400663}
664
bigbiffce8f83c2015-12-12 18:30:21 -0500665int TWPartitionManager::Run_Backup(bool adbbackup) {
666 PartitionSettings part_settings;
667 int check, partition_count = 0, disable_free_space_check = 0, do_md5 = 0;
668 int gui_adb_backup;
669 string Backup_Name, Backup_List, backup_path;
670 unsigned long long total_bytes = 0, free_space = 0, subpart_size;
Dees_Troy43d8b002012-09-17 16:00:01 -0400671 TWPartition* storage = NULL;
Dees_Troy8170a922012-09-18 15:40:25 -0400672 std::vector<TWPartition*>::iterator subpart;
Dees_Troy43d8b002012-09-17 16:00:01 -0400673 struct tm *t;
674 time_t start, stop, seconds, total_start, total_stop;
Dees_Troya13d74f2013-03-24 08:54:55 -0500675 size_t start_pos = 0, end_pos = 0;
bigbiff7abc5fe2015-01-17 16:53:12 -0500676 stop_backup.set_value(0);
Dees_Troy43d8b002012-09-17 16:00:01 -0400677 seconds = time(0);
Matt Mowerfb1c4ff2014-04-16 13:43:36 -0500678 t = localtime(&seconds);
Dees_Troy43d8b002012-09-17 16:00:01 -0400679
bigbiffce8f83c2015-12-12 18:30:21 -0500680 part_settings.img_bytes_remaining = 0;
681 part_settings.file_bytes_remaining = 0;
682 part_settings.img_time = 0;
683 part_settings.file_time = 0;
684 part_settings.img_bytes = 0;
685 part_settings.file_bytes = 0;
686 part_settings.PM_Method = PM_BACKUP;
687
688 DataManager::GetValue("tw_enable_adb_backup", gui_adb_backup);
689 if (gui_adb_backup == true)
690 adbbackup = true;
691
692 part_settings.adbbackup = adbbackup;
Dees_Troy43d8b002012-09-17 16:00:01 -0400693 time(&total_start);
694
695 Update_System_Details();
696
697 if (!Mount_Current_Storage(true))
698 return false;
699
bigbiffce8f83c2015-12-12 18:30:21 -0500700
Dees_Troy43d8b002012-09-17 16:00:01 -0400701 DataManager::GetValue(TW_SKIP_MD5_GENERATE_VAR, do_md5);
Dees_Troy4a2a1262012-09-18 09:33:47 -0400702 if (do_md5 == 0)
bigbiffce8f83c2015-12-12 18:30:21 -0500703 part_settings.generate_md5 = true;
Dees_Troyc5865ab2012-09-24 15:08:04 -0400704 else
bigbiffce8f83c2015-12-12 18:30:21 -0500705 part_settings.generate_md5 = false;
Dees_Troy4a2a1262012-09-18 09:33:47 -0400706
bigbiffce8f83c2015-12-12 18:30:21 -0500707 DataManager::GetValue(TW_BACKUPS_FOLDER_VAR, part_settings.Backup_Folder);
Ethan Yonkerdcf2b672016-09-13 14:41:53 -0500708 DataManager::GetValue(TW_BACKUP_NAME, Backup_Name);
709 if (Backup_Name == gui_lookup("curr_date", "(Current Date)")) {
710 Backup_Name = TWFunc::Get_Current_Date();
711 } else if (Backup_Name == gui_lookup("auto_generate", "(Auto Generate)") || Backup_Name == "0" || Backup_Name.empty()) {
Dees Troyb21cc642013-09-10 17:36:41 +0000712 TWFunc::Auto_Generate_Backup_Name();
Ethan Yonkerdcf2b672016-09-13 14:41:53 -0500713 DataManager::GetValue(TW_BACKUP_NAME, Backup_Name);
Dees_Troy43d8b002012-09-17 16:00:01 -0400714 }
bigbiffce8f83c2015-12-12 18:30:21 -0500715
Ethan Yonkerdcf2b672016-09-13 14:41:53 -0500716 LOGINFO("Backup Name is: '%s'\n", Backup_Name.c_str());
Ethan Yonkere080c1f2016-09-19 13:50:25 -0500717 part_settings.Backup_Folder = part_settings.Backup_Folder + "/" + Backup_Name;
bigbiffce8f83c2015-12-12 18:30:21 -0500718
Ethan Yonkere080c1f2016-09-19 13:50:25 -0500719 LOGINFO("Backup_Folder is: '%s'\n", part_settings.Backup_Folder.c_str());
Dees_Troy43d8b002012-09-17 16:00:01 -0400720
Dees_Troy2673cec2013-04-02 20:22:16 +0000721 LOGINFO("Calculating backup details...\n");
Dees_Troya13d74f2013-03-24 08:54:55 -0500722 DataManager::GetValue("tw_backup_list", Backup_List);
723 if (!Backup_List.empty()) {
724 end_pos = Backup_List.find(";", start_pos);
725 while (end_pos != string::npos && start_pos < Backup_List.size()) {
726 backup_path = Backup_List.substr(start_pos, end_pos - start_pos);
bigbiffce8f83c2015-12-12 18:30:21 -0500727 part_settings.Part = Find_Partition_By_Path(backup_path);
728 if (part_settings.Part != NULL) {
Dees_Troya13d74f2013-03-24 08:54:55 -0500729 partition_count++;
bigbiffce8f83c2015-12-12 18:30:21 -0500730 if (part_settings.Part->Backup_Method == BM_FILES)
731 part_settings.file_bytes += part_settings.Part->Backup_Size;
Dees_Troya13d74f2013-03-24 08:54:55 -0500732 else
bigbiffce8f83c2015-12-12 18:30:21 -0500733 part_settings.img_bytes += part_settings.Part->Backup_Size;
734 if (part_settings.Part->Has_SubPartition) {
Dees_Troya13d74f2013-03-24 08:54:55 -0500735 std::vector<TWPartition*>::iterator subpart;
736
737 for (subpart = Partitions.begin(); subpart != Partitions.end(); subpart++) {
bigbiffce8f83c2015-12-12 18:30:21 -0500738 if ((*subpart)->Can_Be_Backed_Up && (*subpart)->Is_Present && (*subpart)->Is_SubPartition && (*subpart)->SubPartition_Of == part_settings.Part->Mount_Point) {
Dees_Troya13d74f2013-03-24 08:54:55 -0500739 partition_count++;
bigbiffce8f83c2015-12-12 18:30:21 -0500740 if ((*subpart)->Backup_Method == BM_FILES)
741 part_settings.file_bytes += (*subpart)->Backup_Size;
Dees_Troya13d74f2013-03-24 08:54:55 -0500742 else
bigbiffce8f83c2015-12-12 18:30:21 -0500743 part_settings.img_bytes += (*subpart)->Backup_Size;
Dees_Troya13d74f2013-03-24 08:54:55 -0500744 }
745 }
Dees_Troy8170a922012-09-18 15:40:25 -0400746 }
Dees_Troya13d74f2013-03-24 08:54:55 -0500747 } else {
Ethan Yonker74db1572015-10-28 12:44:49 -0500748 gui_msg(Msg(msg::kError, "unable_to_locate_partition=Unable to locate '{1}' partition for backup calculations.")(backup_path));
Dees_Troy8170a922012-09-18 15:40:25 -0400749 }
Dees_Troya13d74f2013-03-24 08:54:55 -0500750 start_pos = end_pos + 1;
751 end_pos = Backup_List.find(";", start_pos);
Dees_Troy43d8b002012-09-17 16:00:01 -0400752 }
753 }
Dees_Troy43d8b002012-09-17 16:00:01 -0400754
755 if (partition_count == 0) {
Ethan Yonker74db1572015-10-28 12:44:49 -0500756 gui_msg("no_partition_selected=No partitions selected for backup.");
Dees_Troy43d8b002012-09-17 16:00:01 -0400757 return false;
758 }
bigbiffce8f83c2015-12-12 18:30:21 -0500759 if (adbbackup) {
760 if (twadbbu::Write_ADB_Stream_Header(partition_count) == false) {
761 return false;
762 }
763 }
764 total_bytes = part_settings.file_bytes + part_settings.img_bytes;
Ethan Yonker472f5062016-02-25 13:47:30 -0600765 ProgressTracking progress(total_bytes);
bigbiffce8f83c2015-12-12 18:30:21 -0500766 part_settings.progress = &progress;
767
Ethan Yonker74db1572015-10-28 12:44:49 -0500768 gui_msg(Msg("total_partitions_backup= * Total number of partitions to back up: {1}")(partition_count));
769 gui_msg(Msg("total_backup_size= * Total size of all data: {1}MB")(total_bytes / 1024 / 1024));
Dees_Troy43d8b002012-09-17 16:00:01 -0400770 storage = Find_Partition_By_Path(DataManager::GetCurrentStoragePath());
771 if (storage != NULL) {
772 free_space = storage->Free;
Ethan Yonker74db1572015-10-28 12:44:49 -0500773 gui_msg(Msg("available_space= * Available space: {1}MB")(free_space / 1024 / 1024));
Dees_Troy43d8b002012-09-17 16:00:01 -0400774 } else {
Ethan Yonker74db1572015-10-28 12:44:49 -0500775 gui_err("unable_locate_storage=Unable to locate storage device.");
Dees_Troy43d8b002012-09-17 16:00:01 -0400776 return false;
777 }
bigbiffbf1d6722015-02-14 16:25:59 -0500778
Matt Mowerbfccfb82016-04-25 23:22:31 -0500779 DataManager::GetValue(TW_DISABLE_FREE_SPACE_VAR, disable_free_space_check);
bigbiffce8f83c2015-12-12 18:30:21 -0500780
781 if (adbbackup)
782 disable_free_space_check = true;
783
bigbiffbf1d6722015-02-14 16:25:59 -0500784 if (!disable_free_space_check) {
785 if (free_space - (32 * 1024 * 1024) < total_bytes) {
786 // We require an extra 32MB just in case
Ethan Yonker74db1572015-10-28 12:44:49 -0500787 gui_err("no_space=Not enough free space on storage.");
bigbiffbf1d6722015-02-14 16:25:59 -0500788 return false;
789 }
Dees_Troy43d8b002012-09-17 16:00:01 -0400790 }
bigbiffce8f83c2015-12-12 18:30:21 -0500791 part_settings.img_bytes_remaining = part_settings.img_bytes;
792 part_settings.file_bytes_remaining = part_settings.file_bytes;
Dees_Troy43d8b002012-09-17 16:00:01 -0400793
Ethan Yonker74db1572015-10-28 12:44:49 -0500794 gui_msg("backup_started=[BACKUP STARTED]");
Ethan Yonkerdcf2b672016-09-13 14:41:53 -0500795 gui_msg(Msg("backup_folder= * Backup Folder: {1}")(part_settings.Backup_Folder));
796 if (!TWFunc::Recursive_Mkdir(part_settings.Backup_Folder)) {
Ethan Yonker74db1572015-10-28 12:44:49 -0500797 gui_err("fail_backup_folder=Failed to make backup folder.");
Dees_Troyd4b22b02013-01-18 17:17:58 +0000798 return false;
799 }
800
Dees_Troy2673cec2013-04-02 20:22:16 +0000801 DataManager::SetProgress(0.0);
Dees_Troy093b7642012-09-21 15:59:38 -0400802
Dees_Troya13d74f2013-03-24 08:54:55 -0500803 start_pos = 0;
804 end_pos = Backup_List.find(";", start_pos);
805 while (end_pos != string::npos && start_pos < Backup_List.size()) {
bigbiff7abc5fe2015-01-17 16:53:12 -0500806 if (stop_backup.get_value() != 0)
807 return -1;
Dees_Troya13d74f2013-03-24 08:54:55 -0500808 backup_path = Backup_List.substr(start_pos, end_pos - start_pos);
bigbiffce8f83c2015-12-12 18:30:21 -0500809 part_settings.Part = Find_Partition_By_Path(backup_path);
810 if (part_settings.Part != NULL) {
811 if (!Backup_Partition(&part_settings))
812
Dees_Troya13d74f2013-03-24 08:54:55 -0500813 return false;
814 } else {
Ethan Yonker74db1572015-10-28 12:44:49 -0500815 gui_msg(Msg(msg::kError, "unable_to_locate_partition=Unable to locate '{1}' partition for backup calculations.")(backup_path));
Dees_Troya13d74f2013-03-24 08:54:55 -0500816 }
817 start_pos = end_pos + 1;
818 end_pos = Backup_List.find(";", start_pos);
819 }
Dees_Troy43d8b002012-09-17 16:00:01 -0400820
821 // Average BPS
bigbiffce8f83c2015-12-12 18:30:21 -0500822 if (part_settings.img_time == 0)
823 part_settings.img_time = 1;
824 if (part_settings.file_time == 0)
825 part_settings.file_time = 1;
826 int img_bps = (int)part_settings.img_bytes / (int)part_settings.img_time;
827 unsigned long long file_bps = part_settings.file_bytes / (int)part_settings.file_time;
Dees_Troy43d8b002012-09-17 16:00:01 -0400828
bigbiffce8f83c2015-12-12 18:30:21 -0500829 if (part_settings.file_bytes != 0)
Ethan Yonker472f5062016-02-25 13:47:30 -0600830 gui_msg(Msg("avg_backup_fs=Average backup rate for file systems: {1} MB/sec")(file_bps / (1024 * 1024)));
bigbiffce8f83c2015-12-12 18:30:21 -0500831 if (part_settings.img_bytes != 0)
Ethan Yonker472f5062016-02-25 13:47:30 -0600832 gui_msg(Msg("avg_backup_img=Average backup rate for imaged drives: {1} MB/sec")(img_bps / (1024 * 1024)));
Dees_Troy43d8b002012-09-17 16:00:01 -0400833
834 time(&total_stop);
835 int total_time = (int) difftime(total_stop, total_start);
bigbiffce8f83c2015-12-12 18:30:21 -0500836
837 uint64_t actual_backup_size;
Ethan Yonker3fdcda42016-11-30 12:29:37 -0600838 if (!adbbackup) {
839 TWExclude twe;
840 actual_backup_size = twe.Get_Folder_Size(part_settings.Backup_Folder);
841 } else
bigbiffce8f83c2015-12-12 18:30:21 -0500842 actual_backup_size = part_settings.file_bytes + part_settings.img_bytes;
Matt Mowerfb1c4ff2014-04-16 13:43:36 -0500843 actual_backup_size /= (1024LLU * 1024LLU);
Dees_Troy43d8b002012-09-17 16:00:01 -0400844
bigbiffce8f83c2015-12-12 18:30:21 -0500845 int prev_img_bps = 0, use_compression = 0;
846 unsigned long long prev_file_bps = 0;
Dees_Troy093b7642012-09-21 15:59:38 -0400847 img_bps += (prev_img_bps * 4);
Matt Mowerfb1c4ff2014-04-16 13:43:36 -0500848 img_bps /= 5;
Dees_Troy093b7642012-09-21 15:59:38 -0400849
Matt Mowerfb1c4ff2014-04-16 13:43:36 -0500850 DataManager::GetValue(TW_USE_COMPRESSION_VAR, use_compression);
Dees_Troy093b7642012-09-21 15:59:38 -0400851 if (use_compression)
852 DataManager::GetValue(TW_BACKUP_AVG_FILE_COMP_RATE, prev_file_bps);
Matt Mowerfb1c4ff2014-04-16 13:43:36 -0500853 else
Dees_Troy093b7642012-09-21 15:59:38 -0400854 DataManager::GetValue(TW_BACKUP_AVG_FILE_RATE, prev_file_bps);
855 file_bps += (prev_file_bps * 4);
Matt Mowerfb1c4ff2014-04-16 13:43:36 -0500856 file_bps /= 5;
Dees_Troy093b7642012-09-21 15:59:38 -0400857
Matt Mowerfb1c4ff2014-04-16 13:43:36 -0500858 DataManager::SetValue(TW_BACKUP_AVG_IMG_RATE, img_bps);
Dees_Troy093b7642012-09-21 15:59:38 -0400859 if (use_compression)
860 DataManager::SetValue(TW_BACKUP_AVG_FILE_COMP_RATE, file_bps);
861 else
862 DataManager::SetValue(TW_BACKUP_AVG_FILE_RATE, file_bps);
863
Ethan Yonker74db1572015-10-28 12:44:49 -0500864 gui_msg(Msg("total_backed_size=[{1} MB TOTAL BACKED UP]")(actual_backup_size));
Dees_Troy43d8b002012-09-17 16:00:01 -0400865 Update_System_Details();
Dees_Troyd0384ef2012-10-12 12:15:42 -0400866 UnMount_Main_Partitions();
Ethan Yonker56db1c42015-12-20 22:49:00 -0600867 gui_msg(Msg(msg::kHighlight, "backup_completed=[BACKUP COMPLETED IN {1} SECONDS]")(total_time)); // the end
Ethan Yonkere080c1f2016-09-19 13:50:25 -0500868 string backup_log = part_settings.Backup_Folder + "/recovery.log";
Dees_Troy3f5c4e82013-02-01 15:16:59 +0000869 TWFunc::copy_file("/tmp/recovery.log", backup_log, 0644);
Ethan Yonker4b94cfd2014-12-11 10:00:45 -0600870 tw_set_default_metadata(backup_log.c_str());
bigbiffce8f83c2015-12-12 18:30:21 -0500871
872 if (part_settings.adbbackup) {
873 if (twadbbu::Write_ADB_Stream_Trailer() == false) {
874 return false;
875 }
876 }
877 part_settings.adbbackup = false;
878 DataManager::SetValue("tw_enable_adb_backup", 0);
879
Dees_Troy3f5c4e82013-02-01 15:16:59 +0000880 return true;
Dees_Troy51a0e822012-09-05 15:24:24 -0400881}
882
bigbiffce8f83c2015-12-12 18:30:21 -0500883bool TWPartitionManager::Restore_Partition(PartitionSettings *part_settings) {
Dees_Troy4a2a1262012-09-18 09:33:47 -0400884 time_t Start, Stop;
bigbiffce8f83c2015-12-12 18:30:21 -0500885
Tom Hite5a926722014-09-15 01:31:03 +0000886 TWFunc::SetPerformanceMode(true);
bigbiffce8f83c2015-12-12 18:30:21 -0500887
Dees_Troy4a2a1262012-09-18 09:33:47 -0400888 time(&Start);
Ethan Yonker472f5062016-02-25 13:47:30 -0600889
bigbiffce8f83c2015-12-12 18:30:21 -0500890
891 if (!part_settings->Part->Restore(part_settings)) {
Tom Hite5a926722014-09-15 01:31:03 +0000892 TWFunc::SetPerformanceMode(false);
Dees_Troy4a2a1262012-09-18 09:33:47 -0400893 return false;
Tom Hite5a926722014-09-15 01:31:03 +0000894 }
bigbiffce8f83c2015-12-12 18:30:21 -0500895 if (part_settings->Part->Has_SubPartition) {
Dees_Troy8170a922012-09-18 15:40:25 -0400896 std::vector<TWPartition*>::iterator subpart;
bigbiff bigbiff8fd4b092016-08-30 20:48:53 -0400897 TWPartition *parentPart = part_settings->Part;
Dees_Troy8170a922012-09-18 15:40:25 -0400898
899 for (subpart = Partitions.begin(); subpart != Partitions.end(); subpart++) {
bigbiff bigbiff8fd4b092016-08-30 20:48:53 -0400900 part_settings->Part = *subpart;
901 if ((*subpart)->Is_SubPartition && (*subpart)->SubPartition_Of == parentPart->Mount_Point) {
902 part_settings->Part = (*subpart);
bigbiffce8f83c2015-12-12 18:30:21 -0500903 if (!(*subpart)->Restore(part_settings)) {
Tom Hite5a926722014-09-15 01:31:03 +0000904 TWFunc::SetPerformanceMode(false);
Dees_Troy8170a922012-09-18 15:40:25 -0400905 return false;
Tom Hite5a926722014-09-15 01:31:03 +0000906 }
Dees_Troy8170a922012-09-18 15:40:25 -0400907 }
908 }
909 }
Dees_Troy4a2a1262012-09-18 09:33:47 -0400910 time(&Stop);
Tom Hite5a926722014-09-15 01:31:03 +0000911 TWFunc::SetPerformanceMode(false);
bigbiffce8f83c2015-12-12 18:30:21 -0500912 gui_msg(Msg("restore_part_done=[{1} done ({2} seconds)]")(part_settings->Part->Backup_Display_Name)((int)difftime(Stop, Start)));
913
Dees_Troy4a2a1262012-09-18 09:33:47 -0400914 return true;
915}
916
Ethan Yonker472f5062016-02-25 13:47:30 -0600917int TWPartitionManager::Run_Restore(const string& Restore_Name) {
bigbiffce8f83c2015-12-12 18:30:21 -0500918 PartitionSettings part_settings;
Dees_Troy4a2a1262012-09-18 09:33:47 -0400919 int check_md5, check, partition_count = 0;
Dees_Troya13d74f2013-03-24 08:54:55 -0500920 TWPartition* restore_part = NULL;
bigbiffce8f83c2015-12-12 18:30:21 -0500921
Dees_Troy4a2a1262012-09-18 09:33:47 -0400922 time_t rStart, rStop;
923 time(&rStart);
Dees_Troya13d74f2013-03-24 08:54:55 -0500924 string Restore_List, restore_path;
925 size_t start_pos = 0, end_pos;
bigbiffce8f83c2015-12-12 18:30:21 -0500926
Ethan Yonkerdcf2b672016-09-13 14:41:53 -0500927 part_settings.Backup_Folder = Restore_Name;
bigbiffce8f83c2015-12-12 18:30:21 -0500928 part_settings.Part = NULL;
929 part_settings.partition_count = 0;
930 part_settings.total_restore_size = 0;
931 part_settings.adbbackup = false;
932 part_settings.PM_Method = PM_RESTORE;
Dees_Troy43d8b002012-09-17 16:00:01 -0400933
Ethan Yonker74db1572015-10-28 12:44:49 -0500934 gui_msg("restore_started=[RESTORE STARTED]");
935 gui_msg(Msg("restore_folder=Restore folder: '{1}'")(Restore_Name));
Dees_Troy43d8b002012-09-17 16:00:01 -0400936
Dees_Troy4a2a1262012-09-18 09:33:47 -0400937 if (!Mount_Current_Storage(true))
938 return false;
939
940 DataManager::GetValue(TW_SKIP_MD5_CHECK_VAR, check_md5);
Dees_Troya13d74f2013-03-24 08:54:55 -0500941 if (check_md5 > 0) {
942 // Check MD5 files first before restoring to ensure that all of them match before starting a restore
Ethan Yonker74db1572015-10-28 12:44:49 -0500943 TWFunc::GUI_Operation_Text(TW_VERIFY_MD5_TEXT, gui_parse_text("{@verifying_md5}"));
944 gui_msg("verifying_md5=Verifying MD5");
Dees_Troya13d74f2013-03-24 08:54:55 -0500945 } else {
Ethan Yonker74db1572015-10-28 12:44:49 -0500946 gui_msg("skip_md5=Skipping MD5 check based on user setting.");
Dees_Troya13d74f2013-03-24 08:54:55 -0500947 }
Ethan Yonker74db1572015-10-28 12:44:49 -0500948 gui_msg("calc_restore=Calculating restore details...");
Dees_Troya13d74f2013-03-24 08:54:55 -0500949 DataManager::GetValue("tw_restore_selected", Restore_List);
bigbiffce8f83c2015-12-12 18:30:21 -0500950
Dees_Troya13d74f2013-03-24 08:54:55 -0500951 if (!Restore_List.empty()) {
952 end_pos = Restore_List.find(";", start_pos);
953 while (end_pos != string::npos && start_pos < Restore_List.size()) {
954 restore_path = Restore_List.substr(start_pos, end_pos - start_pos);
bigbiffce8f83c2015-12-12 18:30:21 -0500955 part_settings.Part = Find_Partition_By_Path(restore_path);
956 if (part_settings.Part != NULL) {
bigbiffce8f83c2015-12-12 18:30:21 -0500957 if (part_settings.Part->Mount_Read_Only) {
958 gui_msg(Msg(msg::kError, "restore_read_only=Cannot restore {1} -- mounted read only.")(part_settings.Part->Backup_Display_Name));
Ethan Yonkereb32b1f2015-05-18 10:23:03 -0500959 return false;
960 }
bigbiffce8f83c2015-12-12 18:30:21 -0500961
bigbiff bigbiff8fd4b092016-08-30 20:48:53 -0400962 if (check_md5 > 0 && !part_settings.Part->Check_MD5(&part_settings))
Dees_Troya13d74f2013-03-24 08:54:55 -0500963 return false;
bigbiffce8f83c2015-12-12 18:30:21 -0500964 part_settings.partition_count++;
965 part_settings.total_restore_size += part_settings.Part->Get_Restore_Size(&part_settings);
966 if (part_settings.Part->Has_SubPartition) {
bigbiff bigbiff8fd4b092016-08-30 20:48:53 -0400967 TWPartition *parentPart = part_settings.Part;
Dees_Troya13d74f2013-03-24 08:54:55 -0500968 std::vector<TWPartition*>::iterator subpart;
969
970 for (subpart = Partitions.begin(); subpart != Partitions.end(); subpart++) {
bigbiff bigbiff8fd4b092016-08-30 20:48:53 -0400971 part_settings.Part = *subpart;
972 if ((*subpart)->Is_SubPartition && (*subpart)->SubPartition_Of == parentPart->Mount_Point) {
973 if (check_md5 > 0 && !(*subpart)->Check_MD5(&part_settings))
Dees_Troya13d74f2013-03-24 08:54:55 -0500974 return false;
bigbiffce8f83c2015-12-12 18:30:21 -0500975 part_settings.total_restore_size += (*subpart)->Get_Restore_Size(&part_settings);
Dees_Troya13d74f2013-03-24 08:54:55 -0500976 }
977 }
978 }
979 } else {
Ethan Yonker74db1572015-10-28 12:44:49 -0500980 gui_msg(Msg(msg::kError, "restore_unable_locate=Unable to locate '{1}' partition for restoring.")(restore_path));
Dees_Troya13d74f2013-03-24 08:54:55 -0500981 }
982 start_pos = end_pos + 1;
983 end_pos = Restore_List.find(";", start_pos);
Dees_Troy4a2a1262012-09-18 09:33:47 -0400984 }
Dees_Troy4a2a1262012-09-18 09:33:47 -0400985 }
Dees_Troy4a2a1262012-09-18 09:33:47 -0400986
bigbiffce8f83c2015-12-12 18:30:21 -0500987 if (part_settings.partition_count == 0) {
Ethan Yonker74db1572015-10-28 12:44:49 -0500988 gui_err("no_part_restore=No partitions selected for restore.");
Dees_Troy4a2a1262012-09-18 09:33:47 -0400989 return false;
990 }
991
bigbiffce8f83c2015-12-12 18:30:21 -0500992 gui_msg(Msg("restore_part_count=Restoring {1} partitions...")(part_settings.partition_count));
993 gui_msg(Msg("total_restore_size=Total restore size is {1}MB")(part_settings.total_restore_size / 1048576));
Dees_Troy2673cec2013-04-02 20:22:16 +0000994 DataManager::SetProgress(0.0);
bigbiffce8f83c2015-12-12 18:30:21 -0500995 ProgressTracking progress(part_settings.total_restore_size);
996 part_settings.progress = &progress;
Ethan Yonker1b7a31b2014-07-03 15:09:22 -0500997
Dees_Troya13d74f2013-03-24 08:54:55 -0500998 start_pos = 0;
999 if (!Restore_List.empty()) {
1000 end_pos = Restore_List.find(";", start_pos);
1001 while (end_pos != string::npos && start_pos < Restore_List.size()) {
1002 restore_path = Restore_List.substr(start_pos, end_pos - start_pos);
bigbiffce8f83c2015-12-12 18:30:21 -05001003
1004 part_settings.Part = Find_Partition_By_Path(restore_path);
1005 if (part_settings.Part != NULL) {
1006 part_settings.partition_count++;
bigbiffce8f83c2015-12-12 18:30:21 -05001007 if (!Restore_Partition(&part_settings))
Dees_Troya13d74f2013-03-24 08:54:55 -05001008 return false;
1009 } else {
Ethan Yonker74db1572015-10-28 12:44:49 -05001010 gui_msg(Msg(msg::kError, "restore_unable_locate=Unable to locate '{1}' partition for restoring.")(restore_path));
Dees_Troya13d74f2013-03-24 08:54:55 -05001011 }
1012 start_pos = end_pos + 1;
1013 end_pos = Restore_List.find(";", start_pos);
1014 }
1015 }
Ethan Yonker74db1572015-10-28 12:44:49 -05001016 TWFunc::GUI_Operation_Text(TW_UPDATE_SYSTEM_DETAILS_TEXT, gui_parse_text("{@updating_system_details}"));
Dees_Troy43d8b002012-09-17 16:00:01 -04001017 Update_System_Details();
Dees_Troyd0384ef2012-10-12 12:15:42 -04001018 UnMount_Main_Partitions();
Dees_Troy4a2a1262012-09-18 09:33:47 -04001019 time(&rStop);
Matt Mower3c366972015-12-25 19:28:31 -06001020 gui_msg(Msg(msg::kHighlight, "restore_completed=[RESTORE COMPLETED IN {1} SECONDS]")((int)difftime(rStop,rStart)));
Ethan Yonker1b7a31b2014-07-03 15:09:22 -05001021 DataManager::SetValue("tw_file_progress", "");
bigbiffce8f83c2015-12-12 18:30:21 -05001022
Dees_Troy63c8df72012-09-10 14:02:05 -04001023 return true;
Dees_Troy51a0e822012-09-05 15:24:24 -04001024}
1025
1026void TWPartitionManager::Set_Restore_Files(string Restore_Name) {
Dees_Troy63c8df72012-09-10 14:02:05 -04001027 // Start with the default values
Dees_Troya13d74f2013-03-24 08:54:55 -05001028 string Restore_List;
Dees_Troy83bd4832013-05-04 12:39:56 +00001029 bool get_date = true, check_encryption = true;
1030
1031 DataManager::SetValue("tw_restore_encrypted", 0);
Dees_Troy63c8df72012-09-10 14:02:05 -04001032
1033 DIR* d;
1034 d = opendir(Restore_Name.c_str());
1035 if (d == NULL)
1036 {
Ethan Yonker74db1572015-10-28 12:44:49 -05001037 gui_msg(Msg(msg::kError, "error_opening_strerr=Error opening: '{1}' ({2})")(Restore_Name)(strerror(errno)));
Dees_Troy63c8df72012-09-10 14:02:05 -04001038 return;
1039 }
1040
1041 struct dirent* de;
1042 while ((de = readdir(d)) != NULL)
1043 {
1044 // Strip off three components
1045 char str[256];
1046 char* label;
1047 char* fstype = NULL;
1048 char* extn = NULL;
1049 char* ptr;
1050
1051 strcpy(str, de->d_name);
1052 if (strlen(str) <= 2)
1053 continue;
1054
1055 if (get_date) {
1056 char file_path[255];
1057 struct stat st;
1058
1059 strcpy(file_path, Restore_Name.c_str());
1060 strcat(file_path, "/");
1061 strcat(file_path, str);
1062 stat(file_path, &st);
1063 string backup_date = ctime((const time_t*)(&st.st_mtime));
1064 DataManager::SetValue(TW_RESTORE_FILE_DATE, backup_date);
1065 get_date = false;
1066 }
1067
1068 label = str;
1069 ptr = label;
1070 while (*ptr && *ptr != '.') ptr++;
1071 if (*ptr == '.')
1072 {
1073 *ptr = 0x00;
1074 ptr++;
1075 fstype = ptr;
1076 }
1077 while (*ptr && *ptr != '.') ptr++;
1078 if (*ptr == '.')
1079 {
1080 *ptr = 0x00;
1081 ptr++;
1082 extn = ptr;
1083 }
1084
Dees_Troy83bd4832013-05-04 12:39:56 +00001085 if (fstype == NULL || extn == NULL || strcmp(fstype, "log") == 0) continue;
Dees_Troya13d74f2013-03-24 08:54:55 -05001086 int extnlength = strlen(extn);
Dees_Troy83bd4832013-05-04 12:39:56 +00001087 if (extnlength != 3 && extnlength != 6) continue;
1088 if (extnlength >= 3 && strncmp(extn, "win", 3) != 0) continue;
1089 //if (extnlength == 6 && strncmp(extn, "win000", 6) != 0) continue;
1090
1091 if (check_encryption) {
1092 string filename = Restore_Name + "/";
1093 filename += de->d_name;
1094 if (TWFunc::Get_File_Type(filename) == 2) {
1095 LOGINFO("'%s' is encrypted\n", filename.c_str());
1096 DataManager::SetValue("tw_restore_encrypted", 1);
1097 }
1098 }
Dees_Troya13d74f2013-03-24 08:54:55 -05001099 if (extnlength == 6 && strncmp(extn, "win000", 6) != 0) continue;
Dees_Troy63c8df72012-09-10 14:02:05 -04001100
1101 TWPartition* Part = Find_Partition_By_Path(label);
1102 if (Part == NULL)
1103 {
Ethan Yonker74db1572015-10-28 12:44:49 -05001104 gui_msg(Msg(msg::kError, "unable_locate_part_backup_name=Unable to locate partition by backup name: '{1}'")(label));
Dees_Troy63c8df72012-09-10 14:02:05 -04001105 continue;
1106 }
1107
1108 Part->Backup_FileName = de->d_name;
1109 if (strlen(extn) > 3) {
1110 Part->Backup_FileName.resize(Part->Backup_FileName.size() - strlen(extn) + 3);
1111 }
1112
James Christopher Adduonofddbdfa2016-02-29 15:08:11 -05001113 if (!Part->Is_SubPartition)
1114 Restore_List += Part->Backup_Path + ";";
Dees_Troy63c8df72012-09-10 14:02:05 -04001115 }
1116 closedir(d);
1117
Dees_Troya13d74f2013-03-24 08:54:55 -05001118 // Set the final value
1119 DataManager::SetValue("tw_restore_list", Restore_List);
1120 DataManager::SetValue("tw_restore_selected", Restore_List);
Dees_Troy51a0e822012-09-05 15:24:24 -04001121 return;
1122}
1123
1124int TWPartitionManager::Wipe_By_Path(string Path) {
Dees_Troy63c8df72012-09-10 14:02:05 -04001125 std::vector<TWPartition*>::iterator iter;
1126 int ret = false;
1127 bool found = false;
Dees_Troy38bd7602012-09-14 13:33:53 -04001128 string Local_Path = TWFunc::Get_Root_Path(Path);
Dees_Troy63c8df72012-09-10 14:02:05 -04001129
1130 // Iterate through all partitions
1131 for (iter = Partitions.begin(); iter != Partitions.end(); iter++) {
Dees_Troy657c3092012-09-10 20:32:10 -04001132 if ((*iter)->Mount_Point == Local_Path || (!(*iter)->Symlink_Mount_Point.empty() && (*iter)->Symlink_Mount_Point == Local_Path)) {
Dees_Troye58d5262012-09-21 12:27:57 -04001133 if (Path == "/and-sec")
1134 ret = (*iter)->Wipe_AndSec();
1135 else
1136 ret = (*iter)->Wipe();
Dees_Troy63c8df72012-09-10 14:02:05 -04001137 found = true;
1138 } else if ((*iter)->Is_SubPartition && (*iter)->SubPartition_Of == Local_Path) {
1139 (*iter)->Wipe();
1140 }
1141 }
1142 if (found) {
1143 return ret;
1144 } else
Ethan Yonker74db1572015-10-28 12:44:49 -05001145 gui_msg(Msg(msg::kError, "unable_find_part_path=Unable to find partition for path '{1}'")(Local_Path));
Dees_Troy63c8df72012-09-10 14:02:05 -04001146 return false;
Dees_Troy51a0e822012-09-05 15:24:24 -04001147}
1148
Ethan Yonker87c7bac2014-05-25 21:41:08 -05001149int TWPartitionManager::Wipe_By_Path(string Path, string New_File_System) {
1150 std::vector<TWPartition*>::iterator iter;
1151 int ret = false;
1152 bool found = false;
1153 string Local_Path = TWFunc::Get_Root_Path(Path);
1154
1155 // Iterate through all partitions
1156 for (iter = Partitions.begin(); iter != Partitions.end(); iter++) {
1157 if ((*iter)->Mount_Point == Local_Path || (!(*iter)->Symlink_Mount_Point.empty() && (*iter)->Symlink_Mount_Point == Local_Path)) {
1158 if (Path == "/and-sec")
1159 ret = (*iter)->Wipe_AndSec();
1160 else
1161 ret = (*iter)->Wipe(New_File_System);
1162 found = true;
1163 } else if ((*iter)->Is_SubPartition && (*iter)->SubPartition_Of == Local_Path) {
1164 (*iter)->Wipe(New_File_System);
1165 }
1166 }
1167 if (found) {
1168 return ret;
1169 } else
Ethan Yonker74db1572015-10-28 12:44:49 -05001170 gui_msg(Msg(msg::kError, "unable_find_part_path=Unable to find partition for path '{1}'")(Local_Path));
Ethan Yonker87c7bac2014-05-25 21:41:08 -05001171 return false;
1172}
1173
Dees_Troy51a0e822012-09-05 15:24:24 -04001174int TWPartitionManager::Factory_Reset(void) {
Dees_Troy63c8df72012-09-10 14:02:05 -04001175 std::vector<TWPartition*>::iterator iter;
1176 int ret = true;
1177
1178 for (iter = Partitions.begin(); iter != Partitions.end(); iter++) {
Dees_Troy38bd7602012-09-14 13:33:53 -04001179 if ((*iter)->Wipe_During_Factory_Reset && (*iter)->Is_Present) {
Ethan Yonker89583ef2015-08-26 09:01:59 -05001180#ifdef TW_OEM_BUILD
1181 if ((*iter)->Mount_Point == "/data") {
1182 if (!(*iter)->Wipe_Encryption())
1183 ret = false;
1184 } else {
1185#endif
1186 if (!(*iter)->Wipe())
1187 ret = false;
1188#ifdef TW_OEM_BUILD
1189 }
1190#endif
Dees_Troy094207a2012-09-26 12:00:39 -04001191 } else if ((*iter)->Has_Android_Secure) {
1192 if (!(*iter)->Wipe_AndSec())
1193 ret = false;
Dees_Troy63c8df72012-09-10 14:02:05 -04001194 }
1195 }
Ethan Yonker9fa76ba2016-06-30 14:05:43 -05001196 TWFunc::check_and_run_script("/sbin/factoryreset.sh", "Factory Reset Script");
Dees_Troy63c8df72012-09-10 14:02:05 -04001197 return ret;
Dees_Troy51a0e822012-09-05 15:24:24 -04001198}
1199
Dees_Troy38bd7602012-09-14 13:33:53 -04001200int TWPartitionManager::Wipe_Dalvik_Cache(void) {
1201 struct stat st;
bigbiff bigbiff9c754052013-01-09 09:09:08 -05001202 vector <string> dir;
Dees_Troy38bd7602012-09-14 13:33:53 -04001203
1204 if (!Mount_By_Path("/data", true))
1205 return false;
1206
1207 if (!Mount_By_Path("/cache", true))
1208 return false;
1209
bigbiff bigbiff9c754052013-01-09 09:09:08 -05001210 dir.push_back("/data/dalvik-cache");
1211 dir.push_back("/cache/dalvik-cache");
1212 dir.push_back("/cache/dc");
Ethan Yonker74db1572015-10-28 12:44:49 -05001213 gui_msg("wiping_dalvik=Wiping Dalvik Cache Directories...");
Dees_Troya13d74f2013-03-24 08:54:55 -05001214 for (unsigned i = 0; i < dir.size(); ++i) {
bigbiff bigbiff9c754052013-01-09 09:09:08 -05001215 if (stat(dir.at(i).c_str(), &st) == 0) {
1216 TWFunc::removeDir(dir.at(i), false);
Ethan Yonker74db1572015-10-28 12:44:49 -05001217 gui_msg(Msg("cleaned=Cleaned: {1}...")(dir.at(i)));
bigbiff bigbiff9c754052013-01-09 09:09:08 -05001218 }
1219 }
Dees_Troy38bd7602012-09-14 13:33:53 -04001220 TWPartition* sdext = Find_Partition_By_Path("/sd-ext");
Vojtech Bocekfafb0c52013-07-25 22:53:02 +02001221 if (sdext && sdext->Is_Present && sdext->Mount(false))
1222 {
1223 if (stat("/sd-ext/dalvik-cache", &st) == 0)
1224 {
1225 TWFunc::removeDir("/sd-ext/dalvik-cache", false);
Ethan Yonker74db1572015-10-28 12:44:49 -05001226 gui_msg(Msg("cleaned=Cleaned: {1}...")("/sd-ext/dalvik-cache"));
bigbiff bigbiff9c754052013-01-09 09:09:08 -05001227 }
Vojtech Bocekfafb0c52013-07-25 22:53:02 +02001228 }
Ethan Yonker74db1572015-10-28 12:44:49 -05001229 gui_msg("dalvik_done=-- Dalvik Cache Directories Wipe Complete!");
Dees_Troy38bd7602012-09-14 13:33:53 -04001230 return true;
1231}
1232
1233int TWPartitionManager::Wipe_Rotate_Data(void) {
1234 if (!Mount_By_Path("/data", true))
1235 return false;
1236
bigbiff bigbiff9c754052013-01-09 09:09:08 -05001237 unlink("/data/misc/akmd*");
1238 unlink("/data/misc/rild*");
Dees_Troy2673cec2013-04-02 20:22:16 +00001239 gui_print("Rotation data wiped.\n");
Dees_Troy38bd7602012-09-14 13:33:53 -04001240 return true;
1241}
1242
1243int TWPartitionManager::Wipe_Battery_Stats(void) {
1244 struct stat st;
1245
1246 if (!Mount_By_Path("/data", true))
1247 return false;
1248
1249 if (0 != stat("/data/system/batterystats.bin", &st)) {
Dees_Troy2673cec2013-04-02 20:22:16 +00001250 gui_print("No Battery Stats Found. No Need To Wipe.\n");
Dees_Troy38bd7602012-09-14 13:33:53 -04001251 } else {
1252 remove("/data/system/batterystats.bin");
Dees_Troy2673cec2013-04-02 20:22:16 +00001253 gui_print("Cleared battery stats.\n");
Dees_Troy38bd7602012-09-14 13:33:53 -04001254 }
1255 return true;
1256}
1257
Dees_Troy2ff5a8d2012-09-26 14:53:02 -04001258int TWPartitionManager::Wipe_Android_Secure(void) {
1259 std::vector<TWPartition*>::iterator iter;
1260 int ret = false;
1261 bool found = false;
1262
1263 // Iterate through all partitions
1264 for (iter = Partitions.begin(); iter != Partitions.end(); iter++) {
1265 if ((*iter)->Has_Android_Secure) {
1266 ret = (*iter)->Wipe_AndSec();
1267 found = true;
1268 }
1269 }
1270 if (found) {
1271 return ret;
1272 } else {
Ethan Yonker74db1572015-10-28 12:44:49 -05001273 gui_err("no_andsec=No android secure partitions found.");
Dees_Troy2ff5a8d2012-09-26 14:53:02 -04001274 }
1275 return false;
1276}
1277
Dees_Troy38bd7602012-09-14 13:33:53 -04001278int TWPartitionManager::Format_Data(void) {
1279 TWPartition* dat = Find_Partition_By_Path("/data");
1280
1281 if (dat != NULL) {
1282 if (!dat->UnMount(true))
1283 return false;
1284
1285 return dat->Wipe_Encryption();
1286 } else {
Matt Mower3c366972015-12-25 19:28:31 -06001287 gui_msg(Msg(msg::kError, "unable_to_locate=Unable to locate {1}.")("/data"));
Dees_Troy38bd7602012-09-14 13:33:53 -04001288 return false;
1289 }
1290 return false;
1291}
1292
1293int TWPartitionManager::Wipe_Media_From_Data(void) {
1294 TWPartition* dat = Find_Partition_By_Path("/data");
1295
1296 if (dat != NULL) {
1297 if (!dat->Has_Data_Media) {
Dees_Troy2673cec2013-04-02 20:22:16 +00001298 LOGERR("This device does not have /data/media\n");
Dees_Troy38bd7602012-09-14 13:33:53 -04001299 return false;
1300 }
1301 if (!dat->Mount(true))
1302 return false;
1303
Ethan Yonker74db1572015-10-28 12:44:49 -05001304 gui_msg("wiping_datamedia=Wiping internal storage -- /data/media...");
Ethan Yonker726a0202014-12-16 20:01:38 -06001305 Remove_MTP_Storage(dat->MTP_Storage_ID);
bigbiff bigbiff9c754052013-01-09 09:09:08 -05001306 TWFunc::removeDir("/data/media", false);
xiaolu9416f4f2015-06-04 08:22:23 +08001307 dat->Recreate_Media_Folder();
Ethan Yonker726a0202014-12-16 20:01:38 -06001308 Add_MTP_Storage(dat->MTP_Storage_ID);
Dees_Troy38bd7602012-09-14 13:33:53 -04001309 return true;
1310 } else {
Matt Mower3c366972015-12-25 19:28:31 -06001311 gui_msg(Msg(msg::kError, "unable_to_locate=Unable to locate {1}.")("/data"));
Dees_Troy38bd7602012-09-14 13:33:53 -04001312 return false;
1313 }
1314 return false;
1315}
1316
Ethan Yonker87c7bac2014-05-25 21:41:08 -05001317int TWPartitionManager::Repair_By_Path(string Path, bool Display_Error) {
1318 std::vector<TWPartition*>::iterator iter;
1319 int ret = false;
1320 bool found = false;
1321 string Local_Path = TWFunc::Get_Root_Path(Path);
1322
1323 if (Local_Path == "/tmp" || Local_Path == "/")
1324 return true;
1325
1326 // Iterate through all partitions
1327 for (iter = Partitions.begin(); iter != Partitions.end(); iter++) {
1328 if ((*iter)->Mount_Point == Local_Path || (!(*iter)->Symlink_Mount_Point.empty() && (*iter)->Symlink_Mount_Point == Local_Path)) {
1329 ret = (*iter)->Repair();
1330 found = true;
1331 } else if ((*iter)->Is_SubPartition && (*iter)->SubPartition_Of == Local_Path) {
1332 (*iter)->Repair();
1333 }
1334 }
1335 if (found) {
1336 return ret;
1337 } else if (Display_Error) {
Ethan Yonker74db1572015-10-28 12:44:49 -05001338 gui_msg(Msg(msg::kError, "unable_find_part_path=Unable to find partition for path '{1}'")(Local_Path));
Ethan Yonker87c7bac2014-05-25 21:41:08 -05001339 } else {
1340 LOGINFO("Repair: Unable to find partition for path '%s'\n", Local_Path.c_str());
1341 }
1342 return false;
1343}
1344
Ethan Yonkera2719152015-05-28 09:44:41 -05001345int TWPartitionManager::Resize_By_Path(string Path, bool Display_Error) {
1346 std::vector<TWPartition*>::iterator iter;
1347 int ret = false;
1348 bool found = false;
1349 string Local_Path = TWFunc::Get_Root_Path(Path);
1350
1351 if (Local_Path == "/tmp" || Local_Path == "/")
1352 return true;
1353
1354 // Iterate through all partitions
1355 for (iter = Partitions.begin(); iter != Partitions.end(); iter++) {
1356 if ((*iter)->Mount_Point == Local_Path || (!(*iter)->Symlink_Mount_Point.empty() && (*iter)->Symlink_Mount_Point == Local_Path)) {
1357 ret = (*iter)->Resize();
1358 found = true;
1359 } else if ((*iter)->Is_SubPartition && (*iter)->SubPartition_Of == Local_Path) {
1360 (*iter)->Resize();
1361 }
1362 }
1363 if (found) {
1364 return ret;
1365 } else if (Display_Error) {
Ethan Yonker74db1572015-10-28 12:44:49 -05001366 gui_msg(Msg(msg::kError, "unable_find_part_path=Unable to find partition for path '{1}'")(Local_Path));
Ethan Yonkera2719152015-05-28 09:44:41 -05001367 } else {
1368 LOGINFO("Resize: Unable to find partition for path '%s'\n", Local_Path.c_str());
1369 }
1370 return false;
1371}
1372
Dees_Troy51a0e822012-09-05 15:24:24 -04001373void TWPartitionManager::Update_System_Details(void) {
Dees_Troy5bf43922012-09-07 16:07:55 -04001374 std::vector<TWPartition*>::iterator iter;
Dees_Troy51127312012-09-08 13:08:49 -04001375 int data_size = 0;
Dees_Troy5bf43922012-09-07 16:07:55 -04001376
Ethan Yonker74db1572015-10-28 12:44:49 -05001377 gui_msg("update_part_details=Updating partition details...");
Dees_Troy5bf43922012-09-07 16:07:55 -04001378 for (iter = Partitions.begin(); iter != Partitions.end(); iter++) {
Dees_Troy51127312012-09-08 13:08:49 -04001379 if ((*iter)->Can_Be_Mounted) {
1380 (*iter)->Update_Size(true);
1381 if ((*iter)->Mount_Point == "/system") {
1382 int backup_display_size = (int)((*iter)->Backup_Size / 1048576LLU);
1383 DataManager::SetValue(TW_BACKUP_SYSTEM_SIZE, backup_display_size);
1384 } else if ((*iter)->Mount_Point == "/data" || (*iter)->Mount_Point == "/datadata") {
1385 data_size += (int)((*iter)->Backup_Size / 1048576LLU);
1386 } else if ((*iter)->Mount_Point == "/cache") {
1387 int backup_display_size = (int)((*iter)->Backup_Size / 1048576LLU);
1388 DataManager::SetValue(TW_BACKUP_CACHE_SIZE, backup_display_size);
1389 } else if ((*iter)->Mount_Point == "/sd-ext") {
1390 int backup_display_size = (int)((*iter)->Backup_Size / 1048576LLU);
1391 DataManager::SetValue(TW_BACKUP_SDEXT_SIZE, backup_display_size);
1392 if ((*iter)->Backup_Size == 0) {
1393 DataManager::SetValue(TW_HAS_SDEXT_PARTITION, 0);
1394 DataManager::SetValue(TW_BACKUP_SDEXT_VAR, 0);
1395 } else
1396 DataManager::SetValue(TW_HAS_SDEXT_PARTITION, 1);
Dees_Troye58d5262012-09-21 12:27:57 -04001397 } else if ((*iter)->Has_Android_Secure) {
Dees_Troy8170a922012-09-18 15:40:25 -04001398 int backup_display_size = (int)((*iter)->Backup_Size / 1048576LLU);
Dees_Troye58d5262012-09-21 12:27:57 -04001399 DataManager::SetValue(TW_BACKUP_ANDSEC_SIZE, backup_display_size);
Dees_Troy8170a922012-09-18 15:40:25 -04001400 if ((*iter)->Backup_Size == 0) {
1401 DataManager::SetValue(TW_HAS_ANDROID_SECURE, 0);
1402 DataManager::SetValue(TW_BACKUP_ANDSEC_VAR, 0);
1403 } else
1404 DataManager::SetValue(TW_HAS_ANDROID_SECURE, 1);
Dees_Troy2c50e182012-09-26 20:05:28 -04001405 } else if ((*iter)->Mount_Point == "/boot") {
1406 int backup_display_size = (int)((*iter)->Backup_Size / 1048576LLU);
1407 DataManager::SetValue(TW_BACKUP_BOOT_SIZE, backup_display_size);
1408 if ((*iter)->Backup_Size == 0) {
1409 DataManager::SetValue("tw_has_boot_partition", 0);
1410 DataManager::SetValue(TW_BACKUP_BOOT_VAR, 0);
1411 } else
1412 DataManager::SetValue("tw_has_boot_partition", 1);
Dees_Troy51127312012-09-08 13:08:49 -04001413 }
Dees_Troyaa9cc402012-10-13 12:14:05 -04001414 } else {
1415 // Handle unmountable partitions in case we reset defaults
1416 if ((*iter)->Mount_Point == "/boot") {
1417 int backup_display_size = (int)((*iter)->Backup_Size / 1048576LLU);
1418 DataManager::SetValue(TW_BACKUP_BOOT_SIZE, backup_display_size);
1419 if ((*iter)->Backup_Size == 0) {
1420 DataManager::SetValue(TW_HAS_BOOT_PARTITION, 0);
1421 DataManager::SetValue(TW_BACKUP_BOOT_VAR, 0);
1422 } else
1423 DataManager::SetValue(TW_HAS_BOOT_PARTITION, 1);
1424 } else if ((*iter)->Mount_Point == "/recovery") {
1425 int backup_display_size = (int)((*iter)->Backup_Size / 1048576LLU);
1426 DataManager::SetValue(TW_BACKUP_RECOVERY_SIZE, backup_display_size);
1427 if ((*iter)->Backup_Size == 0) {
1428 DataManager::SetValue(TW_HAS_RECOVERY_PARTITION, 0);
1429 DataManager::SetValue(TW_BACKUP_RECOVERY_VAR, 0);
1430 } else
1431 DataManager::SetValue(TW_HAS_RECOVERY_PARTITION, 1);
Gary Peck82599a82012-11-21 16:23:12 -08001432 } else if ((*iter)->Mount_Point == "/data") {
1433 data_size += (int)((*iter)->Backup_Size / 1048576LLU);
Dees_Troyaa9cc402012-10-13 12:14:05 -04001434 }
Dees_Troy51127312012-09-08 13:08:49 -04001435 }
Dees_Troy5bf43922012-09-07 16:07:55 -04001436 }
Ethan Yonker74db1572015-10-28 12:44:49 -05001437 gui_msg("update_part_details_done=...done");
Dees_Troy51127312012-09-08 13:08:49 -04001438 DataManager::SetValue(TW_BACKUP_DATA_SIZE, data_size);
1439 string current_storage_path = DataManager::GetCurrentStoragePath();
1440 TWPartition* FreeStorage = Find_Partition_By_Path(current_storage_path);
Dees_Troy8170a922012-09-18 15:40:25 -04001441 if (FreeStorage != NULL) {
1442 // Attempt to mount storage
1443 if (!FreeStorage->Mount(false)) {
Matt Mower2d50cad2015-12-03 22:26:55 -06001444 gui_msg(Msg(msg::kError, "unable_to_mount_storage=Unable to mount storage"));
1445 DataManager::SetValue(TW_STORAGE_FREE_SIZE, 0);
Dees_Troy8170a922012-09-18 15:40:25 -04001446 } else {
1447 DataManager::SetValue(TW_STORAGE_FREE_SIZE, (int)(FreeStorage->Free / 1048576LLU));
1448 }
1449 } else {
Dees_Troy2673cec2013-04-02 20:22:16 +00001450 LOGINFO("Unable to find storage partition '%s'.\n", current_storage_path.c_str());
Dees_Troy8170a922012-09-18 15:40:25 -04001451 }
Dees_Troy5bf43922012-09-07 16:07:55 -04001452 if (!Write_Fstab())
Dees_Troy2673cec2013-04-02 20:22:16 +00001453 LOGERR("Error creating fstab\n");
Dees_Troy51a0e822012-09-05 15:24:24 -04001454 return;
1455}
1456
1457int TWPartitionManager::Decrypt_Device(string Password) {
Dees_Troy5bf43922012-09-07 16:07:55 -04001458#ifdef TW_INCLUDE_CRYPTO
1459 int ret_val, password_len;
Ethan Yonkera1de1492015-11-04 11:58:27 -06001460 char crypto_state[PROPERTY_VALUE_MAX], crypto_blkdev[PROPERTY_VALUE_MAX], cPassword[255];
Dees_Troy5bf43922012-09-07 16:07:55 -04001461 size_t result;
Ethan Yonker253368a2014-11-25 15:00:52 -06001462 std::vector<TWPartition*>::iterator iter;
Dees_Troy5bf43922012-09-07 16:07:55 -04001463
Ethan Yonker253368a2014-11-25 15:00:52 -06001464 // Mount any partitions that need to be mounted for decrypt
1465 for (iter = Partitions.begin(); iter != Partitions.end(); iter++) {
1466 if ((*iter)->Mount_To_Decrypt) {
1467 (*iter)->Mount(true);
1468 }
a39552696ff55ce2013-01-08 16:14:56 +00001469 }
a39552696ff55ce2013-01-08 16:14:56 +00001470
Ethan Yonkera1de1492015-11-04 11:58:27 -06001471 property_get("ro.crypto.state", crypto_state, "error");
1472 if (strcmp(crypto_state, "error") == 0) {
1473 property_set("ro.crypto.state", "encrypted");
1474 // Sleep for a bit so that services can start if needed
1475 sleep(1);
1476 }
1477
Dees_Troy5bf43922012-09-07 16:07:55 -04001478 strcpy(cPassword, Password.c_str());
a39552696ff55ce2013-01-08 16:14:56 +00001479 int pwret = cryptfs_check_passwd(cPassword);
1480
Ethan Yonker253368a2014-11-25 15:00:52 -06001481 // Unmount any partitions that were needed for decrypt
1482 for (iter = Partitions.begin(); iter != Partitions.end(); iter++) {
1483 if ((*iter)->Mount_To_Decrypt) {
1484 (*iter)->UnMount(false);
1485 }
1486 }
1487
a39552696ff55ce2013-01-08 16:14:56 +00001488 if (pwret != 0) {
Ethan Yonker74db1572015-10-28 12:44:49 -05001489 gui_err("fail_decrypt=Failed to decrypt data.");
Dees_Troy5bf43922012-09-07 16:07:55 -04001490 return -1;
1491 }
a39552696ff55ce2013-01-08 16:14:56 +00001492
Dees_Troy5bf43922012-09-07 16:07:55 -04001493 property_get("ro.crypto.fs_crypto_blkdev", crypto_blkdev, "error");
1494 if (strcmp(crypto_blkdev, "error") == 0) {
Dees_Troy2673cec2013-04-02 20:22:16 +00001495 LOGERR("Error retrieving decrypted data block device.\n");
Dees_Troy5bf43922012-09-07 16:07:55 -04001496 } else {
1497 TWPartition* dat = Find_Partition_By_Path("/data");
1498 if (dat != NULL) {
Dees_Troy5bf43922012-09-07 16:07:55 -04001499 DataManager::SetValue(TW_IS_DECRYPTED, 1);
1500 dat->Is_Decrypted = true;
1501 dat->Decrypted_Block_Device = crypto_blkdev;
Gary Peck82599a82012-11-21 16:23:12 -08001502 dat->Setup_File_System(false);
Dees_Troy74fb2e92013-04-15 14:35:47 +00001503 dat->Current_File_System = dat->Fstab_File_System; // Needed if we're ignoring blkid because encrypted devices start out as emmc
Matt Mower3c366972015-12-25 19:28:31 -06001504 gui_msg(Msg("decrypt_success_dev=Data successfully decrypted, new block device: '{1}'")(crypto_blkdev));
a39552696ff55ce2013-01-08 16:14:56 +00001505
Dees_Troy5bf43922012-09-07 16:07:55 -04001506 // Sleep for a bit so that the device will be ready
1507 sleep(1);
Ethan Yonker6277c792014-09-15 14:54:30 -05001508 if (dat->Has_Data_Media && dat->Mount(false) && TWFunc::Path_Exists("/data/media/0")) {
Dees_Troy16b74352012-11-14 22:27:31 +00001509 dat->Storage_Path = "/data/media/0";
1510 dat->Symlink_Path = dat->Storage_Path;
Dees Troy98fb46c2013-12-04 16:56:45 +00001511 DataManager::SetValue("tw_storage_path", "/data/media/0");
Ethan Yonkerec0fa4a2014-11-20 09:51:03 -06001512 DataManager::SetValue("tw_settings_path", "/data/media/0");
Dees_Troy16b74352012-11-14 22:27:31 +00001513 dat->UnMount(false);
Dees_Troydc8bc1b2013-01-17 01:39:28 +00001514 Output_Partition(dat);
Dees_Troy16b74352012-11-14 22:27:31 +00001515 }
Dees_Troy5bf43922012-09-07 16:07:55 -04001516 Update_System_Details();
Dees_Troyd0384ef2012-10-12 12:15:42 -04001517 UnMount_Main_Partitions();
Dees_Troy5bf43922012-09-07 16:07:55 -04001518 } else
Dees_Troy2673cec2013-04-02 20:22:16 +00001519 LOGERR("Unable to locate data partition.\n");
Dees_Troy5bf43922012-09-07 16:07:55 -04001520 }
1521 return 0;
1522#else
Ethan Yonker74db1572015-10-28 12:44:49 -05001523 gui_err("no_crypto_support=No crypto support was compiled into this build.");
Dees_Troy5bf43922012-09-07 16:07:55 -04001524 return -1;
1525#endif
Dees_Troy51a0e822012-09-05 15:24:24 -04001526 return 1;
Dees_Troy51127312012-09-08 13:08:49 -04001527}
1528
Ethan Yonkerb5fab762016-01-28 14:03:33 -06001529int TWPartitionManager::Fix_Contexts(void) {
thata3d31fb2014-12-21 22:27:40 +01001530#ifdef HAVE_SELINUX
Ethan Yonkerb5fab762016-01-28 14:03:33 -06001531 std::vector<TWPartition*>::iterator iter;
1532 for (iter = Partitions.begin(); iter != Partitions.end(); iter++) {
1533 if ((*iter)->Has_Data_Media) {
1534 if ((*iter)->Mount(true)) {
1535 if (fixContexts::fixDataMediaContexts((*iter)->Mount_Point) != 0)
1536 return -1;
1537 }
1538 }
1539 }
Dees_Troy1a650e62012-10-19 20:54:32 -04001540 UnMount_Main_Partitions();
Ethan Yonker74db1572015-10-28 12:44:49 -05001541 gui_msg("done=Done.");
Ethan Yonkerb5fab762016-01-28 14:03:33 -06001542 return 0;
1543#else
1544 LOGERR("Cannot fix contexts, no selinux support present.\n");
1545 return -1;
1546#endif
bigbiff bigbiffa0f8a592012-10-09 21:01:03 -04001547}
1548
Ethan Yonker66a19492015-12-10 10:19:45 -06001549TWPartition* TWPartitionManager::Find_Next_Storage(string Path, bool Exclude_Data_Media) {
Ethan Yonker47360be2014-04-01 10:34:34 -05001550 std::vector<TWPartition*>::iterator iter = Partitions.begin();
1551
1552 if (!Path.empty()) {
1553 string Search_Path = TWFunc::Get_Root_Path(Path);
1554 for (; iter != Partitions.end(); iter++) {
Matt Mower9a561dd2016-02-22 21:25:51 -06001555 if ((*iter)->Mount_Point == Search_Path) {
Ethan Yonker47360be2014-04-01 10:34:34 -05001556 iter++;
1557 break;
1558 }
1559 }
1560 }
1561
1562 for (; iter != Partitions.end(); iter++) {
Ethan Yonker66a19492015-12-10 10:19:45 -06001563 if (Exclude_Data_Media && (*iter)->Has_Data_Media) {
1564 // do nothing, do not return this type of partition
1565 } else if ((*iter)->Is_Storage && (*iter)->Is_Present) {
Ethan Yonker47360be2014-04-01 10:34:34 -05001566 return (*iter);
1567 }
1568 }
1569
1570 return NULL;
1571}
1572
Dees_Troyd21618c2012-10-14 18:48:49 -04001573int TWPartitionManager::Open_Lun_File(string Partition_Path, string Lun_File) {
Dees_Troyd21618c2012-10-14 18:48:49 -04001574 TWPartition* Part = Find_Partition_By_Path(Partition_Path);
1575
1576 if (Part == NULL) {
Ethan Yonker74db1572015-10-28 12:44:49 -05001577 LOGINFO("Unable to locate '%s' for USB storage mode.", Partition_Path.c_str());
1578 gui_msg(Msg(msg::kError, "unable_find_part_path=Unable to find partition for path '{1}'")(Partition_Path));
Dees_Troyd21618c2012-10-14 18:48:49 -04001579 return false;
1580 }
Ethan Yonker47360be2014-04-01 10:34:34 -05001581 LOGINFO("USB mount '%s', '%s' > '%s'\n", Partition_Path.c_str(), Part->Actual_Block_Device.c_str(), Lun_File.c_str());
1582 if (!Part->UnMount(true) || !Part->Is_Present)
Dees_Troyd21618c2012-10-14 18:48:49 -04001583 return false;
1584
Dees_Troy2673cec2013-04-02 20:22:16 +00001585 if (TWFunc::write_file(Lun_File, Part->Actual_Block_Device)) {
1586 LOGERR("Unable to write to ums lunfile '%s': (%s)\n", Lun_File.c_str(), strerror(errno));
Dees_Troyd21618c2012-10-14 18:48:49 -04001587 return false;
1588 }
Dees_Troyd21618c2012-10-14 18:48:49 -04001589 return true;
1590}
1591
Dees_Troy8170a922012-09-18 15:40:25 -04001592int TWPartitionManager::usb_storage_enable(void) {
Dees_Troyd21618c2012-10-14 18:48:49 -04001593 int has_dual, has_data_media;
Dees_Troy8170a922012-09-18 15:40:25 -04001594 char lun_file[255];
Dees_Troyd21618c2012-10-14 18:48:49 -04001595 bool has_multiple_lun = false;
Dees_Troy8170a922012-09-18 15:40:25 -04001596
Dees_Troy8170a922012-09-18 15:40:25 -04001597 DataManager::GetValue(TW_HAS_DATA_MEDIA, has_data_media);
Ethan Yonker47360be2014-04-01 10:34:34 -05001598 string Lun_File_str = CUSTOM_LUN_FILE;
1599 size_t found = Lun_File_str.find("%");
1600 if (found != string::npos) {
1601 sprintf(lun_file, CUSTOM_LUN_FILE, 1);
1602 if (TWFunc::Path_Exists(lun_file))
1603 has_multiple_lun = true;
1604 }
Ethan Yonker726a0202014-12-16 20:01:38 -06001605 mtp_was_enabled = TWFunc::Toggle_MTP(false); // Must disable MTP for USB Storage
Ethan Yonker47360be2014-04-01 10:34:34 -05001606 if (!has_multiple_lun) {
1607 LOGINFO("Device doesn't have multiple lun files, mount current storage\n");
1608 sprintf(lun_file, CUSTOM_LUN_FILE, 0);
1609 if (TWFunc::Get_Root_Path(DataManager::GetCurrentStoragePath()) == "/data") {
Ethan Yonker66a19492015-12-10 10:19:45 -06001610 TWPartition* Mount = Find_Next_Storage("", true);
Ethan Yonker47360be2014-04-01 10:34:34 -05001611 if (Mount) {
bigbiff bigbiffc7eee6f2014-09-02 18:59:01 -04001612 if (!Open_Lun_File(Mount->Mount_Point, lun_file)) {
1613 goto error_handle;
1614 }
Ethan Yonker47360be2014-04-01 10:34:34 -05001615 } else {
Ethan Yonker74db1572015-10-28 12:44:49 -05001616 gui_err("unable_locate_storage=Unable to locate storage device.");
bigbiff bigbiffc7eee6f2014-09-02 18:59:01 -04001617 goto error_handle;
Ethan Yonker47360be2014-04-01 10:34:34 -05001618 }
1619 } else if (!Open_Lun_File(DataManager::GetCurrentStoragePath(), lun_file)) {
bigbiff bigbiffc7eee6f2014-09-02 18:59:01 -04001620 goto error_handle;
Dees_Troy8170a922012-09-18 15:40:25 -04001621 }
Dees_Troy8170a922012-09-18 15:40:25 -04001622 } else {
Ethan Yonker47360be2014-04-01 10:34:34 -05001623 LOGINFO("Device has multiple lun files\n");
1624 TWPartition* Mount1;
1625 TWPartition* Mount2;
Dees_Troy8170a922012-09-18 15:40:25 -04001626 sprintf(lun_file, CUSTOM_LUN_FILE, 0);
Ethan Yonker66a19492015-12-10 10:19:45 -06001627 Mount1 = Find_Next_Storage("", true);
Ethan Yonker47360be2014-04-01 10:34:34 -05001628 if (Mount1) {
bigbiff bigbiffc7eee6f2014-09-02 18:59:01 -04001629 if (!Open_Lun_File(Mount1->Mount_Point, lun_file)) {
1630 goto error_handle;
1631 }
Matt Moweree717062014-04-26 01:46:46 -05001632 sprintf(lun_file, CUSTOM_LUN_FILE, 1);
Ethan Yonker66a19492015-12-10 10:19:45 -06001633 Mount2 = Find_Next_Storage(Mount1->Mount_Point, true);
Matt Mower1fdcdb72016-01-25 20:53:47 -06001634 if (Mount2 && Mount2->Mount_Point != Mount1->Mount_Point) {
Matt Moweree717062014-04-26 01:46:46 -05001635 Open_Lun_File(Mount2->Mount_Point, lun_file);
Ethan Yonker47360be2014-04-01 10:34:34 -05001636 }
1637 } else {
Ethan Yonker74db1572015-10-28 12:44:49 -05001638 gui_err("unable_locate_storage=Unable to locate storage device.");
bigbiff bigbiffc7eee6f2014-09-02 18:59:01 -04001639 goto error_handle;
Ethan Yonker47360be2014-04-01 10:34:34 -05001640 }
Dees_Troy8170a922012-09-18 15:40:25 -04001641 }
Matt Mowerb6ef4782014-11-06 02:24:36 -06001642 property_set("sys.storage.ums_enabled", "1");
HandyMenny37d42992014-10-26 22:15:59 +01001643 property_set("sys.usb.config", "mass_storage,adb");
Dees_Troy8170a922012-09-18 15:40:25 -04001644 return true;
bigbiff bigbiffc7eee6f2014-09-02 18:59:01 -04001645error_handle:
1646 if (mtp_was_enabled)
1647 if (!Enable_MTP())
1648 Disable_MTP();
1649 return false;
Dees_Troy8170a922012-09-18 15:40:25 -04001650}
1651
1652int TWPartitionManager::usb_storage_disable(void) {
Dees_Troy2673cec2013-04-02 20:22:16 +00001653 int index, ret;
1654 char lun_file[255], ch[2] = {0, 0};
1655 string str = ch;
Dees_Troy8170a922012-09-18 15:40:25 -04001656
1657 for (index=0; index<2; index++) {
1658 sprintf(lun_file, CUSTOM_LUN_FILE, index);
Dees_Troy2673cec2013-04-02 20:22:16 +00001659 ret = TWFunc::write_file(lun_file, str);
Dees_Troy2673cec2013-04-02 20:22:16 +00001660 if (ret < 0) {
1661 break;
Dees_Troy8170a922012-09-18 15:40:25 -04001662 }
Dees_Troy8170a922012-09-18 15:40:25 -04001663 }
Dees_Troye58d5262012-09-21 12:27:57 -04001664 Mount_All_Storage();
1665 Update_System_Details();
Dees_Troycfd73ef2012-10-12 16:52:00 -04001666 UnMount_Main_Partitions();
Matt Mowerd9cb9062013-12-14 20:34:45 -06001667 property_set("sys.storage.ums_enabled", "0");
HandyMenny37d42992014-10-26 22:15:59 +01001668 property_set("sys.usb.config", "adb");
bigbiff bigbiffc7eee6f2014-09-02 18:59:01 -04001669 if (mtp_was_enabled)
1670 if (!Enable_MTP())
1671 Disable_MTP();
Dees_Troy2673cec2013-04-02 20:22:16 +00001672 if (ret < 0 && index == 0) {
1673 LOGERR("Unable to write to ums lunfile '%s'.", lun_file);
1674 return false;
1675 } else {
1676 return true;
1677 }
Dees_Troy8170a922012-09-18 15:40:25 -04001678 return true;
Dees_Troy812660f2012-09-20 09:55:17 -04001679}
1680
1681void TWPartitionManager::Mount_All_Storage(void) {
1682 std::vector<TWPartition*>::iterator iter;
1683
1684 for (iter = Partitions.begin(); iter != Partitions.end(); iter++) {
1685 if ((*iter)->Is_Storage)
1686 (*iter)->Mount(false);
1687 }
Dees_Troy2c50e182012-09-26 20:05:28 -04001688}
Dees_Troy9350b8d2012-09-27 12:38:38 -04001689
Dees_Troyd0384ef2012-10-12 12:15:42 -04001690void TWPartitionManager::UnMount_Main_Partitions(void) {
1691 // Unmounts system and data if data is not data/media
1692 // Also unmounts boot if boot is mountable
Dees_Troy2673cec2013-04-02 20:22:16 +00001693 LOGINFO("Unmounting main partitions...\n");
Dees_Troyd0384ef2012-10-12 12:15:42 -04001694
1695 TWPartition* Boot_Partition = Find_Partition_By_Path("/boot");
1696
1697 UnMount_By_Path("/system", true);
Ethan Yonker6277c792014-09-15 14:54:30 -05001698 if (!datamedia)
1699 UnMount_By_Path("/data", true);
1700
Dees_Troyd0384ef2012-10-12 12:15:42 -04001701 if (Boot_Partition != NULL && Boot_Partition->Can_Be_Mounted)
1702 Boot_Partition->UnMount(true);
1703}
1704
Dees_Troy9350b8d2012-09-27 12:38:38 -04001705int TWPartitionManager::Partition_SDCard(void) {
1706 char mkdir_path[255], temp[255], line[512];
Ethan Yonker483e9f42016-01-11 22:21:18 -06001707 string Storage_Path, Command, Device, fat_str, ext_str, start_loc, end_loc, ext_format, sd_path, tmpdevice;
Dees_Troy9350b8d2012-09-27 12:38:38 -04001708 int ext, swap, total_size = 0, fat_size;
Dees_Troy9350b8d2012-09-27 12:38:38 -04001709
Ethan Yonker74db1572015-10-28 12:44:49 -05001710 gui_msg("start_partition_sd=Partitioning SD Card...");
Ethan Yonker483e9f42016-01-11 22:21:18 -06001711
1712 // Locate and validate device to partition
1713 TWPartition* SDCard = Find_Partition_By_Path(DataManager::GetCurrentStoragePath());
1714
Ethan Yonker66a19492015-12-10 10:19:45 -06001715 if (SDCard->Is_Adopted_Storage)
1716 SDCard->Revert_Adopted();
1717
Ethan Yonker1eff6cd2014-09-15 13:30:42 -05001718 if (SDCard == NULL || !SDCard->Removable || SDCard->Has_Data_Media) {
Ethan Yonker74db1572015-10-28 12:44:49 -05001719 gui_err("partition_sd_locate=Unable to locate device to partition.");
Dees_Troy9350b8d2012-09-27 12:38:38 -04001720 return false;
1721 }
Ethan Yonker483e9f42016-01-11 22:21:18 -06001722
1723 // Unmount everything
Dees_Troy9350b8d2012-09-27 12:38:38 -04001724 if (!SDCard->UnMount(true))
1725 return false;
1726 TWPartition* SDext = Find_Partition_By_Path("/sd-ext");
1727 if (SDext != NULL) {
1728 if (!SDext->UnMount(true))
1729 return false;
1730 }
Ethan Yonker483e9f42016-01-11 22:21:18 -06001731 char* swappath = getenv("SWAPPATH");
1732 if (swappath != NULL) {
1733 LOGINFO("Unmounting swap at '%s'\n", swappath);
1734 umount(swappath);
1735 }
Vojtech Bocek05534202013-09-11 08:11:56 +02001736
Ethan Yonker483e9f42016-01-11 22:21:18 -06001737 // Determine block device
1738 if (SDCard->Alternate_Block_Device.empty()) {
1739 SDCard->Find_Actual_Block_Device();
1740 Device = SDCard->Actual_Block_Device;
1741 // Just use the root block device
1742 Device.resize(strlen("/dev/block/mmcblkX"));
1743 } else {
1744 Device = SDCard->Alternate_Block_Device;
1745 }
Dees_Troy9350b8d2012-09-27 12:38:38 -04001746
1747 // Find the size of the block device:
Ethan Yonker483e9f42016-01-11 22:21:18 -06001748 total_size = (int)(TWFunc::IOCTL_Get_Block_Size(Device.c_str()) / (1048576));
Dees_Troy9350b8d2012-09-27 12:38:38 -04001749
1750 DataManager::GetValue("tw_sdext_size", ext);
1751 DataManager::GetValue("tw_swap_size", swap);
1752 DataManager::GetValue("tw_sdpart_file_system", ext_format);
1753 fat_size = total_size - ext - swap;
Ethan Yonker483e9f42016-01-11 22:21:18 -06001754 LOGINFO("sd card mount point %s block device is '%s', sdcard size is: %iMB, fat size: %iMB, ext size: %iMB, ext system: '%s', swap size: %iMB\n", DataManager::GetCurrentStoragePath().c_str(), Device.c_str(), total_size, fat_size, ext, ext_format.c_str(), swap);
1755
1756 // Determine partition sizes
1757 if (swap == 0 && ext == 0) {
1758 fat_str = "-0";
1759 } else {
1760 memset(temp, 0, sizeof(temp));
1761 sprintf(temp, "%i", fat_size);
1762 fat_str = temp;
1763 fat_str += "MB";
1764 }
1765 if (swap == 0) {
1766 ext_str = "-0";
1767 } else {
1768 memset(temp, 0, sizeof(temp));
1769 sprintf(temp, "%i", ext);
1770 ext_str = "+";
1771 ext_str += temp;
1772 ext_str += "MB";
1773 }
1774
Dees_Troy9350b8d2012-09-27 12:38:38 -04001775 if (ext + swap > total_size) {
Ethan Yonker74db1572015-10-28 12:44:49 -05001776 gui_err("ext_swap_size=EXT + Swap size is larger than sdcard size.");
Dees_Troy9350b8d2012-09-27 12:38:38 -04001777 return false;
1778 }
Ethan Yonker483e9f42016-01-11 22:21:18 -06001779
Ethan Yonker74db1572015-10-28 12:44:49 -05001780 gui_msg("remove_part_table=Removing partition table...");
Ethan Yonker483e9f42016-01-11 22:21:18 -06001781 Command = "sgdisk --zap-all " + Device;
Dees_Troy2673cec2013-04-02 20:22:16 +00001782 LOGINFO("Command is: '%s'\n", Command.c_str());
Vojtech Bocek05534202013-09-11 08:11:56 +02001783 if (TWFunc::Exec_Cmd(Command) != 0) {
Ethan Yonker74db1572015-10-28 12:44:49 -05001784 gui_err("unable_rm_part=Unable to remove partition table.");
Dees_Troy9350b8d2012-09-27 12:38:38 -04001785 Update_System_Details();
1786 return false;
1787 }
Ethan Yonker74db1572015-10-28 12:44:49 -05001788 gui_msg(Msg("create_part=Creating {1} partition...")("FAT32"));
Captain Throwback9643a802016-05-27 11:44:51 -04001789 Command = "sgdisk --new=0:0:" + fat_str + " --change-name=0:\"Microsoft basic data\" --typecode=0:EBD0A0A2-B9E5-4433-87C0-68B6B72699C7 " + Device;
Dees_Troy2673cec2013-04-02 20:22:16 +00001790 LOGINFO("Command is: '%s'\n", Command.c_str());
Vojtech Bocek05534202013-09-11 08:11:56 +02001791 if (TWFunc::Exec_Cmd(Command) != 0) {
Ethan Yonker74db1572015-10-28 12:44:49 -05001792 gui_msg(Msg(msg::kError, "unable_to_create_part=Unable to create {1} partition.")("FAT32"));
Dees_Troy9350b8d2012-09-27 12:38:38 -04001793 return false;
1794 }
1795 if (ext > 0) {
Ethan Yonker74db1572015-10-28 12:44:49 -05001796 gui_msg(Msg("create_part=Creating {1} partition...")("EXT"));
Ethan Yonker483e9f42016-01-11 22:21:18 -06001797 Command = "sgdisk --new=0:0:" + ext_str + " --change-name=0:\"Linux filesystem\" " + Device;
Dees_Troy2673cec2013-04-02 20:22:16 +00001798 LOGINFO("Command is: '%s'\n", Command.c_str());
Vojtech Bocek05534202013-09-11 08:11:56 +02001799 if (TWFunc::Exec_Cmd(Command) != 0) {
Ethan Yonker74db1572015-10-28 12:44:49 -05001800 gui_msg(Msg(msg::kError, "unable_to_create_part=Unable to create {1} partition.")("EXT"));
Dees_Troy9350b8d2012-09-27 12:38:38 -04001801 Update_System_Details();
1802 return false;
1803 }
1804 }
1805 if (swap > 0) {
Ethan Yonker74db1572015-10-28 12:44:49 -05001806 gui_msg(Msg("create_part=Creating {1} partition...")("swap"));
Ethan Yonker483e9f42016-01-11 22:21:18 -06001807 Command = "sgdisk --new=0:0:-0 --change-name=0:\"Linux swap\" --typecode=0:0657FD6D-A4AB-43C4-84E5-0933C84B4F4F " + Device;
Dees_Troy2673cec2013-04-02 20:22:16 +00001808 LOGINFO("Command is: '%s'\n", Command.c_str());
Vojtech Bocek05534202013-09-11 08:11:56 +02001809 if (TWFunc::Exec_Cmd(Command) != 0) {
Ethan Yonker74db1572015-10-28 12:44:49 -05001810 gui_msg(Msg(msg::kError, "unable_to_create_part=Unable to create {1} partition.")("swap"));
Dees_Troy9350b8d2012-09-27 12:38:38 -04001811 Update_System_Details();
1812 return false;
1813 }
1814 }
Ethan Yonker483e9f42016-01-11 22:21:18 -06001815
1816 // Convert GPT to MBR
1817 Command = "sgdisk --gpttombr " + Device;
1818 if (TWFunc::Exec_Cmd(Command) != 0)
1819 LOGINFO("Failed to covert partition GPT to MBR\n");
1820
1821 // Tell the kernel to rescan the partition table
1822 int fd = open(Device.c_str(), O_RDONLY);
1823 ioctl(fd, BLKRRPART, 0);
1824 close(fd);
1825
1826 string format_device = Device;
1827 if (Device.substr(0, 17) == "/dev/block/mmcblk")
1828 format_device += "p";
1829
1830 // Format new partitions to proper file system
1831 if (fat_size > 0) {
1832 Command = "mkfs.fat " + format_device + "1";
1833 TWFunc::Exec_Cmd(Command);
1834 }
Dees_Troy9350b8d2012-09-27 12:38:38 -04001835 if (ext > 0) {
1836 if (SDext == NULL) {
Ethan Yonker483e9f42016-01-11 22:21:18 -06001837 Command = "mke2fs -t " + ext_format + " -m 0 " + format_device + "2";
1838 gui_msg(Msg("format_sdext_as=Formatting sd-ext as {1}...")(ext_format));
1839 LOGINFO("Formatting sd-ext after partitioning, command: '%s'\n", Command.c_str());
1840 TWFunc::Exec_Cmd(Command);
1841 } else {
1842 SDext->Wipe(ext_format);
Dees_Troy9350b8d2012-09-27 12:38:38 -04001843 }
Ethan Yonker483e9f42016-01-11 22:21:18 -06001844 }
1845 if (swap > 0) {
1846 Command = "mkswap " + format_device;
1847 if (ext > 0)
1848 Command += "3";
1849 else
1850 Command += "2";
Vojtech Bocek05534202013-09-11 08:11:56 +02001851 TWFunc::Exec_Cmd(Command);
Dees_Troy9350b8d2012-09-27 12:38:38 -04001852 }
1853
Ethan Yonker483e9f42016-01-11 22:21:18 -06001854 // recreate TWRP folder and rewrite settings - these will be gone after sdcard is partitioned
1855 if (SDCard->Mount(true)) {
1856 string TWRP_Folder = SDCard->Mount_Point + "/TWRP";
1857 mkdir(TWRP_Folder.c_str(), 0777);
1858 DataManager::Flush();
1859 }
1860
Dees_Troy9350b8d2012-09-27 12:38:38 -04001861 Update_System_Details();
Ethan Yonker74db1572015-10-28 12:44:49 -05001862 gui_msg("part_complete=Partitioning complete.");
Dees_Troy9350b8d2012-09-27 12:38:38 -04001863 return true;
bigbiff bigbiffa0f8a592012-10-09 21:01:03 -04001864}
Dees_Troya13d74f2013-03-24 08:54:55 -05001865
1866void TWPartitionManager::Get_Partition_List(string ListType, std::vector<PartitionList> *Partition_List) {
1867 std::vector<TWPartition*>::iterator iter;
1868 if (ListType == "mount") {
1869 for (iter = Partitions.begin(); iter != Partitions.end(); iter++) {
1870 if ((*iter)->Can_Be_Mounted && !(*iter)->Is_SubPartition) {
1871 struct PartitionList part;
1872 part.Display_Name = (*iter)->Display_Name;
1873 part.Mount_Point = (*iter)->Mount_Point;
1874 part.selected = (*iter)->Is_Mounted();
1875 Partition_List->push_back(part);
1876 }
1877 }
1878 } else if (ListType == "storage") {
1879 char free_space[255];
1880 string Current_Storage = DataManager::GetCurrentStoragePath();
1881 for (iter = Partitions.begin(); iter != Partitions.end(); iter++) {
1882 if ((*iter)->Is_Storage) {
1883 struct PartitionList part;
1884 sprintf(free_space, "%llu", (*iter)->Free / 1024 / 1024);
1885 part.Display_Name = (*iter)->Storage_Name + " (";
1886 part.Display_Name += free_space;
1887 part.Display_Name += "MB)";
1888 part.Mount_Point = (*iter)->Storage_Path;
1889 if ((*iter)->Storage_Path == Current_Storage)
1890 part.selected = 1;
1891 else
1892 part.selected = 0;
1893 Partition_List->push_back(part);
1894 }
1895 }
1896 } else if (ListType == "backup") {
1897 char backup_size[255];
Dees_Troy9e0b71c2013-04-08 13:35:37 +00001898 unsigned long long Backup_Size;
Dees_Troya13d74f2013-03-24 08:54:55 -05001899 for (iter = Partitions.begin(); iter != Partitions.end(); iter++) {
Dees_Troy9e0b71c2013-04-08 13:35:37 +00001900 if ((*iter)->Can_Be_Backed_Up && !(*iter)->Is_SubPartition && (*iter)->Is_Present) {
Dees_Troya13d74f2013-03-24 08:54:55 -05001901 struct PartitionList part;
Dees_Troy9e0b71c2013-04-08 13:35:37 +00001902 Backup_Size = (*iter)->Backup_Size;
1903 if ((*iter)->Has_SubPartition) {
1904 std::vector<TWPartition*>::iterator subpart;
1905
1906 for (subpart = Partitions.begin(); subpart != Partitions.end(); subpart++) {
1907 if ((*subpart)->Is_SubPartition && (*subpart)->Can_Be_Backed_Up && (*subpart)->Is_Present && (*subpart)->SubPartition_Of == (*iter)->Mount_Point)
1908 Backup_Size += (*subpart)->Backup_Size;
1909 }
1910 }
1911 sprintf(backup_size, "%llu", Backup_Size / 1024 / 1024);
Dees_Troya13d74f2013-03-24 08:54:55 -05001912 part.Display_Name = (*iter)->Backup_Display_Name + " (";
1913 part.Display_Name += backup_size;
1914 part.Display_Name += "MB)";
1915 part.Mount_Point = (*iter)->Backup_Path;
1916 part.selected = 0;
1917 Partition_List->push_back(part);
1918 }
1919 }
1920 } else if (ListType == "restore") {
1921 string Restore_List, restore_path;
1922 TWPartition* restore_part = NULL;
1923
1924 DataManager::GetValue("tw_restore_list", Restore_List);
1925 if (!Restore_List.empty()) {
1926 size_t start_pos = 0, end_pos = Restore_List.find(";", start_pos);
1927 while (end_pos != string::npos && start_pos < Restore_List.size()) {
1928 restore_path = Restore_List.substr(start_pos, end_pos - start_pos);
Dees_Troy59df9262013-06-19 14:53:57 -05001929 if ((restore_part = Find_Partition_By_Path(restore_path)) != NULL) {
Dees Troy4159aed2014-02-28 17:24:43 +00001930 if ((restore_part->Backup_Name == "recovery" && !restore_part->Can_Be_Backed_Up) || restore_part->Is_SubPartition) {
Dees_Troya13d74f2013-03-24 08:54:55 -05001931 // Don't allow restore of recovery (causes problems on some devices)
Dees_Troy59df9262013-06-19 14:53:57 -05001932 // Don't add subpartitions to the list of items
Dees_Troya13d74f2013-03-24 08:54:55 -05001933 } else {
1934 struct PartitionList part;
1935 part.Display_Name = restore_part->Backup_Display_Name;
1936 part.Mount_Point = restore_part->Backup_Path;
1937 part.selected = 1;
1938 Partition_List->push_back(part);
1939 }
1940 } else {
Ethan Yonker74db1572015-10-28 12:44:49 -05001941 gui_msg(Msg(msg::kError, "restore_unable_locate=Unable to locate '{1}' partition for restoring.")(restore_path));
Dees_Troya13d74f2013-03-24 08:54:55 -05001942 }
1943 start_pos = end_pos + 1;
1944 end_pos = Restore_List.find(";", start_pos);
1945 }
1946 }
1947 } else if (ListType == "wipe") {
1948 struct PartitionList dalvik;
Ethan Yonker74db1572015-10-28 12:44:49 -05001949 dalvik.Display_Name = gui_parse_text("{@dalvik}");
Dees_Troya13d74f2013-03-24 08:54:55 -05001950 dalvik.Mount_Point = "DALVIK";
1951 dalvik.selected = 0;
1952 Partition_List->push_back(dalvik);
1953 for (iter = Partitions.begin(); iter != Partitions.end(); iter++) {
1954 if ((*iter)->Wipe_Available_in_GUI && !(*iter)->Is_SubPartition) {
1955 struct PartitionList part;
1956 part.Display_Name = (*iter)->Display_Name;
1957 part.Mount_Point = (*iter)->Mount_Point;
1958 part.selected = 0;
1959 Partition_List->push_back(part);
1960 }
1961 if ((*iter)->Has_Android_Secure) {
1962 struct PartitionList part;
1963 part.Display_Name = (*iter)->Backup_Display_Name;
1964 part.Mount_Point = (*iter)->Backup_Path;
1965 part.selected = 0;
1966 Partition_List->push_back(part);
1967 }
Dees_Troy74fb2e92013-04-15 14:35:47 +00001968 if ((*iter)->Has_Data_Media) {
1969 struct PartitionList datamedia;
1970 datamedia.Display_Name = (*iter)->Storage_Name;
1971 datamedia.Mount_Point = "INTERNAL";
1972 datamedia.selected = 0;
1973 Partition_List->push_back(datamedia);
1974 }
Dees_Troya13d74f2013-03-24 08:54:55 -05001975 }
Ethan Yonker96af84a2015-01-05 14:58:36 -06001976 } else if (ListType == "flashimg") {
1977 for (iter = Partitions.begin(); iter != Partitions.end(); iter++) {
1978 if ((*iter)->Can_Flash_Img && (*iter)->Is_Present) {
1979 struct PartitionList part;
1980 part.Display_Name = (*iter)->Backup_Display_Name;
1981 part.Mount_Point = (*iter)->Backup_Path;
1982 part.selected = 0;
1983 Partition_List->push_back(part);
1984 }
1985 }
Dees_Troya13d74f2013-03-24 08:54:55 -05001986 } else {
Dees_Troy2673cec2013-04-02 20:22:16 +00001987 LOGERR("Unknown list type '%s' requested for TWPartitionManager::Get_Partition_List\n", ListType.c_str());
Dees_Troya13d74f2013-03-24 08:54:55 -05001988 }
1989}
1990
1991int TWPartitionManager::Fstab_Processed(void) {
1992 return Partitions.size();
1993}
Dees_Troyd93bda52013-07-03 19:55:19 +00001994
1995void TWPartitionManager::Output_Storage_Fstab(void) {
1996 std::vector<TWPartition*>::iterator iter;
1997 char storage_partition[255];
1998 string Temp;
1999 FILE *fp = fopen("/cache/recovery/storage.fstab", "w");
2000
2001 if (fp == NULL) {
Ethan Yonker74db1572015-10-28 12:44:49 -05002002 gui_msg(Msg(msg::kError, "unable_to_open=Unable to open '{1}'.")("/cache/recovery/storage.fstab"));
Dees_Troyd93bda52013-07-03 19:55:19 +00002003 return;
2004 }
2005
2006 // Iterate through all partitions
2007 for (iter = Partitions.begin(); iter != Partitions.end(); iter++) {
2008 if ((*iter)->Is_Storage) {
2009 Temp = (*iter)->Storage_Path + ";" + (*iter)->Storage_Name + ";\n";
2010 strcpy(storage_partition, Temp.c_str());
2011 fwrite(storage_partition, sizeof(storage_partition[0]), strlen(storage_partition) / sizeof(storage_partition[0]), fp);
2012 }
2013 }
2014 fclose(fp);
Vojtech Bocekfafb0c52013-07-25 22:53:02 +02002015}
Vojtech Bocek93cb1ef2014-05-12 15:41:52 +02002016
2017TWPartition *TWPartitionManager::Get_Default_Storage_Partition()
2018{
2019 TWPartition *res = NULL;
2020 for (std::vector<TWPartition*>::iterator iter = Partitions.begin(); iter != Partitions.end(); ++iter) {
2021 if(!(*iter)->Is_Storage)
2022 continue;
2023
2024 if((*iter)->Is_Settings_Storage)
2025 return *iter;
2026
2027 if(!res)
2028 res = *iter;
2029 }
2030 return res;
2031}
bigbiff bigbiffc7eee6f2014-09-02 18:59:01 -04002032
2033bool TWPartitionManager::Enable_MTP(void) {
2034#ifdef TW_HAS_MTP
Ethan Yonker8dfa7772014-09-04 21:48:41 -05002035 if (mtppid) {
Ethan Yonker74db1572015-10-28 12:44:49 -05002036 gui_err("mtp_already_enabled=MTP already enabled");
bigbiff bigbiffc7eee6f2014-09-02 18:59:01 -04002037 return true;
2038 }
2039 //Launch MTP Responder
2040 LOGINFO("Starting MTP\n");
Ethan Yonker726a0202014-12-16 20:01:38 -06002041
2042 int mtppipe[2];
2043
2044 if (pipe(mtppipe) < 0) {
2045 LOGERR("Error creating MTP pipe\n");
2046 return false;
2047 }
2048
Ethan Yonkerdf7abac2014-12-29 10:48:17 -06002049 char old_value[PROPERTY_VALUE_MAX];
2050 property_get("sys.usb.config", old_value, "error");
2051 if (strcmp(old_value, "error") != 0 && strcmp(old_value, "mtp,adb") != 0) {
2052 char vendor[PROPERTY_VALUE_MAX];
2053 char product[PROPERTY_VALUE_MAX];
2054 property_set("sys.usb.config", "none");
2055 property_get("usb.vendor", vendor, "18D1");
2056 property_get("usb.product.mtpadb", product, "4EE2");
2057 string vendorstr = vendor;
2058 string productstr = product;
2059 TWFunc::write_file("/sys/class/android_usb/android0/idVendor", vendorstr);
2060 TWFunc::write_file("/sys/class/android_usb/android0/idProduct", productstr);
2061 property_set("sys.usb.config", "mtp,adb");
2062 }
Ethan Yonker6d154c42014-09-03 14:19:43 -05002063 /* To enable MTP debug, use the twrp command line feature to
2064 * twrp set tw_mtp_debug 1
2065 */
2066 twrpMtp *mtp = new twrpMtp(DataManager::GetIntValue("tw_mtp_debug"));
Ethan Yonker1b039202015-01-30 10:08:48 -06002067 mtppid = mtp->forkserver(mtppipe);
2068 if (mtppid) {
2069 close(mtppipe[0]); // Host closes read side
2070 mtp_write_fd = mtppipe[1];
2071 DataManager::SetValue("tw_mtp_enabled", 1);
2072 Add_All_MTP_Storage();
2073 return true;
Ethan Yonker726a0202014-12-16 20:01:38 -06002074 } else {
2075 close(mtppipe[0]);
2076 close(mtppipe[1]);
Ethan Yonker74db1572015-10-28 12:44:49 -05002077 gui_err("mtp_fail=Failed to enable MTP");
Ethan Yonker1b039202015-01-30 10:08:48 -06002078 return false;
bigbiff bigbiffc7eee6f2014-09-02 18:59:01 -04002079 }
bigbiff bigbiffc7eee6f2014-09-02 18:59:01 -04002080#else
Ethan Yonker74db1572015-10-28 12:44:49 -05002081 gui_err("no_mtp=MTP support not included");
bigbiff bigbiffc7eee6f2014-09-02 18:59:01 -04002082#endif
2083 DataManager::SetValue("tw_mtp_enabled", 0);
2084 return false;
2085}
2086
Ethan Yonker1b039202015-01-30 10:08:48 -06002087void TWPartitionManager::Add_All_MTP_Storage(void) {
2088#ifdef TW_HAS_MTP
2089 std::vector<TWPartition*>::iterator iter;
2090
2091 if (!mtppid)
2092 return; // MTP is not enabled
2093
2094 for (iter = Partitions.begin(); iter != Partitions.end(); iter++) {
2095 if ((*iter)->Is_Storage && (*iter)->Is_Present && (*iter)->Mount(false))
2096 Add_Remove_MTP_Storage((*iter), MTP_MESSAGE_ADD_STORAGE);
2097 }
2098#else
2099 return;
2100#endif
2101}
2102
bigbiff bigbiffc7eee6f2014-09-02 18:59:01 -04002103bool TWPartitionManager::Disable_MTP(void) {
Ethan Yonkerdf7abac2014-12-29 10:48:17 -06002104 char old_value[PROPERTY_VALUE_MAX];
2105 property_get("sys.usb.config", old_value, "error");
2106 if (strcmp(old_value, "adb") != 0) {
2107 char vendor[PROPERTY_VALUE_MAX];
2108 char product[PROPERTY_VALUE_MAX];
2109 property_set("sys.usb.config", "none");
2110 property_get("usb.vendor", vendor, "18D1");
2111 property_get("usb.product.adb", product, "D002");
2112 string vendorstr = vendor;
2113 string productstr = product;
2114 TWFunc::write_file("/sys/class/android_usb/android0/idVendor", vendorstr);
2115 TWFunc::write_file("/sys/class/android_usb/android0/idProduct", productstr);
2116 usleep(2000);
2117 }
bigbiff bigbiffc7eee6f2014-09-02 18:59:01 -04002118#ifdef TW_HAS_MTP
Ethan Yonker8dfa7772014-09-04 21:48:41 -05002119 if (mtppid) {
Ethan Yonker8613dc02014-09-11 09:28:20 -05002120 LOGINFO("Disabling MTP\n");
2121 int status;
2122 kill(mtppid, SIGKILL);
Ethan Yonker8dfa7772014-09-04 21:48:41 -05002123 mtppid = 0;
Ethan Yonker8613dc02014-09-11 09:28:20 -05002124 // We don't care about the exit value, but this prevents a zombie process
2125 waitpid(mtppid, &status, 0);
Ethan Yonker726a0202014-12-16 20:01:38 -06002126 close(mtp_write_fd);
2127 mtp_write_fd = -1;
bigbiff bigbiffc7eee6f2014-09-02 18:59:01 -04002128 }
Ethan Yonkerdf7abac2014-12-29 10:48:17 -06002129#endif
bigbiff bigbiffc7eee6f2014-09-02 18:59:01 -04002130 property_set("sys.usb.config", "adb");
Ethan Yonkerdf7abac2014-12-29 10:48:17 -06002131#ifdef TW_HAS_MTP
bigbiff bigbiffc7eee6f2014-09-02 18:59:01 -04002132 DataManager::SetValue("tw_mtp_enabled", 0);
2133 return true;
bigbiff bigbiffc7eee6f2014-09-02 18:59:01 -04002134#endif
Ethan Yonkerdf7abac2014-12-29 10:48:17 -06002135 return false;
bigbiff bigbiffc7eee6f2014-09-02 18:59:01 -04002136}
Ethan Yonker726a0202014-12-16 20:01:38 -06002137
2138TWPartition* TWPartitionManager::Find_Partition_By_MTP_Storage_ID(unsigned int Storage_ID) {
2139 std::vector<TWPartition*>::iterator iter;
2140
2141 for (iter = Partitions.begin(); iter != Partitions.end(); iter++) {
2142 if ((*iter)->MTP_Storage_ID == Storage_ID)
2143 return (*iter);
2144 }
2145 return NULL;
2146}
2147
2148bool TWPartitionManager::Add_Remove_MTP_Storage(TWPartition* Part, int message_type) {
2149#ifdef TW_HAS_MTP
2150 struct mtpmsg mtp_message;
2151
2152 if (!mtppid)
2153 return false; // MTP is disabled
2154
2155 if (mtp_write_fd < 0) {
Ethan Yonkerd9ff3c52015-01-21 21:51:20 -06002156 LOGINFO("MTP: mtp_write_fd is not set\n");
Ethan Yonker726a0202014-12-16 20:01:38 -06002157 return false;
2158 }
2159
2160 if (Part) {
Ethan Yonker4bfabab2014-12-29 09:15:37 -06002161 if (Part->MTP_Storage_ID == 0)
2162 return false;
Ethan Yonker726a0202014-12-16 20:01:38 -06002163 if (message_type == MTP_MESSAGE_REMOVE_STORAGE) {
2164 mtp_message.message_type = MTP_MESSAGE_REMOVE_STORAGE; // Remove
2165 LOGINFO("sending message to remove %i\n", Part->MTP_Storage_ID);
2166 mtp_message.storage_id = Part->MTP_Storage_ID;
2167 if (write(mtp_write_fd, &mtp_message, sizeof(mtp_message)) <= 0) {
Ethan Yonkerd9ff3c52015-01-21 21:51:20 -06002168 LOGINFO("error sending message to remove storage %i\n", Part->MTP_Storage_ID);
Ethan Yonker726a0202014-12-16 20:01:38 -06002169 return false;
2170 } else {
2171 LOGINFO("Message sent, remove storage ID: %i\n", Part->MTP_Storage_ID);
2172 return true;
2173 }
2174 } else if (message_type == MTP_MESSAGE_ADD_STORAGE && Part->Is_Mounted()) {
2175 mtp_message.message_type = MTP_MESSAGE_ADD_STORAGE; // Add
2176 mtp_message.storage_id = Part->MTP_Storage_ID;
2177 mtp_message.path = Part->Storage_Path.c_str();
2178 mtp_message.display = Part->Storage_Name.c_str();
2179 mtp_message.maxFileSize = Part->Get_Max_FileSize();
Ethan Yonker1b039202015-01-30 10:08:48 -06002180 LOGINFO("sending message to add %i '%s' '%s'\n", mtp_message.storage_id, mtp_message.path, mtp_message.display);
Ethan Yonker726a0202014-12-16 20:01:38 -06002181 if (write(mtp_write_fd, &mtp_message, sizeof(mtp_message)) <= 0) {
Ethan Yonkerd9ff3c52015-01-21 21:51:20 -06002182 LOGINFO("error sending message to add storage %i\n", Part->MTP_Storage_ID);
Ethan Yonker726a0202014-12-16 20:01:38 -06002183 return false;
2184 } else {
2185 LOGINFO("Message sent, add storage ID: %i\n", Part->MTP_Storage_ID);
2186 return true;
2187 }
2188 } else {
2189 LOGERR("Unknown MTP message type: %i\n", message_type);
2190 }
2191 } else {
2192 // This hopefully never happens as the error handling should
2193 // occur in the calling function.
Ethan Yonkerd9ff3c52015-01-21 21:51:20 -06002194 LOGINFO("TWPartitionManager::Add_Remove_MTP_Storage NULL partition given\n");
Ethan Yonker726a0202014-12-16 20:01:38 -06002195 }
2196 return true;
2197#else
Ethan Yonker74db1572015-10-28 12:44:49 -05002198 gui_err("no_mtp=MTP support not included");
Ethan Yonker726a0202014-12-16 20:01:38 -06002199 DataManager::SetValue("tw_mtp_enabled", 0);
2200 return false;
2201#endif
2202}
2203
2204bool TWPartitionManager::Add_MTP_Storage(string Mount_Point) {
2205#ifdef TW_HAS_MTP
2206 TWPartition* Part = PartitionManager.Find_Partition_By_Path(Mount_Point);
2207 if (Part) {
2208 return PartitionManager.Add_Remove_MTP_Storage(Part, MTP_MESSAGE_ADD_STORAGE);
2209 } else {
Ethan Yonkerd9ff3c52015-01-21 21:51:20 -06002210 LOGINFO("TWFunc::Add_MTP_Storage unable to locate partition for '%s'\n", Mount_Point.c_str());
Ethan Yonker726a0202014-12-16 20:01:38 -06002211 }
2212#endif
2213 return false;
2214}
2215
2216bool TWPartitionManager::Add_MTP_Storage(unsigned int Storage_ID) {
2217#ifdef TW_HAS_MTP
2218 TWPartition* Part = PartitionManager.Find_Partition_By_MTP_Storage_ID(Storage_ID);
2219 if (Part) {
2220 return PartitionManager.Add_Remove_MTP_Storage(Part, MTP_MESSAGE_ADD_STORAGE);
2221 } else {
Ethan Yonkerd9ff3c52015-01-21 21:51:20 -06002222 LOGINFO("TWFunc::Add_MTP_Storage unable to locate partition for %i\n", Storage_ID);
Ethan Yonker726a0202014-12-16 20:01:38 -06002223 }
2224#endif
2225 return false;
2226}
2227
2228bool TWPartitionManager::Remove_MTP_Storage(string Mount_Point) {
2229#ifdef TW_HAS_MTP
2230 TWPartition* Part = PartitionManager.Find_Partition_By_Path(Mount_Point);
2231 if (Part) {
2232 return PartitionManager.Add_Remove_MTP_Storage(Part, MTP_MESSAGE_REMOVE_STORAGE);
2233 } else {
Ethan Yonkerd9ff3c52015-01-21 21:51:20 -06002234 LOGINFO("TWFunc::Remove_MTP_Storage unable to locate partition for '%s'\n", Mount_Point.c_str());
Ethan Yonker726a0202014-12-16 20:01:38 -06002235 }
2236#endif
2237 return false;
2238}
2239
2240bool TWPartitionManager::Remove_MTP_Storage(unsigned int Storage_ID) {
2241#ifdef TW_HAS_MTP
2242 TWPartition* Part = PartitionManager.Find_Partition_By_MTP_Storage_ID(Storage_ID);
2243 if (Part) {
2244 return PartitionManager.Add_Remove_MTP_Storage(Part, MTP_MESSAGE_REMOVE_STORAGE);
2245 } else {
Ethan Yonkerd9ff3c52015-01-21 21:51:20 -06002246 LOGINFO("TWFunc::Remove_MTP_Storage unable to locate partition for %i\n", Storage_ID);
Ethan Yonker726a0202014-12-16 20:01:38 -06002247 }
2248#endif
2249 return false;
2250}
Ethan Yonker96af84a2015-01-05 14:58:36 -06002251
Ethan Yonkere080c1f2016-09-19 13:50:25 -05002252bool TWPartitionManager::Flash_Image(string& path, string& filename) {
Ethan Yonker96af84a2015-01-05 14:58:36 -06002253 int check, partition_count = 0;
2254 TWPartition* flash_part = NULL;
bigbiffce8f83c2015-12-12 18:30:21 -05002255 string Flash_List, flash_path, full_filename;
Ethan Yonker96af84a2015-01-05 14:58:36 -06002256 size_t start_pos = 0, end_pos = 0;
2257
Ethan Yonkere080c1f2016-09-19 13:50:25 -05002258 full_filename = path + "/" + filename;
Ethan Yonker96af84a2015-01-05 14:58:36 -06002259
bigbiffce8f83c2015-12-12 18:30:21 -05002260 gui_msg("image_flash_start=[IMAGE FLASH STARTED]");
2261 gui_msg(Msg("img_to_flash=Image to flash: '{1}'")(full_filename));
2262
2263 if (!TWFunc::Path_Exists(full_filename)) {
2264 if (!Mount_By_Path(full_filename, true)) {
Ethan Yonkerb78fbdf2016-01-15 16:46:35 -06002265 return false;
2266 }
bigbiffce8f83c2015-12-12 18:30:21 -05002267 if (!TWFunc::Path_Exists(full_filename)) {
2268 gui_msg(Msg(msg::kError, "unable_to_locate=Unable to locate {1}.")(full_filename));
Ethan Yonkerb78fbdf2016-01-15 16:46:35 -06002269 return false;
2270 }
2271 }
Ethan Yonker96af84a2015-01-05 14:58:36 -06002272
Ethan Yonkere080c1f2016-09-19 13:50:25 -05002273 PartitionSettings part_settings;
2274 part_settings.Backup_Folder = path;
2275 unsigned long long total_bytes = TWFunc::Get_File_Size(full_filename);
2276 ProgressTracking progress(total_bytes);
2277 part_settings.progress = &progress;
2278 part_settings.adbbackup = false;
2279 part_settings.PM_Method = PM_RESTORE;
2280
Ethan Yonker74db1572015-10-28 12:44:49 -05002281 gui_msg("calc_restore=Calculating restore details...");
Ethan Yonker96af84a2015-01-05 14:58:36 -06002282 DataManager::GetValue("tw_flash_partition", Flash_List);
2283 if (!Flash_List.empty()) {
2284 end_pos = Flash_List.find(";", start_pos);
2285 while (end_pos != string::npos && start_pos < Flash_List.size()) {
2286 flash_path = Flash_List.substr(start_pos, end_pos - start_pos);
2287 flash_part = Find_Partition_By_Path(flash_path);
2288 if (flash_part != NULL) {
2289 partition_count++;
2290 if (partition_count > 1) {
Ethan Yonker74db1572015-10-28 12:44:49 -05002291 gui_err("too_many_flash=Too many partitions selected for flashing.");
Ethan Yonker96af84a2015-01-05 14:58:36 -06002292 return false;
2293 }
2294 } else {
Ethan Yonker74db1572015-10-28 12:44:49 -05002295 gui_msg(Msg(msg::kError, "flash_unable_locate=Unable to locate '{1}' partition for flashing.")(flash_path));
Ethan Yonker96af84a2015-01-05 14:58:36 -06002296 return false;
2297 }
2298 start_pos = end_pos + 1;
2299 end_pos = Flash_List.find(";", start_pos);
2300 }
2301 }
2302
2303 if (partition_count == 0) {
Ethan Yonker74db1572015-10-28 12:44:49 -05002304 gui_err("no_part_flash=No partitions selected for flashing.");
Ethan Yonker96af84a2015-01-05 14:58:36 -06002305 return false;
2306 }
2307
2308 DataManager::SetProgress(0.0);
2309 if (flash_part) {
Ethan Yonkere080c1f2016-09-19 13:50:25 -05002310 flash_part->Backup_FileName = filename;
2311 if (!flash_part->Flash_Image(&part_settings))
Ethan Yonker96af84a2015-01-05 14:58:36 -06002312 return false;
2313 } else {
Ethan Yonker74db1572015-10-28 12:44:49 -05002314 gui_err("invalid_flash=Invalid flash partition specified.");
Ethan Yonker96af84a2015-01-05 14:58:36 -06002315 return false;
2316 }
Ethan Yonker74db1572015-10-28 12:44:49 -05002317 gui_highlight("flash_done=IMAGE FLASH COMPLETED]");
Ethan Yonker96af84a2015-01-05 14:58:36 -06002318 return true;
2319}
Ethan Yonker74db1572015-10-28 12:44:49 -05002320
2321void TWPartitionManager::Translate_Partition(const char* path, const char* resource_name, const char* default_value) {
2322 TWPartition* part = PartitionManager.Find_Partition_By_Path(path);
2323 if (part) {
Ethan Yonker66a19492015-12-10 10:19:45 -06002324 if (part->Is_Adopted_Storage) {
2325 part->Display_Name = part->Display_Name + " - " + gui_lookup("data", "Data");
2326 part->Backup_Display_Name = part->Display_Name;
2327 part->Storage_Name = part->Storage_Name + " - " + gui_lookup("adopted_storage", "Adopted Storage");
2328 } else {
2329 part->Display_Name = gui_lookup(resource_name, default_value);
2330 part->Backup_Display_Name = part->Display_Name;
2331 }
Ethan Yonker74db1572015-10-28 12:44:49 -05002332 }
2333}
2334
2335void TWPartitionManager::Translate_Partition(const char* path, const char* resource_name, const char* default_value, const char* storage_resource_name, const char* storage_default_value) {
2336 TWPartition* part = PartitionManager.Find_Partition_By_Path(path);
2337 if (part) {
Ethan Yonker66a19492015-12-10 10:19:45 -06002338 if (part->Is_Adopted_Storage) {
2339 part->Display_Name = part->Display_Name + " - " + gui_lookup("data", "Data");
2340 part->Backup_Display_Name = part->Display_Name;
2341 part->Storage_Name = part->Storage_Name + " - " + gui_lookup("adopted_storage", "Adopted Storage");
2342 } else {
2343 part->Display_Name = gui_lookup(resource_name, default_value);
2344 part->Backup_Display_Name = part->Display_Name;
2345 if (part->Is_Storage)
2346 part->Storage_Name = gui_lookup(storage_resource_name, storage_default_value);
2347 }
Ethan Yonker74db1572015-10-28 12:44:49 -05002348 }
2349}
2350
2351void TWPartitionManager::Translate_Partition_Display_Names() {
Ethan Yonker66a19492015-12-10 10:19:45 -06002352 LOGINFO("Translating partition display names\n");
Ethan Yonker74db1572015-10-28 12:44:49 -05002353 Translate_Partition("/system", "system", "System");
2354 Translate_Partition("/system_image", "system_image", "System Image");
2355 Translate_Partition("/vendor", "vendor", "Vendor");
2356 Translate_Partition("/vendor_image", "vendor_image", "Vendor Image");
2357 Translate_Partition("/cache", "cache", "Cache");
2358 Translate_Partition("/data", "data", "Data", "internal", "Internal Storage");
2359 Translate_Partition("/boot", "boot", "Boot");
2360 Translate_Partition("/recovery", "recovery", "Recovery");
2361 if (!datamedia) {
2362 Translate_Partition("/sdcard", "sdcard", "SDCard", "sdcard", "SDCard");
2363 Translate_Partition("/internal_sd", "sdcard", "SDCard", "sdcard", "SDCard");
2364 Translate_Partition("/internal_sdcard", "sdcard", "SDCard", "sdcard", "SDCard");
2365 Translate_Partition("/emmc", "sdcard", "SDCard", "sdcard", "SDCard");
2366 }
2367 Translate_Partition("/external_sd", "microsd", "Micro SDCard", "microsd", "Micro SDCard");
2368 Translate_Partition("/external_sdcard", "microsd", "Micro SDCard", "microsd", "Micro SDCard");
2369 Translate_Partition("/usb-otg", "usbotg", "USB OTG", "usbotg", "USB OTG");
2370 Translate_Partition("/sd-ext", "sdext", "SD-EXT");
2371
2372 // Android secure is a special case
2373 TWPartition* part = PartitionManager.Find_Partition_By_Path("/and-sec");
2374 if (part)
2375 part->Backup_Display_Name = gui_lookup("android_secure", "Android Secure");
2376
2377 // This updates the text on all of the storage selection buttons in the GUI
2378 DataManager::SetBackupFolder();
2379}
Ethan Yonker66a19492015-12-10 10:19:45 -06002380
2381void TWPartitionManager::Decrypt_Adopted() {
2382#ifdef TW_INCLUDE_CRYPTO
2383 if (!Mount_By_Path("/data", false)) {
2384 LOGERR("Cannot decrypt adopted storage because /data will not mount\n");
2385 return;
2386 }
2387 LOGINFO("Decrypt adopted storage starting\n");
2388 char* xmlFile = PageManager::LoadFileToBuffer("/data/system/storage.xml", NULL);
2389 xml_document<> *doc = NULL;
2390 xml_node<>* volumes = NULL;
2391 xml_node<>* volume = NULL;
2392 string Primary_Storage_UUID = "";
2393 if (xmlFile != NULL) {
2394 LOGINFO("successfully loaded storage.xml\n");
2395 doc = new xml_document<>();
2396 doc->parse<0>(xmlFile);
2397 volumes = doc->first_node("volumes");
2398 if (volumes) {
2399 xml_attribute<>* psuuid = volumes->first_attribute("primaryStorageUuid");
2400 if (psuuid) {
2401 Primary_Storage_UUID = psuuid->value();
2402 }
2403 }
2404 }
2405 std::vector<TWPartition*>::iterator adopt;
2406 for (adopt = Partitions.begin(); adopt != Partitions.end(); adopt++) {
2407 if ((*adopt)->Removable && (*adopt)->Is_Present) {
2408 if ((*adopt)->Decrypt_Adopted() == 0) {
2409 if (volumes) {
2410 xml_node<>* volume = volumes->first_node("volume");
2411 while (volume) {
2412 xml_attribute<>* guid = volume->first_attribute("partGuid");
2413 if (guid) {
2414 string GUID = (*adopt)->Adopted_GUID.c_str();
2415 GUID.insert(8, "-");
2416 GUID.insert(13, "-");
2417 GUID.insert(18, "-");
2418 GUID.insert(23, "-");
2419
2420 if (strcasecmp(GUID.c_str(), guid->value()) == 0) {
2421 xml_attribute<>* attr = volume->first_attribute("nickname");
2422 if (attr) {
2423 (*adopt)->Storage_Name = attr->value();
2424 (*adopt)->Display_Name = (*adopt)->Storage_Name;
2425 (*adopt)->Backup_Display_Name = (*adopt)->Storage_Name;
2426 LOGINFO("storage name from storage.xml is '%s'\n", attr->value());
2427 }
2428 attr = volume->first_attribute("fsUuid");
2429 if (attr && !Primary_Storage_UUID.empty() && strcmp(Primary_Storage_UUID.c_str(), attr->value()) == 0) {
2430 TWPartition* Dat = Find_Partition_By_Path("/data");
2431 if (Dat) {
2432 LOGINFO("Internal storage is found on adopted storage '%s'\n", (*adopt)->Display_Name.c_str());
2433 LOGINFO("Changing '%s' to point to '%s'\n", Dat->Symlink_Mount_Point.c_str(), (*adopt)->Storage_Path.c_str());
2434 (*adopt)->Symlink_Mount_Point = Dat->Symlink_Mount_Point;
2435 Dat->Symlink_Mount_Point = "";
2436 // Toggle mounts to ensure that the symlink mount point (probably /sdcard) is mounted to the right location
2437 Dat->UnMount(false);
2438 Dat->Mount(false);
2439 (*adopt)->UnMount(false);
2440 (*adopt)->Mount(false);
2441 Output_Partition((*adopt));
2442 }
2443 }
2444 break;
2445 }
2446 }
2447 volume = volume->next_sibling("volume");
2448 }
2449 }
2450 }
2451 }
2452 }
2453 if (xmlFile) {
2454 doc->clear();
2455 delete doc;
2456 free(xmlFile);
2457 }
2458#else
2459 LOGINFO("Decrypt_Adopted: no crypto support\n");
2460 return;
2461#endif
2462}
Ethan Yonkerfcf3f242016-02-16 12:30:26 -06002463
2464void TWPartitionManager::Remove_Partition_By_Path(string Path) {
2465 std::vector<TWPartition*>::iterator iter;
2466 string Local_Path = TWFunc::Get_Root_Path(Path);
2467
2468 for (iter = Partitions.begin(); iter != Partitions.end(); iter++) {
2469 if ((*iter)->Mount_Point == Local_Path || (!(*iter)->Symlink_Mount_Point.empty() && (*iter)->Symlink_Mount_Point == Local_Path)) {
2470 LOGINFO("Found and erasing '%s' from partition list\n", Local_Path.c_str());
2471 Partitions.erase(iter);
2472 return;
2473 }
2474 }
2475}