blob: f70159c6d3bb1bac9c0f498218de6ad5e58e9764 [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"
Ethan Yonker3fdcda42016-11-30 12:29:37 -060042#include "exclude.hpp"
Ethan Yonker4b94cfd2014-12-11 10:00:45 -060043#include "set_metadata.h"
bigbiff7abc5fe2015-01-17 16:53:12 -050044#include "tw_atomic.hpp"
Ethan Yonker74db1572015-10-28 12:44:49 -050045#include "gui/gui.hpp"
Ethan Yonker472f5062016-02-25 13:47:30 -060046#include "progresstracking.hpp"
bigbiff bigbiff56cf5642016-08-19 17:43:45 -040047#include "twrpDigestDriver.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"
Ethan Yonkerbd7492d2016-12-07 13:55:01 -060065 #ifdef TW_INCLUDE_FBE
66 #include "crypto/ext4crypt/Decrypt.h"
67 #endif
nkk7171c6c502017-01-05 23:55:05 +020068 #ifdef TW_CRYPTO_USE_SYSTEM_VOLD
69 #include "crypto/vold_decrypt/vold_decrypt.h"
70 #endif
Dees_Troy5bf43922012-09-07 16:07:55 -040071#endif
Dees_Troy51a0e822012-09-05 15:24:24 -040072
Ethan Yonker1b190162016-12-05 15:25:19 -060073#ifdef AB_OTA_UPDATER
74#include <hardware/hardware.h>
75#include <hardware/boot_control.h>
76#endif
77
Ethan Yonker6277c792014-09-15 14:54:30 -050078extern bool datamedia;
79
bigbiff bigbiff34684ff2013-12-01 21:03:45 -050080TWPartitionManager::TWPartitionManager(void) {
bigbiff bigbiffc7eee6f2014-09-02 18:59:01 -040081 mtp_was_enabled = false;
Ethan Yonker726a0202014-12-16 20:01:38 -060082 mtp_write_fd = -1;
bigbiff7abc5fe2015-01-17 16:53:12 -050083 stop_backup.set_value(0);
Ethan Yonker1b190162016-12-05 15:25:19 -060084#ifdef AB_OTA_UPDATER
85 char slot_suffix[PROPERTY_VALUE_MAX];
86 property_get("ro.boot.slot_suffix", slot_suffix, "_a");
87 Active_Slot_Display = "";
88 if (strcmp(slot_suffix, "_a") == 0)
89 Set_Active_Slot("A");
90 else
91 Set_Active_Slot("B");
92#endif
bigbiff bigbiff34684ff2013-12-01 21:03:45 -050093}
94
Dees_Troy51a0e822012-09-05 15:24:24 -040095int TWPartitionManager::Process_Fstab(string Fstab_Filename, bool Display_Error) {
Dees_Troy5bf43922012-09-07 16:07:55 -040096 FILE *fstabFile;
97 char fstab_line[MAX_FSTAB_LINE_LENGTH];
Dees Troy02a64532014-03-19 15:23:32 +000098 TWPartition* settings_partition = NULL;
Matt Mowerbf4efa32014-04-14 23:25:26 -050099 TWPartition* andsec_partition = NULL;
Ethan Yonker726a0202014-12-16 20:01:38 -0600100 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 -0400101
102 fstabFile = fopen(Fstab_Filename.c_str(), "rt");
103 if (fstabFile == NULL) {
Dees_Troy2673cec2013-04-02 20:22:16 +0000104 LOGERR("Critical Error: Unable to open fstab at '%s'.\n", Fstab_Filename.c_str());
Dees_Troy5bf43922012-09-07 16:07:55 -0400105 return false;
106 }
107
108 while (fgets(fstab_line, sizeof(fstab_line), fstabFile) != NULL) {
109 if (fstab_line[0] != '/')
110 continue;
111
Dees_Troy2a923582012-09-20 12:13:34 -0400112 if (fstab_line[strlen(fstab_line) - 1] != '\n')
113 fstab_line[strlen(fstab_line)] = '\n';
Dees_Troy2a923582012-09-20 12:13:34 -0400114
Matt Mower2b2dd152016-04-26 11:24:08 -0500115 TWPartition* partition = new TWPartition();
Matt Mower72c87ce2016-04-26 14:34:56 -0500116 if (partition->Process_Fstab_Line(fstab_line, Display_Error))
Ethan Yonkerc05c5982014-03-13 09:19:56 -0500117 Partitions.push_back(partition);
Matt Mower72c87ce2016-04-26 14:34:56 -0500118 else
Dees_Troy5bf43922012-09-07 16:07:55 -0400119 delete partition;
Matt Mower2b2dd152016-04-26 11:24:08 -0500120
121 memset(fstab_line, 0, sizeof(fstab_line));
Dees_Troy5bf43922012-09-07 16:07:55 -0400122 }
123 fclose(fstabFile);
Matt Mower72c87ce2016-04-26 14:34:56 -0500124
125 std::vector<TWPartition*>::iterator iter;
126 for (iter = Partitions.begin(); iter != Partitions.end(); iter++) {
127 (*iter)->Partition_Post_Processing(Display_Error);
128
129 if ((*iter)->Is_Storage) {
130 ++storageid;
131 (*iter)->MTP_Storage_ID = storageid;
132 }
133
134 if (!settings_partition && (*iter)->Is_Settings_Storage && (*iter)->Is_Present)
135 settings_partition = (*iter);
136 else
137 (*iter)->Is_Settings_Storage = false;
138
139 if (!andsec_partition && (*iter)->Has_Android_Secure && (*iter)->Is_Present)
140 andsec_partition = (*iter);
141 else
142 (*iter)->Has_Android_Secure = false;
143 }
144
Ethan Yonker6277c792014-09-15 14:54:30 -0500145 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) {
146 // Attempt to automatically identify /data/media emulated storage devices
147 TWPartition* Dat = Find_Partition_By_Path("/data");
148 if (Dat) {
149 LOGINFO("Using automatic handling for /data/media emulated storage device.\n");
150 datamedia = true;
that9e0593e2014-10-08 00:01:24 +0200151 Dat->Setup_Data_Media();
Ethan Yonker6277c792014-09-15 14:54:30 -0500152 settings_partition = Dat;
Ethan Yonker726a0202014-12-16 20:01:38 -0600153 // Since /data was not considered a storage partition earlier, we still need to assign an MTP ID
154 ++storageid;
155 Dat->MTP_Storage_ID = storageid;
Ethan Yonker6277c792014-09-15 14:54:30 -0500156 }
157 }
Dees Troy02a64532014-03-19 15:23:32 +0000158 if (!settings_partition) {
Dees_Troya13d74f2013-03-24 08:54:55 -0500159 for (iter = Partitions.begin(); iter != Partitions.end(); iter++) {
160 if ((*iter)->Is_Storage) {
Dees Troy02a64532014-03-19 15:23:32 +0000161 settings_partition = (*iter);
Dees_Troya13d74f2013-03-24 08:54:55 -0500162 break;
163 }
164 }
Dees Troy02a64532014-03-19 15:23:32 +0000165 if (!settings_partition)
Dees_Troy2673cec2013-04-02 20:22:16 +0000166 LOGERR("Unable to locate storage partition for storing settings file.\n");
Dees_Troya13d74f2013-03-24 08:54:55 -0500167 }
Dees_Troy5bf43922012-09-07 16:07:55 -0400168 if (!Write_Fstab()) {
169 if (Display_Error)
Dees_Troy2673cec2013-04-02 20:22:16 +0000170 LOGERR("Error creating fstab\n");
Dees_Troy5bf43922012-09-07 16:07:55 -0400171 else
Dees_Troy2673cec2013-04-02 20:22:16 +0000172 LOGINFO("Error creating fstab\n");
Dees_Troy5bf43922012-09-07 16:07:55 -0400173 }
Matt Mowered71fa32014-04-16 13:21:47 -0500174
Matt Mowerbf4efa32014-04-14 23:25:26 -0500175 if (andsec_partition) {
176 Setup_Android_Secure_Location(andsec_partition);
Matt Mowered71fa32014-04-16 13:21:47 -0500177 } else if (settings_partition) {
Matt Mowerbf4efa32014-04-14 23:25:26 -0500178 Setup_Android_Secure_Location(settings_partition);
179 }
Matt Mowered71fa32014-04-16 13:21:47 -0500180 if (settings_partition) {
181 Setup_Settings_Storage_Partition(settings_partition);
182 }
Ethan Yonker253368a2014-11-25 15:00:52 -0600183#ifdef TW_INCLUDE_CRYPTO
Ethan Yonkercceebb82014-11-18 10:17:59 -0600184 TWPartition* Decrypt_Data = Find_Partition_By_Path("/data");
185 if (Decrypt_Data && Decrypt_Data->Is_Encrypted && !Decrypt_Data->Is_Decrypted) {
Ethan Yonkerbd7492d2016-12-07 13:55:01 -0600186 if (Decrypt_Data->Is_FBE) {
187 if (DataManager::GetIntValue(TW_CRYPTO_PWTYPE) == 0) {
188 if (Decrypt_Device("!") == 0) {
189 gui_msg("decrypt_success=Successfully decrypted with default password.");
190 DataManager::SetValue(TW_IS_ENCRYPTED, 0);
191 } else {
192 gui_err("unable_to_decrypt=Unable to decrypt with default password.");
193 }
Ethan Yonkercceebb82014-11-18 10:17:59 -0600194 }
195 } else {
Ethan Yonkerbd7492d2016-12-07 13:55:01 -0600196 int password_type = cryptfs_get_password_type();
197 if (password_type == CRYPT_TYPE_DEFAULT) {
198 LOGINFO("Device is encrypted with the default password, attempting to decrypt.\n");
199 if (Decrypt_Device("default_password") == 0) {
200 gui_msg("decrypt_success=Successfully decrypted with default password.");
201 DataManager::SetValue(TW_IS_ENCRYPTED, 0);
202 } else {
203 gui_err("unable_to_decrypt=Unable to decrypt with default password.");
204 }
205 } else {
206 DataManager::SetValue("TW_CRYPTO_TYPE", password_type);
207 }
Ethan Yonkercceebb82014-11-18 10:17:59 -0600208 }
209 }
Ethan Yonker66a19492015-12-10 10:19:45 -0600210 if (Decrypt_Data && (!Decrypt_Data->Is_Encrypted || Decrypt_Data->Is_Decrypted) && Decrypt_Data->Mount(false)) {
211 Decrypt_Adopted();
212 }
Ethan Yonkercceebb82014-11-18 10:17:59 -0600213#endif
Dees_Troy51127312012-09-08 13:08:49 -0400214 Update_System_Details();
Dees_Troyd0384ef2012-10-12 12:15:42 -0400215 UnMount_Main_Partitions();
Ethan Yonker1b190162016-12-05 15:25:19 -0600216#ifdef AB_OTA_UPDATER
217 DataManager::SetValue("tw_active_slot", Get_Active_Slot_Display());
218#endif
Dees_Troy5bf43922012-09-07 16:07:55 -0400219 return true;
220}
221
222int TWPartitionManager::Write_Fstab(void) {
223 FILE *fp;
224 std::vector<TWPartition*>::iterator iter;
225 string Line;
226
227 fp = fopen("/etc/fstab", "w");
228 if (fp == NULL) {
Dees_Troy2673cec2013-04-02 20:22:16 +0000229 LOGINFO("Can not open /etc/fstab.\n");
Dees_Troy5bf43922012-09-07 16:07:55 -0400230 return false;
231 }
Dees_Troy63c8df72012-09-10 14:02:05 -0400232 for (iter = Partitions.begin(); iter != Partitions.end(); iter++) {
Dees_Troy51127312012-09-08 13:08:49 -0400233 if ((*iter)->Can_Be_Mounted) {
dianlujitao7d304c72016-01-02 12:15:50 +0800234 Line = (*iter)->Actual_Block_Device + " " + (*iter)->Mount_Point + " " + (*iter)->Current_File_System + " rw 0 0\n";
Dees_Troy5bf43922012-09-07 16:07:55 -0400235 fputs(Line.c_str(), fp);
Dees_Troy91862e62013-04-04 23:48:21 +0000236 }
237 // Handle subpartition tracking
238 if ((*iter)->Is_SubPartition) {
239 TWPartition* ParentPartition = Find_Partition_By_Path((*iter)->SubPartition_Of);
240 if (ParentPartition)
241 ParentPartition->Has_SubPartition = true;
242 else
243 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 -0400244 }
245 }
246 fclose(fp);
247 return true;
Dees_Troy51a0e822012-09-05 15:24:24 -0400248}
249
Ethan Yonkerc05c5982014-03-13 09:19:56 -0500250void TWPartitionManager::Setup_Settings_Storage_Partition(TWPartition* Part) {
Ethan Yonkerc05c5982014-03-13 09:19:56 -0500251 DataManager::SetValue("tw_settings_path", Part->Storage_Path);
252 DataManager::SetValue("tw_storage_path", Part->Storage_Path);
253 LOGINFO("Settings storage is '%s'\n", Part->Storage_Path.c_str());
254}
255
Matt Mowerbf4efa32014-04-14 23:25:26 -0500256void TWPartitionManager::Setup_Android_Secure_Location(TWPartition* Part) {
257 if (Part->Has_Android_Secure)
258 Part->Setup_AndSec();
Ethan Yonker6277c792014-09-15 14:54:30 -0500259 else if (!datamedia)
Matt Mowerbf4efa32014-04-14 23:25:26 -0500260 Part->Setup_AndSec();
Matt Mowerbf4efa32014-04-14 23:25:26 -0500261}
262
Dees_Troy8170a922012-09-18 15:40:25 -0400263void TWPartitionManager::Output_Partition_Logging(void) {
264 std::vector<TWPartition*>::iterator iter;
265
266 printf("\n\nPartition Logs:\n");
267 for (iter = Partitions.begin(); iter != Partitions.end(); iter++)
268 Output_Partition((*iter));
269}
270
271void TWPartitionManager::Output_Partition(TWPartition* Part) {
272 unsigned long long mb = 1048576;
273
Gary Peck004d48b2012-11-21 16:28:18 -0800274 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 -0400275 if (Part->Can_Be_Mounted) {
Gary Peck004d48b2012-11-21 16:28:18 -0800276 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 -0400277 }
Gary Peck004d48b2012-11-21 16:28:18 -0800278 printf("\n Flags: ");
Dees_Troya13d74f2013-03-24 08:54:55 -0500279 if (Part->Can_Be_Mounted)
280 printf("Can_Be_Mounted ");
Gary Peck004d48b2012-11-21 16:28:18 -0800281 if (Part->Can_Be_Wiped)
282 printf("Can_Be_Wiped ");
Hashcodedabfd492013-08-29 22:45:30 -0700283 if (Part->Use_Rm_Rf)
284 printf("Use_Rm_Rf ");
Dees_Troya13d74f2013-03-24 08:54:55 -0500285 if (Part->Can_Be_Backed_Up)
286 printf("Can_Be_Backed_Up ");
Gary Peck004d48b2012-11-21 16:28:18 -0800287 if (Part->Wipe_During_Factory_Reset)
288 printf("Wipe_During_Factory_Reset ");
289 if (Part->Wipe_Available_in_GUI)
290 printf("Wipe_Available_in_GUI ");
291 if (Part->Is_SubPartition)
292 printf("Is_SubPartition ");
293 if (Part->Has_SubPartition)
294 printf("Has_SubPartition ");
295 if (Part->Removable)
296 printf("Removable ");
297 if (Part->Is_Present)
298 printf("IsPresent ");
299 if (Part->Can_Be_Encrypted)
300 printf("Can_Be_Encrypted ");
301 if (Part->Is_Encrypted)
302 printf("Is_Encrypted ");
303 if (Part->Is_Decrypted)
304 printf("Is_Decrypted ");
305 if (Part->Has_Data_Media)
306 printf("Has_Data_Media ");
Dees_Troy83bd4832013-05-04 12:39:56 +0000307 if (Part->Can_Encrypt_Backup)
308 printf("Can_Encrypt_Backup ");
309 if (Part->Use_Userdata_Encryption)
310 printf("Use_Userdata_Encryption ");
Gary Peck004d48b2012-11-21 16:28:18 -0800311 if (Part->Has_Android_Secure)
312 printf("Has_Android_Secure ");
313 if (Part->Is_Storage)
314 printf("Is_Storage ");
Dees_Troya13d74f2013-03-24 08:54:55 -0500315 if (Part->Is_Settings_Storage)
316 printf("Is_Settings_Storage ");
Dees_Troy68cab492012-12-12 19:29:35 +0000317 if (Part->Ignore_Blkid)
318 printf("Ignore_Blkid ");
Dees_Troy16c2b312013-01-15 16:51:18 +0000319 if (Part->Retain_Layout_Version)
320 printf("Retain_Layout_Version ");
Ethan Yonker253368a2014-11-25 15:00:52 -0600321 if (Part->Mount_To_Decrypt)
322 printf("Mount_To_Decrypt ");
Ethan Yonker96af84a2015-01-05 14:58:36 -0600323 if (Part->Can_Flash_Img)
324 printf("Can_Flash_Img ");
Ethan Yonker66a19492015-12-10 10:19:45 -0600325 if (Part->Is_Adopted_Storage)
326 printf("Is_Adopted_Storage ");
Ethan Yonker1b190162016-12-05 15:25:19 -0600327 if (Part->SlotSelect)
328 printf("SlotSelect ");
Gary Peck004d48b2012-11-21 16:28:18 -0800329 printf("\n");
330 if (!Part->SubPartition_Of.empty())
331 printf(" SubPartition_Of: %s\n", Part->SubPartition_Of.c_str());
332 if (!Part->Symlink_Path.empty())
333 printf(" Symlink_Path: %s\n", Part->Symlink_Path.c_str());
334 if (!Part->Symlink_Mount_Point.empty())
335 printf(" Symlink_Mount_Point: %s\n", Part->Symlink_Mount_Point.c_str());
336 if (!Part->Primary_Block_Device.empty())
337 printf(" Primary_Block_Device: %s\n", Part->Primary_Block_Device.c_str());
338 if (!Part->Alternate_Block_Device.empty())
339 printf(" Alternate_Block_Device: %s\n", Part->Alternate_Block_Device.c_str());
340 if (!Part->Decrypted_Block_Device.empty())
341 printf(" Decrypted_Block_Device: %s\n", Part->Decrypted_Block_Device.c_str());
Ethan Yonker253368a2014-11-25 15:00:52 -0600342 if (!Part->Crypto_Key_Location.empty() && Part->Crypto_Key_Location != "footer")
343 printf(" Crypto_Key_Location: %s\n", Part->Crypto_Key_Location.c_str());
Gary Peck004d48b2012-11-21 16:28:18 -0800344 if (Part->Length != 0)
345 printf(" Length: %i\n", Part->Length);
346 if (!Part->Display_Name.empty())
347 printf(" Display_Name: %s\n", Part->Display_Name.c_str());
Dees_Troya13d74f2013-03-24 08:54:55 -0500348 if (!Part->Storage_Name.empty())
349 printf(" Storage_Name: %s\n", Part->Storage_Name.c_str());
Gary Peck004d48b2012-11-21 16:28:18 -0800350 if (!Part->Backup_Path.empty())
351 printf(" Backup_Path: %s\n", Part->Backup_Path.c_str());
352 if (!Part->Backup_Name.empty())
353 printf(" Backup_Name: %s\n", Part->Backup_Name.c_str());
Dees_Troya13d74f2013-03-24 08:54:55 -0500354 if (!Part->Backup_Display_Name.empty())
355 printf(" Backup_Display_Name: %s\n", Part->Backup_Display_Name.c_str());
Gary Peck004d48b2012-11-21 16:28:18 -0800356 if (!Part->Backup_FileName.empty())
357 printf(" Backup_FileName: %s\n", Part->Backup_FileName.c_str());
358 if (!Part->Storage_Path.empty())
359 printf(" Storage_Path: %s\n", Part->Storage_Path.c_str());
360 if (!Part->Current_File_System.empty())
361 printf(" Current_File_System: %s\n", Part->Current_File_System.c_str());
362 if (!Part->Fstab_File_System.empty())
363 printf(" Fstab_File_System: %s\n", Part->Fstab_File_System.c_str());
364 if (Part->Format_Block_Size != 0)
Ethan Yonkerc798c9c2015-10-09 11:15:26 -0500365 printf(" Format_Block_Size: %lu\n", Part->Format_Block_Size);
Dees_Troy094207a2012-09-26 12:00:39 -0400366 if (!Part->MTD_Name.empty())
367 printf(" MTD_Name: %s\n", Part->MTD_Name.c_str());
Matt Mower029a82d2017-01-08 13:12:38 -0600368 printf(" Backup_Method: %s\n", Part->Backup_Method_By_Name().c_str());
Hashcode62bd9e02013-11-19 21:59:42 -0800369 if (Part->Mount_Flags || !Part->Mount_Options.empty())
Matt Mower4ab42b12016-04-21 13:52:18 -0500370 printf(" Mount_Options: %s\n", Part->Mount_Options.c_str());
Ethan Yonker726a0202014-12-16 20:01:38 -0600371 if (Part->MTP_Storage_ID)
372 printf(" MTP_Storage_ID: %i\n", Part->MTP_Storage_ID);
Ethan Yonker6277c792014-09-15 14:54:30 -0500373 printf("\n");
Dees_Troy8170a922012-09-18 15:40:25 -0400374}
375
Dees_Troy51a0e822012-09-05 15:24:24 -0400376int TWPartitionManager::Mount_By_Path(string Path, bool Display_Error) {
Dees_Troy5bf43922012-09-07 16:07:55 -0400377 std::vector<TWPartition*>::iterator iter;
378 int ret = false;
379 bool found = false;
Dees_Troy38bd7602012-09-14 13:33:53 -0400380 string Local_Path = TWFunc::Get_Root_Path(Path);
Dees_Troy5bf43922012-09-07 16:07:55 -0400381
Dees_Troyd93bda52013-07-03 19:55:19 +0000382 if (Local_Path == "/tmp" || Local_Path == "/")
Dees_Troy43d8b002012-09-17 16:00:01 -0400383 return true;
384
Dees_Troy5bf43922012-09-07 16:07:55 -0400385 // Iterate through all partitions
386 for (iter = Partitions.begin(); iter != Partitions.end(); iter++) {
Dees_Troy657c3092012-09-10 20:32:10 -0400387 if ((*iter)->Mount_Point == Local_Path || (!(*iter)->Symlink_Mount_Point.empty() && (*iter)->Symlink_Mount_Point == Local_Path)) {
Dees_Troy5bf43922012-09-07 16:07:55 -0400388 ret = (*iter)->Mount(Display_Error);
389 found = true;
Dees_Troy51127312012-09-08 13:08:49 -0400390 } else if ((*iter)->Is_SubPartition && (*iter)->SubPartition_Of == Local_Path) {
Dees_Troy5bf43922012-09-07 16:07:55 -0400391 (*iter)->Mount(Display_Error);
Dees_Troy51127312012-09-08 13:08:49 -0400392 }
Dees_Troy5bf43922012-09-07 16:07:55 -0400393 }
394 if (found) {
395 return ret;
396 } else if (Display_Error) {
Ethan Yonker74db1572015-10-28 12:44:49 -0500397 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 -0400398 } else {
Dees_Troy2673cec2013-04-02 20:22:16 +0000399 LOGINFO("Mount: Unable to find partition for path '%s'\n", Local_Path.c_str());
Dees_Troy5bf43922012-09-07 16:07:55 -0400400 }
401 return false;
Dees_Troy51a0e822012-09-05 15:24:24 -0400402}
403
Dees_Troy51a0e822012-09-05 15:24:24 -0400404int TWPartitionManager::UnMount_By_Path(string Path, bool Display_Error) {
Dees_Troy51127312012-09-08 13:08:49 -0400405 std::vector<TWPartition*>::iterator iter;
406 int ret = false;
407 bool found = false;
Dees_Troy38bd7602012-09-14 13:33:53 -0400408 string Local_Path = TWFunc::Get_Root_Path(Path);
Dees_Troy51127312012-09-08 13:08:49 -0400409
410 // Iterate through all partitions
411 for (iter = Partitions.begin(); iter != Partitions.end(); iter++) {
Dees_Troy657c3092012-09-10 20:32:10 -0400412 if ((*iter)->Mount_Point == Local_Path || (!(*iter)->Symlink_Mount_Point.empty() && (*iter)->Symlink_Mount_Point == Local_Path)) {
Dees_Troy51127312012-09-08 13:08:49 -0400413 ret = (*iter)->UnMount(Display_Error);
414 found = true;
415 } else if ((*iter)->Is_SubPartition && (*iter)->SubPartition_Of == Local_Path) {
416 (*iter)->UnMount(Display_Error);
417 }
418 }
419 if (found) {
420 return ret;
421 } else if (Display_Error) {
Ethan Yonker74db1572015-10-28 12:44:49 -0500422 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 -0400423 } else {
Dees_Troy2673cec2013-04-02 20:22:16 +0000424 LOGINFO("UnMount: Unable to find partition for path '%s'\n", Local_Path.c_str());
Dees_Troy51127312012-09-08 13:08:49 -0400425 }
426 return false;
Dees_Troy51a0e822012-09-05 15:24:24 -0400427}
428
Dees_Troy51a0e822012-09-05 15:24:24 -0400429int TWPartitionManager::Is_Mounted_By_Path(string Path) {
Dees_Troy51127312012-09-08 13:08:49 -0400430 TWPartition* Part = Find_Partition_By_Path(Path);
431
432 if (Part)
433 return Part->Is_Mounted();
434 else
Dees_Troy2673cec2013-04-02 20:22:16 +0000435 LOGINFO("Is_Mounted: Unable to find partition for path '%s'\n", Path.c_str());
Dees_Troy51127312012-09-08 13:08:49 -0400436 return false;
Dees_Troy51a0e822012-09-05 15:24:24 -0400437}
438
Dees_Troy5bf43922012-09-07 16:07:55 -0400439int TWPartitionManager::Mount_Current_Storage(bool Display_Error) {
Dees_Troy51127312012-09-08 13:08:49 -0400440 string current_storage_path = DataManager::GetCurrentStoragePath();
441
442 if (Mount_By_Path(current_storage_path, Display_Error)) {
443 TWPartition* FreeStorage = Find_Partition_By_Path(current_storage_path);
444 if (FreeStorage)
445 DataManager::SetValue(TW_STORAGE_FREE_SIZE, (int)(FreeStorage->Free / 1048576LLU));
446 return true;
447 }
448 return false;
Dees_Troy51a0e822012-09-05 15:24:24 -0400449}
450
Dees_Troy5bf43922012-09-07 16:07:55 -0400451int TWPartitionManager::Mount_Settings_Storage(bool Display_Error) {
452 return Mount_By_Path(DataManager::GetSettingsStoragePath(), Display_Error);
453}
454
455TWPartition* TWPartitionManager::Find_Partition_By_Path(string Path) {
456 std::vector<TWPartition*>::iterator iter;
Dees_Troy38bd7602012-09-14 13:33:53 -0400457 string Local_Path = TWFunc::Get_Root_Path(Path);
Dees_Troy5bf43922012-09-07 16:07:55 -0400458
459 for (iter = Partitions.begin(); iter != Partitions.end(); iter++) {
Dees_Troy657c3092012-09-10 20:32:10 -0400460 if ((*iter)->Mount_Point == Local_Path || (!(*iter)->Symlink_Mount_Point.empty() && (*iter)->Symlink_Mount_Point == Local_Path))
Dees_Troy5bf43922012-09-07 16:07:55 -0400461 return (*iter);
462 }
Dees_Troy51a0e822012-09-05 15:24:24 -0400463 return NULL;
464}
465
Dees_Troyc9ff7a32012-09-27 10:09:41 -0400466int TWPartitionManager::Check_Backup_Name(bool Display_Error) {
467 // Check the backup name to ensure that it is the correct size and contains only valid characters
468 // and that a backup with that name doesn't already exist
469 char backup_name[MAX_BACKUP_NAME_LEN];
470 char backup_loc[255], tw_image_dir[255];
471 int copy_size;
472 int index, cur_char;
473 string Backup_Name, Backup_Loc;
474
475 DataManager::GetValue(TW_BACKUP_NAME, Backup_Name);
476 copy_size = Backup_Name.size();
477 // Check size
478 if (copy_size > MAX_BACKUP_NAME_LEN) {
479 if (Display_Error)
Ethan Yonker74db1572015-10-28 12:44:49 -0500480 gui_err("backup_name_len=Backup name is too long.");
Dees_Troyc9ff7a32012-09-27 10:09:41 -0400481 return -2;
482 }
483
484 // Check each character
485 strncpy(backup_name, Backup_Name.c_str(), copy_size);
Dees_Troya13d74f2013-03-24 08:54:55 -0500486 if (copy_size == 1 && strncmp(backup_name, "0", 1) == 0)
Dees_Troyc9ff7a32012-09-27 10:09:41 -0400487 return 0; // A "0" (zero) means to use the current timestamp for the backup name
488 for (index=0; index<copy_size; index++) {
489 cur_char = (int)backup_name[index];
Matt Mowerfb1c4ff2014-04-16 13:43:36 -0500490 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 -0400491 // These are valid characters
492 // Numbers
493 // Upper case letters
494 // Lower case letters
495 // Space
496 // and -_.{}[]
497 } else {
498 if (Display_Error)
Ethan Yonker4adc33e2016-01-22 16:07:11 -0600499 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 -0400500 return -3;
501 }
502 }
503
504 // Check to make sure that a backup with this name doesn't already exist
505 DataManager::GetValue(TW_BACKUPS_FOLDER_VAR, Backup_Loc);
506 strcpy(backup_loc, Backup_Loc.c_str());
Dees_Troya13d74f2013-03-24 08:54:55 -0500507 sprintf(tw_image_dir,"%s/%s", backup_loc, Backup_Name.c_str());
Matt Mowerfb1c4ff2014-04-16 13:43:36 -0500508 if (TWFunc::Path_Exists(tw_image_dir)) {
Dees_Troyc9ff7a32012-09-27 10:09:41 -0400509 if (Display_Error)
Matt Mower3c366972015-12-25 19:28:31 -0600510 gui_err("backup_name_exists=A backup with that name already exists!");
bigbiffce8f83c2015-12-12 18:30:21 -0500511
Dees_Troyc9ff7a32012-09-27 10:09:41 -0400512 return -4;
513 }
Dees_Troyc9ff7a32012-09-27 10:09:41 -0400514 // No problems found, return 0
515 return 0;
516}
517
bigbiffce8f83c2015-12-12 18:30:21 -0500518bool TWPartitionManager::Backup_Partition(PartitionSettings *part_settings) {
Dees_Troy43d8b002012-09-17 16:00:01 -0400519 time_t start, stop;
Matt Mower23d8aae2017-01-06 14:30:33 -0600520 int use_compression;
bigbiffce8f83c2015-12-12 18:30:21 -0500521 string backup_log = part_settings->Backup_Folder + "/recovery.log";
Dees_Troy43d8b002012-09-17 16:00:01 -0400522
bigbiffce8f83c2015-12-12 18:30:21 -0500523 if (part_settings->Part == NULL)
Dees_Troy43d8b002012-09-17 16:00:01 -0400524 return true;
525
Dees_Troy093b7642012-09-21 15:59:38 -0400526 DataManager::GetValue(TW_USE_COMPRESSION_VAR, use_compression);
Dees_Troy093b7642012-09-21 15:59:38 -0400527
Tom Hite5a926722014-09-15 01:31:03 +0000528 TWFunc::SetPerformanceMode(true);
Dees_Troy43d8b002012-09-17 16:00:01 -0400529 time(&start);
530
bigbiffce8f83c2015-12-12 18:30:21 -0500531 if (part_settings->Part->Backup(part_settings, &tar_fork_pid)) {
Ethan Yonkercd00a8b2017-07-06 10:23:30 -0500532 sync();
533 sync();
bigbiff bigbiff56cf5642016-08-19 17:43:45 -0400534 string Full_Filename = part_settings->Backup_Folder + "/" + part_settings->Part->Backup_FileName;
Ethan Yonkercd00a8b2017-07-06 10:23:30 -0500535 if (!part_settings->adbbackup && part_settings->generate_digest) {
536 if (!twrpDigestDriver::Make_Digest(Full_Filename))
537 goto backup_error;
bigbiff bigbiff56cf5642016-08-19 17:43:45 -0400538 }
bigbiff bigbiff8fd4b092016-08-30 20:48:53 -0400539
bigbiffce8f83c2015-12-12 18:30:21 -0500540 if (part_settings->Part->Has_SubPartition) {
Dees_Troy8170a922012-09-18 15:40:25 -0400541 std::vector<TWPartition*>::iterator subpart;
bigbiff bigbiff8fd4b092016-08-30 20:48:53 -0400542 TWPartition *parentPart = part_settings->Part;
Dees_Troy8170a922012-09-18 15:40:25 -0400543
544 for (subpart = Partitions.begin(); subpart != Partitions.end(); subpart++) {
bigbiff bigbiff8fd4b092016-08-30 20:48:53 -0400545 if ((*subpart)->Can_Be_Backed_Up && (*subpart)->Is_SubPartition && (*subpart)->SubPartition_Of == parentPart->Mount_Point) {
Ethan Yonkerdcf2b672016-09-13 14:41:53 -0500546 part_settings->Part = *subpart;
bigbiffce8f83c2015-12-12 18:30:21 -0500547 if (!(*subpart)->Backup(part_settings, &tar_fork_pid)) {
Ethan Yonkercd00a8b2017-07-06 10:23:30 -0500548 goto backup_error;
Tom Hite5a926722014-09-15 01:31:03 +0000549 }
Dees_Troy2727b992013-08-14 20:09:30 +0000550 sync();
551 sync();
bigbiff bigbiff56cf5642016-08-19 17:43:45 -0400552 if (!part_settings->adbbackup && part_settings->generate_digest) {
553 if (!twrpDigestDriver::Make_Digest(Full_Filename)) {
Ethan Yonkercd00a8b2017-07-06 10:23:30 -0500554 goto backup_error;
bigbiffce8f83c2015-12-12 18:30:21 -0500555 }
Tom Hite5a926722014-09-15 01:31:03 +0000556 }
Dees_Troy8170a922012-09-18 15:40:25 -0400557 }
558 }
559 }
bigbiff bigbiff56cf5642016-08-19 17:43:45 -0400560
Dees_Troy43d8b002012-09-17 16:00:01 -0400561 time(&stop);
that203bcc92015-05-09 17:27:33 +0200562 int backup_time = (int) difftime(stop, start);
Dees_Troy2673cec2013-04-02 20:22:16 +0000563 LOGINFO("Partition Backup time: %d\n", backup_time);
bigbiff bigbiff8fd4b092016-08-30 20:48:53 -0400564
bigbiffce8f83c2015-12-12 18:30:21 -0500565 if (part_settings->Part->Backup_Method == BM_FILES) {
566 part_settings->file_time += backup_time;
Dees_Troy43d8b002012-09-17 16:00:01 -0400567 } else {
bigbiffce8f83c2015-12-12 18:30:21 -0500568 part_settings->img_time += backup_time;
569
Dees_Troy43d8b002012-09-17 16:00:01 -0400570 }
Tom Hite5a926722014-09-15 01:31:03 +0000571
Matt Mower02899552016-12-30 18:13:51 -0600572 TWFunc::SetPerformanceMode(false);
Ethan Yonkercd00a8b2017-07-06 10:23:30 -0500573 return true;
Dees_Troy43d8b002012-09-17 16:00:01 -0400574 }
Ethan Yonkercd00a8b2017-07-06 10:23:30 -0500575backup_error:
576 Clean_Backup_Folder(part_settings->Backup_Folder);
577 TWFunc::copy_file("/tmp/recovery.log", backup_log, 0644);
578 tw_set_default_metadata(backup_log.c_str());
579 TWFunc::SetPerformanceMode(false);
580 return false;
bigbiff7abc5fe2015-01-17 16:53:12 -0500581}
582
bigbiffbf1d6722015-02-14 16:25:59 -0500583void TWPartitionManager::Clean_Backup_Folder(string Backup_Folder) {
584 DIR *d = opendir(Backup_Folder.c_str());
585 struct dirent *p;
586 int r;
bigbiff bigbiff56cf5642016-08-19 17:43:45 -0400587 vector<string> ext;
588
589 //extensions we should delete when cleaning
590 ext.push_back("win");
591 ext.push_back("md5");
592 ext.push_back("sha2");
593 ext.push_back("info");
bigbiffbf1d6722015-02-14 16:25:59 -0500594
Ethan Yonker74db1572015-10-28 12:44:49 -0500595 gui_msg("backup_clean=Backup Failed. Cleaning Backup Folder.");
bigbiffbf1d6722015-02-14 16:25:59 -0500596
597 if (d == NULL) {
Ethan Yonker74db1572015-10-28 12:44:49 -0500598 gui_msg(Msg(msg::kError, "error_opening_strerr=Error opening: '{1}' ({2})")(Backup_Folder)(strerror(errno)));
bigbiffbf1d6722015-02-14 16:25:59 -0500599 return;
600 }
601
Matt Mower2b18a532015-02-20 16:58:05 -0600602 while ((p = readdir(d))) {
bigbiffbf1d6722015-02-14 16:25:59 -0500603 if (!strcmp(p->d_name, ".") || !strcmp(p->d_name, ".."))
604 continue;
605
Ethan Yonkere080c1f2016-09-19 13:50:25 -0500606 string path = Backup_Folder + "/" + p->d_name;
bigbiffbf1d6722015-02-14 16:25:59 -0500607
608 size_t dot = path.find_last_of(".") + 1;
bigbiff bigbiff56cf5642016-08-19 17:43:45 -0400609 for (vector<string>::const_iterator i = ext.begin(); i != ext.end(); ++i) {
610 if (path.substr(dot) == *i) {
611 r = unlink(path.c_str());
612 if (r != 0)
613 LOGINFO("Unable to unlink '%s: %s'\n", path.c_str(), strerror(errno));
bigbiffbf1d6722015-02-14 16:25:59 -0500614 }
615 }
616 }
617 closedir(d);
618}
619
Ethan Yonker472f5062016-02-25 13:47:30 -0600620int TWPartitionManager::Check_Backup_Cancel() {
621 return stop_backup.get_value();
622}
623
bigbiff7abc5fe2015-01-17 16:53:12 -0500624int TWPartitionManager::Cancel_Backup() {
625 string Backup_Folder, Backup_Name, Full_Backup_Path;
626
627 stop_backup.set_value(1);
628
629 if (tar_fork_pid != 0) {
630 DataManager::GetValue(TW_BACKUP_NAME, Backup_Name);
631 DataManager::GetValue(TW_BACKUPS_FOLDER_VAR, Backup_Folder);
Ethan Yonkere080c1f2016-09-19 13:50:25 -0500632 Full_Backup_Path = Backup_Folder + "/" + Backup_Name;
bigbiff7abc5fe2015-01-17 16:53:12 -0500633 LOGINFO("Killing pid: %d\n", tar_fork_pid);
634 kill(tar_fork_pid, SIGUSR2);
635 while (kill(tar_fork_pid, 0) == 0) {
636 usleep(1000);
637 }
638 LOGINFO("Backup_Run stopped and returning false, backup cancelled.\n");
639 LOGINFO("Removing directory %s\n", Full_Backup_Path.c_str());
640 TWFunc::removeDir(Full_Backup_Path, false);
641 tar_fork_pid = 0;
642 }
643
644 return 0;
Dees_Troy43d8b002012-09-17 16:00:01 -0400645}
646
bigbiffce8f83c2015-12-12 18:30:21 -0500647int TWPartitionManager::Run_Backup(bool adbbackup) {
648 PartitionSettings part_settings;
bigbiff bigbiff56cf5642016-08-19 17:43:45 -0400649 int partition_count = 0, disable_free_space_check = 0, skip_digest = 0;
bigbiffce8f83c2015-12-12 18:30:21 -0500650 int gui_adb_backup;
651 string Backup_Name, Backup_List, backup_path;
Matt Mower23d8aae2017-01-06 14:30:33 -0600652 unsigned long long total_bytes = 0, free_space = 0;
Dees_Troy43d8b002012-09-17 16:00:01 -0400653 TWPartition* storage = NULL;
Dees_Troy8170a922012-09-18 15:40:25 -0400654 std::vector<TWPartition*>::iterator subpart;
Dees_Troy43d8b002012-09-17 16:00:01 -0400655 struct tm *t;
Matt Mower23d8aae2017-01-06 14:30:33 -0600656 time_t seconds, total_start, total_stop;
Dees_Troya13d74f2013-03-24 08:54:55 -0500657 size_t start_pos = 0, end_pos = 0;
bigbiff7abc5fe2015-01-17 16:53:12 -0500658 stop_backup.set_value(0);
Dees_Troy43d8b002012-09-17 16:00:01 -0400659 seconds = time(0);
Matt Mowerfb1c4ff2014-04-16 13:43:36 -0500660 t = localtime(&seconds);
Dees_Troy43d8b002012-09-17 16:00:01 -0400661
bigbiffce8f83c2015-12-12 18:30:21 -0500662 part_settings.img_bytes_remaining = 0;
663 part_settings.file_bytes_remaining = 0;
664 part_settings.img_time = 0;
665 part_settings.file_time = 0;
666 part_settings.img_bytes = 0;
667 part_settings.file_bytes = 0;
668 part_settings.PM_Method = PM_BACKUP;
669
670 DataManager::GetValue("tw_enable_adb_backup", gui_adb_backup);
671 if (gui_adb_backup == true)
672 adbbackup = true;
673
674 part_settings.adbbackup = adbbackup;
Dees_Troy43d8b002012-09-17 16:00:01 -0400675 time(&total_start);
676
677 Update_System_Details();
678
679 if (!Mount_Current_Storage(true))
680 return false;
681
bigbiff bigbiff56cf5642016-08-19 17:43:45 -0400682 DataManager::GetValue(TW_SKIP_DIGEST_GENERATE_VAR, skip_digest);
683 if (skip_digest == 0)
684 part_settings.generate_digest = true;
Dees_Troyc5865ab2012-09-24 15:08:04 -0400685 else
bigbiff bigbiff56cf5642016-08-19 17:43:45 -0400686 part_settings.generate_digest = false;
Dees_Troy4a2a1262012-09-18 09:33:47 -0400687
bigbiffce8f83c2015-12-12 18:30:21 -0500688 DataManager::GetValue(TW_BACKUPS_FOLDER_VAR, part_settings.Backup_Folder);
Ethan Yonkerdcf2b672016-09-13 14:41:53 -0500689 DataManager::GetValue(TW_BACKUP_NAME, Backup_Name);
690 if (Backup_Name == gui_lookup("curr_date", "(Current Date)")) {
691 Backup_Name = TWFunc::Get_Current_Date();
692 } else if (Backup_Name == gui_lookup("auto_generate", "(Auto Generate)") || Backup_Name == "0" || Backup_Name.empty()) {
Dees Troyb21cc642013-09-10 17:36:41 +0000693 TWFunc::Auto_Generate_Backup_Name();
Ethan Yonkerdcf2b672016-09-13 14:41:53 -0500694 DataManager::GetValue(TW_BACKUP_NAME, Backup_Name);
Dees_Troy43d8b002012-09-17 16:00:01 -0400695 }
bigbiffce8f83c2015-12-12 18:30:21 -0500696
Ethan Yonkerdcf2b672016-09-13 14:41:53 -0500697 LOGINFO("Backup Name is: '%s'\n", Backup_Name.c_str());
Ethan Yonkere080c1f2016-09-19 13:50:25 -0500698 part_settings.Backup_Folder = part_settings.Backup_Folder + "/" + Backup_Name;
bigbiffce8f83c2015-12-12 18:30:21 -0500699
Ethan Yonkere080c1f2016-09-19 13:50:25 -0500700 LOGINFO("Backup_Folder is: '%s'\n", part_settings.Backup_Folder.c_str());
Dees_Troy43d8b002012-09-17 16:00:01 -0400701
Dees_Troy2673cec2013-04-02 20:22:16 +0000702 LOGINFO("Calculating backup details...\n");
Dees_Troya13d74f2013-03-24 08:54:55 -0500703 DataManager::GetValue("tw_backup_list", Backup_List);
704 if (!Backup_List.empty()) {
705 end_pos = Backup_List.find(";", start_pos);
706 while (end_pos != string::npos && start_pos < Backup_List.size()) {
707 backup_path = Backup_List.substr(start_pos, end_pos - start_pos);
bigbiffce8f83c2015-12-12 18:30:21 -0500708 part_settings.Part = Find_Partition_By_Path(backup_path);
709 if (part_settings.Part != NULL) {
Dees_Troya13d74f2013-03-24 08:54:55 -0500710 partition_count++;
bigbiffce8f83c2015-12-12 18:30:21 -0500711 if (part_settings.Part->Backup_Method == BM_FILES)
712 part_settings.file_bytes += part_settings.Part->Backup_Size;
Dees_Troya13d74f2013-03-24 08:54:55 -0500713 else
bigbiffce8f83c2015-12-12 18:30:21 -0500714 part_settings.img_bytes += part_settings.Part->Backup_Size;
715 if (part_settings.Part->Has_SubPartition) {
Dees_Troya13d74f2013-03-24 08:54:55 -0500716 std::vector<TWPartition*>::iterator subpart;
717
718 for (subpart = Partitions.begin(); subpart != Partitions.end(); subpart++) {
bigbiffce8f83c2015-12-12 18:30:21 -0500719 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 -0500720 partition_count++;
bigbiffce8f83c2015-12-12 18:30:21 -0500721 if ((*subpart)->Backup_Method == BM_FILES)
722 part_settings.file_bytes += (*subpart)->Backup_Size;
Dees_Troya13d74f2013-03-24 08:54:55 -0500723 else
bigbiffce8f83c2015-12-12 18:30:21 -0500724 part_settings.img_bytes += (*subpart)->Backup_Size;
Dees_Troya13d74f2013-03-24 08:54:55 -0500725 }
726 }
Dees_Troy8170a922012-09-18 15:40:25 -0400727 }
Dees_Troya13d74f2013-03-24 08:54:55 -0500728 } else {
Ethan Yonker74db1572015-10-28 12:44:49 -0500729 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 -0400730 }
Dees_Troya13d74f2013-03-24 08:54:55 -0500731 start_pos = end_pos + 1;
732 end_pos = Backup_List.find(";", start_pos);
Dees_Troy43d8b002012-09-17 16:00:01 -0400733 }
734 }
Dees_Troy43d8b002012-09-17 16:00:01 -0400735
736 if (partition_count == 0) {
Ethan Yonker74db1572015-10-28 12:44:49 -0500737 gui_msg("no_partition_selected=No partitions selected for backup.");
Dees_Troy43d8b002012-09-17 16:00:01 -0400738 return false;
739 }
bigbiffce8f83c2015-12-12 18:30:21 -0500740 if (adbbackup) {
741 if (twadbbu::Write_ADB_Stream_Header(partition_count) == false) {
742 return false;
743 }
744 }
745 total_bytes = part_settings.file_bytes + part_settings.img_bytes;
Ethan Yonker472f5062016-02-25 13:47:30 -0600746 ProgressTracking progress(total_bytes);
bigbiffce8f83c2015-12-12 18:30:21 -0500747 part_settings.progress = &progress;
748
Ethan Yonker74db1572015-10-28 12:44:49 -0500749 gui_msg(Msg("total_partitions_backup= * Total number of partitions to back up: {1}")(partition_count));
750 gui_msg(Msg("total_backup_size= * Total size of all data: {1}MB")(total_bytes / 1024 / 1024));
Dees_Troy43d8b002012-09-17 16:00:01 -0400751 storage = Find_Partition_By_Path(DataManager::GetCurrentStoragePath());
752 if (storage != NULL) {
753 free_space = storage->Free;
Ethan Yonker74db1572015-10-28 12:44:49 -0500754 gui_msg(Msg("available_space= * Available space: {1}MB")(free_space / 1024 / 1024));
Dees_Troy43d8b002012-09-17 16:00:01 -0400755 } else {
Ethan Yonker74db1572015-10-28 12:44:49 -0500756 gui_err("unable_locate_storage=Unable to locate storage device.");
Dees_Troy43d8b002012-09-17 16:00:01 -0400757 return false;
758 }
bigbiffbf1d6722015-02-14 16:25:59 -0500759
Matt Mowerbfccfb82016-04-25 23:22:31 -0500760 DataManager::GetValue(TW_DISABLE_FREE_SPACE_VAR, disable_free_space_check);
bigbiffce8f83c2015-12-12 18:30:21 -0500761
762 if (adbbackup)
763 disable_free_space_check = true;
764
bigbiffbf1d6722015-02-14 16:25:59 -0500765 if (!disable_free_space_check) {
766 if (free_space - (32 * 1024 * 1024) < total_bytes) {
767 // We require an extra 32MB just in case
Ethan Yonker74db1572015-10-28 12:44:49 -0500768 gui_err("no_space=Not enough free space on storage.");
bigbiffbf1d6722015-02-14 16:25:59 -0500769 return false;
770 }
Dees_Troy43d8b002012-09-17 16:00:01 -0400771 }
bigbiffce8f83c2015-12-12 18:30:21 -0500772 part_settings.img_bytes_remaining = part_settings.img_bytes;
773 part_settings.file_bytes_remaining = part_settings.file_bytes;
Dees_Troy43d8b002012-09-17 16:00:01 -0400774
Ethan Yonker74db1572015-10-28 12:44:49 -0500775 gui_msg("backup_started=[BACKUP STARTED]");
Ethan Yonkerdcf2b672016-09-13 14:41:53 -0500776 gui_msg(Msg("backup_folder= * Backup Folder: {1}")(part_settings.Backup_Folder));
777 if (!TWFunc::Recursive_Mkdir(part_settings.Backup_Folder)) {
Ethan Yonker74db1572015-10-28 12:44:49 -0500778 gui_err("fail_backup_folder=Failed to make backup folder.");
Dees_Troyd4b22b02013-01-18 17:17:58 +0000779 return false;
780 }
781
Dees_Troy2673cec2013-04-02 20:22:16 +0000782 DataManager::SetProgress(0.0);
Dees_Troy093b7642012-09-21 15:59:38 -0400783
Dees_Troya13d74f2013-03-24 08:54:55 -0500784 start_pos = 0;
785 end_pos = Backup_List.find(";", start_pos);
786 while (end_pos != string::npos && start_pos < Backup_List.size()) {
bigbiff7abc5fe2015-01-17 16:53:12 -0500787 if (stop_backup.get_value() != 0)
788 return -1;
Dees_Troya13d74f2013-03-24 08:54:55 -0500789 backup_path = Backup_List.substr(start_pos, end_pos - start_pos);
bigbiffce8f83c2015-12-12 18:30:21 -0500790 part_settings.Part = Find_Partition_By_Path(backup_path);
791 if (part_settings.Part != NULL) {
792 if (!Backup_Partition(&part_settings))
Dees_Troya13d74f2013-03-24 08:54:55 -0500793 return false;
794 } else {
Ethan Yonker74db1572015-10-28 12:44:49 -0500795 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 -0500796 }
797 start_pos = end_pos + 1;
798 end_pos = Backup_List.find(";", start_pos);
799 }
Dees_Troy43d8b002012-09-17 16:00:01 -0400800
801 // Average BPS
bigbiffce8f83c2015-12-12 18:30:21 -0500802 if (part_settings.img_time == 0)
803 part_settings.img_time = 1;
804 if (part_settings.file_time == 0)
805 part_settings.file_time = 1;
806 int img_bps = (int)part_settings.img_bytes / (int)part_settings.img_time;
807 unsigned long long file_bps = part_settings.file_bytes / (int)part_settings.file_time;
Dees_Troy43d8b002012-09-17 16:00:01 -0400808
bigbiffce8f83c2015-12-12 18:30:21 -0500809 if (part_settings.file_bytes != 0)
Ethan Yonker472f5062016-02-25 13:47:30 -0600810 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 -0500811 if (part_settings.img_bytes != 0)
Ethan Yonker472f5062016-02-25 13:47:30 -0600812 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 -0400813
814 time(&total_stop);
815 int total_time = (int) difftime(total_stop, total_start);
bigbiffce8f83c2015-12-12 18:30:21 -0500816
817 uint64_t actual_backup_size;
Ethan Yonker3fdcda42016-11-30 12:29:37 -0600818 if (!adbbackup) {
819 TWExclude twe;
820 actual_backup_size = twe.Get_Folder_Size(part_settings.Backup_Folder);
821 } else
bigbiffce8f83c2015-12-12 18:30:21 -0500822 actual_backup_size = part_settings.file_bytes + part_settings.img_bytes;
Matt Mowerfb1c4ff2014-04-16 13:43:36 -0500823 actual_backup_size /= (1024LLU * 1024LLU);
Dees_Troy43d8b002012-09-17 16:00:01 -0400824
bigbiffce8f83c2015-12-12 18:30:21 -0500825 int prev_img_bps = 0, use_compression = 0;
826 unsigned long long prev_file_bps = 0;
Matt Mower173cdb92016-12-31 02:49:19 -0600827 DataManager::GetValue(TW_BACKUP_AVG_IMG_RATE, prev_img_bps);
Dees_Troy093b7642012-09-21 15:59:38 -0400828 img_bps += (prev_img_bps * 4);
Matt Mowerfb1c4ff2014-04-16 13:43:36 -0500829 img_bps /= 5;
Dees_Troy093b7642012-09-21 15:59:38 -0400830
Matt Mowerfb1c4ff2014-04-16 13:43:36 -0500831 DataManager::GetValue(TW_USE_COMPRESSION_VAR, use_compression);
Dees_Troy093b7642012-09-21 15:59:38 -0400832 if (use_compression)
833 DataManager::GetValue(TW_BACKUP_AVG_FILE_COMP_RATE, prev_file_bps);
Matt Mowerfb1c4ff2014-04-16 13:43:36 -0500834 else
Dees_Troy093b7642012-09-21 15:59:38 -0400835 DataManager::GetValue(TW_BACKUP_AVG_FILE_RATE, prev_file_bps);
836 file_bps += (prev_file_bps * 4);
Matt Mowerfb1c4ff2014-04-16 13:43:36 -0500837 file_bps /= 5;
Dees_Troy093b7642012-09-21 15:59:38 -0400838
Matt Mowerfb1c4ff2014-04-16 13:43:36 -0500839 DataManager::SetValue(TW_BACKUP_AVG_IMG_RATE, img_bps);
Dees_Troy093b7642012-09-21 15:59:38 -0400840 if (use_compression)
841 DataManager::SetValue(TW_BACKUP_AVG_FILE_COMP_RATE, file_bps);
842 else
843 DataManager::SetValue(TW_BACKUP_AVG_FILE_RATE, file_bps);
844
Ethan Yonker74db1572015-10-28 12:44:49 -0500845 gui_msg(Msg("total_backed_size=[{1} MB TOTAL BACKED UP]")(actual_backup_size));
Dees_Troy43d8b002012-09-17 16:00:01 -0400846 Update_System_Details();
Dees_Troyd0384ef2012-10-12 12:15:42 -0400847 UnMount_Main_Partitions();
Ethan Yonker56db1c42015-12-20 22:49:00 -0600848 gui_msg(Msg(msg::kHighlight, "backup_completed=[BACKUP COMPLETED IN {1} SECONDS]")(total_time)); // the end
Ethan Yonkere080c1f2016-09-19 13:50:25 -0500849 string backup_log = part_settings.Backup_Folder + "/recovery.log";
Dees_Troy3f5c4e82013-02-01 15:16:59 +0000850 TWFunc::copy_file("/tmp/recovery.log", backup_log, 0644);
Ethan Yonker4b94cfd2014-12-11 10:00:45 -0600851 tw_set_default_metadata(backup_log.c_str());
bigbiffce8f83c2015-12-12 18:30:21 -0500852
853 if (part_settings.adbbackup) {
854 if (twadbbu::Write_ADB_Stream_Trailer() == false) {
855 return false;
856 }
857 }
858 part_settings.adbbackup = false;
859 DataManager::SetValue("tw_enable_adb_backup", 0);
860
Dees_Troy3f5c4e82013-02-01 15:16:59 +0000861 return true;
Dees_Troy51a0e822012-09-05 15:24:24 -0400862}
863
bigbiffce8f83c2015-12-12 18:30:21 -0500864bool TWPartitionManager::Restore_Partition(PartitionSettings *part_settings) {
Dees_Troy4a2a1262012-09-18 09:33:47 -0400865 time_t Start, Stop;
bigbiffce8f83c2015-12-12 18:30:21 -0500866
bigbiff bigbiffb5ecaad2017-03-20 18:53:53 -0400867 if (part_settings->adbbackup) {
868 part_settings->Part->Set_Backup_FileName(part_settings->Part->Backup_Name + "." + part_settings->Part->Current_File_System + ".win");
869 }
870
Tom Hite5a926722014-09-15 01:31:03 +0000871 TWFunc::SetPerformanceMode(true);
bigbiffce8f83c2015-12-12 18:30:21 -0500872
Dees_Troy4a2a1262012-09-18 09:33:47 -0400873 time(&Start);
Ethan Yonker472f5062016-02-25 13:47:30 -0600874
bigbiffce8f83c2015-12-12 18:30:21 -0500875 if (!part_settings->Part->Restore(part_settings)) {
Tom Hite5a926722014-09-15 01:31:03 +0000876 TWFunc::SetPerformanceMode(false);
Dees_Troy4a2a1262012-09-18 09:33:47 -0400877 return false;
Tom Hite5a926722014-09-15 01:31:03 +0000878 }
bigbiffce8f83c2015-12-12 18:30:21 -0500879 if (part_settings->Part->Has_SubPartition) {
Dees_Troy8170a922012-09-18 15:40:25 -0400880 std::vector<TWPartition*>::iterator subpart;
bigbiff bigbiff8fd4b092016-08-30 20:48:53 -0400881 TWPartition *parentPart = part_settings->Part;
Dees_Troy8170a922012-09-18 15:40:25 -0400882
883 for (subpart = Partitions.begin(); subpart != Partitions.end(); subpart++) {
bigbiff bigbiff8fd4b092016-08-30 20:48:53 -0400884 part_settings->Part = *subpart;
885 if ((*subpart)->Is_SubPartition && (*subpart)->SubPartition_Of == parentPart->Mount_Point) {
886 part_settings->Part = (*subpart);
bigbiffce8f83c2015-12-12 18:30:21 -0500887 if (!(*subpart)->Restore(part_settings)) {
Tom Hite5a926722014-09-15 01:31:03 +0000888 TWFunc::SetPerformanceMode(false);
Dees_Troy8170a922012-09-18 15:40:25 -0400889 return false;
Tom Hite5a926722014-09-15 01:31:03 +0000890 }
Dees_Troy8170a922012-09-18 15:40:25 -0400891 }
892 }
893 }
Dees_Troy4a2a1262012-09-18 09:33:47 -0400894 time(&Stop);
Tom Hite5a926722014-09-15 01:31:03 +0000895 TWFunc::SetPerformanceMode(false);
bigbiffce8f83c2015-12-12 18:30:21 -0500896 gui_msg(Msg("restore_part_done=[{1} done ({2} seconds)]")(part_settings->Part->Backup_Display_Name)((int)difftime(Stop, Start)));
897
Dees_Troy4a2a1262012-09-18 09:33:47 -0400898 return true;
899}
900
Ethan Yonker472f5062016-02-25 13:47:30 -0600901int TWPartitionManager::Run_Restore(const string& Restore_Name) {
bigbiffce8f83c2015-12-12 18:30:21 -0500902 PartitionSettings part_settings;
bigbiff bigbiff56cf5642016-08-19 17:43:45 -0400903 int check_digest;
bigbiffce8f83c2015-12-12 18:30:21 -0500904
Dees_Troy4a2a1262012-09-18 09:33:47 -0400905 time_t rStart, rStop;
906 time(&rStart);
Dees_Troya13d74f2013-03-24 08:54:55 -0500907 string Restore_List, restore_path;
908 size_t start_pos = 0, end_pos;
bigbiffce8f83c2015-12-12 18:30:21 -0500909
Ethan Yonkerdcf2b672016-09-13 14:41:53 -0500910 part_settings.Backup_Folder = Restore_Name;
bigbiffce8f83c2015-12-12 18:30:21 -0500911 part_settings.Part = NULL;
912 part_settings.partition_count = 0;
913 part_settings.total_restore_size = 0;
914 part_settings.adbbackup = false;
915 part_settings.PM_Method = PM_RESTORE;
Dees_Troy43d8b002012-09-17 16:00:01 -0400916
Ethan Yonker74db1572015-10-28 12:44:49 -0500917 gui_msg("restore_started=[RESTORE STARTED]");
918 gui_msg(Msg("restore_folder=Restore folder: '{1}'")(Restore_Name));
Dees_Troy43d8b002012-09-17 16:00:01 -0400919
Dees_Troy4a2a1262012-09-18 09:33:47 -0400920 if (!Mount_Current_Storage(true))
921 return false;
922
bigbiff bigbiff56cf5642016-08-19 17:43:45 -0400923 DataManager::GetValue(TW_SKIP_DIGEST_CHECK_VAR, check_digest);
924 if (check_digest > 0) {
925 // Check Digest files first before restoring to ensure that all of them match before starting a restore
926 TWFunc::GUI_Operation_Text(TW_VERIFY_DIGEST_TEXT, gui_parse_text("{@verifying_digest}"));
927 gui_msg("verifying_digest=Verifying Digest");
Dees_Troya13d74f2013-03-24 08:54:55 -0500928 } else {
bigbiff bigbiff56cf5642016-08-19 17:43:45 -0400929 gui_msg("skip_digest=Skipping Digest check based on user setting.");
Dees_Troya13d74f2013-03-24 08:54:55 -0500930 }
Ethan Yonker74db1572015-10-28 12:44:49 -0500931 gui_msg("calc_restore=Calculating restore details...");
Dees_Troya13d74f2013-03-24 08:54:55 -0500932 DataManager::GetValue("tw_restore_selected", Restore_List);
bigbiffce8f83c2015-12-12 18:30:21 -0500933
Dees_Troya13d74f2013-03-24 08:54:55 -0500934 if (!Restore_List.empty()) {
935 end_pos = Restore_List.find(";", start_pos);
936 while (end_pos != string::npos && start_pos < Restore_List.size()) {
937 restore_path = Restore_List.substr(start_pos, end_pos - start_pos);
bigbiffce8f83c2015-12-12 18:30:21 -0500938 part_settings.Part = Find_Partition_By_Path(restore_path);
939 if (part_settings.Part != NULL) {
bigbiffce8f83c2015-12-12 18:30:21 -0500940 if (part_settings.Part->Mount_Read_Only) {
941 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 -0500942 return false;
943 }
bigbiffce8f83c2015-12-12 18:30:21 -0500944
bigbiff bigbiff56cf5642016-08-19 17:43:45 -0400945 string Full_Filename = part_settings.Backup_Folder + "/" + part_settings.Part->Backup_FileName;
946
947 if (check_digest > 0 && !twrpDigestDriver::Check_Digest(Full_Filename))
Dees_Troya13d74f2013-03-24 08:54:55 -0500948 return false;
bigbiffce8f83c2015-12-12 18:30:21 -0500949 part_settings.partition_count++;
950 part_settings.total_restore_size += part_settings.Part->Get_Restore_Size(&part_settings);
951 if (part_settings.Part->Has_SubPartition) {
bigbiff bigbiff8fd4b092016-08-30 20:48:53 -0400952 TWPartition *parentPart = part_settings.Part;
Dees_Troya13d74f2013-03-24 08:54:55 -0500953 std::vector<TWPartition*>::iterator subpart;
954
955 for (subpart = Partitions.begin(); subpart != Partitions.end(); subpart++) {
bigbiff bigbiff8fd4b092016-08-30 20:48:53 -0400956 part_settings.Part = *subpart;
957 if ((*subpart)->Is_SubPartition && (*subpart)->SubPartition_Of == parentPart->Mount_Point) {
bigbiff bigbiff56cf5642016-08-19 17:43:45 -0400958 if (check_digest > 0 && !twrpDigestDriver::Check_Digest(Full_Filename))
Dees_Troya13d74f2013-03-24 08:54:55 -0500959 return false;
bigbiffce8f83c2015-12-12 18:30:21 -0500960 part_settings.total_restore_size += (*subpart)->Get_Restore_Size(&part_settings);
Dees_Troya13d74f2013-03-24 08:54:55 -0500961 }
962 }
963 }
964 } else {
Ethan Yonker74db1572015-10-28 12:44:49 -0500965 gui_msg(Msg(msg::kError, "restore_unable_locate=Unable to locate '{1}' partition for restoring.")(restore_path));
Dees_Troya13d74f2013-03-24 08:54:55 -0500966 }
967 start_pos = end_pos + 1;
968 end_pos = Restore_List.find(";", start_pos);
Dees_Troy4a2a1262012-09-18 09:33:47 -0400969 }
Dees_Troy4a2a1262012-09-18 09:33:47 -0400970 }
Dees_Troy4a2a1262012-09-18 09:33:47 -0400971
bigbiffce8f83c2015-12-12 18:30:21 -0500972 if (part_settings.partition_count == 0) {
Ethan Yonker74db1572015-10-28 12:44:49 -0500973 gui_err("no_part_restore=No partitions selected for restore.");
Dees_Troy4a2a1262012-09-18 09:33:47 -0400974 return false;
975 }
976
bigbiffce8f83c2015-12-12 18:30:21 -0500977 gui_msg(Msg("restore_part_count=Restoring {1} partitions...")(part_settings.partition_count));
978 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 +0000979 DataManager::SetProgress(0.0);
bigbiffce8f83c2015-12-12 18:30:21 -0500980 ProgressTracking progress(part_settings.total_restore_size);
981 part_settings.progress = &progress;
Ethan Yonker1b7a31b2014-07-03 15:09:22 -0500982
Dees_Troya13d74f2013-03-24 08:54:55 -0500983 start_pos = 0;
984 if (!Restore_List.empty()) {
985 end_pos = Restore_List.find(";", start_pos);
986 while (end_pos != string::npos && start_pos < Restore_List.size()) {
987 restore_path = Restore_List.substr(start_pos, end_pos - start_pos);
bigbiffce8f83c2015-12-12 18:30:21 -0500988
989 part_settings.Part = Find_Partition_By_Path(restore_path);
990 if (part_settings.Part != NULL) {
991 part_settings.partition_count++;
bigbiffce8f83c2015-12-12 18:30:21 -0500992 if (!Restore_Partition(&part_settings))
Dees_Troya13d74f2013-03-24 08:54:55 -0500993 return false;
994 } else {
Ethan Yonker74db1572015-10-28 12:44:49 -0500995 gui_msg(Msg(msg::kError, "restore_unable_locate=Unable to locate '{1}' partition for restoring.")(restore_path));
Dees_Troya13d74f2013-03-24 08:54:55 -0500996 }
997 start_pos = end_pos + 1;
998 end_pos = Restore_List.find(";", start_pos);
999 }
1000 }
Ethan Yonker74db1572015-10-28 12:44:49 -05001001 TWFunc::GUI_Operation_Text(TW_UPDATE_SYSTEM_DETAILS_TEXT, gui_parse_text("{@updating_system_details}"));
Dees_Troy43d8b002012-09-17 16:00:01 -04001002 Update_System_Details();
Dees_Troyd0384ef2012-10-12 12:15:42 -04001003 UnMount_Main_Partitions();
Dees_Troy4a2a1262012-09-18 09:33:47 -04001004 time(&rStop);
Matt Mower3c366972015-12-25 19:28:31 -06001005 gui_msg(Msg(msg::kHighlight, "restore_completed=[RESTORE COMPLETED IN {1} SECONDS]")((int)difftime(rStop,rStart)));
Ethan Yonker1b7a31b2014-07-03 15:09:22 -05001006 DataManager::SetValue("tw_file_progress", "");
bigbiffce8f83c2015-12-12 18:30:21 -05001007
Dees_Troy63c8df72012-09-10 14:02:05 -04001008 return true;
Dees_Troy51a0e822012-09-05 15:24:24 -04001009}
1010
1011void TWPartitionManager::Set_Restore_Files(string Restore_Name) {
Dees_Troy63c8df72012-09-10 14:02:05 -04001012 // Start with the default values
Dees_Troya13d74f2013-03-24 08:54:55 -05001013 string Restore_List;
Dees_Troy83bd4832013-05-04 12:39:56 +00001014 bool get_date = true, check_encryption = true;
1015
1016 DataManager::SetValue("tw_restore_encrypted", 0);
Dees_Troy63c8df72012-09-10 14:02:05 -04001017
1018 DIR* d;
1019 d = opendir(Restore_Name.c_str());
1020 if (d == NULL)
1021 {
Ethan Yonker74db1572015-10-28 12:44:49 -05001022 gui_msg(Msg(msg::kError, "error_opening_strerr=Error opening: '{1}' ({2})")(Restore_Name)(strerror(errno)));
Dees_Troy63c8df72012-09-10 14:02:05 -04001023 return;
1024 }
1025
1026 struct dirent* de;
1027 while ((de = readdir(d)) != NULL)
1028 {
1029 // Strip off three components
1030 char str[256];
1031 char* label;
1032 char* fstype = NULL;
1033 char* extn = NULL;
1034 char* ptr;
1035
1036 strcpy(str, de->d_name);
1037 if (strlen(str) <= 2)
1038 continue;
1039
1040 if (get_date) {
1041 char file_path[255];
1042 struct stat st;
1043
1044 strcpy(file_path, Restore_Name.c_str());
1045 strcat(file_path, "/");
1046 strcat(file_path, str);
1047 stat(file_path, &st);
1048 string backup_date = ctime((const time_t*)(&st.st_mtime));
1049 DataManager::SetValue(TW_RESTORE_FILE_DATE, backup_date);
1050 get_date = false;
1051 }
1052
1053 label = str;
1054 ptr = label;
1055 while (*ptr && *ptr != '.') ptr++;
1056 if (*ptr == '.')
1057 {
1058 *ptr = 0x00;
1059 ptr++;
1060 fstype = ptr;
1061 }
1062 while (*ptr && *ptr != '.') ptr++;
1063 if (*ptr == '.')
1064 {
1065 *ptr = 0x00;
1066 ptr++;
1067 extn = ptr;
1068 }
1069
Dees_Troy83bd4832013-05-04 12:39:56 +00001070 if (fstype == NULL || extn == NULL || strcmp(fstype, "log") == 0) continue;
Dees_Troya13d74f2013-03-24 08:54:55 -05001071 int extnlength = strlen(extn);
Dees_Troy83bd4832013-05-04 12:39:56 +00001072 if (extnlength != 3 && extnlength != 6) continue;
1073 if (extnlength >= 3 && strncmp(extn, "win", 3) != 0) continue;
1074 //if (extnlength == 6 && strncmp(extn, "win000", 6) != 0) continue;
1075
1076 if (check_encryption) {
1077 string filename = Restore_Name + "/";
1078 filename += de->d_name;
1079 if (TWFunc::Get_File_Type(filename) == 2) {
1080 LOGINFO("'%s' is encrypted\n", filename.c_str());
1081 DataManager::SetValue("tw_restore_encrypted", 1);
1082 }
1083 }
Dees_Troya13d74f2013-03-24 08:54:55 -05001084 if (extnlength == 6 && strncmp(extn, "win000", 6) != 0) continue;
Dees_Troy63c8df72012-09-10 14:02:05 -04001085
1086 TWPartition* Part = Find_Partition_By_Path(label);
1087 if (Part == NULL)
1088 {
Ethan Yonker74db1572015-10-28 12:44:49 -05001089 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 -04001090 continue;
1091 }
1092
1093 Part->Backup_FileName = de->d_name;
1094 if (strlen(extn) > 3) {
1095 Part->Backup_FileName.resize(Part->Backup_FileName.size() - strlen(extn) + 3);
1096 }
1097
James Christopher Adduonofddbdfa2016-02-29 15:08:11 -05001098 if (!Part->Is_SubPartition)
1099 Restore_List += Part->Backup_Path + ";";
Dees_Troy63c8df72012-09-10 14:02:05 -04001100 }
1101 closedir(d);
1102
Dees_Troya13d74f2013-03-24 08:54:55 -05001103 // Set the final value
1104 DataManager::SetValue("tw_restore_list", Restore_List);
1105 DataManager::SetValue("tw_restore_selected", Restore_List);
Dees_Troy51a0e822012-09-05 15:24:24 -04001106 return;
1107}
1108
1109int TWPartitionManager::Wipe_By_Path(string Path) {
Dees_Troy63c8df72012-09-10 14:02:05 -04001110 std::vector<TWPartition*>::iterator iter;
1111 int ret = false;
1112 bool found = false;
Dees_Troy38bd7602012-09-14 13:33:53 -04001113 string Local_Path = TWFunc::Get_Root_Path(Path);
Dees_Troy63c8df72012-09-10 14:02:05 -04001114
1115 // Iterate through all partitions
1116 for (iter = Partitions.begin(); iter != Partitions.end(); iter++) {
Dees_Troy657c3092012-09-10 20:32:10 -04001117 if ((*iter)->Mount_Point == Local_Path || (!(*iter)->Symlink_Mount_Point.empty() && (*iter)->Symlink_Mount_Point == Local_Path)) {
Dees_Troye58d5262012-09-21 12:27:57 -04001118 if (Path == "/and-sec")
1119 ret = (*iter)->Wipe_AndSec();
1120 else
1121 ret = (*iter)->Wipe();
Dees_Troy63c8df72012-09-10 14:02:05 -04001122 found = true;
1123 } else if ((*iter)->Is_SubPartition && (*iter)->SubPartition_Of == Local_Path) {
1124 (*iter)->Wipe();
1125 }
1126 }
1127 if (found) {
1128 return ret;
1129 } else
Ethan Yonker74db1572015-10-28 12:44:49 -05001130 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 -04001131 return false;
Dees_Troy51a0e822012-09-05 15:24:24 -04001132}
1133
Ethan Yonker87c7bac2014-05-25 21:41:08 -05001134int TWPartitionManager::Wipe_By_Path(string Path, string New_File_System) {
1135 std::vector<TWPartition*>::iterator iter;
1136 int ret = false;
1137 bool found = false;
1138 string Local_Path = TWFunc::Get_Root_Path(Path);
1139
1140 // Iterate through all partitions
1141 for (iter = Partitions.begin(); iter != Partitions.end(); iter++) {
1142 if ((*iter)->Mount_Point == Local_Path || (!(*iter)->Symlink_Mount_Point.empty() && (*iter)->Symlink_Mount_Point == Local_Path)) {
1143 if (Path == "/and-sec")
1144 ret = (*iter)->Wipe_AndSec();
1145 else
1146 ret = (*iter)->Wipe(New_File_System);
1147 found = true;
1148 } else if ((*iter)->Is_SubPartition && (*iter)->SubPartition_Of == Local_Path) {
1149 (*iter)->Wipe(New_File_System);
1150 }
1151 }
1152 if (found) {
1153 return ret;
1154 } else
Ethan Yonker74db1572015-10-28 12:44:49 -05001155 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 -05001156 return false;
1157}
1158
Dees_Troy51a0e822012-09-05 15:24:24 -04001159int TWPartitionManager::Factory_Reset(void) {
Dees_Troy63c8df72012-09-10 14:02:05 -04001160 std::vector<TWPartition*>::iterator iter;
1161 int ret = true;
1162
1163 for (iter = Partitions.begin(); iter != Partitions.end(); iter++) {
Dees_Troy38bd7602012-09-14 13:33:53 -04001164 if ((*iter)->Wipe_During_Factory_Reset && (*iter)->Is_Present) {
Ethan Yonker89583ef2015-08-26 09:01:59 -05001165#ifdef TW_OEM_BUILD
1166 if ((*iter)->Mount_Point == "/data") {
1167 if (!(*iter)->Wipe_Encryption())
1168 ret = false;
1169 } else {
1170#endif
1171 if (!(*iter)->Wipe())
1172 ret = false;
1173#ifdef TW_OEM_BUILD
1174 }
1175#endif
Dees_Troy094207a2012-09-26 12:00:39 -04001176 } else if ((*iter)->Has_Android_Secure) {
1177 if (!(*iter)->Wipe_AndSec())
1178 ret = false;
Dees_Troy63c8df72012-09-10 14:02:05 -04001179 }
1180 }
Ethan Yonker9fa76ba2016-06-30 14:05:43 -05001181 TWFunc::check_and_run_script("/sbin/factoryreset.sh", "Factory Reset Script");
Dees_Troy63c8df72012-09-10 14:02:05 -04001182 return ret;
Dees_Troy51a0e822012-09-05 15:24:24 -04001183}
1184
Dees_Troy38bd7602012-09-14 13:33:53 -04001185int TWPartitionManager::Wipe_Dalvik_Cache(void) {
1186 struct stat st;
bigbiff bigbiff9c754052013-01-09 09:09:08 -05001187 vector <string> dir;
Dees_Troy38bd7602012-09-14 13:33:53 -04001188
1189 if (!Mount_By_Path("/data", true))
1190 return false;
1191
bigbiff bigbiff9c754052013-01-09 09:09:08 -05001192 dir.push_back("/data/dalvik-cache");
Ethan Yonkerff2b7882016-12-10 09:04:41 -06001193 if (Mount_By_Path("/cache", false)) {
1194 dir.push_back("/cache/dalvik-cache");
1195 dir.push_back("/cache/dc");
bigbiff bigbiff9c754052013-01-09 09:09:08 -05001196 }
Ethan Yonkerff2b7882016-12-10 09:04:41 -06001197
Dees_Troy38bd7602012-09-14 13:33:53 -04001198 TWPartition* sdext = Find_Partition_By_Path("/sd-ext");
Vojtech Bocekfafb0c52013-07-25 22:53:02 +02001199 if (sdext && sdext->Is_Present && sdext->Mount(false))
1200 {
1201 if (stat("/sd-ext/dalvik-cache", &st) == 0)
1202 {
Ethan Yonkerff2b7882016-12-10 09:04:41 -06001203 dir.push_back("/sd-ext/dalvik-cache");
1204 }
1205 }
1206
1207 gui_msg("wiping_dalvik=Wiping Dalvik Cache Directories...");
1208 for (unsigned i = 0; i < dir.size(); ++i) {
1209 if (stat(dir.at(i).c_str(), &st) == 0) {
1210 TWFunc::removeDir(dir.at(i), false);
1211 gui_msg(Msg("cleaned=Cleaned: {1}...")(dir.at(i)));
bigbiff bigbiff9c754052013-01-09 09:09:08 -05001212 }
Vojtech Bocekfafb0c52013-07-25 22:53:02 +02001213 }
Ethan Yonker74db1572015-10-28 12:44:49 -05001214 gui_msg("dalvik_done=-- Dalvik Cache Directories Wipe Complete!");
Dees_Troy38bd7602012-09-14 13:33:53 -04001215 return true;
1216}
1217
1218int TWPartitionManager::Wipe_Rotate_Data(void) {
1219 if (!Mount_By_Path("/data", true))
1220 return false;
1221
bigbiff bigbiff9c754052013-01-09 09:09:08 -05001222 unlink("/data/misc/akmd*");
1223 unlink("/data/misc/rild*");
Dees_Troy2673cec2013-04-02 20:22:16 +00001224 gui_print("Rotation data wiped.\n");
Dees_Troy38bd7602012-09-14 13:33:53 -04001225 return true;
1226}
1227
1228int TWPartitionManager::Wipe_Battery_Stats(void) {
1229 struct stat st;
1230
1231 if (!Mount_By_Path("/data", true))
1232 return false;
1233
1234 if (0 != stat("/data/system/batterystats.bin", &st)) {
Dees_Troy2673cec2013-04-02 20:22:16 +00001235 gui_print("No Battery Stats Found. No Need To Wipe.\n");
Dees_Troy38bd7602012-09-14 13:33:53 -04001236 } else {
1237 remove("/data/system/batterystats.bin");
Dees_Troy2673cec2013-04-02 20:22:16 +00001238 gui_print("Cleared battery stats.\n");
Dees_Troy38bd7602012-09-14 13:33:53 -04001239 }
1240 return true;
1241}
1242
Dees_Troy2ff5a8d2012-09-26 14:53:02 -04001243int TWPartitionManager::Wipe_Android_Secure(void) {
1244 std::vector<TWPartition*>::iterator iter;
1245 int ret = false;
1246 bool found = false;
1247
1248 // Iterate through all partitions
1249 for (iter = Partitions.begin(); iter != Partitions.end(); iter++) {
1250 if ((*iter)->Has_Android_Secure) {
1251 ret = (*iter)->Wipe_AndSec();
1252 found = true;
1253 }
1254 }
1255 if (found) {
1256 return ret;
1257 } else {
Ethan Yonker74db1572015-10-28 12:44:49 -05001258 gui_err("no_andsec=No android secure partitions found.");
Dees_Troy2ff5a8d2012-09-26 14:53:02 -04001259 }
1260 return false;
1261}
1262
Dees_Troy38bd7602012-09-14 13:33:53 -04001263int TWPartitionManager::Format_Data(void) {
1264 TWPartition* dat = Find_Partition_By_Path("/data");
1265
1266 if (dat != NULL) {
1267 if (!dat->UnMount(true))
1268 return false;
1269
1270 return dat->Wipe_Encryption();
1271 } else {
Matt Mower3c366972015-12-25 19:28:31 -06001272 gui_msg(Msg(msg::kError, "unable_to_locate=Unable to locate {1}.")("/data"));
Dees_Troy38bd7602012-09-14 13:33:53 -04001273 return false;
1274 }
1275 return false;
1276}
1277
1278int TWPartitionManager::Wipe_Media_From_Data(void) {
1279 TWPartition* dat = Find_Partition_By_Path("/data");
1280
1281 if (dat != NULL) {
1282 if (!dat->Has_Data_Media) {
Dees_Troy2673cec2013-04-02 20:22:16 +00001283 LOGERR("This device does not have /data/media\n");
Dees_Troy38bd7602012-09-14 13:33:53 -04001284 return false;
1285 }
1286 if (!dat->Mount(true))
1287 return false;
1288
Ethan Yonker74db1572015-10-28 12:44:49 -05001289 gui_msg("wiping_datamedia=Wiping internal storage -- /data/media...");
Ethan Yonker726a0202014-12-16 20:01:38 -06001290 Remove_MTP_Storage(dat->MTP_Storage_ID);
bigbiff bigbiff9c754052013-01-09 09:09:08 -05001291 TWFunc::removeDir("/data/media", false);
xiaolu9416f4f2015-06-04 08:22:23 +08001292 dat->Recreate_Media_Folder();
Ethan Yonker726a0202014-12-16 20:01:38 -06001293 Add_MTP_Storage(dat->MTP_Storage_ID);
Dees_Troy38bd7602012-09-14 13:33:53 -04001294 return true;
1295 } else {
Matt Mower3c366972015-12-25 19:28:31 -06001296 gui_msg(Msg(msg::kError, "unable_to_locate=Unable to locate {1}.")("/data"));
Dees_Troy38bd7602012-09-14 13:33:53 -04001297 return false;
1298 }
1299 return false;
1300}
1301
Ethan Yonker87c7bac2014-05-25 21:41:08 -05001302int TWPartitionManager::Repair_By_Path(string Path, bool Display_Error) {
1303 std::vector<TWPartition*>::iterator iter;
1304 int ret = false;
1305 bool found = false;
1306 string Local_Path = TWFunc::Get_Root_Path(Path);
1307
1308 if (Local_Path == "/tmp" || Local_Path == "/")
1309 return true;
1310
1311 // Iterate through all partitions
1312 for (iter = Partitions.begin(); iter != Partitions.end(); iter++) {
1313 if ((*iter)->Mount_Point == Local_Path || (!(*iter)->Symlink_Mount_Point.empty() && (*iter)->Symlink_Mount_Point == Local_Path)) {
1314 ret = (*iter)->Repair();
1315 found = true;
1316 } else if ((*iter)->Is_SubPartition && (*iter)->SubPartition_Of == Local_Path) {
1317 (*iter)->Repair();
1318 }
1319 }
1320 if (found) {
1321 return ret;
1322 } else if (Display_Error) {
Ethan Yonker74db1572015-10-28 12:44:49 -05001323 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 -05001324 } else {
1325 LOGINFO("Repair: Unable to find partition for path '%s'\n", Local_Path.c_str());
1326 }
1327 return false;
1328}
1329
Ethan Yonkera2719152015-05-28 09:44:41 -05001330int TWPartitionManager::Resize_By_Path(string Path, bool Display_Error) {
1331 std::vector<TWPartition*>::iterator iter;
1332 int ret = false;
1333 bool found = false;
1334 string Local_Path = TWFunc::Get_Root_Path(Path);
1335
1336 if (Local_Path == "/tmp" || Local_Path == "/")
1337 return true;
1338
1339 // Iterate through all partitions
1340 for (iter = Partitions.begin(); iter != Partitions.end(); iter++) {
1341 if ((*iter)->Mount_Point == Local_Path || (!(*iter)->Symlink_Mount_Point.empty() && (*iter)->Symlink_Mount_Point == Local_Path)) {
1342 ret = (*iter)->Resize();
1343 found = true;
1344 } else if ((*iter)->Is_SubPartition && (*iter)->SubPartition_Of == Local_Path) {
1345 (*iter)->Resize();
1346 }
1347 }
1348 if (found) {
1349 return ret;
1350 } else if (Display_Error) {
Ethan Yonker74db1572015-10-28 12:44:49 -05001351 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 -05001352 } else {
1353 LOGINFO("Resize: Unable to find partition for path '%s'\n", Local_Path.c_str());
1354 }
1355 return false;
1356}
1357
Dees_Troy51a0e822012-09-05 15:24:24 -04001358void TWPartitionManager::Update_System_Details(void) {
Dees_Troy5bf43922012-09-07 16:07:55 -04001359 std::vector<TWPartition*>::iterator iter;
Dees_Troy51127312012-09-08 13:08:49 -04001360 int data_size = 0;
Dees_Troy5bf43922012-09-07 16:07:55 -04001361
Ethan Yonker74db1572015-10-28 12:44:49 -05001362 gui_msg("update_part_details=Updating partition details...");
Dees_Troy5bf43922012-09-07 16:07:55 -04001363 for (iter = Partitions.begin(); iter != Partitions.end(); iter++) {
Ethan Yonker1b190162016-12-05 15:25:19 -06001364 (*iter)->Update_Size(true);
Dees_Troy51127312012-09-08 13:08:49 -04001365 if ((*iter)->Can_Be_Mounted) {
Dees_Troy51127312012-09-08 13:08:49 -04001366 if ((*iter)->Mount_Point == "/system") {
1367 int backup_display_size = (int)((*iter)->Backup_Size / 1048576LLU);
1368 DataManager::SetValue(TW_BACKUP_SYSTEM_SIZE, backup_display_size);
1369 } else if ((*iter)->Mount_Point == "/data" || (*iter)->Mount_Point == "/datadata") {
1370 data_size += (int)((*iter)->Backup_Size / 1048576LLU);
1371 } else if ((*iter)->Mount_Point == "/cache") {
1372 int backup_display_size = (int)((*iter)->Backup_Size / 1048576LLU);
1373 DataManager::SetValue(TW_BACKUP_CACHE_SIZE, backup_display_size);
1374 } else if ((*iter)->Mount_Point == "/sd-ext") {
1375 int backup_display_size = (int)((*iter)->Backup_Size / 1048576LLU);
1376 DataManager::SetValue(TW_BACKUP_SDEXT_SIZE, backup_display_size);
1377 if ((*iter)->Backup_Size == 0) {
1378 DataManager::SetValue(TW_HAS_SDEXT_PARTITION, 0);
1379 DataManager::SetValue(TW_BACKUP_SDEXT_VAR, 0);
1380 } else
1381 DataManager::SetValue(TW_HAS_SDEXT_PARTITION, 1);
Dees_Troye58d5262012-09-21 12:27:57 -04001382 } else if ((*iter)->Has_Android_Secure) {
Dees_Troy8170a922012-09-18 15:40:25 -04001383 int backup_display_size = (int)((*iter)->Backup_Size / 1048576LLU);
Dees_Troye58d5262012-09-21 12:27:57 -04001384 DataManager::SetValue(TW_BACKUP_ANDSEC_SIZE, backup_display_size);
Dees_Troy8170a922012-09-18 15:40:25 -04001385 if ((*iter)->Backup_Size == 0) {
1386 DataManager::SetValue(TW_HAS_ANDROID_SECURE, 0);
1387 DataManager::SetValue(TW_BACKUP_ANDSEC_VAR, 0);
1388 } else
1389 DataManager::SetValue(TW_HAS_ANDROID_SECURE, 1);
Dees_Troy2c50e182012-09-26 20:05:28 -04001390 } else if ((*iter)->Mount_Point == "/boot") {
1391 int backup_display_size = (int)((*iter)->Backup_Size / 1048576LLU);
1392 DataManager::SetValue(TW_BACKUP_BOOT_SIZE, backup_display_size);
1393 if ((*iter)->Backup_Size == 0) {
1394 DataManager::SetValue("tw_has_boot_partition", 0);
1395 DataManager::SetValue(TW_BACKUP_BOOT_VAR, 0);
1396 } else
1397 DataManager::SetValue("tw_has_boot_partition", 1);
Dees_Troy51127312012-09-08 13:08:49 -04001398 }
Dees_Troyaa9cc402012-10-13 12:14:05 -04001399 } else {
1400 // Handle unmountable partitions in case we reset defaults
1401 if ((*iter)->Mount_Point == "/boot") {
1402 int backup_display_size = (int)((*iter)->Backup_Size / 1048576LLU);
1403 DataManager::SetValue(TW_BACKUP_BOOT_SIZE, backup_display_size);
1404 if ((*iter)->Backup_Size == 0) {
1405 DataManager::SetValue(TW_HAS_BOOT_PARTITION, 0);
1406 DataManager::SetValue(TW_BACKUP_BOOT_VAR, 0);
1407 } else
1408 DataManager::SetValue(TW_HAS_BOOT_PARTITION, 1);
1409 } else if ((*iter)->Mount_Point == "/recovery") {
1410 int backup_display_size = (int)((*iter)->Backup_Size / 1048576LLU);
1411 DataManager::SetValue(TW_BACKUP_RECOVERY_SIZE, backup_display_size);
1412 if ((*iter)->Backup_Size == 0) {
1413 DataManager::SetValue(TW_HAS_RECOVERY_PARTITION, 0);
1414 DataManager::SetValue(TW_BACKUP_RECOVERY_VAR, 0);
1415 } else
1416 DataManager::SetValue(TW_HAS_RECOVERY_PARTITION, 1);
Gary Peck82599a82012-11-21 16:23:12 -08001417 } else if ((*iter)->Mount_Point == "/data") {
1418 data_size += (int)((*iter)->Backup_Size / 1048576LLU);
Dees_Troyaa9cc402012-10-13 12:14:05 -04001419 }
Dees_Troy51127312012-09-08 13:08:49 -04001420 }
Dees_Troy5bf43922012-09-07 16:07:55 -04001421 }
Ethan Yonker74db1572015-10-28 12:44:49 -05001422 gui_msg("update_part_details_done=...done");
Dees_Troy51127312012-09-08 13:08:49 -04001423 DataManager::SetValue(TW_BACKUP_DATA_SIZE, data_size);
1424 string current_storage_path = DataManager::GetCurrentStoragePath();
1425 TWPartition* FreeStorage = Find_Partition_By_Path(current_storage_path);
Dees_Troy8170a922012-09-18 15:40:25 -04001426 if (FreeStorage != NULL) {
1427 // Attempt to mount storage
1428 if (!FreeStorage->Mount(false)) {
Matt Mower2d50cad2015-12-03 22:26:55 -06001429 gui_msg(Msg(msg::kError, "unable_to_mount_storage=Unable to mount storage"));
1430 DataManager::SetValue(TW_STORAGE_FREE_SIZE, 0);
Dees_Troy8170a922012-09-18 15:40:25 -04001431 } else {
1432 DataManager::SetValue(TW_STORAGE_FREE_SIZE, (int)(FreeStorage->Free / 1048576LLU));
1433 }
1434 } else {
Dees_Troy2673cec2013-04-02 20:22:16 +00001435 LOGINFO("Unable to find storage partition '%s'.\n", current_storage_path.c_str());
Dees_Troy8170a922012-09-18 15:40:25 -04001436 }
Dees_Troy5bf43922012-09-07 16:07:55 -04001437 if (!Write_Fstab())
Dees_Troy2673cec2013-04-02 20:22:16 +00001438 LOGERR("Error creating fstab\n");
Dees_Troy51a0e822012-09-05 15:24:24 -04001439 return;
1440}
1441
Ethan Yonkerbd7492d2016-12-07 13:55:01 -06001442void TWPartitionManager::Post_Decrypt(const string& Block_Device) {
1443 TWPartition* dat = Find_Partition_By_Path("/data");
1444 if (dat != NULL) {
1445 DataManager::SetValue(TW_IS_DECRYPTED, 1);
1446 dat->Is_Decrypted = true;
1447 if (!Block_Device.empty()) {
1448 dat->Decrypted_Block_Device = Block_Device;
1449 gui_msg(Msg("decrypt_success_dev=Data successfully decrypted, new block device: '{1}'")(Block_Device));
1450 } else {
1451 gui_msg("decrypt_success_nodev=Data successfully decrypted");
1452 }
1453 dat->Setup_File_System(false);
1454 dat->Current_File_System = dat->Fstab_File_System; // Needed if we're ignoring blkid because encrypted devices start out as emmc
1455
1456 // Sleep for a bit so that the device will be ready
1457 sleep(1);
1458 if (dat->Has_Data_Media && dat->Mount(false) && TWFunc::Path_Exists("/data/media/0")) {
1459 dat->Storage_Path = "/data/media/0";
1460 dat->Symlink_Path = dat->Storage_Path;
1461 DataManager::SetValue("tw_storage_path", "/data/media/0");
1462 DataManager::SetValue("tw_settings_path", "/data/media/0");
1463 dat->UnMount(false);
Ethan Yonkerbd7492d2016-12-07 13:55:01 -06001464 }
1465 Update_System_Details();
nkk71ffb02bd2017-06-04 23:12:16 +03001466 Output_Partition(dat);
Ethan Yonkerbd7492d2016-12-07 13:55:01 -06001467 UnMount_Main_Partitions();
1468 } else
1469 LOGERR("Unable to locate data partition.\n");
1470}
1471
Dees_Troy51a0e822012-09-05 15:24:24 -04001472int TWPartitionManager::Decrypt_Device(string Password) {
Dees_Troy5bf43922012-09-07 16:07:55 -04001473#ifdef TW_INCLUDE_CRYPTO
Ethan Yonkerddb63e22017-01-19 14:01:57 -06001474 char crypto_state[PROPERTY_VALUE_MAX], crypto_blkdev[PROPERTY_VALUE_MAX];
Ethan Yonker253368a2014-11-25 15:00:52 -06001475 std::vector<TWPartition*>::iterator iter;
Dees_Troy5bf43922012-09-07 16:07:55 -04001476
Ethan Yonker253368a2014-11-25 15:00:52 -06001477 // Mount any partitions that need to be mounted for decrypt
1478 for (iter = Partitions.begin(); iter != Partitions.end(); iter++) {
1479 if ((*iter)->Mount_To_Decrypt) {
1480 (*iter)->Mount(true);
1481 }
a39552696ff55ce2013-01-08 16:14:56 +00001482 }
a39552696ff55ce2013-01-08 16:14:56 +00001483
Ethan Yonkera1de1492015-11-04 11:58:27 -06001484 property_get("ro.crypto.state", crypto_state, "error");
1485 if (strcmp(crypto_state, "error") == 0) {
1486 property_set("ro.crypto.state", "encrypted");
1487 // Sleep for a bit so that services can start if needed
1488 sleep(1);
1489 }
1490
Ethan Yonkerbd7492d2016-12-07 13:55:01 -06001491 if (DataManager::GetIntValue(TW_IS_FBE)) {
1492#ifdef TW_INCLUDE_FBE
1493 if (!Mount_By_Path("/data", true)) // /data has to be mounted for FBE
1494 return -1;
1495 int retry_count = 10;
1496 while (!TWFunc::Path_Exists("/data/system/users/gatekeeper.password.key") && --retry_count)
1497 usleep(2000); // A small sleep is needed after mounting /data to ensure reliable decrypt... maybe because of DE?
1498 int user_id = DataManager::GetIntValue("tw_decrypt_user_id");
1499 LOGINFO("Decrypting FBE for user %i\n", user_id);
1500 if (Decrypt_User(user_id, Password)) {
1501 Post_Decrypt("");
1502 return 0;
1503 }
1504#else
1505 LOGERR("FBE support is not present\n");
1506#endif
1507 return -1;
1508 }
1509
Ethan Yonkerddb63e22017-01-19 14:01:57 -06001510 int pwret = -1;
1511 pid_t pid = fork();
1512 if (pid < 0) {
1513 LOGERR("fork failed\n");
1514 return -1;
1515 } else if (pid == 0) {
1516 // Child process
1517 char cPassword[255];
1518 strcpy(cPassword, Password.c_str());
1519 int ret = cryptfs_check_passwd(cPassword);
1520 exit(ret);
1521 } else {
1522 // Parent
1523 int status;
1524 if (TWFunc::Wait_For_Child_Timeout(pid, &status, "Decrypt", 30))
1525 pwret = -1;
1526 else
1527 pwret = WEXITSTATUS(status) ? -1 : 0;
1528 }
a39552696ff55ce2013-01-08 16:14:56 +00001529
nkk7171c6c502017-01-05 23:55:05 +02001530#ifdef TW_CRYPTO_USE_SYSTEM_VOLD
1531 if (pwret != 0) {
1532 pwret = vold_decrypt(Password);
1533 }
1534#endif // TW_CRYPTO_USE_SYSTEM_VOLD
1535
Ethan Yonker253368a2014-11-25 15:00:52 -06001536 // Unmount any partitions that were needed for decrypt
1537 for (iter = Partitions.begin(); iter != Partitions.end(); iter++) {
1538 if ((*iter)->Mount_To_Decrypt) {
1539 (*iter)->UnMount(false);
1540 }
1541 }
1542
a39552696ff55ce2013-01-08 16:14:56 +00001543 if (pwret != 0) {
Ethan Yonker74db1572015-10-28 12:44:49 -05001544 gui_err("fail_decrypt=Failed to decrypt data.");
Dees_Troy5bf43922012-09-07 16:07:55 -04001545 return -1;
1546 }
a39552696ff55ce2013-01-08 16:14:56 +00001547
Dees_Troy5bf43922012-09-07 16:07:55 -04001548 property_get("ro.crypto.fs_crypto_blkdev", crypto_blkdev, "error");
1549 if (strcmp(crypto_blkdev, "error") == 0) {
Dees_Troy2673cec2013-04-02 20:22:16 +00001550 LOGERR("Error retrieving decrypted data block device.\n");
Dees_Troy5bf43922012-09-07 16:07:55 -04001551 } else {
Ethan Yonkerbd7492d2016-12-07 13:55:01 -06001552 Post_Decrypt(crypto_blkdev);
Dees_Troy5bf43922012-09-07 16:07:55 -04001553 }
1554 return 0;
1555#else
Ethan Yonker74db1572015-10-28 12:44:49 -05001556 gui_err("no_crypto_support=No crypto support was compiled into this build.");
Dees_Troy5bf43922012-09-07 16:07:55 -04001557 return -1;
1558#endif
Dees_Troy51a0e822012-09-05 15:24:24 -04001559 return 1;
Dees_Troy51127312012-09-08 13:08:49 -04001560}
1561
Ethan Yonkerb5fab762016-01-28 14:03:33 -06001562int TWPartitionManager::Fix_Contexts(void) {
Ethan Yonkerb5fab762016-01-28 14:03:33 -06001563 std::vector<TWPartition*>::iterator iter;
1564 for (iter = Partitions.begin(); iter != Partitions.end(); iter++) {
1565 if ((*iter)->Has_Data_Media) {
1566 if ((*iter)->Mount(true)) {
1567 if (fixContexts::fixDataMediaContexts((*iter)->Mount_Point) != 0)
1568 return -1;
1569 }
1570 }
1571 }
Dees_Troy1a650e62012-10-19 20:54:32 -04001572 UnMount_Main_Partitions();
Ethan Yonker74db1572015-10-28 12:44:49 -05001573 gui_msg("done=Done.");
Ethan Yonkerb5fab762016-01-28 14:03:33 -06001574 return 0;
bigbiff bigbiffa0f8a592012-10-09 21:01:03 -04001575}
1576
Ethan Yonker66a19492015-12-10 10:19:45 -06001577TWPartition* TWPartitionManager::Find_Next_Storage(string Path, bool Exclude_Data_Media) {
Ethan Yonker47360be2014-04-01 10:34:34 -05001578 std::vector<TWPartition*>::iterator iter = Partitions.begin();
1579
1580 if (!Path.empty()) {
1581 string Search_Path = TWFunc::Get_Root_Path(Path);
1582 for (; iter != Partitions.end(); iter++) {
Matt Mower9a561dd2016-02-22 21:25:51 -06001583 if ((*iter)->Mount_Point == Search_Path) {
Ethan Yonker47360be2014-04-01 10:34:34 -05001584 iter++;
1585 break;
1586 }
1587 }
1588 }
1589
1590 for (; iter != Partitions.end(); iter++) {
Ethan Yonker66a19492015-12-10 10:19:45 -06001591 if (Exclude_Data_Media && (*iter)->Has_Data_Media) {
1592 // do nothing, do not return this type of partition
1593 } else if ((*iter)->Is_Storage && (*iter)->Is_Present) {
Ethan Yonker47360be2014-04-01 10:34:34 -05001594 return (*iter);
1595 }
1596 }
1597
1598 return NULL;
1599}
1600
Dees_Troyd21618c2012-10-14 18:48:49 -04001601int TWPartitionManager::Open_Lun_File(string Partition_Path, string Lun_File) {
Dees_Troyd21618c2012-10-14 18:48:49 -04001602 TWPartition* Part = Find_Partition_By_Path(Partition_Path);
1603
1604 if (Part == NULL) {
Ethan Yonker74db1572015-10-28 12:44:49 -05001605 LOGINFO("Unable to locate '%s' for USB storage mode.", Partition_Path.c_str());
1606 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 -04001607 return false;
1608 }
Ethan Yonker47360be2014-04-01 10:34:34 -05001609 LOGINFO("USB mount '%s', '%s' > '%s'\n", Partition_Path.c_str(), Part->Actual_Block_Device.c_str(), Lun_File.c_str());
1610 if (!Part->UnMount(true) || !Part->Is_Present)
Dees_Troyd21618c2012-10-14 18:48:49 -04001611 return false;
1612
Dees_Troy2673cec2013-04-02 20:22:16 +00001613 if (TWFunc::write_file(Lun_File, Part->Actual_Block_Device)) {
1614 LOGERR("Unable to write to ums lunfile '%s': (%s)\n", Lun_File.c_str(), strerror(errno));
Dees_Troyd21618c2012-10-14 18:48:49 -04001615 return false;
1616 }
Dees_Troyd21618c2012-10-14 18:48:49 -04001617 return true;
1618}
1619
Dees_Troy8170a922012-09-18 15:40:25 -04001620int TWPartitionManager::usb_storage_enable(void) {
Dees_Troy8170a922012-09-18 15:40:25 -04001621 char lun_file[255];
Dees_Troyd21618c2012-10-14 18:48:49 -04001622 bool has_multiple_lun = false;
Dees_Troy8170a922012-09-18 15:40:25 -04001623
Ethan Yonker47360be2014-04-01 10:34:34 -05001624 string Lun_File_str = CUSTOM_LUN_FILE;
1625 size_t found = Lun_File_str.find("%");
1626 if (found != string::npos) {
1627 sprintf(lun_file, CUSTOM_LUN_FILE, 1);
1628 if (TWFunc::Path_Exists(lun_file))
1629 has_multiple_lun = true;
1630 }
Ethan Yonker726a0202014-12-16 20:01:38 -06001631 mtp_was_enabled = TWFunc::Toggle_MTP(false); // Must disable MTP for USB Storage
Ethan Yonker47360be2014-04-01 10:34:34 -05001632 if (!has_multiple_lun) {
1633 LOGINFO("Device doesn't have multiple lun files, mount current storage\n");
1634 sprintf(lun_file, CUSTOM_LUN_FILE, 0);
1635 if (TWFunc::Get_Root_Path(DataManager::GetCurrentStoragePath()) == "/data") {
Ethan Yonker66a19492015-12-10 10:19:45 -06001636 TWPartition* Mount = Find_Next_Storage("", true);
Ethan Yonker47360be2014-04-01 10:34:34 -05001637 if (Mount) {
bigbiff bigbiffc7eee6f2014-09-02 18:59:01 -04001638 if (!Open_Lun_File(Mount->Mount_Point, lun_file)) {
1639 goto error_handle;
1640 }
Ethan Yonker47360be2014-04-01 10:34:34 -05001641 } else {
Ethan Yonker74db1572015-10-28 12:44:49 -05001642 gui_err("unable_locate_storage=Unable to locate storage device.");
bigbiff bigbiffc7eee6f2014-09-02 18:59:01 -04001643 goto error_handle;
Ethan Yonker47360be2014-04-01 10:34:34 -05001644 }
1645 } else if (!Open_Lun_File(DataManager::GetCurrentStoragePath(), lun_file)) {
bigbiff bigbiffc7eee6f2014-09-02 18:59:01 -04001646 goto error_handle;
Dees_Troy8170a922012-09-18 15:40:25 -04001647 }
Dees_Troy8170a922012-09-18 15:40:25 -04001648 } else {
Ethan Yonker47360be2014-04-01 10:34:34 -05001649 LOGINFO("Device has multiple lun files\n");
1650 TWPartition* Mount1;
1651 TWPartition* Mount2;
Dees_Troy8170a922012-09-18 15:40:25 -04001652 sprintf(lun_file, CUSTOM_LUN_FILE, 0);
Ethan Yonker66a19492015-12-10 10:19:45 -06001653 Mount1 = Find_Next_Storage("", true);
Ethan Yonker47360be2014-04-01 10:34:34 -05001654 if (Mount1) {
bigbiff bigbiffc7eee6f2014-09-02 18:59:01 -04001655 if (!Open_Lun_File(Mount1->Mount_Point, lun_file)) {
1656 goto error_handle;
1657 }
Matt Moweree717062014-04-26 01:46:46 -05001658 sprintf(lun_file, CUSTOM_LUN_FILE, 1);
Ethan Yonker66a19492015-12-10 10:19:45 -06001659 Mount2 = Find_Next_Storage(Mount1->Mount_Point, true);
Matt Mower1fdcdb72016-01-25 20:53:47 -06001660 if (Mount2 && Mount2->Mount_Point != Mount1->Mount_Point) {
Matt Moweree717062014-04-26 01:46:46 -05001661 Open_Lun_File(Mount2->Mount_Point, lun_file);
Ethan Yonker47360be2014-04-01 10:34:34 -05001662 }
1663 } else {
Ethan Yonker74db1572015-10-28 12:44:49 -05001664 gui_err("unable_locate_storage=Unable to locate storage device.");
bigbiff bigbiffc7eee6f2014-09-02 18:59:01 -04001665 goto error_handle;
Ethan Yonker47360be2014-04-01 10:34:34 -05001666 }
Dees_Troy8170a922012-09-18 15:40:25 -04001667 }
Matt Mowerb6ef4782014-11-06 02:24:36 -06001668 property_set("sys.storage.ums_enabled", "1");
HandyMenny37d42992014-10-26 22:15:59 +01001669 property_set("sys.usb.config", "mass_storage,adb");
Dees_Troy8170a922012-09-18 15:40:25 -04001670 return true;
bigbiff bigbiffc7eee6f2014-09-02 18:59:01 -04001671error_handle:
1672 if (mtp_was_enabled)
1673 if (!Enable_MTP())
1674 Disable_MTP();
1675 return false;
Dees_Troy8170a922012-09-18 15:40:25 -04001676}
1677
1678int TWPartitionManager::usb_storage_disable(void) {
Dees_Troy2673cec2013-04-02 20:22:16 +00001679 int index, ret;
1680 char lun_file[255], ch[2] = {0, 0};
1681 string str = ch;
Dees_Troy8170a922012-09-18 15:40:25 -04001682
1683 for (index=0; index<2; index++) {
1684 sprintf(lun_file, CUSTOM_LUN_FILE, index);
Dees_Troy2673cec2013-04-02 20:22:16 +00001685 ret = TWFunc::write_file(lun_file, str);
Dees_Troy2673cec2013-04-02 20:22:16 +00001686 if (ret < 0) {
1687 break;
Dees_Troy8170a922012-09-18 15:40:25 -04001688 }
Dees_Troy8170a922012-09-18 15:40:25 -04001689 }
Dees_Troye58d5262012-09-21 12:27:57 -04001690 Mount_All_Storage();
1691 Update_System_Details();
Dees_Troycfd73ef2012-10-12 16:52:00 -04001692 UnMount_Main_Partitions();
Matt Mowerd9cb9062013-12-14 20:34:45 -06001693 property_set("sys.storage.ums_enabled", "0");
HandyMenny37d42992014-10-26 22:15:59 +01001694 property_set("sys.usb.config", "adb");
bigbiff bigbiffc7eee6f2014-09-02 18:59:01 -04001695 if (mtp_was_enabled)
1696 if (!Enable_MTP())
1697 Disable_MTP();
Dees_Troy2673cec2013-04-02 20:22:16 +00001698 if (ret < 0 && index == 0) {
1699 LOGERR("Unable to write to ums lunfile '%s'.", lun_file);
1700 return false;
1701 } else {
1702 return true;
1703 }
Dees_Troy8170a922012-09-18 15:40:25 -04001704 return true;
Dees_Troy812660f2012-09-20 09:55:17 -04001705}
1706
1707void TWPartitionManager::Mount_All_Storage(void) {
1708 std::vector<TWPartition*>::iterator iter;
1709
1710 for (iter = Partitions.begin(); iter != Partitions.end(); iter++) {
1711 if ((*iter)->Is_Storage)
1712 (*iter)->Mount(false);
1713 }
Dees_Troy2c50e182012-09-26 20:05:28 -04001714}
Dees_Troy9350b8d2012-09-27 12:38:38 -04001715
Dees_Troyd0384ef2012-10-12 12:15:42 -04001716void TWPartitionManager::UnMount_Main_Partitions(void) {
1717 // Unmounts system and data if data is not data/media
1718 // Also unmounts boot if boot is mountable
Dees_Troy2673cec2013-04-02 20:22:16 +00001719 LOGINFO("Unmounting main partitions...\n");
Dees_Troyd0384ef2012-10-12 12:15:42 -04001720
1721 TWPartition* Boot_Partition = Find_Partition_By_Path("/boot");
1722
1723 UnMount_By_Path("/system", true);
Ethan Yonker6277c792014-09-15 14:54:30 -05001724 if (!datamedia)
1725 UnMount_By_Path("/data", true);
1726
Dees_Troyd0384ef2012-10-12 12:15:42 -04001727 if (Boot_Partition != NULL && Boot_Partition->Can_Be_Mounted)
1728 Boot_Partition->UnMount(true);
1729}
1730
Dees_Troy9350b8d2012-09-27 12:38:38 -04001731int TWPartitionManager::Partition_SDCard(void) {
Matt Mower23d8aae2017-01-06 14:30:33 -06001732 char temp[255];
Ethan Yonker483e9f42016-01-11 22:21:18 -06001733 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 -04001734 int ext, swap, total_size = 0, fat_size;
Dees_Troy9350b8d2012-09-27 12:38:38 -04001735
Ethan Yonker74db1572015-10-28 12:44:49 -05001736 gui_msg("start_partition_sd=Partitioning SD Card...");
Ethan Yonker483e9f42016-01-11 22:21:18 -06001737
1738 // Locate and validate device to partition
1739 TWPartition* SDCard = Find_Partition_By_Path(DataManager::GetCurrentStoragePath());
1740
Ethan Yonker66a19492015-12-10 10:19:45 -06001741 if (SDCard->Is_Adopted_Storage)
1742 SDCard->Revert_Adopted();
1743
Ethan Yonker1eff6cd2014-09-15 13:30:42 -05001744 if (SDCard == NULL || !SDCard->Removable || SDCard->Has_Data_Media) {
Ethan Yonker74db1572015-10-28 12:44:49 -05001745 gui_err("partition_sd_locate=Unable to locate device to partition.");
Dees_Troy9350b8d2012-09-27 12:38:38 -04001746 return false;
1747 }
Ethan Yonker483e9f42016-01-11 22:21:18 -06001748
1749 // Unmount everything
Dees_Troy9350b8d2012-09-27 12:38:38 -04001750 if (!SDCard->UnMount(true))
1751 return false;
1752 TWPartition* SDext = Find_Partition_By_Path("/sd-ext");
1753 if (SDext != NULL) {
1754 if (!SDext->UnMount(true))
1755 return false;
1756 }
Ethan Yonker483e9f42016-01-11 22:21:18 -06001757 char* swappath = getenv("SWAPPATH");
1758 if (swappath != NULL) {
1759 LOGINFO("Unmounting swap at '%s'\n", swappath);
1760 umount(swappath);
1761 }
Vojtech Bocek05534202013-09-11 08:11:56 +02001762
Ethan Yonker483e9f42016-01-11 22:21:18 -06001763 // Determine block device
1764 if (SDCard->Alternate_Block_Device.empty()) {
1765 SDCard->Find_Actual_Block_Device();
1766 Device = SDCard->Actual_Block_Device;
1767 // Just use the root block device
1768 Device.resize(strlen("/dev/block/mmcblkX"));
1769 } else {
1770 Device = SDCard->Alternate_Block_Device;
1771 }
Dees_Troy9350b8d2012-09-27 12:38:38 -04001772
1773 // Find the size of the block device:
Ethan Yonker483e9f42016-01-11 22:21:18 -06001774 total_size = (int)(TWFunc::IOCTL_Get_Block_Size(Device.c_str()) / (1048576));
Dees_Troy9350b8d2012-09-27 12:38:38 -04001775
1776 DataManager::GetValue("tw_sdext_size", ext);
1777 DataManager::GetValue("tw_swap_size", swap);
1778 DataManager::GetValue("tw_sdpart_file_system", ext_format);
1779 fat_size = total_size - ext - swap;
Ethan Yonker483e9f42016-01-11 22:21:18 -06001780 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);
1781
1782 // Determine partition sizes
1783 if (swap == 0 && ext == 0) {
1784 fat_str = "-0";
1785 } else {
1786 memset(temp, 0, sizeof(temp));
1787 sprintf(temp, "%i", fat_size);
1788 fat_str = temp;
1789 fat_str += "MB";
1790 }
1791 if (swap == 0) {
1792 ext_str = "-0";
1793 } else {
1794 memset(temp, 0, sizeof(temp));
1795 sprintf(temp, "%i", ext);
1796 ext_str = "+";
1797 ext_str += temp;
1798 ext_str += "MB";
1799 }
1800
Dees_Troy9350b8d2012-09-27 12:38:38 -04001801 if (ext + swap > total_size) {
Ethan Yonker74db1572015-10-28 12:44:49 -05001802 gui_err("ext_swap_size=EXT + Swap size is larger than sdcard size.");
Dees_Troy9350b8d2012-09-27 12:38:38 -04001803 return false;
1804 }
Ethan Yonker483e9f42016-01-11 22:21:18 -06001805
Ethan Yonker74db1572015-10-28 12:44:49 -05001806 gui_msg("remove_part_table=Removing partition table...");
Ethan Yonker483e9f42016-01-11 22:21:18 -06001807 Command = "sgdisk --zap-all " + 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_err("unable_rm_part=Unable to remove partition table.");
Dees_Troy9350b8d2012-09-27 12:38:38 -04001811 Update_System_Details();
1812 return false;
1813 }
Ethan Yonker74db1572015-10-28 12:44:49 -05001814 gui_msg(Msg("create_part=Creating {1} partition...")("FAT32"));
Captain Throwback9643a802016-05-27 11:44:51 -04001815 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 +00001816 LOGINFO("Command is: '%s'\n", Command.c_str());
Vojtech Bocek05534202013-09-11 08:11:56 +02001817 if (TWFunc::Exec_Cmd(Command) != 0) {
Ethan Yonker74db1572015-10-28 12:44:49 -05001818 gui_msg(Msg(msg::kError, "unable_to_create_part=Unable to create {1} partition.")("FAT32"));
Dees_Troy9350b8d2012-09-27 12:38:38 -04001819 return false;
1820 }
1821 if (ext > 0) {
Ethan Yonker74db1572015-10-28 12:44:49 -05001822 gui_msg(Msg("create_part=Creating {1} partition...")("EXT"));
Ethan Yonker483e9f42016-01-11 22:21:18 -06001823 Command = "sgdisk --new=0:0:" + ext_str + " --change-name=0:\"Linux filesystem\" " + Device;
Dees_Troy2673cec2013-04-02 20:22:16 +00001824 LOGINFO("Command is: '%s'\n", Command.c_str());
Vojtech Bocek05534202013-09-11 08:11:56 +02001825 if (TWFunc::Exec_Cmd(Command) != 0) {
Ethan Yonker74db1572015-10-28 12:44:49 -05001826 gui_msg(Msg(msg::kError, "unable_to_create_part=Unable to create {1} partition.")("EXT"));
Dees_Troy9350b8d2012-09-27 12:38:38 -04001827 Update_System_Details();
1828 return false;
1829 }
1830 }
1831 if (swap > 0) {
Ethan Yonker74db1572015-10-28 12:44:49 -05001832 gui_msg(Msg("create_part=Creating {1} partition...")("swap"));
Ethan Yonker483e9f42016-01-11 22:21:18 -06001833 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 +00001834 LOGINFO("Command is: '%s'\n", Command.c_str());
Vojtech Bocek05534202013-09-11 08:11:56 +02001835 if (TWFunc::Exec_Cmd(Command) != 0) {
Ethan Yonker74db1572015-10-28 12:44:49 -05001836 gui_msg(Msg(msg::kError, "unable_to_create_part=Unable to create {1} partition.")("swap"));
Dees_Troy9350b8d2012-09-27 12:38:38 -04001837 Update_System_Details();
1838 return false;
1839 }
1840 }
Ethan Yonker483e9f42016-01-11 22:21:18 -06001841
1842 // Convert GPT to MBR
1843 Command = "sgdisk --gpttombr " + Device;
1844 if (TWFunc::Exec_Cmd(Command) != 0)
1845 LOGINFO("Failed to covert partition GPT to MBR\n");
1846
1847 // Tell the kernel to rescan the partition table
1848 int fd = open(Device.c_str(), O_RDONLY);
1849 ioctl(fd, BLKRRPART, 0);
1850 close(fd);
1851
1852 string format_device = Device;
1853 if (Device.substr(0, 17) == "/dev/block/mmcblk")
1854 format_device += "p";
1855
1856 // Format new partitions to proper file system
1857 if (fat_size > 0) {
1858 Command = "mkfs.fat " + format_device + "1";
1859 TWFunc::Exec_Cmd(Command);
1860 }
Dees_Troy9350b8d2012-09-27 12:38:38 -04001861 if (ext > 0) {
1862 if (SDext == NULL) {
Ethan Yonker483e9f42016-01-11 22:21:18 -06001863 Command = "mke2fs -t " + ext_format + " -m 0 " + format_device + "2";
1864 gui_msg(Msg("format_sdext_as=Formatting sd-ext as {1}...")(ext_format));
1865 LOGINFO("Formatting sd-ext after partitioning, command: '%s'\n", Command.c_str());
1866 TWFunc::Exec_Cmd(Command);
1867 } else {
1868 SDext->Wipe(ext_format);
Dees_Troy9350b8d2012-09-27 12:38:38 -04001869 }
Ethan Yonker483e9f42016-01-11 22:21:18 -06001870 }
1871 if (swap > 0) {
1872 Command = "mkswap " + format_device;
1873 if (ext > 0)
1874 Command += "3";
1875 else
1876 Command += "2";
Vojtech Bocek05534202013-09-11 08:11:56 +02001877 TWFunc::Exec_Cmd(Command);
Dees_Troy9350b8d2012-09-27 12:38:38 -04001878 }
1879
Ethan Yonker483e9f42016-01-11 22:21:18 -06001880 // recreate TWRP folder and rewrite settings - these will be gone after sdcard is partitioned
1881 if (SDCard->Mount(true)) {
1882 string TWRP_Folder = SDCard->Mount_Point + "/TWRP";
1883 mkdir(TWRP_Folder.c_str(), 0777);
1884 DataManager::Flush();
1885 }
1886
Dees_Troy9350b8d2012-09-27 12:38:38 -04001887 Update_System_Details();
Ethan Yonker74db1572015-10-28 12:44:49 -05001888 gui_msg("part_complete=Partitioning complete.");
Dees_Troy9350b8d2012-09-27 12:38:38 -04001889 return true;
bigbiff bigbiffa0f8a592012-10-09 21:01:03 -04001890}
Dees_Troya13d74f2013-03-24 08:54:55 -05001891
1892void TWPartitionManager::Get_Partition_List(string ListType, std::vector<PartitionList> *Partition_List) {
1893 std::vector<TWPartition*>::iterator iter;
1894 if (ListType == "mount") {
1895 for (iter = Partitions.begin(); iter != Partitions.end(); iter++) {
1896 if ((*iter)->Can_Be_Mounted && !(*iter)->Is_SubPartition) {
1897 struct PartitionList part;
1898 part.Display_Name = (*iter)->Display_Name;
1899 part.Mount_Point = (*iter)->Mount_Point;
1900 part.selected = (*iter)->Is_Mounted();
1901 Partition_List->push_back(part);
1902 }
1903 }
1904 } else if (ListType == "storage") {
1905 char free_space[255];
1906 string Current_Storage = DataManager::GetCurrentStoragePath();
1907 for (iter = Partitions.begin(); iter != Partitions.end(); iter++) {
1908 if ((*iter)->Is_Storage) {
1909 struct PartitionList part;
1910 sprintf(free_space, "%llu", (*iter)->Free / 1024 / 1024);
1911 part.Display_Name = (*iter)->Storage_Name + " (";
1912 part.Display_Name += free_space;
1913 part.Display_Name += "MB)";
1914 part.Mount_Point = (*iter)->Storage_Path;
1915 if ((*iter)->Storage_Path == Current_Storage)
1916 part.selected = 1;
1917 else
1918 part.selected = 0;
1919 Partition_List->push_back(part);
1920 }
1921 }
1922 } else if (ListType == "backup") {
1923 char backup_size[255];
Dees_Troy9e0b71c2013-04-08 13:35:37 +00001924 unsigned long long Backup_Size;
Dees_Troya13d74f2013-03-24 08:54:55 -05001925 for (iter = Partitions.begin(); iter != Partitions.end(); iter++) {
Dees_Troy9e0b71c2013-04-08 13:35:37 +00001926 if ((*iter)->Can_Be_Backed_Up && !(*iter)->Is_SubPartition && (*iter)->Is_Present) {
Dees_Troya13d74f2013-03-24 08:54:55 -05001927 struct PartitionList part;
Dees_Troy9e0b71c2013-04-08 13:35:37 +00001928 Backup_Size = (*iter)->Backup_Size;
1929 if ((*iter)->Has_SubPartition) {
1930 std::vector<TWPartition*>::iterator subpart;
1931
1932 for (subpart = Partitions.begin(); subpart != Partitions.end(); subpart++) {
1933 if ((*subpart)->Is_SubPartition && (*subpart)->Can_Be_Backed_Up && (*subpart)->Is_Present && (*subpart)->SubPartition_Of == (*iter)->Mount_Point)
1934 Backup_Size += (*subpart)->Backup_Size;
1935 }
1936 }
1937 sprintf(backup_size, "%llu", Backup_Size / 1024 / 1024);
Dees_Troya13d74f2013-03-24 08:54:55 -05001938 part.Display_Name = (*iter)->Backup_Display_Name + " (";
1939 part.Display_Name += backup_size;
1940 part.Display_Name += "MB)";
1941 part.Mount_Point = (*iter)->Backup_Path;
1942 part.selected = 0;
1943 Partition_List->push_back(part);
1944 }
1945 }
1946 } else if (ListType == "restore") {
1947 string Restore_List, restore_path;
1948 TWPartition* restore_part = NULL;
1949
1950 DataManager::GetValue("tw_restore_list", Restore_List);
1951 if (!Restore_List.empty()) {
1952 size_t start_pos = 0, end_pos = Restore_List.find(";", start_pos);
1953 while (end_pos != string::npos && start_pos < Restore_List.size()) {
1954 restore_path = Restore_List.substr(start_pos, end_pos - start_pos);
Dees_Troy59df9262013-06-19 14:53:57 -05001955 if ((restore_part = Find_Partition_By_Path(restore_path)) != NULL) {
Dees Troy4159aed2014-02-28 17:24:43 +00001956 if ((restore_part->Backup_Name == "recovery" && !restore_part->Can_Be_Backed_Up) || restore_part->Is_SubPartition) {
Dees_Troya13d74f2013-03-24 08:54:55 -05001957 // Don't allow restore of recovery (causes problems on some devices)
Dees_Troy59df9262013-06-19 14:53:57 -05001958 // Don't add subpartitions to the list of items
Dees_Troya13d74f2013-03-24 08:54:55 -05001959 } else {
1960 struct PartitionList part;
1961 part.Display_Name = restore_part->Backup_Display_Name;
1962 part.Mount_Point = restore_part->Backup_Path;
1963 part.selected = 1;
1964 Partition_List->push_back(part);
1965 }
1966 } else {
Ethan Yonker74db1572015-10-28 12:44:49 -05001967 gui_msg(Msg(msg::kError, "restore_unable_locate=Unable to locate '{1}' partition for restoring.")(restore_path));
Dees_Troya13d74f2013-03-24 08:54:55 -05001968 }
1969 start_pos = end_pos + 1;
1970 end_pos = Restore_List.find(";", start_pos);
1971 }
1972 }
1973 } else if (ListType == "wipe") {
1974 struct PartitionList dalvik;
Ethan Yonker74db1572015-10-28 12:44:49 -05001975 dalvik.Display_Name = gui_parse_text("{@dalvik}");
Dees_Troya13d74f2013-03-24 08:54:55 -05001976 dalvik.Mount_Point = "DALVIK";
1977 dalvik.selected = 0;
1978 Partition_List->push_back(dalvik);
1979 for (iter = Partitions.begin(); iter != Partitions.end(); iter++) {
1980 if ((*iter)->Wipe_Available_in_GUI && !(*iter)->Is_SubPartition) {
1981 struct PartitionList part;
1982 part.Display_Name = (*iter)->Display_Name;
1983 part.Mount_Point = (*iter)->Mount_Point;
1984 part.selected = 0;
1985 Partition_List->push_back(part);
1986 }
1987 if ((*iter)->Has_Android_Secure) {
1988 struct PartitionList part;
1989 part.Display_Name = (*iter)->Backup_Display_Name;
1990 part.Mount_Point = (*iter)->Backup_Path;
1991 part.selected = 0;
1992 Partition_List->push_back(part);
1993 }
Dees_Troy74fb2e92013-04-15 14:35:47 +00001994 if ((*iter)->Has_Data_Media) {
1995 struct PartitionList datamedia;
1996 datamedia.Display_Name = (*iter)->Storage_Name;
1997 datamedia.Mount_Point = "INTERNAL";
1998 datamedia.selected = 0;
1999 Partition_List->push_back(datamedia);
2000 }
Dees_Troya13d74f2013-03-24 08:54:55 -05002001 }
Ethan Yonker96af84a2015-01-05 14:58:36 -06002002 } else if (ListType == "flashimg") {
2003 for (iter = Partitions.begin(); iter != Partitions.end(); iter++) {
2004 if ((*iter)->Can_Flash_Img && (*iter)->Is_Present) {
2005 struct PartitionList part;
2006 part.Display_Name = (*iter)->Backup_Display_Name;
2007 part.Mount_Point = (*iter)->Backup_Path;
2008 part.selected = 0;
2009 Partition_List->push_back(part);
2010 }
2011 }
Dees_Troya13d74f2013-03-24 08:54:55 -05002012 } else {
Dees_Troy2673cec2013-04-02 20:22:16 +00002013 LOGERR("Unknown list type '%s' requested for TWPartitionManager::Get_Partition_List\n", ListType.c_str());
Dees_Troya13d74f2013-03-24 08:54:55 -05002014 }
2015}
2016
2017int TWPartitionManager::Fstab_Processed(void) {
2018 return Partitions.size();
2019}
Dees_Troyd93bda52013-07-03 19:55:19 +00002020
2021void TWPartitionManager::Output_Storage_Fstab(void) {
2022 std::vector<TWPartition*>::iterator iter;
2023 char storage_partition[255];
2024 string Temp;
2025 FILE *fp = fopen("/cache/recovery/storage.fstab", "w");
2026
2027 if (fp == NULL) {
Ethan Yonker74db1572015-10-28 12:44:49 -05002028 gui_msg(Msg(msg::kError, "unable_to_open=Unable to open '{1}'.")("/cache/recovery/storage.fstab"));
Dees_Troyd93bda52013-07-03 19:55:19 +00002029 return;
2030 }
2031
2032 // Iterate through all partitions
2033 for (iter = Partitions.begin(); iter != Partitions.end(); iter++) {
2034 if ((*iter)->Is_Storage) {
2035 Temp = (*iter)->Storage_Path + ";" + (*iter)->Storage_Name + ";\n";
2036 strcpy(storage_partition, Temp.c_str());
2037 fwrite(storage_partition, sizeof(storage_partition[0]), strlen(storage_partition) / sizeof(storage_partition[0]), fp);
2038 }
2039 }
2040 fclose(fp);
Vojtech Bocekfafb0c52013-07-25 22:53:02 +02002041}
Vojtech Bocek93cb1ef2014-05-12 15:41:52 +02002042
2043TWPartition *TWPartitionManager::Get_Default_Storage_Partition()
2044{
2045 TWPartition *res = NULL;
2046 for (std::vector<TWPartition*>::iterator iter = Partitions.begin(); iter != Partitions.end(); ++iter) {
Matt Mowera8a89d12016-12-30 18:10:37 -06002047 if (!(*iter)->Is_Storage)
Vojtech Bocek93cb1ef2014-05-12 15:41:52 +02002048 continue;
2049
Matt Mowera8a89d12016-12-30 18:10:37 -06002050 if ((*iter)->Is_Settings_Storage)
Vojtech Bocek93cb1ef2014-05-12 15:41:52 +02002051 return *iter;
2052
Matt Mowera8a89d12016-12-30 18:10:37 -06002053 if (!res)
Vojtech Bocek93cb1ef2014-05-12 15:41:52 +02002054 res = *iter;
2055 }
2056 return res;
2057}
bigbiff bigbiffc7eee6f2014-09-02 18:59:01 -04002058
2059bool TWPartitionManager::Enable_MTP(void) {
2060#ifdef TW_HAS_MTP
Ethan Yonker8dfa7772014-09-04 21:48:41 -05002061 if (mtppid) {
Ethan Yonker74db1572015-10-28 12:44:49 -05002062 gui_err("mtp_already_enabled=MTP already enabled");
bigbiff bigbiffc7eee6f2014-09-02 18:59:01 -04002063 return true;
2064 }
Ethan Yonker726a0202014-12-16 20:01:38 -06002065
2066 int mtppipe[2];
2067
2068 if (pipe(mtppipe) < 0) {
2069 LOGERR("Error creating MTP pipe\n");
2070 return false;
2071 }
2072
Ethan Yonkerdf7abac2014-12-29 10:48:17 -06002073 char old_value[PROPERTY_VALUE_MAX];
Matt Mowere07f0102017-02-23 17:40:00 -06002074 property_get("sys.usb.config", old_value, "");
2075 if (strcmp(old_value, "mtp,adb") != 0) {
Ethan Yonkerdf7abac2014-12-29 10:48:17 -06002076 char vendor[PROPERTY_VALUE_MAX];
2077 char product[PROPERTY_VALUE_MAX];
2078 property_set("sys.usb.config", "none");
2079 property_get("usb.vendor", vendor, "18D1");
2080 property_get("usb.product.mtpadb", product, "4EE2");
2081 string vendorstr = vendor;
2082 string productstr = product;
2083 TWFunc::write_file("/sys/class/android_usb/android0/idVendor", vendorstr);
2084 TWFunc::write_file("/sys/class/android_usb/android0/idProduct", productstr);
2085 property_set("sys.usb.config", "mtp,adb");
2086 }
Matt Mower653a1702017-02-16 10:38:52 -06002087 /* To enable MTP debug, use the twrp command line feature:
Ethan Yonker6d154c42014-09-03 14:19:43 -05002088 * twrp set tw_mtp_debug 1
2089 */
2090 twrpMtp *mtp = new twrpMtp(DataManager::GetIntValue("tw_mtp_debug"));
Ethan Yonker1b039202015-01-30 10:08:48 -06002091 mtppid = mtp->forkserver(mtppipe);
2092 if (mtppid) {
2093 close(mtppipe[0]); // Host closes read side
2094 mtp_write_fd = mtppipe[1];
2095 DataManager::SetValue("tw_mtp_enabled", 1);
2096 Add_All_MTP_Storage();
2097 return true;
Ethan Yonker726a0202014-12-16 20:01:38 -06002098 } else {
2099 close(mtppipe[0]);
2100 close(mtppipe[1]);
Ethan Yonker74db1572015-10-28 12:44:49 -05002101 gui_err("mtp_fail=Failed to enable MTP");
Ethan Yonker1b039202015-01-30 10:08:48 -06002102 return false;
bigbiff bigbiffc7eee6f2014-09-02 18:59:01 -04002103 }
bigbiff bigbiffc7eee6f2014-09-02 18:59:01 -04002104#else
Ethan Yonker74db1572015-10-28 12:44:49 -05002105 gui_err("no_mtp=MTP support not included");
bigbiff bigbiffc7eee6f2014-09-02 18:59:01 -04002106#endif
2107 DataManager::SetValue("tw_mtp_enabled", 0);
2108 return false;
2109}
2110
Ethan Yonker1b039202015-01-30 10:08:48 -06002111void TWPartitionManager::Add_All_MTP_Storage(void) {
2112#ifdef TW_HAS_MTP
2113 std::vector<TWPartition*>::iterator iter;
2114
2115 if (!mtppid)
2116 return; // MTP is not enabled
2117
2118 for (iter = Partitions.begin(); iter != Partitions.end(); iter++) {
2119 if ((*iter)->Is_Storage && (*iter)->Is_Present && (*iter)->Mount(false))
2120 Add_Remove_MTP_Storage((*iter), MTP_MESSAGE_ADD_STORAGE);
2121 }
2122#else
2123 return;
2124#endif
2125}
2126
bigbiff bigbiffc7eee6f2014-09-02 18:59:01 -04002127bool TWPartitionManager::Disable_MTP(void) {
Ethan Yonkerdf7abac2014-12-29 10:48:17 -06002128 char old_value[PROPERTY_VALUE_MAX];
Matt Mowere07f0102017-02-23 17:40:00 -06002129 property_get("sys.usb.config", old_value, "");
Ethan Yonkerdf7abac2014-12-29 10:48:17 -06002130 if (strcmp(old_value, "adb") != 0) {
2131 char vendor[PROPERTY_VALUE_MAX];
2132 char product[PROPERTY_VALUE_MAX];
2133 property_set("sys.usb.config", "none");
2134 property_get("usb.vendor", vendor, "18D1");
Matt Mowere07f0102017-02-23 17:40:00 -06002135 property_get("usb.product.adb", product, "D001");
Ethan Yonkerdf7abac2014-12-29 10:48:17 -06002136 string vendorstr = vendor;
2137 string productstr = product;
2138 TWFunc::write_file("/sys/class/android_usb/android0/idVendor", vendorstr);
2139 TWFunc::write_file("/sys/class/android_usb/android0/idProduct", productstr);
2140 usleep(2000);
2141 }
bigbiff bigbiffc7eee6f2014-09-02 18:59:01 -04002142#ifdef TW_HAS_MTP
Ethan Yonker8dfa7772014-09-04 21:48:41 -05002143 if (mtppid) {
Ethan Yonker8613dc02014-09-11 09:28:20 -05002144 LOGINFO("Disabling MTP\n");
2145 int status;
2146 kill(mtppid, SIGKILL);
Ethan Yonker8dfa7772014-09-04 21:48:41 -05002147 mtppid = 0;
Ethan Yonker8613dc02014-09-11 09:28:20 -05002148 // We don't care about the exit value, but this prevents a zombie process
2149 waitpid(mtppid, &status, 0);
Ethan Yonker726a0202014-12-16 20:01:38 -06002150 close(mtp_write_fd);
2151 mtp_write_fd = -1;
bigbiff bigbiffc7eee6f2014-09-02 18:59:01 -04002152 }
Ethan Yonkerdf7abac2014-12-29 10:48:17 -06002153#endif
bigbiff bigbiffc7eee6f2014-09-02 18:59:01 -04002154 property_set("sys.usb.config", "adb");
Ethan Yonkerdf7abac2014-12-29 10:48:17 -06002155#ifdef TW_HAS_MTP
bigbiff bigbiffc7eee6f2014-09-02 18:59:01 -04002156 DataManager::SetValue("tw_mtp_enabled", 0);
2157 return true;
bigbiff bigbiffc7eee6f2014-09-02 18:59:01 -04002158#endif
Ethan Yonkerdf7abac2014-12-29 10:48:17 -06002159 return false;
bigbiff bigbiffc7eee6f2014-09-02 18:59:01 -04002160}
Ethan Yonker726a0202014-12-16 20:01:38 -06002161
2162TWPartition* TWPartitionManager::Find_Partition_By_MTP_Storage_ID(unsigned int Storage_ID) {
2163 std::vector<TWPartition*>::iterator iter;
2164
2165 for (iter = Partitions.begin(); iter != Partitions.end(); iter++) {
2166 if ((*iter)->MTP_Storage_ID == Storage_ID)
2167 return (*iter);
2168 }
2169 return NULL;
2170}
2171
2172bool TWPartitionManager::Add_Remove_MTP_Storage(TWPartition* Part, int message_type) {
2173#ifdef TW_HAS_MTP
2174 struct mtpmsg mtp_message;
2175
2176 if (!mtppid)
2177 return false; // MTP is disabled
2178
2179 if (mtp_write_fd < 0) {
Ethan Yonkerd9ff3c52015-01-21 21:51:20 -06002180 LOGINFO("MTP: mtp_write_fd is not set\n");
Ethan Yonker726a0202014-12-16 20:01:38 -06002181 return false;
2182 }
2183
2184 if (Part) {
Ethan Yonker4bfabab2014-12-29 09:15:37 -06002185 if (Part->MTP_Storage_ID == 0)
2186 return false;
Ethan Yonker726a0202014-12-16 20:01:38 -06002187 if (message_type == MTP_MESSAGE_REMOVE_STORAGE) {
2188 mtp_message.message_type = MTP_MESSAGE_REMOVE_STORAGE; // Remove
2189 LOGINFO("sending message to remove %i\n", Part->MTP_Storage_ID);
2190 mtp_message.storage_id = Part->MTP_Storage_ID;
2191 if (write(mtp_write_fd, &mtp_message, sizeof(mtp_message)) <= 0) {
Ethan Yonkerd9ff3c52015-01-21 21:51:20 -06002192 LOGINFO("error sending message to remove storage %i\n", Part->MTP_Storage_ID);
Ethan Yonker726a0202014-12-16 20:01:38 -06002193 return false;
2194 } else {
2195 LOGINFO("Message sent, remove storage ID: %i\n", Part->MTP_Storage_ID);
2196 return true;
2197 }
2198 } else if (message_type == MTP_MESSAGE_ADD_STORAGE && Part->Is_Mounted()) {
2199 mtp_message.message_type = MTP_MESSAGE_ADD_STORAGE; // Add
2200 mtp_message.storage_id = Part->MTP_Storage_ID;
2201 mtp_message.path = Part->Storage_Path.c_str();
2202 mtp_message.display = Part->Storage_Name.c_str();
2203 mtp_message.maxFileSize = Part->Get_Max_FileSize();
Ethan Yonker1b039202015-01-30 10:08:48 -06002204 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 -06002205 if (write(mtp_write_fd, &mtp_message, sizeof(mtp_message)) <= 0) {
Ethan Yonkerd9ff3c52015-01-21 21:51:20 -06002206 LOGINFO("error sending message to add storage %i\n", Part->MTP_Storage_ID);
Ethan Yonker726a0202014-12-16 20:01:38 -06002207 return false;
2208 } else {
2209 LOGINFO("Message sent, add storage ID: %i\n", Part->MTP_Storage_ID);
2210 return true;
2211 }
2212 } else {
2213 LOGERR("Unknown MTP message type: %i\n", message_type);
2214 }
2215 } else {
2216 // This hopefully never happens as the error handling should
2217 // occur in the calling function.
Ethan Yonkerd9ff3c52015-01-21 21:51:20 -06002218 LOGINFO("TWPartitionManager::Add_Remove_MTP_Storage NULL partition given\n");
Ethan Yonker726a0202014-12-16 20:01:38 -06002219 }
2220 return true;
2221#else
Ethan Yonker74db1572015-10-28 12:44:49 -05002222 gui_err("no_mtp=MTP support not included");
Ethan Yonker726a0202014-12-16 20:01:38 -06002223 DataManager::SetValue("tw_mtp_enabled", 0);
2224 return false;
2225#endif
2226}
2227
2228bool TWPartitionManager::Add_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_ADD_STORAGE);
2233 } else {
Ethan Yonkerd9ff3c52015-01-21 21:51:20 -06002234 LOGINFO("TWFunc::Add_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::Add_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_ADD_STORAGE);
2245 } else {
Ethan Yonkerd9ff3c52015-01-21 21:51:20 -06002246 LOGINFO("TWFunc::Add_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}
2251
2252bool TWPartitionManager::Remove_MTP_Storage(string Mount_Point) {
2253#ifdef TW_HAS_MTP
2254 TWPartition* Part = PartitionManager.Find_Partition_By_Path(Mount_Point);
2255 if (Part) {
2256 return PartitionManager.Add_Remove_MTP_Storage(Part, MTP_MESSAGE_REMOVE_STORAGE);
2257 } else {
Ethan Yonkerd9ff3c52015-01-21 21:51:20 -06002258 LOGINFO("TWFunc::Remove_MTP_Storage unable to locate partition for '%s'\n", Mount_Point.c_str());
Ethan Yonker726a0202014-12-16 20:01:38 -06002259 }
2260#endif
2261 return false;
2262}
2263
2264bool TWPartitionManager::Remove_MTP_Storage(unsigned int Storage_ID) {
2265#ifdef TW_HAS_MTP
2266 TWPartition* Part = PartitionManager.Find_Partition_By_MTP_Storage_ID(Storage_ID);
2267 if (Part) {
2268 return PartitionManager.Add_Remove_MTP_Storage(Part, MTP_MESSAGE_REMOVE_STORAGE);
2269 } else {
Ethan Yonkerd9ff3c52015-01-21 21:51:20 -06002270 LOGINFO("TWFunc::Remove_MTP_Storage unable to locate partition for %i\n", Storage_ID);
Ethan Yonker726a0202014-12-16 20:01:38 -06002271 }
2272#endif
2273 return false;
2274}
Ethan Yonker96af84a2015-01-05 14:58:36 -06002275
Ethan Yonkere080c1f2016-09-19 13:50:25 -05002276bool TWPartitionManager::Flash_Image(string& path, string& filename) {
Matt Mower23d8aae2017-01-06 14:30:33 -06002277 int partition_count = 0;
Ethan Yonker96af84a2015-01-05 14:58:36 -06002278 TWPartition* flash_part = NULL;
bigbiffce8f83c2015-12-12 18:30:21 -05002279 string Flash_List, flash_path, full_filename;
Ethan Yonker96af84a2015-01-05 14:58:36 -06002280 size_t start_pos = 0, end_pos = 0;
2281
Ethan Yonkere080c1f2016-09-19 13:50:25 -05002282 full_filename = path + "/" + filename;
Ethan Yonker96af84a2015-01-05 14:58:36 -06002283
bigbiffce8f83c2015-12-12 18:30:21 -05002284 gui_msg("image_flash_start=[IMAGE FLASH STARTED]");
2285 gui_msg(Msg("img_to_flash=Image to flash: '{1}'")(full_filename));
2286
2287 if (!TWFunc::Path_Exists(full_filename)) {
2288 if (!Mount_By_Path(full_filename, true)) {
Ethan Yonkerb78fbdf2016-01-15 16:46:35 -06002289 return false;
2290 }
bigbiffce8f83c2015-12-12 18:30:21 -05002291 if (!TWFunc::Path_Exists(full_filename)) {
2292 gui_msg(Msg(msg::kError, "unable_to_locate=Unable to locate {1}.")(full_filename));
Ethan Yonkerb78fbdf2016-01-15 16:46:35 -06002293 return false;
2294 }
2295 }
Ethan Yonker96af84a2015-01-05 14:58:36 -06002296
Ethan Yonkere080c1f2016-09-19 13:50:25 -05002297 PartitionSettings part_settings;
2298 part_settings.Backup_Folder = path;
2299 unsigned long long total_bytes = TWFunc::Get_File_Size(full_filename);
2300 ProgressTracking progress(total_bytes);
2301 part_settings.progress = &progress;
2302 part_settings.adbbackup = false;
2303 part_settings.PM_Method = PM_RESTORE;
2304
Ethan Yonker74db1572015-10-28 12:44:49 -05002305 gui_msg("calc_restore=Calculating restore details...");
Ethan Yonker96af84a2015-01-05 14:58:36 -06002306 DataManager::GetValue("tw_flash_partition", Flash_List);
2307 if (!Flash_List.empty()) {
2308 end_pos = Flash_List.find(";", start_pos);
2309 while (end_pos != string::npos && start_pos < Flash_List.size()) {
2310 flash_path = Flash_List.substr(start_pos, end_pos - start_pos);
2311 flash_part = Find_Partition_By_Path(flash_path);
2312 if (flash_part != NULL) {
2313 partition_count++;
2314 if (partition_count > 1) {
Ethan Yonker74db1572015-10-28 12:44:49 -05002315 gui_err("too_many_flash=Too many partitions selected for flashing.");
Ethan Yonker96af84a2015-01-05 14:58:36 -06002316 return false;
2317 }
2318 } else {
Ethan Yonker74db1572015-10-28 12:44:49 -05002319 gui_msg(Msg(msg::kError, "flash_unable_locate=Unable to locate '{1}' partition for flashing.")(flash_path));
Ethan Yonker96af84a2015-01-05 14:58:36 -06002320 return false;
2321 }
2322 start_pos = end_pos + 1;
2323 end_pos = Flash_List.find(";", start_pos);
2324 }
2325 }
2326
2327 if (partition_count == 0) {
Ethan Yonker74db1572015-10-28 12:44:49 -05002328 gui_err("no_part_flash=No partitions selected for flashing.");
Ethan Yonker96af84a2015-01-05 14:58:36 -06002329 return false;
2330 }
2331
2332 DataManager::SetProgress(0.0);
2333 if (flash_part) {
Ethan Yonkere080c1f2016-09-19 13:50:25 -05002334 flash_part->Backup_FileName = filename;
2335 if (!flash_part->Flash_Image(&part_settings))
Ethan Yonker96af84a2015-01-05 14:58:36 -06002336 return false;
2337 } else {
Ethan Yonker74db1572015-10-28 12:44:49 -05002338 gui_err("invalid_flash=Invalid flash partition specified.");
Ethan Yonker96af84a2015-01-05 14:58:36 -06002339 return false;
2340 }
Ethan Yonker74db1572015-10-28 12:44:49 -05002341 gui_highlight("flash_done=IMAGE FLASH COMPLETED]");
Ethan Yonker96af84a2015-01-05 14:58:36 -06002342 return true;
2343}
Ethan Yonker74db1572015-10-28 12:44:49 -05002344
2345void TWPartitionManager::Translate_Partition(const char* path, const char* resource_name, const char* default_value) {
2346 TWPartition* part = PartitionManager.Find_Partition_By_Path(path);
2347 if (part) {
Ethan Yonker66a19492015-12-10 10:19:45 -06002348 if (part->Is_Adopted_Storage) {
2349 part->Display_Name = part->Display_Name + " - " + gui_lookup("data", "Data");
2350 part->Backup_Display_Name = part->Display_Name;
2351 part->Storage_Name = part->Storage_Name + " - " + gui_lookup("adopted_storage", "Adopted Storage");
2352 } else {
2353 part->Display_Name = gui_lookup(resource_name, default_value);
2354 part->Backup_Display_Name = part->Display_Name;
2355 }
Ethan Yonker74db1572015-10-28 12:44:49 -05002356 }
2357}
2358
2359void TWPartitionManager::Translate_Partition(const char* path, const char* resource_name, const char* default_value, const char* storage_resource_name, const char* storage_default_value) {
2360 TWPartition* part = PartitionManager.Find_Partition_By_Path(path);
2361 if (part) {
Ethan Yonker66a19492015-12-10 10:19:45 -06002362 if (part->Is_Adopted_Storage) {
Ethan Yonker01f4e032017-02-03 15:30:52 -06002363 part->Backup_Display_Name = part->Display_Name + " - " + gui_lookup("data_backup", "Data (excl. storage)");
Ethan Yonker66a19492015-12-10 10:19:45 -06002364 part->Display_Name = part->Display_Name + " - " + gui_lookup("data", "Data");
Ethan Yonker66a19492015-12-10 10:19:45 -06002365 part->Storage_Name = part->Storage_Name + " - " + gui_lookup("adopted_storage", "Adopted Storage");
2366 } else {
2367 part->Display_Name = gui_lookup(resource_name, default_value);
2368 part->Backup_Display_Name = part->Display_Name;
2369 if (part->Is_Storage)
2370 part->Storage_Name = gui_lookup(storage_resource_name, storage_default_value);
2371 }
Ethan Yonker74db1572015-10-28 12:44:49 -05002372 }
2373}
2374
Ethan Yonker01f4e032017-02-03 15:30:52 -06002375void TWPartitionManager::Translate_Partition(const char* path, const char* resource_name, const char* default_value, const char* storage_resource_name, const char* storage_default_value, const char* backup_name, const char* backup_default) {
2376 TWPartition* part = PartitionManager.Find_Partition_By_Path(path);
2377 if (part) {
2378 if (part->Is_Adopted_Storage) {
2379 part->Backup_Display_Name = part->Display_Name + " - " + gui_lookup(backup_name, backup_default);
2380 part->Display_Name = part->Display_Name + " - " + gui_lookup("data", "Data");
2381 part->Storage_Name = part->Storage_Name + " - " + gui_lookup("adopted_storage", "Adopted Storage");
2382 } else {
2383 part->Display_Name = gui_lookup(resource_name, default_value);
2384 part->Backup_Display_Name = gui_lookup(backup_name, backup_default);
2385 if (part->Is_Storage)
2386 part->Storage_Name = gui_lookup(storage_resource_name, storage_default_value);
2387 }
2388 }
2389}
2390
Ethan Yonker74db1572015-10-28 12:44:49 -05002391void TWPartitionManager::Translate_Partition_Display_Names() {
Ethan Yonker66a19492015-12-10 10:19:45 -06002392 LOGINFO("Translating partition display names\n");
Ethan Yonker74db1572015-10-28 12:44:49 -05002393 Translate_Partition("/system", "system", "System");
2394 Translate_Partition("/system_image", "system_image", "System Image");
2395 Translate_Partition("/vendor", "vendor", "Vendor");
2396 Translate_Partition("/vendor_image", "vendor_image", "Vendor Image");
2397 Translate_Partition("/cache", "cache", "Cache");
Ethan Yonker74db1572015-10-28 12:44:49 -05002398 Translate_Partition("/boot", "boot", "Boot");
2399 Translate_Partition("/recovery", "recovery", "Recovery");
2400 if (!datamedia) {
Ethan Yonker01f4e032017-02-03 15:30:52 -06002401 Translate_Partition("/data", "data", "Data", "internal", "Internal Storage");
Ethan Yonker74db1572015-10-28 12:44:49 -05002402 Translate_Partition("/sdcard", "sdcard", "SDCard", "sdcard", "SDCard");
2403 Translate_Partition("/internal_sd", "sdcard", "SDCard", "sdcard", "SDCard");
2404 Translate_Partition("/internal_sdcard", "sdcard", "SDCard", "sdcard", "SDCard");
2405 Translate_Partition("/emmc", "sdcard", "SDCard", "sdcard", "SDCard");
Ethan Yonker01f4e032017-02-03 15:30:52 -06002406 } else {
2407 Translate_Partition("/data", "data", "Data", "internal", "Internal Storage", "data_backup", "Data (excl. storage)");
Ethan Yonker74db1572015-10-28 12:44:49 -05002408 }
Ethan Yonker01f4e032017-02-03 15:30:52 -06002409 Translate_Partition("/external_sd", "microsd", "Micro SDCard", "microsd", "Micro SDCard", "data_backup", "Data (excl. storage)");
2410 Translate_Partition("/external_sdcard", "microsd", "Micro SDCard", "microsd", "Micro SDCard", "data_backup", "Data (excl. storage)");
Ethan Yonker74db1572015-10-28 12:44:49 -05002411 Translate_Partition("/usb-otg", "usbotg", "USB OTG", "usbotg", "USB OTG");
2412 Translate_Partition("/sd-ext", "sdext", "SD-EXT");
2413
2414 // Android secure is a special case
2415 TWPartition* part = PartitionManager.Find_Partition_By_Path("/and-sec");
2416 if (part)
2417 part->Backup_Display_Name = gui_lookup("android_secure", "Android Secure");
2418
2419 // This updates the text on all of the storage selection buttons in the GUI
2420 DataManager::SetBackupFolder();
2421}
Ethan Yonker66a19492015-12-10 10:19:45 -06002422
2423void TWPartitionManager::Decrypt_Adopted() {
2424#ifdef TW_INCLUDE_CRYPTO
2425 if (!Mount_By_Path("/data", false)) {
2426 LOGERR("Cannot decrypt adopted storage because /data will not mount\n");
2427 return;
2428 }
2429 LOGINFO("Decrypt adopted storage starting\n");
2430 char* xmlFile = PageManager::LoadFileToBuffer("/data/system/storage.xml", NULL);
2431 xml_document<> *doc = NULL;
2432 xml_node<>* volumes = NULL;
Ethan Yonker66a19492015-12-10 10:19:45 -06002433 string Primary_Storage_UUID = "";
2434 if (xmlFile != NULL) {
2435 LOGINFO("successfully loaded storage.xml\n");
2436 doc = new xml_document<>();
2437 doc->parse<0>(xmlFile);
2438 volumes = doc->first_node("volumes");
2439 if (volumes) {
2440 xml_attribute<>* psuuid = volumes->first_attribute("primaryStorageUuid");
2441 if (psuuid) {
2442 Primary_Storage_UUID = psuuid->value();
2443 }
2444 }
2445 }
2446 std::vector<TWPartition*>::iterator adopt;
2447 for (adopt = Partitions.begin(); adopt != Partitions.end(); adopt++) {
2448 if ((*adopt)->Removable && (*adopt)->Is_Present) {
2449 if ((*adopt)->Decrypt_Adopted() == 0) {
2450 if (volumes) {
2451 xml_node<>* volume = volumes->first_node("volume");
2452 while (volume) {
2453 xml_attribute<>* guid = volume->first_attribute("partGuid");
2454 if (guid) {
2455 string GUID = (*adopt)->Adopted_GUID.c_str();
2456 GUID.insert(8, "-");
2457 GUID.insert(13, "-");
2458 GUID.insert(18, "-");
2459 GUID.insert(23, "-");
2460
2461 if (strcasecmp(GUID.c_str(), guid->value()) == 0) {
2462 xml_attribute<>* attr = volume->first_attribute("nickname");
nkk71ffb02bd2017-06-04 23:12:16 +03002463 if (attr && attr->value() && strlen(attr->value()) > 0) {
Ethan Yonker66a19492015-12-10 10:19:45 -06002464 (*adopt)->Storage_Name = attr->value();
2465 (*adopt)->Display_Name = (*adopt)->Storage_Name;
2466 (*adopt)->Backup_Display_Name = (*adopt)->Storage_Name;
2467 LOGINFO("storage name from storage.xml is '%s'\n", attr->value());
2468 }
2469 attr = volume->first_attribute("fsUuid");
2470 if (attr && !Primary_Storage_UUID.empty() && strcmp(Primary_Storage_UUID.c_str(), attr->value()) == 0) {
2471 TWPartition* Dat = Find_Partition_By_Path("/data");
2472 if (Dat) {
2473 LOGINFO("Internal storage is found on adopted storage '%s'\n", (*adopt)->Display_Name.c_str());
2474 LOGINFO("Changing '%s' to point to '%s'\n", Dat->Symlink_Mount_Point.c_str(), (*adopt)->Storage_Path.c_str());
2475 (*adopt)->Symlink_Mount_Point = Dat->Symlink_Mount_Point;
2476 Dat->Symlink_Mount_Point = "";
2477 // Toggle mounts to ensure that the symlink mount point (probably /sdcard) is mounted to the right location
2478 Dat->UnMount(false);
2479 Dat->Mount(false);
2480 (*adopt)->UnMount(false);
2481 (*adopt)->Mount(false);
Ethan Yonker66a19492015-12-10 10:19:45 -06002482 }
2483 }
2484 break;
2485 }
2486 }
2487 volume = volume->next_sibling("volume");
2488 }
2489 }
nkk71ffb02bd2017-06-04 23:12:16 +03002490 Update_System_Details();
2491 Output_Partition((*adopt));
Ethan Yonker66a19492015-12-10 10:19:45 -06002492 }
2493 }
2494 }
2495 if (xmlFile) {
2496 doc->clear();
2497 delete doc;
2498 free(xmlFile);
2499 }
2500#else
2501 LOGINFO("Decrypt_Adopted: no crypto support\n");
2502 return;
2503#endif
2504}
Ethan Yonkerfcf3f242016-02-16 12:30:26 -06002505
2506void TWPartitionManager::Remove_Partition_By_Path(string Path) {
2507 std::vector<TWPartition*>::iterator iter;
2508 string Local_Path = TWFunc::Get_Root_Path(Path);
2509
2510 for (iter = Partitions.begin(); iter != Partitions.end(); iter++) {
2511 if ((*iter)->Mount_Point == Local_Path || (!(*iter)->Symlink_Mount_Point.empty() && (*iter)->Symlink_Mount_Point == Local_Path)) {
2512 LOGINFO("Found and erasing '%s' from partition list\n", Local_Path.c_str());
2513 Partitions.erase(iter);
2514 return;
2515 }
2516 }
2517}
Ethan Yonker1b190162016-12-05 15:25:19 -06002518
2519void TWPartitionManager::Set_Active_Slot(const string& Slot) {
2520 if (Slot != "A" && Slot != "B") {
2521 LOGERR("Set_Active_Slot invalid slot '%s'\n", Slot.c_str());
2522 return;
2523 }
2524 if (Active_Slot_Display == Slot)
2525 return;
2526 LOGINFO("Setting active slot %s\n", Slot.c_str());
2527#ifdef AB_OTA_UPDATER
2528 if (!Active_Slot_Display.empty()) {
2529 const hw_module_t *hw_module;
2530 boot_control_module_t *module;
2531 int ret;
2532 ret = hw_get_module("bootctrl", &hw_module);
2533 if (ret != 0) {
2534 LOGERR("Error getting bootctrl module.\n");
2535 } else {
2536 module = (boot_control_module_t*) hw_module;
2537 module->init(module);
2538 int slot_number = 0;
2539 if (Slot == "B")
2540 slot_number = 1;
2541 if (module->setActiveBootSlot(module, slot_number))
2542 gui_msg(Msg(msg::kError, "unable_set_boot_slot=Error changing bootloader boot slot to {1}")(Slot));
2543 }
2544 DataManager::SetValue("tw_active_slot", Slot); // Doing this outside of this if block may result in a seg fault because the DataManager may not be ready yet
2545 }
2546#else
2547 LOGERR("Boot slot feature not present\n");
2548#endif
2549 Active_Slot_Display = Slot;
2550 if (Fstab_Processed())
2551 Update_System_Details();
2552}
2553string TWPartitionManager::Get_Active_Slot_Suffix() {
2554 if (Active_Slot_Display == "A")
2555 return "_a";
2556 return "_b";
2557}
2558string TWPartitionManager::Get_Active_Slot_Display() {
2559 return Active_Slot_Display;
2560}