blob: 481d8d8063841ecd37845d3909770e9d37c2f57f [file] [log] [blame]
Dees Troy3be70a82013-10-22 14:25:12 +00001/*
bigbiffaed1bdf2021-08-03 18:21:39 -04002 Copyright 2014 to 2021 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>
Ethan Yonker6e8c27a2016-12-22 17:55:57 -060025#include <map>
Dees_Troy5bf43922012-09-07 16:07:55 -040026#include <vector>
Dees_Troy63c8df72012-09-10 14:02:05 -040027#include <dirent.h>
28#include <time.h>
Dees_Troy8170a922012-09-18 15:40:25 -040029#include <errno.h>
30#include <fcntl.h>
bigbiff25d25b92020-06-19 16:07:38 -040031#include <grp.h>
32#include <pwd.h>
bigbiffce8f83c2015-12-12 18:30:21 -050033#include <zlib.h>
bigbiff bigbiff9c754052013-01-09 09:09:08 -050034#include <iostream>
35#include <iomanip>
Ethan Yonker8613dc02014-09-11 09:28:20 -050036#include <sys/wait.h>
Ethan Yonker483e9f42016-01-11 22:21:18 -060037#include <linux/fs.h>
38#include <sys/mount.h>
Ethan Yonker6e8c27a2016-12-22 17:55:57 -060039#include <sys/poll.h>
40#include <sys/socket.h>
bigbiffcfa875c2021-06-20 16:20:27 -040041#include <sys/stat.h>
42#include <sys/types.h>
Ethan Yonker6e8c27a2016-12-22 17:55:57 -060043#include <linux/types.h>
44#include <linux/netlink.h>
bigbiffee7b7ff2020-03-23 15:08:27 -040045#include <android-base/chrono_utils.h>
46#include <android-base/file.h>
47#include <android-base/logging.h>
bigbiff7ba75002020-04-11 20:47:09 -040048#include <android-base/properties.h>
bigbiffee7b7ff2020-03-23 15:08:27 -040049#include <android-base/strings.h>
50#include <fstab/fstab.h>
51#include <fs_avb/fs_avb.h>
52#include <fs_mgr.h>
53#include <fs_mgr_dm_linear.h>
54#include <fs_mgr_overlayfs.h>
bigbiffcfa875c2021-06-20 16:20:27 -040055#include <fs_mgr/roots.h>
bigbiffee7b7ff2020-03-23 15:08:27 -040056#include <libgsi/libgsi.h>
57#include <liblp/liblp.h>
bigbiffcfa875c2021-06-20 16:20:27 -040058#include <libgsi/libgsi.h>
59#include <liblp/builder.h>
60#include <libsnapshot/snapshot.h>
Ethan Yonker6e8c27a2016-12-22 17:55:57 -060061
Dees_Troy51a0e822012-09-05 15:24:24 -040062#include "variables.h"
Dees_Troy2673cec2013-04-02 20:22:16 +000063#include "twcommon.h"
Dees_Troy51a0e822012-09-05 15:24:24 -040064#include "partitions.hpp"
Dees_Troy5bf43922012-09-07 16:07:55 -040065#include "data.hpp"
bigbiffaed1bdf2021-08-03 18:21:39 -040066#include "startupArgs.hpp"
Dees_Troy38bd7602012-09-14 13:33:53 -040067#include "twrp-functions.hpp"
Ethan Yonkerb5fab762016-01-28 14:03:33 -060068#include "fixContexts.hpp"
Ethan Yonker3fdcda42016-11-30 12:29:37 -060069#include "exclude.hpp"
Ethan Yonker4b94cfd2014-12-11 10:00:45 -060070#include "set_metadata.h"
bigbiff7abc5fe2015-01-17 16:53:12 -050071#include "tw_atomic.hpp"
Ethan Yonker74db1572015-10-28 12:44:49 -050072#include "gui/gui.hpp"
Ethan Yonker472f5062016-02-25 13:47:30 -060073#include "progresstracking.hpp"
bigbiff bigbiff56cf5642016-08-19 17:43:45 -040074#include "twrpDigestDriver.hpp"
bigbiffad58e1b2020-07-06 20:24:34 -040075#include "twrpRepacker.hpp"
bigbiffce8f83c2015-12-12 18:30:21 -050076#include "adbbu/libtwadbbu.hpp"
Dees_Troy38bd7602012-09-14 13:33:53 -040077
bigbiff bigbiffc7eee6f2014-09-02 18:59:01 -040078#ifdef TW_HAS_MTP
bigbiff bigbiffaf32bb92018-12-18 18:39:53 -050079#ifdef TW_HAS_LEGACY_MTP
80#include "mtp/legacy/mtp_MtpServer.hpp"
81#include "mtp/legacy/twrpMtp.hpp"
82#include "mtp/legacy/MtpMessage.hpp"
83#else
84#include "mtp/ffs/mtp_MtpServer.hpp"
85#include "mtp/ffs/twrpMtp.hpp"
86#include "mtp/ffs/MtpMessage.hpp"
87#endif
bigbiff bigbiffc7eee6f2014-09-02 18:59:01 -040088#endif
89
Dees Troy6f6441d2014-01-23 02:07:03 +000090extern "C" {
91 #include "cutils/properties.h"
Ethan Yonker74db1572015-10-28 12:44:49 -050092 #include "gui/gui.h"
Dees Troy6f6441d2014-01-23 02:07:03 +000093}
94
Dees_Troy5bf43922012-09-07 16:07:55 -040095#ifdef TW_INCLUDE_CRYPTO
bigbiff7ba75002020-04-11 20:47:09 -040096#include "crypto/fde/cryptfs.h"
97#include "gui/rapidxml.hpp"
98#include "gui/pages.hpp"
99#ifdef TW_INCLUDE_FBE
bigbiffa957f072021-03-07 18:20:29 -0500100#include "Decrypt.h"
bigbiff7ba75002020-04-11 20:47:09 -0400101#ifdef TW_INCLUDE_FBE_METADATA_DECRYPT
102 #ifdef USE_FSCRYPT
bigbiffa957f072021-03-07 18:20:29 -0500103 #include "MetadataCrypt.h"
bigbiffadc599e2020-05-28 19:36:30 +0000104 #endif
bigbiff7ba75002020-04-11 20:47:09 -0400105#endif
106#endif
107#ifdef TW_CRYPTO_USE_SYSTEM_VOLD
108#include "crypto/vold_decrypt/vold_decrypt.h"
109#endif
Dees_Troy5bf43922012-09-07 16:07:55 -0400110#endif
Dees_Troy51a0e822012-09-05 15:24:24 -0400111
Ethan Yonker1b190162016-12-05 15:25:19 -0600112#ifdef AB_OTA_UPDATER
113#include <hardware/hardware.h>
114#include <hardware/boot_control.h>
115#endif
116
bigbiffcfa875c2021-06-20 16:20:27 -0400117using android::fs_mgr::DestroyLogicalPartition;
bigbiffee7b7ff2020-03-23 15:08:27 -0400118using android::fs_mgr::Fstab;
119using android::fs_mgr::FstabEntry;
bigbiffcfa875c2021-06-20 16:20:27 -0400120using android::fs_mgr::MetadataBuilder;
Ethan Yonker6277c792014-09-15 14:54:30 -0500121
bigbiffee7b7ff2020-03-23 15:08:27 -0400122extern bool datamedia;
Noah Jacobson81d638d2019-04-28 00:10:07 -0400123std::vector<users_struct> Users_List;
124
bigbiff bigbiff34684ff2013-12-01 21:03:45 -0500125TWPartitionManager::TWPartitionManager(void) {
bigbiff bigbiffc7eee6f2014-09-02 18:59:01 -0400126 mtp_was_enabled = false;
Ethan Yonker726a0202014-12-16 20:01:38 -0600127 mtp_write_fd = -1;
Ethan Yonker6e8c27a2016-12-22 17:55:57 -0600128 uevent_pfd.fd = -1;
bigbiff7abc5fe2015-01-17 16:53:12 -0500129 stop_backup.set_value(0);
Ethan Yonker1b190162016-12-05 15:25:19 -0600130#ifdef AB_OTA_UPDATER
131 char slot_suffix[PROPERTY_VALUE_MAX];
Ethan Yonkerfefe5912017-09-30 22:22:13 -0500132 property_get("ro.boot.slot_suffix", slot_suffix, "error");
133 if (strcmp(slot_suffix, "error") == 0)
134 property_get("ro.boot.slot", slot_suffix, "error");
Ethan Yonker1b190162016-12-05 15:25:19 -0600135 Active_Slot_Display = "";
Ethan Yonkerfefe5912017-09-30 22:22:13 -0500136 if (strcmp(slot_suffix, "_a") == 0 || strcmp(slot_suffix, "a") == 0)
Ethan Yonker1b190162016-12-05 15:25:19 -0600137 Set_Active_Slot("A");
138 else
139 Set_Active_Slot("B");
140#endif
bigbiff bigbiff34684ff2013-12-01 21:03:45 -0500141}
142
Captain Throwback18aea272020-10-29 12:43:17 -0400143int TWPartitionManager::Set_FDE_Encrypt_Status(void) {
144 property_set("ro.crypto.state", "encrypted");
145 property_set("ro.crypto.type", "block");
146 // Sleep for a bit so that services can start if needed
147 sleep(1);
148 return 0;
149}
150
bigbiff22851b92021-09-01 16:46:57 -0400151int TWPartitionManager::Process_Fstab(string Fstab_Filename, bool Display_Error, bool recovery_mode) {
Dees_Troy5bf43922012-09-07 16:07:55 -0400152 FILE *fstabFile;
153 char fstab_line[MAX_FSTAB_LINE_LENGTH];
Ethan Yonker6e8c27a2016-12-22 17:55:57 -0600154 std::map<string, Flags_Map> twrp_flags;
155
156 fstabFile = fopen("/etc/twrp.flags", "rt");
157 if (fstabFile != NULL) {
Ian Macdonald160e8d32020-09-29 20:47:31 +0200158 LOGINFO("Reading /etc/twrp.flags\n");
Ethan Yonker6e8c27a2016-12-22 17:55:57 -0600159 while (fgets(fstab_line, sizeof(fstab_line), fstabFile) != NULL) {
Ethan Yonker6e8c27a2016-12-22 17:55:57 -0600160 size_t line_size = strlen(fstab_line);
161 if (fstab_line[line_size - 1] != '\n')
162 fstab_line[line_size] = '\n';
163 Flags_Map line_flags;
164 line_flags.Primary_Block_Device = "";
165 line_flags.Alternate_Block_Device = "";
166 line_flags.fstab_line = (char*)malloc(MAX_FSTAB_LINE_LENGTH);
167 if (!line_flags.fstab_line) {
168 LOGERR("malloc error on line_flags.fstab_line\n");
169 return false;
170 }
171 memcpy(line_flags.fstab_line, fstab_line, MAX_FSTAB_LINE_LENGTH);
172 bool found_separator = false;
173 char *fs_loc = NULL;
174 char *block_loc = NULL;
175 char *flags_loc = NULL;
176 size_t index, item_index = 0;
177 for (index = 0; index < line_size; index++) {
178 if (fstab_line[index] <= 32) {
179 fstab_line[index] = '\0';
180 found_separator = true;
181 } else if (found_separator) {
182 if (item_index == 0) {
183 fs_loc = fstab_line + index;
184 } else if (item_index == 1) {
185 block_loc = fstab_line + index;
186 } else if (item_index > 1) {
187 char *ptr = fstab_line + index;
188 if (*ptr == '/') {
189 line_flags.Alternate_Block_Device = ptr;
190 } else if (strlen(ptr) > strlen("flags=") && strncmp(ptr, "flags=", strlen("flags=")) == 0) {
191 flags_loc = ptr;
192 // Once we find the flags=, we're done scanning the line
193 break;
194 }
195 }
196 found_separator = false;
197 item_index++;
198 }
199 }
200 if (block_loc)
201 line_flags.Primary_Block_Device = block_loc;
202 if (fs_loc)
203 line_flags.File_System = fs_loc;
204 if (flags_loc)
205 line_flags.Flags = flags_loc;
206 string Mount_Point = fstab_line;
207 twrp_flags[Mount_Point] = line_flags;
208 memset(fstab_line, 0, sizeof(fstab_line));
209 }
210 fclose(fstabFile);
211 }
Dees_Troy5bf43922012-09-07 16:07:55 -0400212
213 fstabFile = fopen(Fstab_Filename.c_str(), "rt");
214 if (fstabFile == NULL) {
Dees_Troy2673cec2013-04-02 20:22:16 +0000215 LOGERR("Critical Error: Unable to open fstab at '%s'.\n", Fstab_Filename.c_str());
Dees_Troy5bf43922012-09-07 16:07:55 -0400216 return false;
Ethan Yonker6e8c27a2016-12-22 17:55:57 -0600217 } else
218 LOGINFO("Reading %s\n", Fstab_Filename.c_str());
Dees_Troy5bf43922012-09-07 16:07:55 -0400219
220 while (fgets(fstab_line, sizeof(fstab_line), fstabFile) != NULL) {
Ethan Yonker6e8c27a2016-12-22 17:55:57 -0600221 if (strstr(fstab_line, "swap"))
222 continue; // Skip swap in recovery
223
bigbiff998f8392021-08-06 19:19:33 -0400224 if (fstab_line[0] == '#')
225 continue;
226
Ethan Yonker6e8c27a2016-12-22 17:55:57 -0600227 size_t line_size = strlen(fstab_line);
228 if (fstab_line[line_size - 1] != '\n')
229 fstab_line[line_size] = '\n';
Dees_Troy2a923582012-09-20 12:13:34 -0400230
Matt Mower2b2dd152016-04-26 11:24:08 -0500231 TWPartition* partition = new TWPartition();
bigbiff8da46fa2020-09-08 16:42:34 -0400232 if (partition->Process_Fstab_Line(fstab_line, Display_Error, &twrp_flags))
Ethan Yonkerc05c5982014-03-13 09:19:56 -0500233 Partitions.push_back(partition);
Matt Mower72c87ce2016-04-26 14:34:56 -0500234 else
Dees_Troy5bf43922012-09-07 16:07:55 -0400235 delete partition;
Matt Mower2b2dd152016-04-26 11:24:08 -0500236
237 memset(fstab_line, 0, sizeof(fstab_line));
Dees_Troy5bf43922012-09-07 16:07:55 -0400238 }
239 fclose(fstabFile);
Matt Mower72c87ce2016-04-26 14:34:56 -0500240
Ethan Yonker6e8c27a2016-12-22 17:55:57 -0600241 if (twrp_flags.size() > 0) {
242 LOGINFO("Processing remaining twrp.flags\n");
243 // Add any items from twrp.flags that did not exist in the recovery.fstab
244 for (std::map<string, Flags_Map>::iterator mapit=twrp_flags.begin(); mapit!=twrp_flags.end(); mapit++) {
245 if (Find_Partition_By_Path(mapit->first) == NULL) {
246 TWPartition* partition = new TWPartition();
bigbiff8da46fa2020-09-08 16:42:34 -0400247 if (partition->Process_Fstab_Line(mapit->second.fstab_line, Display_Error, NULL))
Ethan Yonker6e8c27a2016-12-22 17:55:57 -0600248 Partitions.push_back(partition);
249 else
250 delete partition;
251 }
252 if (mapit->second.fstab_line)
253 free(mapit->second.fstab_line);
254 mapit->second.fstab_line = NULL;
255 }
256 }
Mohd Faraze3948ec2020-08-14 01:40:59 +0000257 if (Get_Super_Status()) {
258 Setup_Super_Devices();
259 }
Ethan Yonker6e8c27a2016-12-22 17:55:57 -0600260 LOGINFO("Done processing fstab files\n");
261
bigbiff22851b92021-09-01 16:46:57 -0400262 if (recovery_mode) {
263 Setup_Fstab_Partitions(Display_Error);
Mohd Faraze3948ec2020-08-14 01:40:59 +0000264 }
bigbiff7ba75002020-04-11 20:47:09 -0400265 return true;
266}
267
bigbiff22851b92021-09-01 16:46:57 -0400268void TWPartitionManager::Setup_Fstab_Partitions(bool Display_Error) {
269 TWPartition* settings_partition = NULL;
270 TWPartition* andsec_partition = NULL;
271 std::vector<TWPartition*>::iterator iter;
272 unsigned int storageid = 1 << 16; // upper 16 bits are for physical storage device, we pretend to have only one
273
274 for (iter = Partitions.begin(); iter != Partitions.end(); iter++) {
275 (*iter)->Partition_Post_Processing(Display_Error);
276
277 if ((*iter)->Is_Storage) {
278 ++storageid;
279 (*iter)->MTP_Storage_ID = storageid;
280 }
281
282 if (!settings_partition && (*iter)->Is_Settings_Storage && (*iter)->Is_Present)
283 settings_partition = (*iter);
284 else
285 (*iter)->Is_Settings_Storage = false;
286
287 if (!andsec_partition && (*iter)->Has_Android_Secure && (*iter)->Is_Present)
288 andsec_partition = (*iter);
289 else
290 (*iter)->Has_Android_Secure = false;
291
292 if ((*iter)->Is_Super)
293 Prepare_Super_Volume((*iter));
294 }
295
296 //Setup Apex before decryption
297 TWPartition* sys = PartitionManager.Find_Partition_By_Path(PartitionManager.Get_Android_Root_Path());
298 TWPartition* ven = PartitionManager.Find_Partition_By_Path("/vendor");
299 if (sys) {
300 if (sys->Get_Super_Status()) {
301 sys->Mount(true);
302 if (ven) {
303 ven->Mount(true);
304 }
305 #ifdef TW_EXCLUDE_APEX
306 LOGINFO("Apex is disabled in this build\n");
307 #else
308 twrpApex apex;
309 if (!apex.loadApexImages()) {
310 LOGERR("Unable to load apex images from %s\n", APEX_DIR);
311 property_set("twrp.apex.loaded", "false");
312 } else {
313 property_set("twrp.apex.loaded", "true");
314 }
315 TWFunc::check_and_run_script("/sbin/resyncapex.sh", "apex");
316 #endif
317 }
318 }
319 #ifndef USE_VENDOR_LIBS
320 if (ven)
321 ven->UnMount(true);
322 if (sys)
323 sys->UnMount(true);
324 #endif
325
326 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) {
327 // Attempt to automatically identify /data/media emulated storage devices
328 TWPartition* Dat = Find_Partition_By_Path("/data");
329 if (Dat) {
330 LOGINFO("Using automatic handling for /data/media emulated storage device.\n");
331 datamedia = true;
332 Dat->Setup_Data_Media();
333 settings_partition = Dat;
334 // Since /data was not considered a storage partition earlier, we still need to assign an MTP ID
335 ++storageid;
336 Dat->MTP_Storage_ID = storageid;
337 }
338 }
339 if (!settings_partition) {
340 for (iter = Partitions.begin(); iter != Partitions.end(); iter++) {
341 if ((*iter)->Is_Storage) {
342 settings_partition = (*iter);
343 break;
344 }
345 }
346 if (!settings_partition)
347 LOGERR("Unable to locate storage partition for storing settings file.\n");
348 }
349 if (!Write_Fstab()) {
350 if (Display_Error)
351 LOGERR("Error creating fstab\n");
352 else
353 LOGINFO("Error creating fstab\n");
354 }
355
356 if (andsec_partition) {
357 Setup_Android_Secure_Location(andsec_partition);
358 } else if (settings_partition) {
359 Setup_Android_Secure_Location(settings_partition);
360 }
361 if (settings_partition) {
362 Setup_Settings_Storage_Partition(settings_partition);
363 }
364
365 #ifdef TW_INCLUDE_CRYPTO
366 DataManager::SetValue(TW_IS_ENCRYPTED, 1);
367 Decrypt_Data();
368 #endif
369
370 Update_System_Details();
371 if (Get_Super_Status())
372 Setup_Super_Partition();
373 UnMount_Main_Partitions();
374 #ifdef AB_OTA_UPDATER
375 DataManager::SetValue("tw_active_slot", Get_Active_Slot_Display());
376 #endif
377 setup_uevent();
378}
379
bigbiff7ba75002020-04-11 20:47:09 -0400380int TWPartitionManager::Write_Fstab(void) {
381 FILE *fp;
382 std::vector<TWPartition*>::iterator iter;
383 string Line;
384
385 fp = fopen("/etc/fstab", "w");
386 if (fp == NULL) {
387 LOGINFO("Can not open /etc/fstab.\n");
388 return false;
389 }
390 for (iter = Partitions.begin(); iter != Partitions.end(); iter++) {
391 if ((*iter)->Can_Be_Mounted) {
Mohd Faraz2a1e3752020-09-30 10:55:48 +0530392 Line = (*iter)->Actual_Block_Device + " " + (*iter)->Mount_Point + " " + (*iter)->Current_File_System +
393 ((*iter)->Mount_Read_Only ? " ro " : " rw ") + "0 0\n";
bigbiff7ba75002020-04-11 20:47:09 -0400394 fputs(Line.c_str(), fp);
395 }
396 // Handle subpartition tracking
397 if ((*iter)->Is_SubPartition) {
398 TWPartition* ParentPartition = Find_Partition_By_Path((*iter)->SubPartition_Of);
399 if (ParentPartition)
400 ParentPartition->Has_SubPartition = true;
401 else
402 LOGERR("Unable to locate parent partition '%s' of '%s'\n", (*iter)->SubPartition_Of.c_str(), (*iter)->Mount_Point.c_str());
403 }
404 }
405 fclose(fp);
406 return true;
407}
408
409void TWPartitionManager::Decrypt_Data() {
410 #ifdef TW_INCLUDE_CRYPTO
Ethan Yonkercceebb82014-11-18 10:17:59 -0600411 TWPartition* Decrypt_Data = Find_Partition_By_Path("/data");
412 if (Decrypt_Data && Decrypt_Data->Is_Encrypted && !Decrypt_Data->Is_Decrypted) {
nebrassyf74255e2020-10-24 21:08:20 +0200413 property_set("ro.crypto.state", "encrypted");
Ethan Yonker93382822018-11-01 15:25:31 -0500414 if (!Decrypt_Data->Key_Directory.empty() && Mount_By_Path(Decrypt_Data->Key_Directory, false)) {
nebrassyf74255e2020-10-24 21:08:20 +0200415 property_set("ro.crypto.type", "file");
Ethan Yonker93382822018-11-01 15:25:31 -0500416#ifdef TW_INCLUDE_FBE_METADATA_DECRYPT
bigbiff7ba75002020-04-11 20:47:09 -0400417#ifdef USE_FSCRYPT
418 if (fscrypt_mount_metadata_encrypted(Decrypt_Data->Actual_Block_Device, Decrypt_Data->Mount_Point, false)) {
bigbiffa957f072021-03-07 18:20:29 -0500419 std::string crypto_blkdev = android::base::GetProperty("ro.crypto.fs_crypto_blkdev", "error");
Mohd Faraze3948ec2020-08-14 01:40:59 +0000420 Decrypt_Data->Decrypted_Block_Device = crypto_blkdev;
bigbiff7ba75002020-04-11 20:47:09 -0400421 LOGINFO("Successfully decrypted metadata encrypted data partition with new block device: '%s'\n", crypto_blkdev.c_str());
bigbiff7ba75002020-04-11 20:47:09 -0400422#endif
Ethan Yonker93382822018-11-01 15:25:31 -0500423 Decrypt_Data->Is_Decrypted = true; // Needed to make the mount function work correctly
424 int retry_count = 10;
425 while (!Decrypt_Data->Mount(false) && --retry_count)
426 usleep(500);
427 if (Decrypt_Data->Mount(false)) {
bigbiff bigbiff0be03b32019-08-27 20:50:31 -0400428 if (!Decrypt_Data->Decrypt_FBE_DE()) {
bigbiff437d86f2021-09-26 16:57:14 -0400429 LOGERR("Unable to decrypt FBE device\n");
bigbiff bigbiff0be03b32019-08-27 20:50:31 -0400430 }
431
Ethan Yonker93382822018-11-01 15:25:31 -0500432 } else {
433 LOGINFO("Failed to mount data after metadata decrypt\n");
434 }
435 } else {
436 LOGINFO("Unable to decrypt metadata encryption\n");
437 }
438#else
439 LOGERR("Metadata FBE decrypt support not present in this TWRP\n");
440#endif
441 }
Ethan Yonkerbd7492d2016-12-07 13:55:01 -0600442 if (Decrypt_Data->Is_FBE) {
443 if (DataManager::GetIntValue(TW_CRYPTO_PWTYPE) == 0) {
444 if (Decrypt_Device("!") == 0) {
445 gui_msg("decrypt_success=Successfully decrypted with default password.");
446 DataManager::SetValue(TW_IS_ENCRYPTED, 0);
447 } else {
448 gui_err("unable_to_decrypt=Unable to decrypt with default password.");
449 }
Ethan Yonkercceebb82014-11-18 10:17:59 -0600450 }
451 } else {
bigbiffbbbfe172021-05-30 15:52:41 -0400452 LOGINFO("FBE setup failed. Trying FDE...");
Captain Throwback18aea272020-10-29 12:43:17 -0400453 Set_FDE_Encrypt_Status();
Ethan Yonkerbd7492d2016-12-07 13:55:01 -0600454 int password_type = cryptfs_get_password_type();
455 if (password_type == CRYPT_TYPE_DEFAULT) {
456 LOGINFO("Device is encrypted with the default password, attempting to decrypt.\n");
457 if (Decrypt_Device("default_password") == 0) {
458 gui_msg("decrypt_success=Successfully decrypted with default password.");
459 DataManager::SetValue(TW_IS_ENCRYPTED, 0);
460 } else {
461 gui_err("unable_to_decrypt=Unable to decrypt with default password.");
462 }
463 } else {
464 DataManager::SetValue("TW_CRYPTO_TYPE", password_type);
Noah Jacobson81d638d2019-04-28 00:10:07 -0400465 DataManager::SetValue("tw_crypto_pwtype_0", password_type);
Ethan Yonkerbd7492d2016-12-07 13:55:01 -0600466 }
Ethan Yonkercceebb82014-11-18 10:17:59 -0600467 }
468 }
Noah Jacobson81d638d2019-04-28 00:10:07 -0400469 if (Decrypt_Data && (!Decrypt_Data->Is_Encrypted || Decrypt_Data->Is_Decrypted) &&
470 Decrypt_Data->Mount(false)) {
Ethan Yonker66a19492015-12-10 10:19:45 -0600471 Decrypt_Adopted();
472 }
Ethan Yonkercceebb82014-11-18 10:17:59 -0600473#endif
Dees_Troy51a0e822012-09-05 15:24:24 -0400474}
475
Ethan Yonkerc05c5982014-03-13 09:19:56 -0500476void TWPartitionManager::Setup_Settings_Storage_Partition(TWPartition* Part) {
Ethan Yonkerc05c5982014-03-13 09:19:56 -0500477 DataManager::SetValue("tw_settings_path", Part->Storage_Path);
478 DataManager::SetValue("tw_storage_path", Part->Storage_Path);
479 LOGINFO("Settings storage is '%s'\n", Part->Storage_Path.c_str());
480}
481
Matt Mowerbf4efa32014-04-14 23:25:26 -0500482void TWPartitionManager::Setup_Android_Secure_Location(TWPartition* Part) {
483 if (Part->Has_Android_Secure)
484 Part->Setup_AndSec();
Ethan Yonker6277c792014-09-15 14:54:30 -0500485 else if (!datamedia)
Matt Mowerbf4efa32014-04-14 23:25:26 -0500486 Part->Setup_AndSec();
Matt Mowerbf4efa32014-04-14 23:25:26 -0500487}
488
Dees_Troy8170a922012-09-18 15:40:25 -0400489void TWPartitionManager::Output_Partition_Logging(void) {
490 std::vector<TWPartition*>::iterator iter;
491
492 printf("\n\nPartition Logs:\n");
493 for (iter = Partitions.begin(); iter != Partitions.end(); iter++)
494 Output_Partition((*iter));
495}
496
497void TWPartitionManager::Output_Partition(TWPartition* Part) {
498 unsigned long long mb = 1048576;
499
Gary Peck004d48b2012-11-21 16:28:18 -0800500 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 -0400501 if (Part->Can_Be_Mounted) {
Gary Peck004d48b2012-11-21 16:28:18 -0800502 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 -0400503 }
Gary Peck004d48b2012-11-21 16:28:18 -0800504 printf("\n Flags: ");
Dees_Troya13d74f2013-03-24 08:54:55 -0500505 if (Part->Can_Be_Mounted)
506 printf("Can_Be_Mounted ");
Gary Peck004d48b2012-11-21 16:28:18 -0800507 if (Part->Can_Be_Wiped)
508 printf("Can_Be_Wiped ");
Hashcodedabfd492013-08-29 22:45:30 -0700509 if (Part->Use_Rm_Rf)
510 printf("Use_Rm_Rf ");
Dees_Troya13d74f2013-03-24 08:54:55 -0500511 if (Part->Can_Be_Backed_Up)
512 printf("Can_Be_Backed_Up ");
Gary Peck004d48b2012-11-21 16:28:18 -0800513 if (Part->Wipe_During_Factory_Reset)
514 printf("Wipe_During_Factory_Reset ");
515 if (Part->Wipe_Available_in_GUI)
516 printf("Wipe_Available_in_GUI ");
517 if (Part->Is_SubPartition)
518 printf("Is_SubPartition ");
519 if (Part->Has_SubPartition)
520 printf("Has_SubPartition ");
521 if (Part->Removable)
522 printf("Removable ");
523 if (Part->Is_Present)
524 printf("IsPresent ");
525 if (Part->Can_Be_Encrypted)
526 printf("Can_Be_Encrypted ");
527 if (Part->Is_Encrypted)
528 printf("Is_Encrypted ");
529 if (Part->Is_Decrypted)
530 printf("Is_Decrypted ");
531 if (Part->Has_Data_Media)
532 printf("Has_Data_Media ");
Dees_Troy83bd4832013-05-04 12:39:56 +0000533 if (Part->Can_Encrypt_Backup)
534 printf("Can_Encrypt_Backup ");
535 if (Part->Use_Userdata_Encryption)
536 printf("Use_Userdata_Encryption ");
Gary Peck004d48b2012-11-21 16:28:18 -0800537 if (Part->Has_Android_Secure)
538 printf("Has_Android_Secure ");
539 if (Part->Is_Storage)
540 printf("Is_Storage ");
Dees_Troya13d74f2013-03-24 08:54:55 -0500541 if (Part->Is_Settings_Storage)
542 printf("Is_Settings_Storage ");
Dees_Troy68cab492012-12-12 19:29:35 +0000543 if (Part->Ignore_Blkid)
544 printf("Ignore_Blkid ");
Ethan Yonker253368a2014-11-25 15:00:52 -0600545 if (Part->Mount_To_Decrypt)
546 printf("Mount_To_Decrypt ");
Ethan Yonker96af84a2015-01-05 14:58:36 -0600547 if (Part->Can_Flash_Img)
548 printf("Can_Flash_Img ");
Ethan Yonker66a19492015-12-10 10:19:45 -0600549 if (Part->Is_Adopted_Storage)
550 printf("Is_Adopted_Storage ");
Ethan Yonker1b190162016-12-05 15:25:19 -0600551 if (Part->SlotSelect)
552 printf("SlotSelect ");
Ethan Yonker6e8c27a2016-12-22 17:55:57 -0600553 if (Part->Mount_Read_Only)
554 printf("Mount_Read_Only ");
bigbiffcfa875c2021-06-20 16:20:27 -0400555 if (Part->Is_Super)
556 printf("Is_Super ");
Gary Peck004d48b2012-11-21 16:28:18 -0800557 printf("\n");
558 if (!Part->SubPartition_Of.empty())
559 printf(" SubPartition_Of: %s\n", Part->SubPartition_Of.c_str());
560 if (!Part->Symlink_Path.empty())
561 printf(" Symlink_Path: %s\n", Part->Symlink_Path.c_str());
562 if (!Part->Symlink_Mount_Point.empty())
563 printf(" Symlink_Mount_Point: %s\n", Part->Symlink_Mount_Point.c_str());
564 if (!Part->Primary_Block_Device.empty())
565 printf(" Primary_Block_Device: %s\n", Part->Primary_Block_Device.c_str());
566 if (!Part->Alternate_Block_Device.empty())
567 printf(" Alternate_Block_Device: %s\n", Part->Alternate_Block_Device.c_str());
568 if (!Part->Decrypted_Block_Device.empty())
569 printf(" Decrypted_Block_Device: %s\n", Part->Decrypted_Block_Device.c_str());
dianlujitao4879b372018-12-03 18:45:47 +0800570 if (!Part->Crypto_Key_Location.empty())
Ethan Yonker253368a2014-11-25 15:00:52 -0600571 printf(" Crypto_Key_Location: %s\n", Part->Crypto_Key_Location.c_str());
Gary Peck004d48b2012-11-21 16:28:18 -0800572 if (Part->Length != 0)
573 printf(" Length: %i\n", Part->Length);
574 if (!Part->Display_Name.empty())
575 printf(" Display_Name: %s\n", Part->Display_Name.c_str());
Dees_Troya13d74f2013-03-24 08:54:55 -0500576 if (!Part->Storage_Name.empty())
577 printf(" Storage_Name: %s\n", Part->Storage_Name.c_str());
Gary Peck004d48b2012-11-21 16:28:18 -0800578 if (!Part->Backup_Path.empty())
579 printf(" Backup_Path: %s\n", Part->Backup_Path.c_str());
580 if (!Part->Backup_Name.empty())
581 printf(" Backup_Name: %s\n", Part->Backup_Name.c_str());
Dees_Troya13d74f2013-03-24 08:54:55 -0500582 if (!Part->Backup_Display_Name.empty())
583 printf(" Backup_Display_Name: %s\n", Part->Backup_Display_Name.c_str());
Gary Peck004d48b2012-11-21 16:28:18 -0800584 if (!Part->Backup_FileName.empty())
585 printf(" Backup_FileName: %s\n", Part->Backup_FileName.c_str());
586 if (!Part->Storage_Path.empty())
587 printf(" Storage_Path: %s\n", Part->Storage_Path.c_str());
588 if (!Part->Current_File_System.empty())
589 printf(" Current_File_System: %s\n", Part->Current_File_System.c_str());
590 if (!Part->Fstab_File_System.empty())
591 printf(" Fstab_File_System: %s\n", Part->Fstab_File_System.c_str());
592 if (Part->Format_Block_Size != 0)
Ethan Yonkerc798c9c2015-10-09 11:15:26 -0500593 printf(" Format_Block_Size: %lu\n", Part->Format_Block_Size);
Dees_Troy094207a2012-09-26 12:00:39 -0400594 if (!Part->MTD_Name.empty())
595 printf(" MTD_Name: %s\n", Part->MTD_Name.c_str());
Matt Mower029a82d2017-01-08 13:12:38 -0600596 printf(" Backup_Method: %s\n", Part->Backup_Method_By_Name().c_str());
Hashcode62bd9e02013-11-19 21:59:42 -0800597 if (Part->Mount_Flags || !Part->Mount_Options.empty())
Ethan Yonker6e8c27a2016-12-22 17:55:57 -0600598 printf(" Mount_Flags: %i, Mount_Options: %s\n", Part->Mount_Flags, Part->Mount_Options.c_str());
Ethan Yonker726a0202014-12-16 20:01:38 -0600599 if (Part->MTP_Storage_ID)
600 printf(" MTP_Storage_ID: %i\n", Part->MTP_Storage_ID);
Ethan Yonker93382822018-11-01 15:25:31 -0500601 if (!Part->Key_Directory.empty())
602 printf(" Metadata Key Directory: %s\n", Part->Key_Directory.c_str());
Ethan Yonker6277c792014-09-15 14:54:30 -0500603 printf("\n");
Dees_Troy8170a922012-09-18 15:40:25 -0400604}
605
Dees_Troy51a0e822012-09-05 15:24:24 -0400606int TWPartitionManager::Mount_By_Path(string Path, bool Display_Error) {
Dees_Troy5bf43922012-09-07 16:07:55 -0400607 std::vector<TWPartition*>::iterator iter;
608 int ret = false;
609 bool found = false;
Dees_Troy38bd7602012-09-14 13:33:53 -0400610 string Local_Path = TWFunc::Get_Root_Path(Path);
Dees_Troy5bf43922012-09-07 16:07:55 -0400611
bigbiffd58ba182020-03-23 10:02:29 -0400612 if (Local_Path == "/tmp" || Local_Path == "/")
Dees_Troy43d8b002012-09-17 16:00:01 -0400613 return true;
614
Dees_Troy5bf43922012-09-07 16:07:55 -0400615 // Iterate through all partitions
616 for (iter = Partitions.begin(); iter != Partitions.end(); iter++) {
Dees_Troy657c3092012-09-10 20:32:10 -0400617 if ((*iter)->Mount_Point == Local_Path || (!(*iter)->Symlink_Mount_Point.empty() && (*iter)->Symlink_Mount_Point == Local_Path)) {
Dees_Troy5bf43922012-09-07 16:07:55 -0400618 ret = (*iter)->Mount(Display_Error);
619 found = true;
Dees_Troy51127312012-09-08 13:08:49 -0400620 } else if ((*iter)->Is_SubPartition && (*iter)->SubPartition_Of == Local_Path) {
Dees_Troy5bf43922012-09-07 16:07:55 -0400621 (*iter)->Mount(Display_Error);
Dees_Troy51127312012-09-08 13:08:49 -0400622 }
Dees_Troy5bf43922012-09-07 16:07:55 -0400623 }
624 if (found) {
625 return ret;
626 } else if (Display_Error) {
Ethan Yonker74db1572015-10-28 12:44:49 -0500627 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 -0400628 }
629 return false;
Dees_Troy51a0e822012-09-05 15:24:24 -0400630}
631
Dees_Troy51a0e822012-09-05 15:24:24 -0400632int TWPartitionManager::UnMount_By_Path(string Path, bool Display_Error) {
Dees_Troy51127312012-09-08 13:08:49 -0400633 std::vector<TWPartition*>::iterator iter;
634 int ret = false;
635 bool found = false;
Dees_Troy38bd7602012-09-14 13:33:53 -0400636 string Local_Path = TWFunc::Get_Root_Path(Path);
Dees_Troy51127312012-09-08 13:08:49 -0400637
638 // Iterate through all partitions
639 for (iter = Partitions.begin(); iter != Partitions.end(); iter++) {
Dees_Troy657c3092012-09-10 20:32:10 -0400640 if ((*iter)->Mount_Point == Local_Path || (!(*iter)->Symlink_Mount_Point.empty() && (*iter)->Symlink_Mount_Point == Local_Path)) {
Dees_Troy51127312012-09-08 13:08:49 -0400641 ret = (*iter)->UnMount(Display_Error);
642 found = true;
643 } else if ((*iter)->Is_SubPartition && (*iter)->SubPartition_Of == Local_Path) {
644 (*iter)->UnMount(Display_Error);
645 }
646 }
647 if (found) {
648 return ret;
649 } else if (Display_Error) {
Ethan Yonker74db1572015-10-28 12:44:49 -0500650 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 -0400651 } else {
Dees_Troy2673cec2013-04-02 20:22:16 +0000652 LOGINFO("UnMount: Unable to find partition for path '%s'\n", Local_Path.c_str());
Dees_Troy51127312012-09-08 13:08:49 -0400653 }
654 return false;
Dees_Troy51a0e822012-09-05 15:24:24 -0400655}
656
Dees_Troy51a0e822012-09-05 15:24:24 -0400657int TWPartitionManager::Is_Mounted_By_Path(string Path) {
Dees_Troy51127312012-09-08 13:08:49 -0400658 TWPartition* Part = Find_Partition_By_Path(Path);
659
660 if (Part)
661 return Part->Is_Mounted();
662 else
Dees_Troy2673cec2013-04-02 20:22:16 +0000663 LOGINFO("Is_Mounted: Unable to find partition for path '%s'\n", Path.c_str());
Dees_Troy51127312012-09-08 13:08:49 -0400664 return false;
Dees_Troy51a0e822012-09-05 15:24:24 -0400665}
666
Dees_Troy5bf43922012-09-07 16:07:55 -0400667int TWPartitionManager::Mount_Current_Storage(bool Display_Error) {
Dees_Troy51127312012-09-08 13:08:49 -0400668 string current_storage_path = DataManager::GetCurrentStoragePath();
669
670 if (Mount_By_Path(current_storage_path, Display_Error)) {
671 TWPartition* FreeStorage = Find_Partition_By_Path(current_storage_path);
672 if (FreeStorage)
673 DataManager::SetValue(TW_STORAGE_FREE_SIZE, (int)(FreeStorage->Free / 1048576LLU));
674 return true;
675 }
676 return false;
Dees_Troy51a0e822012-09-05 15:24:24 -0400677}
678
Dees_Troy5bf43922012-09-07 16:07:55 -0400679int TWPartitionManager::Mount_Settings_Storage(bool Display_Error) {
680 return Mount_By_Path(DataManager::GetSettingsStoragePath(), Display_Error);
681}
682
Ethan Yonker6e8c27a2016-12-22 17:55:57 -0600683TWPartition* TWPartitionManager::Find_Partition_By_Path(const string& Path) {
Dees_Troy5bf43922012-09-07 16:07:55 -0400684 std::vector<TWPartition*>::iterator iter;
Dees_Troy38bd7602012-09-14 13:33:53 -0400685 string Local_Path = TWFunc::Get_Root_Path(Path);
Dees_Troy5bf43922012-09-07 16:07:55 -0400686
dianlujitaob76a73a2020-04-30 20:33:20 +0800687 if (Local_Path == "/system")
688 Local_Path = Get_Android_Root_Path();
Dees_Troy5bf43922012-09-07 16:07:55 -0400689 for (iter = Partitions.begin(); iter != Partitions.end(); iter++) {
Dees_Troy657c3092012-09-10 20:32:10 -0400690 if ((*iter)->Mount_Point == Local_Path || (!(*iter)->Symlink_Mount_Point.empty() && (*iter)->Symlink_Mount_Point == Local_Path))
Dees_Troy5bf43922012-09-07 16:07:55 -0400691 return (*iter);
692 }
Dees_Troy51a0e822012-09-05 15:24:24 -0400693 return NULL;
694}
695
Ethan Yonker6e8c27a2016-12-22 17:55:57 -0600696TWPartition* TWPartitionManager::Find_Partition_By_Block_Device(const string& Block_Device) {
697 std::vector<TWPartition*>::iterator iter;
698
699 for (iter = Partitions.begin(); iter != Partitions.end(); iter++) {
700 if ((*iter)->Primary_Block_Device == Block_Device || (!(*iter)->Actual_Block_Device.empty() && (*iter)->Actual_Block_Device == Block_Device))
701 return (*iter);
702 }
703 return NULL;
704}
705
Ethan Yonker53796e72019-01-11 22:49:52 -0600706int TWPartitionManager::Check_Backup_Name(const std::string& Backup_Name, bool Display_Error, bool Must_Be_Unique) {
Dees_Troyc9ff7a32012-09-27 10:09:41 -0400707 // Check the backup name to ensure that it is the correct size and contains only valid characters
708 // and that a backup with that name doesn't already exist
709 char backup_name[MAX_BACKUP_NAME_LEN];
710 char backup_loc[255], tw_image_dir[255];
711 int copy_size;
712 int index, cur_char;
Ethan Yonker53796e72019-01-11 22:49:52 -0600713 string Backup_Loc;
Dees_Troyc9ff7a32012-09-27 10:09:41 -0400714
Dees_Troyc9ff7a32012-09-27 10:09:41 -0400715 copy_size = Backup_Name.size();
716 // Check size
717 if (copy_size > MAX_BACKUP_NAME_LEN) {
718 if (Display_Error)
Ethan Yonker74db1572015-10-28 12:44:49 -0500719 gui_err("backup_name_len=Backup name is too long.");
Dees_Troyc9ff7a32012-09-27 10:09:41 -0400720 return -2;
721 }
722
723 // Check each character
724 strncpy(backup_name, Backup_Name.c_str(), copy_size);
Dees_Troya13d74f2013-03-24 08:54:55 -0500725 if (copy_size == 1 && strncmp(backup_name, "0", 1) == 0)
Dees_Troyc9ff7a32012-09-27 10:09:41 -0400726 return 0; // A "0" (zero) means to use the current timestamp for the backup name
727 for (index=0; index<copy_size; index++) {
728 cur_char = (int)backup_name[index];
Matt Mowerfb1c4ff2014-04-16 13:43:36 -0500729 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 -0400730 // These are valid characters
731 // Numbers
732 // Upper case letters
733 // Lower case letters
734 // Space
735 // and -_.{}[]
736 } else {
737 if (Display_Error)
Ethan Yonker4adc33e2016-01-22 16:07:11 -0600738 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 -0400739 return -3;
740 }
741 }
742
Ethan Yonker53796e72019-01-11 22:49:52 -0600743 if (Must_Be_Unique) {
744 // Check to make sure that a backup with this name doesn't already exist
745 DataManager::GetValue(TW_BACKUPS_FOLDER_VAR, Backup_Loc);
746 strcpy(backup_loc, Backup_Loc.c_str());
747 sprintf(tw_image_dir,"%s/%s", backup_loc, Backup_Name.c_str());
748 if (TWFunc::Path_Exists(tw_image_dir)) {
749 if (Display_Error)
750 gui_err("backup_name_exists=A backup with that name already exists!");
bigbiffce8f83c2015-12-12 18:30:21 -0500751
Ethan Yonker53796e72019-01-11 22:49:52 -0600752 return -4;
753 }
754 // Backup is unique
Dees_Troyc9ff7a32012-09-27 10:09:41 -0400755 }
Ethan Yonker53796e72019-01-11 22:49:52 -0600756 // No problems found
Dees_Troyc9ff7a32012-09-27 10:09:41 -0400757 return 0;
758}
759
bigbiffce8f83c2015-12-12 18:30:21 -0500760bool TWPartitionManager::Backup_Partition(PartitionSettings *part_settings) {
Dees_Troy43d8b002012-09-17 16:00:01 -0400761 time_t start, stop;
Matt Mower23d8aae2017-01-06 14:30:33 -0600762 int use_compression;
bigbiffce8f83c2015-12-12 18:30:21 -0500763 string backup_log = part_settings->Backup_Folder + "/recovery.log";
Dees_Troy43d8b002012-09-17 16:00:01 -0400764
bigbiffce8f83c2015-12-12 18:30:21 -0500765 if (part_settings->Part == NULL)
Dees_Troy43d8b002012-09-17 16:00:01 -0400766 return true;
767
Dees_Troy093b7642012-09-21 15:59:38 -0400768 DataManager::GetValue(TW_USE_COMPRESSION_VAR, use_compression);
Dees_Troy093b7642012-09-21 15:59:38 -0400769
Tom Hite5a926722014-09-15 01:31:03 +0000770 TWFunc::SetPerformanceMode(true);
Dees_Troy43d8b002012-09-17 16:00:01 -0400771 time(&start);
772
bigbiffce8f83c2015-12-12 18:30:21 -0500773 if (part_settings->Part->Backup(part_settings, &tar_fork_pid)) {
Ethan Yonkercd00a8b2017-07-06 10:23:30 -0500774 sync();
775 sync();
bigbiff bigbiff56cf5642016-08-19 17:43:45 -0400776 string Full_Filename = part_settings->Backup_Folder + "/" + part_settings->Part->Backup_FileName;
Ethan Yonkercd00a8b2017-07-06 10:23:30 -0500777 if (!part_settings->adbbackup && part_settings->generate_digest) {
778 if (!twrpDigestDriver::Make_Digest(Full_Filename))
779 goto backup_error;
bigbiff bigbiff56cf5642016-08-19 17:43:45 -0400780 }
bigbiff bigbiff8fd4b092016-08-30 20:48:53 -0400781
bigbiffce8f83c2015-12-12 18:30:21 -0500782 if (part_settings->Part->Has_SubPartition) {
Dees_Troy8170a922012-09-18 15:40:25 -0400783 std::vector<TWPartition*>::iterator subpart;
bigbiff bigbiff8fd4b092016-08-30 20:48:53 -0400784 TWPartition *parentPart = part_settings->Part;
Dees_Troy8170a922012-09-18 15:40:25 -0400785
786 for (subpart = Partitions.begin(); subpart != Partitions.end(); subpart++) {
bigbiff bigbiff8fd4b092016-08-30 20:48:53 -0400787 if ((*subpart)->Can_Be_Backed_Up && (*subpart)->Is_SubPartition && (*subpart)->SubPartition_Of == parentPart->Mount_Point) {
Ethan Yonkerdcf2b672016-09-13 14:41:53 -0500788 part_settings->Part = *subpart;
bigbiffce8f83c2015-12-12 18:30:21 -0500789 if (!(*subpart)->Backup(part_settings, &tar_fork_pid)) {
Ethan Yonkercd00a8b2017-07-06 10:23:30 -0500790 goto backup_error;
Tom Hite5a926722014-09-15 01:31:03 +0000791 }
Dees_Troy2727b992013-08-14 20:09:30 +0000792 sync();
793 sync();
bigbiff bigbifff5955b12019-05-18 17:28:58 -0400794 string Full_Filename = part_settings->Backup_Folder + "/" + part_settings->Part->Backup_FileName;
bigbiff bigbiff56cf5642016-08-19 17:43:45 -0400795 if (!part_settings->adbbackup && part_settings->generate_digest) {
796 if (!twrpDigestDriver::Make_Digest(Full_Filename)) {
Ethan Yonkercd00a8b2017-07-06 10:23:30 -0500797 goto backup_error;
bigbiffce8f83c2015-12-12 18:30:21 -0500798 }
Tom Hite5a926722014-09-15 01:31:03 +0000799 }
Dees_Troy8170a922012-09-18 15:40:25 -0400800 }
801 }
802 }
bigbiff bigbiff56cf5642016-08-19 17:43:45 -0400803
Dees_Troy43d8b002012-09-17 16:00:01 -0400804 time(&stop);
that203bcc92015-05-09 17:27:33 +0200805 int backup_time = (int) difftime(stop, start);
Dees_Troy2673cec2013-04-02 20:22:16 +0000806 LOGINFO("Partition Backup time: %d\n", backup_time);
bigbiff bigbiff8fd4b092016-08-30 20:48:53 -0400807
bigbiffce8f83c2015-12-12 18:30:21 -0500808 if (part_settings->Part->Backup_Method == BM_FILES) {
809 part_settings->file_time += backup_time;
Dees_Troy43d8b002012-09-17 16:00:01 -0400810 } else {
bigbiffce8f83c2015-12-12 18:30:21 -0500811 part_settings->img_time += backup_time;
812
Dees_Troy43d8b002012-09-17 16:00:01 -0400813 }
Tom Hite5a926722014-09-15 01:31:03 +0000814
Matt Mower02899552016-12-30 18:13:51 -0600815 TWFunc::SetPerformanceMode(false);
Ethan Yonkercd00a8b2017-07-06 10:23:30 -0500816 return true;
Dees_Troy43d8b002012-09-17 16:00:01 -0400817 }
Ethan Yonkercd00a8b2017-07-06 10:23:30 -0500818backup_error:
819 Clean_Backup_Folder(part_settings->Backup_Folder);
820 TWFunc::copy_file("/tmp/recovery.log", backup_log, 0644);
821 tw_set_default_metadata(backup_log.c_str());
822 TWFunc::SetPerformanceMode(false);
823 return false;
bigbiff7abc5fe2015-01-17 16:53:12 -0500824}
825
bigbiffbf1d6722015-02-14 16:25:59 -0500826void TWPartitionManager::Clean_Backup_Folder(string Backup_Folder) {
827 DIR *d = opendir(Backup_Folder.c_str());
828 struct dirent *p;
829 int r;
bigbiff bigbiff56cf5642016-08-19 17:43:45 -0400830 vector<string> ext;
831
832 //extensions we should delete when cleaning
833 ext.push_back("win");
834 ext.push_back("md5");
835 ext.push_back("sha2");
836 ext.push_back("info");
bigbiffbf1d6722015-02-14 16:25:59 -0500837
Ethan Yonker74db1572015-10-28 12:44:49 -0500838 gui_msg("backup_clean=Backup Failed. Cleaning Backup Folder.");
bigbiffbf1d6722015-02-14 16:25:59 -0500839
840 if (d == NULL) {
Ethan Yonker74db1572015-10-28 12:44:49 -0500841 gui_msg(Msg(msg::kError, "error_opening_strerr=Error opening: '{1}' ({2})")(Backup_Folder)(strerror(errno)));
bigbiffbf1d6722015-02-14 16:25:59 -0500842 return;
843 }
844
Matt Mower2b18a532015-02-20 16:58:05 -0600845 while ((p = readdir(d))) {
bigbiffbf1d6722015-02-14 16:25:59 -0500846 if (!strcmp(p->d_name, ".") || !strcmp(p->d_name, ".."))
847 continue;
848
Ethan Yonkere080c1f2016-09-19 13:50:25 -0500849 string path = Backup_Folder + "/" + p->d_name;
bigbiffbf1d6722015-02-14 16:25:59 -0500850
851 size_t dot = path.find_last_of(".") + 1;
bigbiff bigbiff56cf5642016-08-19 17:43:45 -0400852 for (vector<string>::const_iterator i = ext.begin(); i != ext.end(); ++i) {
853 if (path.substr(dot) == *i) {
854 r = unlink(path.c_str());
855 if (r != 0)
856 LOGINFO("Unable to unlink '%s: %s'\n", path.c_str(), strerror(errno));
bigbiffbf1d6722015-02-14 16:25:59 -0500857 }
858 }
859 }
860 closedir(d);
861}
862
Ethan Yonker472f5062016-02-25 13:47:30 -0600863int TWPartitionManager::Check_Backup_Cancel() {
864 return stop_backup.get_value();
865}
866
bigbiff7abc5fe2015-01-17 16:53:12 -0500867int TWPartitionManager::Cancel_Backup() {
868 string Backup_Folder, Backup_Name, Full_Backup_Path;
869
870 stop_backup.set_value(1);
871
872 if (tar_fork_pid != 0) {
873 DataManager::GetValue(TW_BACKUP_NAME, Backup_Name);
874 DataManager::GetValue(TW_BACKUPS_FOLDER_VAR, Backup_Folder);
Ethan Yonkere080c1f2016-09-19 13:50:25 -0500875 Full_Backup_Path = Backup_Folder + "/" + Backup_Name;
bigbiff7abc5fe2015-01-17 16:53:12 -0500876 LOGINFO("Killing pid: %d\n", tar_fork_pid);
877 kill(tar_fork_pid, SIGUSR2);
878 while (kill(tar_fork_pid, 0) == 0) {
879 usleep(1000);
880 }
881 LOGINFO("Backup_Run stopped and returning false, backup cancelled.\n");
882 LOGINFO("Removing directory %s\n", Full_Backup_Path.c_str());
883 TWFunc::removeDir(Full_Backup_Path, false);
884 tar_fork_pid = 0;
885 }
886
887 return 0;
Dees_Troy43d8b002012-09-17 16:00:01 -0400888}
889
bigbiffce8f83c2015-12-12 18:30:21 -0500890int TWPartitionManager::Run_Backup(bool adbbackup) {
891 PartitionSettings part_settings;
bigbiff bigbiff56cf5642016-08-19 17:43:45 -0400892 int partition_count = 0, disable_free_space_check = 0, skip_digest = 0;
bigbiffce8f83c2015-12-12 18:30:21 -0500893 string Backup_Name, Backup_List, backup_path;
Matt Mower23d8aae2017-01-06 14:30:33 -0600894 unsigned long long total_bytes = 0, free_space = 0;
Dees_Troy43d8b002012-09-17 16:00:01 -0400895 TWPartition* storage = NULL;
896 struct tm *t;
Matt Mower23d8aae2017-01-06 14:30:33 -0600897 time_t seconds, total_start, total_stop;
Dees_Troya13d74f2013-03-24 08:54:55 -0500898 size_t start_pos = 0, end_pos = 0;
bigbiff7abc5fe2015-01-17 16:53:12 -0500899 stop_backup.set_value(0);
Dees_Troy43d8b002012-09-17 16:00:01 -0400900 seconds = time(0);
Matt Mowerfb1c4ff2014-04-16 13:43:36 -0500901 t = localtime(&seconds);
Dees_Troy43d8b002012-09-17 16:00:01 -0400902
bigbiffce8f83c2015-12-12 18:30:21 -0500903 part_settings.img_bytes_remaining = 0;
904 part_settings.file_bytes_remaining = 0;
905 part_settings.img_time = 0;
906 part_settings.file_time = 0;
907 part_settings.img_bytes = 0;
908 part_settings.file_bytes = 0;
909 part_settings.PM_Method = PM_BACKUP;
910
bigbiffce8f83c2015-12-12 18:30:21 -0500911 part_settings.adbbackup = adbbackup;
Dees_Troy43d8b002012-09-17 16:00:01 -0400912 time(&total_start);
913
914 Update_System_Details();
915
916 if (!Mount_Current_Storage(true))
917 return false;
918
bigbiff bigbiff56cf5642016-08-19 17:43:45 -0400919 DataManager::GetValue(TW_SKIP_DIGEST_GENERATE_VAR, skip_digest);
920 if (skip_digest == 0)
921 part_settings.generate_digest = true;
Dees_Troyc5865ab2012-09-24 15:08:04 -0400922 else
bigbiff bigbiff56cf5642016-08-19 17:43:45 -0400923 part_settings.generate_digest = false;
Dees_Troy4a2a1262012-09-18 09:33:47 -0400924
bigbiffce8f83c2015-12-12 18:30:21 -0500925 DataManager::GetValue(TW_BACKUPS_FOLDER_VAR, part_settings.Backup_Folder);
Ethan Yonkerdcf2b672016-09-13 14:41:53 -0500926 DataManager::GetValue(TW_BACKUP_NAME, Backup_Name);
927 if (Backup_Name == gui_lookup("curr_date", "(Current Date)")) {
928 Backup_Name = TWFunc::Get_Current_Date();
929 } else if (Backup_Name == gui_lookup("auto_generate", "(Auto Generate)") || Backup_Name == "0" || Backup_Name.empty()) {
Dees Troyb21cc642013-09-10 17:36:41 +0000930 TWFunc::Auto_Generate_Backup_Name();
Ethan Yonkerdcf2b672016-09-13 14:41:53 -0500931 DataManager::GetValue(TW_BACKUP_NAME, Backup_Name);
Dees_Troy43d8b002012-09-17 16:00:01 -0400932 }
bigbiffce8f83c2015-12-12 18:30:21 -0500933
Ethan Yonkerdcf2b672016-09-13 14:41:53 -0500934 LOGINFO("Backup Name is: '%s'\n", Backup_Name.c_str());
Ethan Yonkere080c1f2016-09-19 13:50:25 -0500935 part_settings.Backup_Folder = part_settings.Backup_Folder + "/" + Backup_Name;
bigbiffce8f83c2015-12-12 18:30:21 -0500936
Ethan Yonkere080c1f2016-09-19 13:50:25 -0500937 LOGINFO("Backup_Folder is: '%s'\n", part_settings.Backup_Folder.c_str());
Dees_Troy43d8b002012-09-17 16:00:01 -0400938
Dees_Troy2673cec2013-04-02 20:22:16 +0000939 LOGINFO("Calculating backup details...\n");
Dees_Troya13d74f2013-03-24 08:54:55 -0500940 DataManager::GetValue("tw_backup_list", Backup_List);
bigbiff7ba75002020-04-11 20:47:09 -0400941 LOGINFO("Backup_List: %s\n", Backup_List.c_str());
Dees_Troya13d74f2013-03-24 08:54:55 -0500942 if (!Backup_List.empty()) {
943 end_pos = Backup_List.find(";", start_pos);
944 while (end_pos != string::npos && start_pos < Backup_List.size()) {
945 backup_path = Backup_List.substr(start_pos, end_pos - start_pos);
bigbiff7ba75002020-04-11 20:47:09 -0400946 LOGINFO("backup_path: %s\n", backup_path.c_str());
bigbiffce8f83c2015-12-12 18:30:21 -0500947 part_settings.Part = Find_Partition_By_Path(backup_path);
948 if (part_settings.Part != NULL) {
Dees_Troya13d74f2013-03-24 08:54:55 -0500949 partition_count++;
bigbiffce8f83c2015-12-12 18:30:21 -0500950 if (part_settings.Part->Backup_Method == BM_FILES)
951 part_settings.file_bytes += part_settings.Part->Backup_Size;
Dees_Troya13d74f2013-03-24 08:54:55 -0500952 else
bigbiffce8f83c2015-12-12 18:30:21 -0500953 part_settings.img_bytes += part_settings.Part->Backup_Size;
954 if (part_settings.Part->Has_SubPartition) {
Dees_Troya13d74f2013-03-24 08:54:55 -0500955 std::vector<TWPartition*>::iterator subpart;
956
957 for (subpart = Partitions.begin(); subpart != Partitions.end(); subpart++) {
bigbiffce8f83c2015-12-12 18:30:21 -0500958 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 -0500959 partition_count++;
bigbiffce8f83c2015-12-12 18:30:21 -0500960 if ((*subpart)->Backup_Method == BM_FILES)
961 part_settings.file_bytes += (*subpart)->Backup_Size;
Dees_Troya13d74f2013-03-24 08:54:55 -0500962 else
bigbiffce8f83c2015-12-12 18:30:21 -0500963 part_settings.img_bytes += (*subpart)->Backup_Size;
Dees_Troya13d74f2013-03-24 08:54:55 -0500964 }
965 }
Dees_Troy8170a922012-09-18 15:40:25 -0400966 }
Dees_Troya13d74f2013-03-24 08:54:55 -0500967 } else {
Ethan Yonker74db1572015-10-28 12:44:49 -0500968 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 -0400969 }
Dees_Troya13d74f2013-03-24 08:54:55 -0500970 start_pos = end_pos + 1;
971 end_pos = Backup_List.find(";", start_pos);
Dees_Troy43d8b002012-09-17 16:00:01 -0400972 }
973 }
Dees_Troy43d8b002012-09-17 16:00:01 -0400974
975 if (partition_count == 0) {
Ethan Yonker74db1572015-10-28 12:44:49 -0500976 gui_msg("no_partition_selected=No partitions selected for backup.");
Dees_Troy43d8b002012-09-17 16:00:01 -0400977 return false;
978 }
bigbiffce8f83c2015-12-12 18:30:21 -0500979 if (adbbackup) {
980 if (twadbbu::Write_ADB_Stream_Header(partition_count) == false) {
981 return false;
982 }
983 }
984 total_bytes = part_settings.file_bytes + part_settings.img_bytes;
Ethan Yonker472f5062016-02-25 13:47:30 -0600985 ProgressTracking progress(total_bytes);
bigbiffce8f83c2015-12-12 18:30:21 -0500986 part_settings.progress = &progress;
987
Ethan Yonker74db1572015-10-28 12:44:49 -0500988 gui_msg(Msg("total_partitions_backup= * Total number of partitions to back up: {1}")(partition_count));
989 gui_msg(Msg("total_backup_size= * Total size of all data: {1}MB")(total_bytes / 1024 / 1024));
Dees_Troy43d8b002012-09-17 16:00:01 -0400990 storage = Find_Partition_By_Path(DataManager::GetCurrentStoragePath());
991 if (storage != NULL) {
992 free_space = storage->Free;
Ethan Yonker74db1572015-10-28 12:44:49 -0500993 gui_msg(Msg("available_space= * Available space: {1}MB")(free_space / 1024 / 1024));
Dees_Troy43d8b002012-09-17 16:00:01 -0400994 } else {
Ethan Yonker74db1572015-10-28 12:44:49 -0500995 gui_err("unable_locate_storage=Unable to locate storage device.");
Dees_Troy43d8b002012-09-17 16:00:01 -0400996 return false;
997 }
bigbiffbf1d6722015-02-14 16:25:59 -0500998
Matt Mowerbfccfb82016-04-25 23:22:31 -0500999 DataManager::GetValue(TW_DISABLE_FREE_SPACE_VAR, disable_free_space_check);
bigbiffce8f83c2015-12-12 18:30:21 -05001000
1001 if (adbbackup)
1002 disable_free_space_check = true;
1003
bigbiffbf1d6722015-02-14 16:25:59 -05001004 if (!disable_free_space_check) {
1005 if (free_space - (32 * 1024 * 1024) < total_bytes) {
1006 // We require an extra 32MB just in case
Ethan Yonker74db1572015-10-28 12:44:49 -05001007 gui_err("no_space=Not enough free space on storage.");
bigbiffbf1d6722015-02-14 16:25:59 -05001008 return false;
1009 }
Dees_Troy43d8b002012-09-17 16:00:01 -04001010 }
bigbiffce8f83c2015-12-12 18:30:21 -05001011 part_settings.img_bytes_remaining = part_settings.img_bytes;
1012 part_settings.file_bytes_remaining = part_settings.file_bytes;
Dees_Troy43d8b002012-09-17 16:00:01 -04001013
Ethan Yonker74db1572015-10-28 12:44:49 -05001014 gui_msg("backup_started=[BACKUP STARTED]");
bigbiff bigbiffcdd97c72019-03-29 19:12:33 -04001015
1016 int is_decrypted = 0;
1017 int is_encrypted = 0;
1018
1019 DataManager::GetValue(TW_IS_DECRYPTED, is_decrypted);
1020 DataManager::GetValue(TW_IS_ENCRYPTED, is_encrypted);
1021 if (!adbbackup || (!is_encrypted || (is_encrypted && is_decrypted))) {
1022 gui_msg(Msg("backup_folder= * Backup Folder: {1}")(part_settings.Backup_Folder));
1023 if (!TWFunc::Recursive_Mkdir(part_settings.Backup_Folder)) {
1024 gui_err("fail_backup_folder=Failed to make backup folder.");
1025 return false;
1026 }
Dees_Troyd4b22b02013-01-18 17:17:58 +00001027 }
1028
Dees_Troy2673cec2013-04-02 20:22:16 +00001029 DataManager::SetProgress(0.0);
Dees_Troy093b7642012-09-21 15:59:38 -04001030
Dees_Troya13d74f2013-03-24 08:54:55 -05001031 start_pos = 0;
1032 end_pos = Backup_List.find(";", start_pos);
1033 while (end_pos != string::npos && start_pos < Backup_List.size()) {
bigbiff7abc5fe2015-01-17 16:53:12 -05001034 if (stop_backup.get_value() != 0)
1035 return -1;
Dees_Troya13d74f2013-03-24 08:54:55 -05001036 backup_path = Backup_List.substr(start_pos, end_pos - start_pos);
bigbiffce8f83c2015-12-12 18:30:21 -05001037 part_settings.Part = Find_Partition_By_Path(backup_path);
1038 if (part_settings.Part != NULL) {
1039 if (!Backup_Partition(&part_settings))
Dees_Troya13d74f2013-03-24 08:54:55 -05001040 return false;
1041 } else {
Ethan Yonker74db1572015-10-28 12:44:49 -05001042 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 -05001043 }
1044 start_pos = end_pos + 1;
1045 end_pos = Backup_List.find(";", start_pos);
1046 }
Dees_Troy43d8b002012-09-17 16:00:01 -04001047
1048 // Average BPS
bigbiffce8f83c2015-12-12 18:30:21 -05001049 if (part_settings.img_time == 0)
1050 part_settings.img_time = 1;
1051 if (part_settings.file_time == 0)
1052 part_settings.file_time = 1;
1053 int img_bps = (int)part_settings.img_bytes / (int)part_settings.img_time;
1054 unsigned long long file_bps = part_settings.file_bytes / (int)part_settings.file_time;
Dees_Troy43d8b002012-09-17 16:00:01 -04001055
bigbiffce8f83c2015-12-12 18:30:21 -05001056 if (part_settings.file_bytes != 0)
Ethan Yonker472f5062016-02-25 13:47:30 -06001057 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 -05001058 if (part_settings.img_bytes != 0)
Ethan Yonker472f5062016-02-25 13:47:30 -06001059 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 -04001060
1061 time(&total_stop);
1062 int total_time = (int) difftime(total_stop, total_start);
bigbiffce8f83c2015-12-12 18:30:21 -05001063
1064 uint64_t actual_backup_size;
Ethan Yonker3fdcda42016-11-30 12:29:37 -06001065 if (!adbbackup) {
1066 TWExclude twe;
1067 actual_backup_size = twe.Get_Folder_Size(part_settings.Backup_Folder);
1068 } else
bigbiffce8f83c2015-12-12 18:30:21 -05001069 actual_backup_size = part_settings.file_bytes + part_settings.img_bytes;
Matt Mowerfb1c4ff2014-04-16 13:43:36 -05001070 actual_backup_size /= (1024LLU * 1024LLU);
Dees_Troy43d8b002012-09-17 16:00:01 -04001071
bigbiffce8f83c2015-12-12 18:30:21 -05001072 int prev_img_bps = 0, use_compression = 0;
1073 unsigned long long prev_file_bps = 0;
Matt Mower173cdb92016-12-31 02:49:19 -06001074 DataManager::GetValue(TW_BACKUP_AVG_IMG_RATE, prev_img_bps);
Dees_Troy093b7642012-09-21 15:59:38 -04001075 img_bps += (prev_img_bps * 4);
Matt Mowerfb1c4ff2014-04-16 13:43:36 -05001076 img_bps /= 5;
Dees_Troy093b7642012-09-21 15:59:38 -04001077
Matt Mowerfb1c4ff2014-04-16 13:43:36 -05001078 DataManager::GetValue(TW_USE_COMPRESSION_VAR, use_compression);
Dees_Troy093b7642012-09-21 15:59:38 -04001079 if (use_compression)
1080 DataManager::GetValue(TW_BACKUP_AVG_FILE_COMP_RATE, prev_file_bps);
Matt Mowerfb1c4ff2014-04-16 13:43:36 -05001081 else
Dees_Troy093b7642012-09-21 15:59:38 -04001082 DataManager::GetValue(TW_BACKUP_AVG_FILE_RATE, prev_file_bps);
1083 file_bps += (prev_file_bps * 4);
Matt Mowerfb1c4ff2014-04-16 13:43:36 -05001084 file_bps /= 5;
Dees_Troy093b7642012-09-21 15:59:38 -04001085
Matt Mowerfb1c4ff2014-04-16 13:43:36 -05001086 DataManager::SetValue(TW_BACKUP_AVG_IMG_RATE, img_bps);
Dees_Troy093b7642012-09-21 15:59:38 -04001087 if (use_compression)
1088 DataManager::SetValue(TW_BACKUP_AVG_FILE_COMP_RATE, file_bps);
1089 else
1090 DataManager::SetValue(TW_BACKUP_AVG_FILE_RATE, file_bps);
1091
Ethan Yonker74db1572015-10-28 12:44:49 -05001092 gui_msg(Msg("total_backed_size=[{1} MB TOTAL BACKED UP]")(actual_backup_size));
Dees_Troy43d8b002012-09-17 16:00:01 -04001093 Update_System_Details();
Dees_Troyd0384ef2012-10-12 12:15:42 -04001094 UnMount_Main_Partitions();
Ethan Yonker56db1c42015-12-20 22:49:00 -06001095 gui_msg(Msg(msg::kHighlight, "backup_completed=[BACKUP COMPLETED IN {1} SECONDS]")(total_time)); // the end
Ethan Yonkere080c1f2016-09-19 13:50:25 -05001096 string backup_log = part_settings.Backup_Folder + "/recovery.log";
Dees_Troy3f5c4e82013-02-01 15:16:59 +00001097 TWFunc::copy_file("/tmp/recovery.log", backup_log, 0644);
Ethan Yonker4b94cfd2014-12-11 10:00:45 -06001098 tw_set_default_metadata(backup_log.c_str());
bigbiffce8f83c2015-12-12 18:30:21 -05001099
1100 if (part_settings.adbbackup) {
1101 if (twadbbu::Write_ADB_Stream_Trailer() == false) {
1102 return false;
1103 }
1104 }
1105 part_settings.adbbackup = false;
1106 DataManager::SetValue("tw_enable_adb_backup", 0);
1107
Dees_Troy3f5c4e82013-02-01 15:16:59 +00001108 return true;
Dees_Troy51a0e822012-09-05 15:24:24 -04001109}
1110
bigbiffce8f83c2015-12-12 18:30:21 -05001111bool TWPartitionManager::Restore_Partition(PartitionSettings *part_settings) {
Dees_Troy4a2a1262012-09-18 09:33:47 -04001112 time_t Start, Stop;
bigbiffce8f83c2015-12-12 18:30:21 -05001113
bigbiff bigbiffb5ecaad2017-03-20 18:53:53 -04001114 if (part_settings->adbbackup) {
bigbiff bigbiff19fb79c2016-09-05 21:04:51 -04001115 std::string partName = part_settings->Part->Backup_Name + "." + part_settings->Part->Current_File_System + ".win";
1116 LOGINFO("setting backup name: %s\n", partName.c_str());
bigbiff bigbiffb5ecaad2017-03-20 18:53:53 -04001117 part_settings->Part->Set_Backup_FileName(part_settings->Part->Backup_Name + "." + part_settings->Part->Current_File_System + ".win");
1118 }
1119
Tom Hite5a926722014-09-15 01:31:03 +00001120 TWFunc::SetPerformanceMode(true);
bigbiffce8f83c2015-12-12 18:30:21 -05001121
Dees_Troy4a2a1262012-09-18 09:33:47 -04001122 time(&Start);
Ethan Yonker472f5062016-02-25 13:47:30 -06001123
bigbiffce8f83c2015-12-12 18:30:21 -05001124 if (!part_settings->Part->Restore(part_settings)) {
Tom Hite5a926722014-09-15 01:31:03 +00001125 TWFunc::SetPerformanceMode(false);
Dees_Troy4a2a1262012-09-18 09:33:47 -04001126 return false;
Tom Hite5a926722014-09-15 01:31:03 +00001127 }
bigbiff bigbiff19fb79c2016-09-05 21:04:51 -04001128 if (part_settings->Part->Has_SubPartition && !part_settings->adbbackup) {
Dees_Troy8170a922012-09-18 15:40:25 -04001129 std::vector<TWPartition*>::iterator subpart;
bigbiff bigbiff8fd4b092016-08-30 20:48:53 -04001130 TWPartition *parentPart = part_settings->Part;
Dees_Troy8170a922012-09-18 15:40:25 -04001131
1132 for (subpart = Partitions.begin(); subpart != Partitions.end(); subpart++) {
bigbiff bigbiff8fd4b092016-08-30 20:48:53 -04001133 part_settings->Part = *subpart;
1134 if ((*subpart)->Is_SubPartition && (*subpart)->SubPartition_Of == parentPart->Mount_Point) {
1135 part_settings->Part = (*subpart);
bigbiff bigbiff19fb79c2016-09-05 21:04:51 -04001136 part_settings->Part->Set_Backup_FileName(part_settings->Part->Backup_Name + "." + part_settings->Part->Current_File_System + ".win");
bigbiffce8f83c2015-12-12 18:30:21 -05001137 if (!(*subpart)->Restore(part_settings)) {
Tom Hite5a926722014-09-15 01:31:03 +00001138 TWFunc::SetPerformanceMode(false);
Dees_Troy8170a922012-09-18 15:40:25 -04001139 return false;
Tom Hite5a926722014-09-15 01:31:03 +00001140 }
Dees_Troy8170a922012-09-18 15:40:25 -04001141 }
1142 }
1143 }
Dees_Troy4a2a1262012-09-18 09:33:47 -04001144 time(&Stop);
Tom Hite5a926722014-09-15 01:31:03 +00001145 TWFunc::SetPerformanceMode(false);
bigbiffce8f83c2015-12-12 18:30:21 -05001146 gui_msg(Msg("restore_part_done=[{1} done ({2} seconds)]")(part_settings->Part->Backup_Display_Name)((int)difftime(Stop, Start)));
1147
Dees_Troy4a2a1262012-09-18 09:33:47 -04001148 return true;
1149}
1150
Ethan Yonker472f5062016-02-25 13:47:30 -06001151int TWPartitionManager::Run_Restore(const string& Restore_Name) {
bigbiffce8f83c2015-12-12 18:30:21 -05001152 PartitionSettings part_settings;
bigbiff bigbiff56cf5642016-08-19 17:43:45 -04001153 int check_digest;
bigbiffce8f83c2015-12-12 18:30:21 -05001154
Dees_Troy4a2a1262012-09-18 09:33:47 -04001155 time_t rStart, rStop;
1156 time(&rStart);
Dees_Troya13d74f2013-03-24 08:54:55 -05001157 string Restore_List, restore_path;
1158 size_t start_pos = 0, end_pos;
bigbiffce8f83c2015-12-12 18:30:21 -05001159
Ethan Yonkerdcf2b672016-09-13 14:41:53 -05001160 part_settings.Backup_Folder = Restore_Name;
bigbiffce8f83c2015-12-12 18:30:21 -05001161 part_settings.Part = NULL;
1162 part_settings.partition_count = 0;
1163 part_settings.total_restore_size = 0;
1164 part_settings.adbbackup = false;
1165 part_settings.PM_Method = PM_RESTORE;
Dees_Troy43d8b002012-09-17 16:00:01 -04001166
Ethan Yonker74db1572015-10-28 12:44:49 -05001167 gui_msg("restore_started=[RESTORE STARTED]");
1168 gui_msg(Msg("restore_folder=Restore folder: '{1}'")(Restore_Name));
Dees_Troy43d8b002012-09-17 16:00:01 -04001169
Dees_Troy4a2a1262012-09-18 09:33:47 -04001170 if (!Mount_Current_Storage(true))
1171 return false;
1172
bigbiff bigbiff56cf5642016-08-19 17:43:45 -04001173 DataManager::GetValue(TW_SKIP_DIGEST_CHECK_VAR, check_digest);
1174 if (check_digest > 0) {
1175 // Check Digest files first before restoring to ensure that all of them match before starting a restore
1176 TWFunc::GUI_Operation_Text(TW_VERIFY_DIGEST_TEXT, gui_parse_text("{@verifying_digest}"));
1177 gui_msg("verifying_digest=Verifying Digest");
Dees_Troya13d74f2013-03-24 08:54:55 -05001178 } else {
bigbiff bigbiff56cf5642016-08-19 17:43:45 -04001179 gui_msg("skip_digest=Skipping Digest check based on user setting.");
Dees_Troya13d74f2013-03-24 08:54:55 -05001180 }
Ethan Yonker74db1572015-10-28 12:44:49 -05001181 gui_msg("calc_restore=Calculating restore details...");
Dees_Troya13d74f2013-03-24 08:54:55 -05001182 DataManager::GetValue("tw_restore_selected", Restore_List);
bigbiffce8f83c2015-12-12 18:30:21 -05001183
Dees_Troya13d74f2013-03-24 08:54:55 -05001184 if (!Restore_List.empty()) {
1185 end_pos = Restore_List.find(";", start_pos);
1186 while (end_pos != string::npos && start_pos < Restore_List.size()) {
1187 restore_path = Restore_List.substr(start_pos, end_pos - start_pos);
bigbiffce8f83c2015-12-12 18:30:21 -05001188 part_settings.Part = Find_Partition_By_Path(restore_path);
1189 if (part_settings.Part != NULL) {
bigbiffce8f83c2015-12-12 18:30:21 -05001190 if (part_settings.Part->Mount_Read_Only) {
1191 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 -05001192 return false;
1193 }
bigbiffce8f83c2015-12-12 18:30:21 -05001194
bigbiff bigbiff56cf5642016-08-19 17:43:45 -04001195 string Full_Filename = part_settings.Backup_Folder + "/" + part_settings.Part->Backup_FileName;
1196
bigbiff4a60bee2021-01-23 14:08:03 -05001197 if (tw_get_default_metadata(Get_Android_Root_Path().c_str()) != 0) {
1198 gui_msg(Msg(msg::kWarning, "restore_system_context=Unable to get default context for {1} -- Android may not boot.")(Get_Android_Root_Path()));
1199 }
1200
bigbiff bigbiff56cf5642016-08-19 17:43:45 -04001201 if (check_digest > 0 && !twrpDigestDriver::Check_Digest(Full_Filename))
Dees_Troya13d74f2013-03-24 08:54:55 -05001202 return false;
bigbiffce8f83c2015-12-12 18:30:21 -05001203 part_settings.partition_count++;
1204 part_settings.total_restore_size += part_settings.Part->Get_Restore_Size(&part_settings);
1205 if (part_settings.Part->Has_SubPartition) {
bigbiff bigbiff8fd4b092016-08-30 20:48:53 -04001206 TWPartition *parentPart = part_settings.Part;
Dees_Troya13d74f2013-03-24 08:54:55 -05001207 std::vector<TWPartition*>::iterator subpart;
1208
1209 for (subpart = Partitions.begin(); subpart != Partitions.end(); subpart++) {
bigbiff bigbiff8fd4b092016-08-30 20:48:53 -04001210 part_settings.Part = *subpart;
1211 if ((*subpart)->Is_SubPartition && (*subpart)->SubPartition_Of == parentPart->Mount_Point) {
bigbiff bigbiff56cf5642016-08-19 17:43:45 -04001212 if (check_digest > 0 && !twrpDigestDriver::Check_Digest(Full_Filename))
Dees_Troya13d74f2013-03-24 08:54:55 -05001213 return false;
bigbiffce8f83c2015-12-12 18:30:21 -05001214 part_settings.total_restore_size += (*subpart)->Get_Restore_Size(&part_settings);
Dees_Troya13d74f2013-03-24 08:54:55 -05001215 }
1216 }
1217 }
1218 } else {
Ethan Yonker74db1572015-10-28 12:44:49 -05001219 gui_msg(Msg(msg::kError, "restore_unable_locate=Unable to locate '{1}' partition for restoring.")(restore_path));
Dees_Troya13d74f2013-03-24 08:54:55 -05001220 }
1221 start_pos = end_pos + 1;
1222 end_pos = Restore_List.find(";", start_pos);
Dees_Troy4a2a1262012-09-18 09:33:47 -04001223 }
Dees_Troy4a2a1262012-09-18 09:33:47 -04001224 }
Dees_Troy4a2a1262012-09-18 09:33:47 -04001225
bigbiffce8f83c2015-12-12 18:30:21 -05001226 if (part_settings.partition_count == 0) {
Ethan Yonker74db1572015-10-28 12:44:49 -05001227 gui_err("no_part_restore=No partitions selected for restore.");
Dees_Troy4a2a1262012-09-18 09:33:47 -04001228 return false;
1229 }
1230
bigbiffce8f83c2015-12-12 18:30:21 -05001231 gui_msg(Msg("restore_part_count=Restoring {1} partitions...")(part_settings.partition_count));
1232 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 +00001233 DataManager::SetProgress(0.0);
bigbiffce8f83c2015-12-12 18:30:21 -05001234 ProgressTracking progress(part_settings.total_restore_size);
1235 part_settings.progress = &progress;
Ethan Yonker1b7a31b2014-07-03 15:09:22 -05001236
Dees_Troya13d74f2013-03-24 08:54:55 -05001237 start_pos = 0;
1238 if (!Restore_List.empty()) {
1239 end_pos = Restore_List.find(";", start_pos);
1240 while (end_pos != string::npos && start_pos < Restore_List.size()) {
1241 restore_path = Restore_List.substr(start_pos, end_pos - start_pos);
bigbiffce8f83c2015-12-12 18:30:21 -05001242
1243 part_settings.Part = Find_Partition_By_Path(restore_path);
1244 if (part_settings.Part != NULL) {
1245 part_settings.partition_count++;
bigbiffce8f83c2015-12-12 18:30:21 -05001246 if (!Restore_Partition(&part_settings))
Dees_Troya13d74f2013-03-24 08:54:55 -05001247 return false;
1248 } else {
Ethan Yonker74db1572015-10-28 12:44:49 -05001249 gui_msg(Msg(msg::kError, "restore_unable_locate=Unable to locate '{1}' partition for restoring.")(restore_path));
Dees_Troya13d74f2013-03-24 08:54:55 -05001250 }
1251 start_pos = end_pos + 1;
1252 end_pos = Restore_List.find(";", start_pos);
1253 }
1254 }
Ethan Yonker74db1572015-10-28 12:44:49 -05001255 TWFunc::GUI_Operation_Text(TW_UPDATE_SYSTEM_DETAILS_TEXT, gui_parse_text("{@updating_system_details}"));
bigbiff4a60bee2021-01-23 14:08:03 -05001256 tw_set_default_metadata(Get_Android_Root_Path().c_str());
Captain Throwback9d6feb52018-07-27 10:05:24 -04001257 UnMount_By_Path(Get_Android_Root_Path(), false);
Dees_Troy43d8b002012-09-17 16:00:01 -04001258 Update_System_Details();
Dees_Troyd0384ef2012-10-12 12:15:42 -04001259 UnMount_Main_Partitions();
Dees_Troy4a2a1262012-09-18 09:33:47 -04001260 time(&rStop);
Matt Mower3c366972015-12-25 19:28:31 -06001261 gui_msg(Msg(msg::kHighlight, "restore_completed=[RESTORE COMPLETED IN {1} SECONDS]")((int)difftime(rStop,rStart)));
Ethan Yonker1b7a31b2014-07-03 15:09:22 -05001262 DataManager::SetValue("tw_file_progress", "");
bigbiffce8f83c2015-12-12 18:30:21 -05001263
Dees_Troy63c8df72012-09-10 14:02:05 -04001264 return true;
Dees_Troy51a0e822012-09-05 15:24:24 -04001265}
1266
1267void TWPartitionManager::Set_Restore_Files(string Restore_Name) {
Dees_Troy63c8df72012-09-10 14:02:05 -04001268 // Start with the default values
Dees_Troya13d74f2013-03-24 08:54:55 -05001269 string Restore_List;
Dees_Troy83bd4832013-05-04 12:39:56 +00001270 bool get_date = true, check_encryption = true;
bigbiff bigbiff19fb79c2016-09-05 21:04:51 -04001271 bool adbbackup = false;
Dees_Troy83bd4832013-05-04 12:39:56 +00001272
1273 DataManager::SetValue("tw_restore_encrypted", 0);
bigbiff bigbiff19fb79c2016-09-05 21:04:51 -04001274 if (twadbbu::Check_ADB_Backup_File(Restore_Name)) {
1275 vector<string> adb_files;
1276 adb_files = twadbbu::Get_ADB_Backup_Files(Restore_Name);
1277 for (unsigned int i = 0; i < adb_files.size(); ++i) {
1278 string adb_restore_file = adb_files.at(i);
1279 std::size_t pos = adb_restore_file.find_first_of(".");
1280 std::string path = "/" + adb_restore_file.substr(0, pos);
1281 Restore_List = path + ";";
1282 TWPartition* Part = Find_Partition_By_Path(path);
1283 Part->Backup_FileName = TWFunc::Get_Filename(adb_restore_file);
1284 adbbackup = true;
1285 }
1286 DataManager::SetValue("tw_enable_adb_backup", 1);
Dees_Troy63c8df72012-09-10 14:02:05 -04001287 }
bigbiff bigbiff19fb79c2016-09-05 21:04:51 -04001288 else {
1289 DIR* d;
1290 d = opendir(Restore_Name.c_str());
1291 if (d == NULL)
Dees_Troy63c8df72012-09-10 14:02:05 -04001292 {
bigbiff bigbiff19fb79c2016-09-05 21:04:51 -04001293 gui_msg(Msg(msg::kError, "error_opening_strerr=Error opening: '{1}' ({2})")(Restore_Name)(strerror(errno)));
1294 return;
Dees_Troy63c8df72012-09-10 14:02:05 -04001295 }
bigbiff bigbiff19fb79c2016-09-05 21:04:51 -04001296
1297 struct dirent* de;
1298 while ((de = readdir(d)) != NULL)
Dees_Troy63c8df72012-09-10 14:02:05 -04001299 {
bigbiff bigbiff19fb79c2016-09-05 21:04:51 -04001300 // Strip off three components
1301 char str[256];
1302 char* label;
1303 char* fstype = NULL;
1304 char* extn = NULL;
1305 char* ptr;
Dees_Troy63c8df72012-09-10 14:02:05 -04001306
bigbiff bigbiff19fb79c2016-09-05 21:04:51 -04001307 strcpy(str, de->d_name);
1308 if (strlen(str) <= 2)
1309 continue;
Dees_Troy83bd4832013-05-04 12:39:56 +00001310
bigbiff bigbiff19fb79c2016-09-05 21:04:51 -04001311 if (get_date) {
1312 char file_path[255];
1313 struct stat st;
1314
1315 strcpy(file_path, Restore_Name.c_str());
1316 strcat(file_path, "/");
1317 strcat(file_path, str);
1318 stat(file_path, &st);
1319 string backup_date = ctime((const time_t*)(&st.st_mtime));
1320 DataManager::SetValue(TW_RESTORE_FILE_DATE, backup_date);
1321 get_date = false;
Dees_Troy83bd4832013-05-04 12:39:56 +00001322 }
Dees_Troy63c8df72012-09-10 14:02:05 -04001323
bigbiff bigbiff19fb79c2016-09-05 21:04:51 -04001324 label = str;
1325 ptr = label;
1326 while (*ptr && *ptr != '.') ptr++;
1327 if (*ptr == '.')
1328 {
1329 *ptr = 0x00;
1330 ptr++;
1331 fstype = ptr;
1332 }
1333 while (*ptr && *ptr != '.') ptr++;
1334 if (*ptr == '.')
1335 {
1336 *ptr = 0x00;
1337 ptr++;
1338 extn = ptr;
1339 }
Dees_Troy63c8df72012-09-10 14:02:05 -04001340
bigbiff bigbiff19fb79c2016-09-05 21:04:51 -04001341 if (fstype == NULL || extn == NULL || strcmp(fstype, "log") == 0) continue;
1342 int extnlength = strlen(extn);
1343 if (extnlength != 3 && extnlength != 6) continue;
1344 if (extnlength >= 3 && strncmp(extn, "win", 3) != 0) continue;
1345 //if (extnlength == 6 && strncmp(extn, "win000", 6) != 0) continue;
Dees_Troy63c8df72012-09-10 14:02:05 -04001346
bigbiff bigbiff19fb79c2016-09-05 21:04:51 -04001347 if (check_encryption) {
1348 string filename = Restore_Name + "/";
1349 filename += de->d_name;
1350 if (TWFunc::Get_File_Type(filename) == 2) {
1351 LOGINFO("'%s' is encrypted\n", filename.c_str());
1352 DataManager::SetValue("tw_restore_encrypted", 1);
1353 }
1354 }
1355 if (extnlength == 6 && strncmp(extn, "win000", 6) != 0) continue;
1356
1357 TWPartition* Part = Find_Partition_By_Path(label);
1358 if (Part == NULL)
1359 {
1360 gui_msg(Msg(msg::kError, "unable_locate_part_backup_name=Unable to locate partition by backup name: '{1}'")(label));
1361 continue;
1362 }
1363
1364 Part->Backup_FileName = de->d_name;
1365 if (strlen(extn) > 3) {
1366 Part->Backup_FileName.resize(Part->Backup_FileName.size() - strlen(extn) + 3);
1367 }
1368
dianlujitaob76a73a2020-04-30 20:33:20 +08001369 if (!Part->Is_SubPartition) {
1370 if (Part->Backup_Path == Get_Android_Root_Path())
1371 Restore_List += "/system;";
1372 else
1373 Restore_List += Part->Backup_Path + ";";
1374 }
bigbiff bigbiff19fb79c2016-09-05 21:04:51 -04001375 }
1376 closedir(d);
Dees_Troy63c8df72012-09-10 14:02:05 -04001377 }
bigbiff bigbiff19fb79c2016-09-05 21:04:51 -04001378
1379 if (adbbackup) {
1380 Restore_List = "ADB_Backup;";
1381 adbbackup = false;
1382 }
Dees_Troy63c8df72012-09-10 14:02:05 -04001383
Dees_Troya13d74f2013-03-24 08:54:55 -05001384 // Set the final value
1385 DataManager::SetValue("tw_restore_list", Restore_List);
1386 DataManager::SetValue("tw_restore_selected", Restore_List);
Dees_Troy51a0e822012-09-05 15:24:24 -04001387 return;
1388}
1389
1390int TWPartitionManager::Wipe_By_Path(string Path) {
Dees_Troy63c8df72012-09-10 14:02:05 -04001391 std::vector<TWPartition*>::iterator iter;
Mohd Farazfdd49bb2020-04-21 18:56:44 +05301392 std::vector < TWPartition * >::iterator iter1;
Dees_Troy63c8df72012-09-10 14:02:05 -04001393 int ret = false;
1394 bool found = false;
Dees_Troy38bd7602012-09-14 13:33:53 -04001395 string Local_Path = TWFunc::Get_Root_Path(Path);
Dees_Troy63c8df72012-09-10 14:02:05 -04001396
dianlujitaob76a73a2020-04-30 20:33:20 +08001397 if (Local_Path == "/system")
1398 Local_Path = Get_Android_Root_Path();
bigbiffaed1bdf2021-08-03 18:21:39 -04001399 if (Path == "/cache") {
1400 TWPartition* cache = Find_Partition_By_Path("/cache");
1401 if (cache == nullptr) {
1402 TWPartition* dat = Find_Partition_By_Path("/data");
1403 if (dat) {
1404 dat->Wipe_Data_Cache();
1405 found = true;
1406 }
1407 }
1408 }
Dees_Troy63c8df72012-09-10 14:02:05 -04001409 // Iterate through all partitions
1410 for (iter = Partitions.begin(); iter != Partitions.end(); iter++) {
Dees_Troy657c3092012-09-10 20:32:10 -04001411 if ((*iter)->Mount_Point == Local_Path || (!(*iter)->Symlink_Mount_Point.empty() && (*iter)->Symlink_Mount_Point == Local_Path)) {
Mohd Farazfdd49bb2020-04-21 18:56:44 +05301412 // iterate through all partitions since some legacy devices uses other partitions as vendor causes issues while wiping
1413 (*iter)->Find_Actual_Block_Device();
1414 for (iter1 = Partitions.begin (); iter1 != Partitions.end (); iter1++)
1415 {
1416 (*iter1)->Find_Actual_Block_Device();
1417 if ((*iter)->Actual_Block_Device == (*iter1)->Actual_Block_Device && (*iter)->Mount_Point != (*iter1)->Mount_Point)
1418 (*iter1)->UnMount(false);
1419 }
Dees_Troye58d5262012-09-21 12:27:57 -04001420 if (Path == "/and-sec")
1421 ret = (*iter)->Wipe_AndSec();
1422 else
1423 ret = (*iter)->Wipe();
Dees_Troy63c8df72012-09-10 14:02:05 -04001424 found = true;
1425 } else if ((*iter)->Is_SubPartition && (*iter)->SubPartition_Of == Local_Path) {
1426 (*iter)->Wipe();
1427 }
1428 }
1429 if (found) {
1430 return ret;
1431 } else
Ethan Yonker74db1572015-10-28 12:44:49 -05001432 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 -04001433 return false;
Dees_Troy51a0e822012-09-05 15:24:24 -04001434}
1435
Ethan Yonker87c7bac2014-05-25 21:41:08 -05001436int TWPartitionManager::Wipe_By_Path(string Path, string New_File_System) {
1437 std::vector<TWPartition*>::iterator iter;
1438 int ret = false;
1439 bool found = false;
1440 string Local_Path = TWFunc::Get_Root_Path(Path);
1441
1442 // Iterate through all partitions
1443 for (iter = Partitions.begin(); iter != Partitions.end(); iter++) {
1444 if ((*iter)->Mount_Point == Local_Path || (!(*iter)->Symlink_Mount_Point.empty() && (*iter)->Symlink_Mount_Point == Local_Path)) {
1445 if (Path == "/and-sec")
1446 ret = (*iter)->Wipe_AndSec();
1447 else
1448 ret = (*iter)->Wipe(New_File_System);
1449 found = true;
1450 } else if ((*iter)->Is_SubPartition && (*iter)->SubPartition_Of == Local_Path) {
1451 (*iter)->Wipe(New_File_System);
1452 }
1453 }
1454 if (found) {
1455 return ret;
1456 } else
Ethan Yonker74db1572015-10-28 12:44:49 -05001457 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 -05001458 return false;
1459}
1460
Dees_Troy51a0e822012-09-05 15:24:24 -04001461int TWPartitionManager::Factory_Reset(void) {
Dees_Troy63c8df72012-09-10 14:02:05 -04001462 std::vector<TWPartition*>::iterator iter;
1463 int ret = true;
1464
1465 for (iter = Partitions.begin(); iter != Partitions.end(); iter++) {
Dees_Troy38bd7602012-09-14 13:33:53 -04001466 if ((*iter)->Wipe_During_Factory_Reset && (*iter)->Is_Present) {
Ethan Yonker89583ef2015-08-26 09:01:59 -05001467#ifdef TW_OEM_BUILD
1468 if ((*iter)->Mount_Point == "/data") {
1469 if (!(*iter)->Wipe_Encryption())
1470 ret = false;
1471 } else {
1472#endif
1473 if (!(*iter)->Wipe())
1474 ret = false;
1475#ifdef TW_OEM_BUILD
1476 }
1477#endif
Dees_Troy094207a2012-09-26 12:00:39 -04001478 } else if ((*iter)->Has_Android_Secure) {
1479 if (!(*iter)->Wipe_AndSec())
1480 ret = false;
Dees_Troy63c8df72012-09-10 14:02:05 -04001481 }
1482 }
bigbiffad58e1b2020-07-06 20:24:34 -04001483 TWFunc::check_and_run_script("/system/bin/factoryreset.sh", "Factory Reset Script");
Dees_Troy63c8df72012-09-10 14:02:05 -04001484 return ret;
Dees_Troy51a0e822012-09-05 15:24:24 -04001485}
1486
Dees_Troy38bd7602012-09-14 13:33:53 -04001487int TWPartitionManager::Wipe_Dalvik_Cache(void) {
1488 struct stat st;
bigbiff bigbiff9c754052013-01-09 09:09:08 -05001489 vector <string> dir;
Dees_Troy38bd7602012-09-14 13:33:53 -04001490
1491 if (!Mount_By_Path("/data", true))
1492 return false;
1493
bigbiff bigbiff9c754052013-01-09 09:09:08 -05001494 dir.push_back("/data/dalvik-cache");
bigbiff bigbiff19874f12019-01-08 20:06:57 -05001495
bigbiff25d25b92020-06-19 16:07:38 -04001496 std::string cacheDir = TWFunc::get_log_dir();
1497 if (cacheDir == CACHE_LOGS_DIR) {
1498 if (!PartitionManager.Mount_By_Path(CACHE_LOGS_DIR, false)) {
1499 LOGINFO("Unable to mount %s for wiping cache.\n", CACHE_LOGS_DIR);
bigbiff bigbiff19874f12019-01-08 20:06:57 -05001500 }
1501 dir.push_back(cacheDir + "dalvik-cache");
1502 dir.push_back(cacheDir + "/dc");
bigbiff bigbiff9c754052013-01-09 09:09:08 -05001503 }
Ethan Yonkerff2b7882016-12-10 09:04:41 -06001504
Dees_Troy38bd7602012-09-14 13:33:53 -04001505 TWPartition* sdext = Find_Partition_By_Path("/sd-ext");
Vojtech Bocekfafb0c52013-07-25 22:53:02 +02001506 if (sdext && sdext->Is_Present && sdext->Mount(false))
1507 {
1508 if (stat("/sd-ext/dalvik-cache", &st) == 0)
1509 {
Ethan Yonkerff2b7882016-12-10 09:04:41 -06001510 dir.push_back("/sd-ext/dalvik-cache");
1511 }
1512 }
1513
bigbiff25d25b92020-06-19 16:07:38 -04001514 if (cacheDir == CACHE_LOGS_DIR) {
bigbiff bigbiff19874f12019-01-08 20:06:57 -05001515 gui_msg("wiping_cache_dalvik=Wiping Dalvik Cache Directories...");
1516 } else {
1517 gui_msg("wiping_dalvik=Wiping Dalvik Directory...");
1518 }
Ethan Yonkerff2b7882016-12-10 09:04:41 -06001519 for (unsigned i = 0; i < dir.size(); ++i) {
1520 if (stat(dir.at(i).c_str(), &st) == 0) {
1521 TWFunc::removeDir(dir.at(i), false);
1522 gui_msg(Msg("cleaned=Cleaned: {1}...")(dir.at(i)));
bigbiff bigbiff9c754052013-01-09 09:09:08 -05001523 }
Vojtech Bocekfafb0c52013-07-25 22:53:02 +02001524 }
bigbiff bigbiff19874f12019-01-08 20:06:57 -05001525
bigbiff25d25b92020-06-19 16:07:38 -04001526 if (cacheDir == CACHE_LOGS_DIR) {
bigbiff bigbiff19874f12019-01-08 20:06:57 -05001527 gui_msg("cache_dalvik_done=-- Dalvik Cache Directories Wipe Complete!");
1528 } else {
1529 gui_msg("dalvik_done=-- Dalvik Directory Wipe Complete!");
1530 }
1531
Dees_Troy38bd7602012-09-14 13:33:53 -04001532 return true;
1533}
1534
1535int TWPartitionManager::Wipe_Rotate_Data(void) {
1536 if (!Mount_By_Path("/data", true))
1537 return false;
1538
bigbiff bigbiff9c754052013-01-09 09:09:08 -05001539 unlink("/data/misc/akmd*");
1540 unlink("/data/misc/rild*");
Dees_Troy2673cec2013-04-02 20:22:16 +00001541 gui_print("Rotation data wiped.\n");
Dees_Troy38bd7602012-09-14 13:33:53 -04001542 return true;
1543}
1544
1545int TWPartitionManager::Wipe_Battery_Stats(void) {
1546 struct stat st;
1547
1548 if (!Mount_By_Path("/data", true))
1549 return false;
1550
1551 if (0 != stat("/data/system/batterystats.bin", &st)) {
Dees_Troy2673cec2013-04-02 20:22:16 +00001552 gui_print("No Battery Stats Found. No Need To Wipe.\n");
Dees_Troy38bd7602012-09-14 13:33:53 -04001553 } else {
1554 remove("/data/system/batterystats.bin");
Dees_Troy2673cec2013-04-02 20:22:16 +00001555 gui_print("Cleared battery stats.\n");
Dees_Troy38bd7602012-09-14 13:33:53 -04001556 }
1557 return true;
1558}
1559
Dees_Troy2ff5a8d2012-09-26 14:53:02 -04001560int TWPartitionManager::Wipe_Android_Secure(void) {
1561 std::vector<TWPartition*>::iterator iter;
1562 int ret = false;
1563 bool found = false;
1564
1565 // Iterate through all partitions
1566 for (iter = Partitions.begin(); iter != Partitions.end(); iter++) {
1567 if ((*iter)->Has_Android_Secure) {
1568 ret = (*iter)->Wipe_AndSec();
1569 found = true;
1570 }
1571 }
1572 if (found) {
1573 return ret;
1574 } else {
Ethan Yonker74db1572015-10-28 12:44:49 -05001575 gui_err("no_andsec=No android secure partitions found.");
Dees_Troy2ff5a8d2012-09-26 14:53:02 -04001576 }
1577 return false;
1578}
1579
Dees_Troy38bd7602012-09-14 13:33:53 -04001580int TWPartitionManager::Format_Data(void) {
1581 TWPartition* dat = Find_Partition_By_Path("/data");
bigbiffcfa875c2021-06-20 16:20:27 -04001582 TWPartition* metadata = Find_Partition_By_Path("/metadata");
1583 if (metadata != NULL)
1584 metadata->UnMount(false);
Dees_Troy38bd7602012-09-14 13:33:53 -04001585
1586 if (dat != NULL) {
bigbiffcfa875c2021-06-20 16:20:27 -04001587 if (android::base::GetBoolProperty("ro.virtual_ab.enabled", true)) {
1588#ifndef TW_EXCLUDE_APEX
1589 twrpApex apex;
1590 apex.Unmount();
1591#endif
1592 if (metadata != NULL)
1593 metadata->Mount(true);
1594 if (!dat->Check_Pending_Merges())
1595 return false;
1596 }
Dees_Troy38bd7602012-09-14 13:33:53 -04001597 return dat->Wipe_Encryption();
1598 } else {
Matt Mower3c366972015-12-25 19:28:31 -06001599 gui_msg(Msg(msg::kError, "unable_to_locate=Unable to locate {1}.")("/data"));
Dees_Troy38bd7602012-09-14 13:33:53 -04001600 return false;
1601 }
1602 return false;
1603}
1604
1605int TWPartitionManager::Wipe_Media_From_Data(void) {
1606 TWPartition* dat = Find_Partition_By_Path("/data");
1607
1608 if (dat != NULL) {
1609 if (!dat->Has_Data_Media) {
Dees_Troy2673cec2013-04-02 20:22:16 +00001610 LOGERR("This device does not have /data/media\n");
Dees_Troy38bd7602012-09-14 13:33:53 -04001611 return false;
1612 }
1613 if (!dat->Mount(true))
1614 return false;
1615
Ethan Yonker74db1572015-10-28 12:44:49 -05001616 gui_msg("wiping_datamedia=Wiping internal storage -- /data/media...");
Ethan Yonker726a0202014-12-16 20:01:38 -06001617 Remove_MTP_Storage(dat->MTP_Storage_ID);
bigbiff bigbiff9c754052013-01-09 09:09:08 -05001618 TWFunc::removeDir("/data/media", false);
xiaolu9416f4f2015-06-04 08:22:23 +08001619 dat->Recreate_Media_Folder();
Ethan Yonker726a0202014-12-16 20:01:38 -06001620 Add_MTP_Storage(dat->MTP_Storage_ID);
Dees_Troy38bd7602012-09-14 13:33:53 -04001621 return true;
1622 } else {
Matt Mower3c366972015-12-25 19:28:31 -06001623 gui_msg(Msg(msg::kError, "unable_to_locate=Unable to locate {1}.")("/data"));
Dees_Troy38bd7602012-09-14 13:33:53 -04001624 return false;
1625 }
1626 return false;
1627}
1628
Ethan Yonker87c7bac2014-05-25 21:41:08 -05001629int TWPartitionManager::Repair_By_Path(string Path, bool Display_Error) {
1630 std::vector<TWPartition*>::iterator iter;
1631 int ret = false;
1632 bool found = false;
1633 string Local_Path = TWFunc::Get_Root_Path(Path);
1634
1635 if (Local_Path == "/tmp" || Local_Path == "/")
1636 return true;
1637
1638 // Iterate through all partitions
1639 for (iter = Partitions.begin(); iter != Partitions.end(); iter++) {
1640 if ((*iter)->Mount_Point == Local_Path || (!(*iter)->Symlink_Mount_Point.empty() && (*iter)->Symlink_Mount_Point == Local_Path)) {
1641 ret = (*iter)->Repair();
1642 found = true;
1643 } else if ((*iter)->Is_SubPartition && (*iter)->SubPartition_Of == Local_Path) {
1644 (*iter)->Repair();
1645 }
1646 }
1647 if (found) {
1648 return ret;
1649 } else if (Display_Error) {
Ethan Yonker74db1572015-10-28 12:44:49 -05001650 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 -05001651 } else {
1652 LOGINFO("Repair: Unable to find partition for path '%s'\n", Local_Path.c_str());
1653 }
1654 return false;
1655}
1656
Ethan Yonkera2719152015-05-28 09:44:41 -05001657int TWPartitionManager::Resize_By_Path(string Path, bool Display_Error) {
1658 std::vector<TWPartition*>::iterator iter;
1659 int ret = false;
1660 bool found = false;
1661 string Local_Path = TWFunc::Get_Root_Path(Path);
1662