blob: 8d1b6c43ef909c20178b7f07b5126265dc25b982 [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
dianlujitaob20dfaa2021-12-16 16:56:26 +0800113#include <android/hardware/boot/1.0/IBootControl.h>
114using android::hardware::boot::V1_0::CommandResult;
115using android::hardware::boot::V1_0::IBootControl;
Ethan Yonker1b190162016-12-05 15:25:19 -0600116#endif
117
bigbiffcfa875c2021-06-20 16:20:27 -0400118using android::fs_mgr::DestroyLogicalPartition;
bigbiffee7b7ff2020-03-23 15:08:27 -0400119using android::fs_mgr::Fstab;
120using android::fs_mgr::FstabEntry;
bigbiffcfa875c2021-06-20 16:20:27 -0400121using android::fs_mgr::MetadataBuilder;
Ethan Yonker6277c792014-09-15 14:54:30 -0500122
bigbiffee7b7ff2020-03-23 15:08:27 -0400123extern bool datamedia;
Noah Jacobson81d638d2019-04-28 00:10:07 -0400124std::vector<users_struct> Users_List;
125
bigbiff bigbiff34684ff2013-12-01 21:03:45 -0500126TWPartitionManager::TWPartitionManager(void) {
bigbiff bigbiffc7eee6f2014-09-02 18:59:01 -0400127 mtp_was_enabled = false;
Ethan Yonker726a0202014-12-16 20:01:38 -0600128 mtp_write_fd = -1;
Ethan Yonker6e8c27a2016-12-22 17:55:57 -0600129 uevent_pfd.fd = -1;
bigbiff7abc5fe2015-01-17 16:53:12 -0500130 stop_backup.set_value(0);
Ethan Yonker1b190162016-12-05 15:25:19 -0600131#ifdef AB_OTA_UPDATER
132 char slot_suffix[PROPERTY_VALUE_MAX];
Ethan Yonkerfefe5912017-09-30 22:22:13 -0500133 property_get("ro.boot.slot_suffix", slot_suffix, "error");
134 if (strcmp(slot_suffix, "error") == 0)
135 property_get("ro.boot.slot", slot_suffix, "error");
Ethan Yonker1b190162016-12-05 15:25:19 -0600136 Active_Slot_Display = "";
Ethan Yonkerfefe5912017-09-30 22:22:13 -0500137 if (strcmp(slot_suffix, "_a") == 0 || strcmp(slot_suffix, "a") == 0)
Ethan Yonker1b190162016-12-05 15:25:19 -0600138 Set_Active_Slot("A");
139 else
140 Set_Active_Slot("B");
141#endif
bigbiff bigbiff34684ff2013-12-01 21:03:45 -0500142}
143
Captain Throwback37c3aef2021-10-06 11:38:18 -0400144void TWPartitionManager::Set_Crypto_State() {
145 char crypto_state[PROPERTY_VALUE_MAX];
146 property_get("ro.crypto.state", crypto_state, "error");
147 if (strcmp(crypto_state, "error") == 0)
148 property_set("ro.crypto.state", "encrypted");
149}
150
151int TWPartitionManager::Set_Crypto_Type(const char* crypto_type) {
152 char type_prop[PROPERTY_VALUE_MAX];
153 property_get("ro.crypto.type", type_prop, "error");
154 if (strcmp(type_prop, "error") == 0)
155 property_set("ro.crypto.type", crypto_type);
Captain Throwback18aea272020-10-29 12:43:17 -0400156 // Sleep for a bit so that services can start if needed
157 sleep(1);
158 return 0;
159}
160
bigbiff22851b92021-09-01 16:46:57 -0400161int TWPartitionManager::Process_Fstab(string Fstab_Filename, bool Display_Error, bool recovery_mode) {
Dees_Troy5bf43922012-09-07 16:07:55 -0400162 FILE *fstabFile;
163 char fstab_line[MAX_FSTAB_LINE_LENGTH];
Ethan Yonker6e8c27a2016-12-22 17:55:57 -0600164 std::map<string, Flags_Map> twrp_flags;
165
166 fstabFile = fopen("/etc/twrp.flags", "rt");
167 if (fstabFile != NULL) {
Ian Macdonald160e8d32020-09-29 20:47:31 +0200168 LOGINFO("Reading /etc/twrp.flags\n");
Ethan Yonker6e8c27a2016-12-22 17:55:57 -0600169 while (fgets(fstab_line, sizeof(fstab_line), fstabFile) != NULL) {
Ethan Yonker6e8c27a2016-12-22 17:55:57 -0600170 size_t line_size = strlen(fstab_line);
171 if (fstab_line[line_size - 1] != '\n')
172 fstab_line[line_size] = '\n';
173 Flags_Map line_flags;
174 line_flags.Primary_Block_Device = "";
175 line_flags.Alternate_Block_Device = "";
176 line_flags.fstab_line = (char*)malloc(MAX_FSTAB_LINE_LENGTH);
177 if (!line_flags.fstab_line) {
178 LOGERR("malloc error on line_flags.fstab_line\n");
179 return false;
180 }
181 memcpy(line_flags.fstab_line, fstab_line, MAX_FSTAB_LINE_LENGTH);
182 bool found_separator = false;
183 char *fs_loc = NULL;
184 char *block_loc = NULL;
185 char *flags_loc = NULL;
186 size_t index, item_index = 0;
187 for (index = 0; index < line_size; index++) {
188 if (fstab_line[index] <= 32) {
189 fstab_line[index] = '\0';
190 found_separator = true;
191 } else if (found_separator) {
192 if (item_index == 0) {
193 fs_loc = fstab_line + index;
194 } else if (item_index == 1) {
195 block_loc = fstab_line + index;
196 } else if (item_index > 1) {
197 char *ptr = fstab_line + index;
198 if (*ptr == '/') {
199 line_flags.Alternate_Block_Device = ptr;
200 } else if (strlen(ptr) > strlen("flags=") && strncmp(ptr, "flags=", strlen("flags=")) == 0) {
201 flags_loc = ptr;
202 // Once we find the flags=, we're done scanning the line
203 break;
204 }
205 }
206 found_separator = false;
207 item_index++;
208 }
209 }
210 if (block_loc)
211 line_flags.Primary_Block_Device = block_loc;
212 if (fs_loc)
213 line_flags.File_System = fs_loc;
214 if (flags_loc)
215 line_flags.Flags = flags_loc;
216 string Mount_Point = fstab_line;
217 twrp_flags[Mount_Point] = line_flags;
218 memset(fstab_line, 0, sizeof(fstab_line));
219 }
220 fclose(fstabFile);
221 }
Dees_Troy5bf43922012-09-07 16:07:55 -0400222
223 fstabFile = fopen(Fstab_Filename.c_str(), "rt");
224 if (fstabFile == NULL) {
Dees_Troy2673cec2013-04-02 20:22:16 +0000225 LOGERR("Critical Error: Unable to open fstab at '%s'.\n", Fstab_Filename.c_str());
Dees_Troy5bf43922012-09-07 16:07:55 -0400226 return false;
Ethan Yonker6e8c27a2016-12-22 17:55:57 -0600227 } else
228 LOGINFO("Reading %s\n", Fstab_Filename.c_str());
Dees_Troy5bf43922012-09-07 16:07:55 -0400229
230 while (fgets(fstab_line, sizeof(fstab_line), fstabFile) != NULL) {
Ethan Yonker6e8c27a2016-12-22 17:55:57 -0600231 if (strstr(fstab_line, "swap"))
232 continue; // Skip swap in recovery
233
bigbiff998f8392021-08-06 19:19:33 -0400234 if (fstab_line[0] == '#')
235 continue;
236
Ethan Yonker6e8c27a2016-12-22 17:55:57 -0600237 size_t line_size = strlen(fstab_line);
238 if (fstab_line[line_size - 1] != '\n')
239 fstab_line[line_size] = '\n';
Dees_Troy2a923582012-09-20 12:13:34 -0400240
Matt Mower2b2dd152016-04-26 11:24:08 -0500241 TWPartition* partition = new TWPartition();
bigbiff8da46fa2020-09-08 16:42:34 -0400242 if (partition->Process_Fstab_Line(fstab_line, Display_Error, &twrp_flags))
Ethan Yonkerc05c5982014-03-13 09:19:56 -0500243 Partitions.push_back(partition);
Matt Mower72c87ce2016-04-26 14:34:56 -0500244 else
Dees_Troy5bf43922012-09-07 16:07:55 -0400245 delete partition;
Matt Mower2b2dd152016-04-26 11:24:08 -0500246
247 memset(fstab_line, 0, sizeof(fstab_line));
Dees_Troy5bf43922012-09-07 16:07:55 -0400248 }
249 fclose(fstabFile);
Matt Mower72c87ce2016-04-26 14:34:56 -0500250
Ethan Yonker6e8c27a2016-12-22 17:55:57 -0600251 if (twrp_flags.size() > 0) {
252 LOGINFO("Processing remaining twrp.flags\n");
253 // Add any items from twrp.flags that did not exist in the recovery.fstab
254 for (std::map<string, Flags_Map>::iterator mapit=twrp_flags.begin(); mapit!=twrp_flags.end(); mapit++) {
255 if (Find_Partition_By_Path(mapit->first) == NULL) {
256 TWPartition* partition = new TWPartition();
bigbiff8da46fa2020-09-08 16:42:34 -0400257 if (partition->Process_Fstab_Line(mapit->second.fstab_line, Display_Error, NULL))
Ethan Yonker6e8c27a2016-12-22 17:55:57 -0600258 Partitions.push_back(partition);
259 else
260 delete partition;
261 }
262 if (mapit->second.fstab_line)
263 free(mapit->second.fstab_line);
264 mapit->second.fstab_line = NULL;
265 }
266 }
Mohd Faraze3948ec2020-08-14 01:40:59 +0000267 if (Get_Super_Status()) {
268 Setup_Super_Devices();
269 }
Ethan Yonker6e8c27a2016-12-22 17:55:57 -0600270 LOGINFO("Done processing fstab files\n");
271
bigbiff22851b92021-09-01 16:46:57 -0400272 if (recovery_mode) {
273 Setup_Fstab_Partitions(Display_Error);
Mohd Faraze3948ec2020-08-14 01:40:59 +0000274 }
bigbiff7ba75002020-04-11 20:47:09 -0400275 return true;
276}
277
bigbiff22851b92021-09-01 16:46:57 -0400278void TWPartitionManager::Setup_Fstab_Partitions(bool Display_Error) {
279 TWPartition* settings_partition = NULL;
280 TWPartition* andsec_partition = NULL;
281 std::vector<TWPartition*>::iterator iter;
282 unsigned int storageid = 1 << 16; // upper 16 bits are for physical storage device, we pretend to have only one
283
284 for (iter = Partitions.begin(); iter != Partitions.end(); iter++) {
285 (*iter)->Partition_Post_Processing(Display_Error);
286
287 if ((*iter)->Is_Storage) {
288 ++storageid;
289 (*iter)->MTP_Storage_ID = storageid;
290 }
291
292 if (!settings_partition && (*iter)->Is_Settings_Storage && (*iter)->Is_Present)
293 settings_partition = (*iter);
294 else
295 (*iter)->Is_Settings_Storage = false;
296
297 if (!andsec_partition && (*iter)->Has_Android_Secure && (*iter)->Is_Present)
298 andsec_partition = (*iter);
299 else
300 (*iter)->Has_Android_Secure = false;
301
302 if ((*iter)->Is_Super)
303 Prepare_Super_Volume((*iter));
304 }
305
306 //Setup Apex before decryption
307 TWPartition* sys = PartitionManager.Find_Partition_By_Path(PartitionManager.Get_Android_Root_Path());
308 TWPartition* ven = PartitionManager.Find_Partition_By_Path("/vendor");
309 if (sys) {
310 if (sys->Get_Super_Status()) {
311 sys->Mount(true);
312 if (ven) {
313 ven->Mount(true);
314 }
315 #ifdef TW_EXCLUDE_APEX
316 LOGINFO("Apex is disabled in this build\n");
317 #else
318 twrpApex apex;
319 if (!apex.loadApexImages()) {
320 LOGERR("Unable to load apex images from %s\n", APEX_DIR);
321 property_set("twrp.apex.loaded", "false");
322 } else {
323 property_set("twrp.apex.loaded", "true");
324 }
325 TWFunc::check_and_run_script("/sbin/resyncapex.sh", "apex");
326 #endif
327 }
328 }
329 #ifndef USE_VENDOR_LIBS
330 if (ven)
331 ven->UnMount(true);
332 if (sys)
333 sys->UnMount(true);
334 #endif
335
336 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) {
337 // Attempt to automatically identify /data/media emulated storage devices
338 TWPartition* Dat = Find_Partition_By_Path("/data");
339 if (Dat) {
340 LOGINFO("Using automatic handling for /data/media emulated storage device.\n");
341 datamedia = true;
342 Dat->Setup_Data_Media();
343 settings_partition = Dat;
344 // Since /data was not considered a storage partition earlier, we still need to assign an MTP ID
345 ++storageid;
346 Dat->MTP_Storage_ID = storageid;
347 }
348 }
349 if (!settings_partition) {
350 for (iter = Partitions.begin(); iter != Partitions.end(); iter++) {
351 if ((*iter)->Is_Storage) {
352 settings_partition = (*iter);
353 break;
354 }
355 }
356 if (!settings_partition)
357 LOGERR("Unable to locate storage partition for storing settings file.\n");
358 }
359 if (!Write_Fstab()) {
360 if (Display_Error)
361 LOGERR("Error creating fstab\n");
362 else
363 LOGINFO("Error creating fstab\n");
364 }
365
366 if (andsec_partition) {
367 Setup_Android_Secure_Location(andsec_partition);
368 } else if (settings_partition) {
369 Setup_Android_Secure_Location(settings_partition);
370 }
371 if (settings_partition) {
372 Setup_Settings_Storage_Partition(settings_partition);
373 }
374
375 #ifdef TW_INCLUDE_CRYPTO
376 DataManager::SetValue(TW_IS_ENCRYPTED, 1);
377 Decrypt_Data();
378 #endif
379
380 Update_System_Details();
381 if (Get_Super_Status())
382 Setup_Super_Partition();
383 UnMount_Main_Partitions();
384 #ifdef AB_OTA_UPDATER
385 DataManager::SetValue("tw_active_slot", Get_Active_Slot_Display());
386 #endif
387 setup_uevent();
388}
389
bigbiff7ba75002020-04-11 20:47:09 -0400390int TWPartitionManager::Write_Fstab(void) {
391 FILE *fp;
392 std::vector<TWPartition*>::iterator iter;
393 string Line;
394
395 fp = fopen("/etc/fstab", "w");
396 if (fp == NULL) {
397 LOGINFO("Can not open /etc/fstab.\n");
398 return false;
399 }
400 for (iter = Partitions.begin(); iter != Partitions.end(); iter++) {
401 if ((*iter)->Can_Be_Mounted) {
Mohd Faraz2a1e3752020-09-30 10:55:48 +0530402 Line = (*iter)->Actual_Block_Device + " " + (*iter)->Mount_Point + " " + (*iter)->Current_File_System +
403 ((*iter)->Mount_Read_Only ? " ro " : " rw ") + "0 0\n";
bigbiff7ba75002020-04-11 20:47:09 -0400404 fputs(Line.c_str(), fp);
405 }
406 // Handle subpartition tracking
407 if ((*iter)->Is_SubPartition) {
408 TWPartition* ParentPartition = Find_Partition_By_Path((*iter)->SubPartition_Of);
409 if (ParentPartition)
410 ParentPartition->Has_SubPartition = true;
411 else
412 LOGERR("Unable to locate parent partition '%s' of '%s'\n", (*iter)->SubPartition_Of.c_str(), (*iter)->Mount_Point.c_str());
413 }
414 }
415 fclose(fp);
416 return true;
417}
418
419void TWPartitionManager::Decrypt_Data() {
420 #ifdef TW_INCLUDE_CRYPTO
Ethan Yonkercceebb82014-11-18 10:17:59 -0600421 TWPartition* Decrypt_Data = Find_Partition_By_Path("/data");
422 if (Decrypt_Data && Decrypt_Data->Is_Encrypted && !Decrypt_Data->Is_Decrypted) {
Captain Throwback37c3aef2021-10-06 11:38:18 -0400423 Set_Crypto_State();
Ethan Yonker93382822018-11-01 15:25:31 -0500424 if (!Decrypt_Data->Key_Directory.empty() && Mount_By_Path(Decrypt_Data->Key_Directory, false)) {
Captain Throwback37c3aef2021-10-06 11:38:18 -0400425 Set_Crypto_Type("file");
Ethan Yonker93382822018-11-01 15:25:31 -0500426#ifdef TW_INCLUDE_FBE_METADATA_DECRYPT
bigbiff7ba75002020-04-11 20:47:09 -0400427#ifdef USE_FSCRYPT
428 if (fscrypt_mount_metadata_encrypted(Decrypt_Data->Actual_Block_Device, Decrypt_Data->Mount_Point, false)) {
bigbiffa957f072021-03-07 18:20:29 -0500429 std::string crypto_blkdev = android::base::GetProperty("ro.crypto.fs_crypto_blkdev", "error");
Mohd Faraze3948ec2020-08-14 01:40:59 +0000430 Decrypt_Data->Decrypted_Block_Device = crypto_blkdev;
bigbiff7ba75002020-04-11 20:47:09 -0400431 LOGINFO("Successfully decrypted metadata encrypted data partition with new block device: '%s'\n", crypto_blkdev.c_str());
bigbiff7ba75002020-04-11 20:47:09 -0400432#endif
Ethan Yonker93382822018-11-01 15:25:31 -0500433 Decrypt_Data->Is_Decrypted = true; // Needed to make the mount function work correctly
434 int retry_count = 10;
435 while (!Decrypt_Data->Mount(false) && --retry_count)
436 usleep(500);
437 if (Decrypt_Data->Mount(false)) {
bigbiff bigbiff0be03b32019-08-27 20:50:31 -0400438 if (!Decrypt_Data->Decrypt_FBE_DE()) {
bigbiff437d86f2021-09-26 16:57:14 -0400439 LOGERR("Unable to decrypt FBE device\n");
bigbiff bigbiff0be03b32019-08-27 20:50:31 -0400440 }
441
Ethan Yonker93382822018-11-01 15:25:31 -0500442 } else {
443 LOGINFO("Failed to mount data after metadata decrypt\n");
444 }
445 } else {
446 LOGINFO("Unable to decrypt metadata encryption\n");
447 }
448#else
449 LOGERR("Metadata FBE decrypt support not present in this TWRP\n");
450#endif
451 }
Ethan Yonkerbd7492d2016-12-07 13:55:01 -0600452 if (Decrypt_Data->Is_FBE) {
453 if (DataManager::GetIntValue(TW_CRYPTO_PWTYPE) == 0) {
454 if (Decrypt_Device("!") == 0) {
455 gui_msg("decrypt_success=Successfully decrypted with default password.");
456 DataManager::SetValue(TW_IS_ENCRYPTED, 0);
457 } else {
458 gui_err("unable_to_decrypt=Unable to decrypt with default password.");
459 }
Ethan Yonkercceebb82014-11-18 10:17:59 -0600460 }
461 } else {
bigbiffbbbfe172021-05-30 15:52:41 -0400462 LOGINFO("FBE setup failed. Trying FDE...");
Captain Throwback37c3aef2021-10-06 11:38:18 -0400463 Set_Crypto_State();
464 Set_Crypto_Type("block");
Ethan Yonkerbd7492d2016-12-07 13:55:01 -0600465 int password_type = cryptfs_get_password_type();
466 if (password_type == CRYPT_TYPE_DEFAULT) {
467 LOGINFO("Device is encrypted with the default password, attempting to decrypt.\n");
468 if (Decrypt_Device("default_password") == 0) {
469 gui_msg("decrypt_success=Successfully decrypted with default password.");
470 DataManager::SetValue(TW_IS_ENCRYPTED, 0);
471 } else {
472 gui_err("unable_to_decrypt=Unable to decrypt with default password.");
473 }
474 } else {
475 DataManager::SetValue("TW_CRYPTO_TYPE", password_type);
Noah Jacobson81d638d2019-04-28 00:10:07 -0400476 DataManager::SetValue("tw_crypto_pwtype_0", password_type);
Ethan Yonkerbd7492d2016-12-07 13:55:01 -0600477 }
Ethan Yonkercceebb82014-11-18 10:17:59 -0600478 }
479 }
Noah Jacobson81d638d2019-04-28 00:10:07 -0400480 if (Decrypt_Data && (!Decrypt_Data->Is_Encrypted || Decrypt_Data->Is_Decrypted) &&
481 Decrypt_Data->Mount(false)) {
Ethan Yonker66a19492015-12-10 10:19:45 -0600482 Decrypt_Adopted();
483 }
Ethan Yonkercceebb82014-11-18 10:17:59 -0600484#endif
Dees_Troy51a0e822012-09-05 15:24:24 -0400485}
486
Ethan Yonkerc05c5982014-03-13 09:19:56 -0500487void TWPartitionManager::Setup_Settings_Storage_Partition(TWPartition* Part) {
Ethan Yonkerc05c5982014-03-13 09:19:56 -0500488 DataManager::SetValue("tw_settings_path", Part->Storage_Path);
489 DataManager::SetValue("tw_storage_path", Part->Storage_Path);
490 LOGINFO("Settings storage is '%s'\n", Part->Storage_Path.c_str());
491}
492
Matt Mowerbf4efa32014-04-14 23:25:26 -0500493void TWPartitionManager::Setup_Android_Secure_Location(TWPartition* Part) {
494 if (Part->Has_Android_Secure)
495 Part->Setup_AndSec();
Ethan Yonker6277c792014-09-15 14:54:30 -0500496 else if (!datamedia)
Matt Mowerbf4efa32014-04-14 23:25:26 -0500497 Part->Setup_AndSec();
Matt Mowerbf4efa32014-04-14 23:25:26 -0500498}
499
Dees_Troy8170a922012-09-18 15:40:25 -0400500void TWPartitionManager::Output_Partition_Logging(void) {
501 std::vector<TWPartition*>::iterator iter;
502
503 printf("\n\nPartition Logs:\n");
504 for (iter = Partitions.begin(); iter != Partitions.end(); iter++)
505 Output_Partition((*iter));
506}
507
508void TWPartitionManager::Output_Partition(TWPartition* Part) {
509 unsigned long long mb = 1048576;
510
Gary Peck004d48b2012-11-21 16:28:18 -0800511 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 -0400512 if (Part->Can_Be_Mounted) {
Gary Peck004d48b2012-11-21 16:28:18 -0800513 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 -0400514 }
Gary Peck004d48b2012-11-21 16:28:18 -0800515 printf("\n Flags: ");
Dees_Troya13d74f2013-03-24 08:54:55 -0500516 if (Part->Can_Be_Mounted)
517 printf("Can_Be_Mounted ");
Gary Peck004d48b2012-11-21 16:28:18 -0800518 if (Part->Can_Be_Wiped)
519 printf("Can_Be_Wiped ");
Hashcodedabfd492013-08-29 22:45:30 -0700520 if (Part->Use_Rm_Rf)
521 printf("Use_Rm_Rf ");
Dees_Troya13d74f2013-03-24 08:54:55 -0500522 if (Part->Can_Be_Backed_Up)
523 printf("Can_Be_Backed_Up ");
Gary Peck004d48b2012-11-21 16:28:18 -0800524 if (Part->Wipe_During_Factory_Reset)
525 printf("Wipe_During_Factory_Reset ");
526 if (Part->Wipe_Available_in_GUI)
527 printf("Wipe_Available_in_GUI ");
528 if (Part->Is_SubPartition)
529 printf("Is_SubPartition ");
530 if (Part->Has_SubPartition)
531 printf("Has_SubPartition ");
532 if (Part->Removable)
533 printf("Removable ");
534 if (Part->Is_Present)
535 printf("IsPresent ");
536 if (Part->Can_Be_Encrypted)
537 printf("Can_Be_Encrypted ");
538 if (Part->Is_Encrypted)
539 printf("Is_Encrypted ");
540 if (Part->Is_Decrypted)
541 printf("Is_Decrypted ");
542 if (Part->Has_Data_Media)
543 printf("Has_Data_Media ");
Dees_Troy83bd4832013-05-04 12:39:56 +0000544 if (Part->Can_Encrypt_Backup)
545 printf("Can_Encrypt_Backup ");
546 if (Part->Use_Userdata_Encryption)
547 printf("Use_Userdata_Encryption ");
Gary Peck004d48b2012-11-21 16:28:18 -0800548 if (Part->Has_Android_Secure)
549 printf("Has_Android_Secure ");
550 if (Part->Is_Storage)
551 printf("Is_Storage ");
Dees_Troya13d74f2013-03-24 08:54:55 -0500552 if (Part->Is_Settings_Storage)
553 printf("Is_Settings_Storage ");
Dees_Troy68cab492012-12-12 19:29:35 +0000554 if (Part->Ignore_Blkid)
555 printf("Ignore_Blkid ");
Ethan Yonker253368a2014-11-25 15:00:52 -0600556 if (Part->Mount_To_Decrypt)
557 printf("Mount_To_Decrypt ");
Ethan Yonker96af84a2015-01-05 14:58:36 -0600558 if (Part->Can_Flash_Img)
559 printf("Can_Flash_Img ");
Ethan Yonker66a19492015-12-10 10:19:45 -0600560 if (Part->Is_Adopted_Storage)
561 printf("Is_Adopted_Storage ");
Ethan Yonker1b190162016-12-05 15:25:19 -0600562 if (Part->SlotSelect)
563 printf("SlotSelect ");
Ethan Yonker6e8c27a2016-12-22 17:55:57 -0600564 if (Part->Mount_Read_Only)
565 printf("Mount_Read_Only ");
bigbiffcfa875c2021-06-20 16:20:27 -0400566 if (Part->Is_Super)
567 printf("Is_Super ");
Gary Peck004d48b2012-11-21 16:28:18 -0800568 printf("\n");
569 if (!Part->SubPartition_Of.empty())
570 printf(" SubPartition_Of: %s\n", Part->SubPartition_Of.c_str());
571 if (!Part->Symlink_Path.empty())
572 printf(" Symlink_Path: %s\n", Part->Symlink_Path.c_str());
573 if (!Part->Symlink_Mount_Point.empty())
574 printf(" Symlink_Mount_Point: %s\n", Part->Symlink_Mount_Point.c_str());
575 if (!Part->Primary_Block_Device.empty())
576 printf(" Primary_Block_Device: %s\n", Part->Primary_Block_Device.c_str());
577 if (!Part->Alternate_Block_Device.empty())
578 printf(" Alternate_Block_Device: %s\n", Part->Alternate_Block_Device.c_str());
579 if (!Part->Decrypted_Block_Device.empty())
580 printf(" Decrypted_Block_Device: %s\n", Part->Decrypted_Block_Device.c_str());
dianlujitao4879b372018-12-03 18:45:47 +0800581 if (!Part->Crypto_Key_Location.empty())
Ethan Yonker253368a2014-11-25 15:00:52 -0600582 printf(" Crypto_Key_Location: %s\n", Part->Crypto_Key_Location.c_str());
Gary Peck004d48b2012-11-21 16:28:18 -0800583 if (Part->Length != 0)
584 printf(" Length: %i\n", Part->Length);
585 if (!Part->Display_Name.empty())
586 printf(" Display_Name: %s\n", Part->Display_Name.c_str());
Dees_Troya13d74f2013-03-24 08:54:55 -0500587 if (!Part->Storage_Name.empty())
588 printf(" Storage_Name: %s\n", Part->Storage_Name.c_str());
Gary Peck004d48b2012-11-21 16:28:18 -0800589 if (!Part->Backup_Path.empty())
590 printf(" Backup_Path: %s\n", Part->Backup_Path.c_str());
591 if (!Part->Backup_Name.empty())
592 printf(" Backup_Name: %s\n", Part->Backup_Name.c_str());
Dees_Troya13d74f2013-03-24 08:54:55 -0500593 if (!Part->Backup_Display_Name.empty())
594 printf(" Backup_Display_Name: %s\n", Part->Backup_Display_Name.c_str());
Gary Peck004d48b2012-11-21 16:28:18 -0800595 if (!Part->Backup_FileName.empty())
596 printf(" Backup_FileName: %s\n", Part->Backup_FileName.c_str());
597 if (!Part->Storage_Path.empty())
598 printf(" Storage_Path: %s\n", Part->Storage_Path.c_str());
599 if (!Part->Current_File_System.empty())
600 printf(" Current_File_System: %s\n", Part->Current_File_System.c_str());
601 if (!Part->Fstab_File_System.empty())
602 printf(" Fstab_File_System: %s\n", Part->Fstab_File_System.c_str());
603 if (Part->Format_Block_Size != 0)
Ethan Yonkerc798c9c2015-10-09 11:15:26 -0500604 printf(" Format_Block_Size: %lu\n", Part->Format_Block_Size);
Dees_Troy094207a2012-09-26 12:00:39 -0400605 if (!Part->MTD_Name.empty())
606 printf(" MTD_Name: %s\n", Part->MTD_Name.c_str());
Matt Mower029a82d2017-01-08 13:12:38 -0600607 printf(" Backup_Method: %s\n", Part->Backup_Method_By_Name().c_str());
Hashcode62bd9e02013-11-19 21:59:42 -0800608 if (Part->Mount_Flags || !Part->Mount_Options.empty())
Ethan Yonker6e8c27a2016-12-22 17:55:57 -0600609 printf(" Mount_Flags: %i, Mount_Options: %s\n", Part->Mount_Flags, Part->Mount_Options.c_str());
Ethan Yonker726a0202014-12-16 20:01:38 -0600610 if (Part->MTP_Storage_ID)
611 printf(" MTP_Storage_ID: %i\n", Part->MTP_Storage_ID);
Ethan Yonker93382822018-11-01 15:25:31 -0500612 if (!Part->Key_Directory.empty())
613 printf(" Metadata Key Directory: %s\n", Part->Key_Directory.c_str());
Ethan Yonker6277c792014-09-15 14:54:30 -0500614 printf("\n");
Dees_Troy8170a922012-09-18 15:40:25 -0400615}
616
Dees_Troy51a0e822012-09-05 15:24:24 -0400617int TWPartitionManager::Mount_By_Path(string Path, bool Display_Error) {
Dees_Troy5bf43922012-09-07 16:07:55 -0400618 std::vector<TWPartition*>::iterator iter;
619 int ret = false;
620 bool found = false;
Dees_Troy38bd7602012-09-14 13:33:53 -0400621 string Local_Path = TWFunc::Get_Root_Path(Path);
Dees_Troy5bf43922012-09-07 16:07:55 -0400622
bigbiffd58ba182020-03-23 10:02:29 -0400623 if (Local_Path == "/tmp" || Local_Path == "/")
Dees_Troy43d8b002012-09-17 16:00:01 -0400624 return true;
625
Dees_Troy5bf43922012-09-07 16:07:55 -0400626 // Iterate through all partitions
627 for (iter = Partitions.begin(); iter != Partitions.end(); iter++) {
Dees_Troy657c3092012-09-10 20:32:10 -0400628 if ((*iter)->Mount_Point == Local_Path || (!(*iter)->Symlink_Mount_Point.empty() && (*iter)->Symlink_Mount_Point == Local_Path)) {
Dees_Troy5bf43922012-09-07 16:07:55 -0400629 ret = (*iter)->Mount(Display_Error);
630 found = true;
Dees_Troy51127312012-09-08 13:08:49 -0400631 } else if ((*iter)->Is_SubPartition && (*iter)->SubPartition_Of == Local_Path) {
Dees_Troy5bf43922012-09-07 16:07:55 -0400632 (*iter)->Mount(Display_Error);
Dees_Troy51127312012-09-08 13:08:49 -0400633 }
Dees_Troy5bf43922012-09-07 16:07:55 -0400634 }
635 if (found) {
636 return ret;
637 } else if (Display_Error) {
Ethan Yonker74db1572015-10-28 12:44:49 -0500638 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 -0400639 }
640 return false;
Dees_Troy51a0e822012-09-05 15:24:24 -0400641}
642
Dees_Troy51a0e822012-09-05 15:24:24 -0400643int TWPartitionManager::UnMount_By_Path(string Path, bool Display_Error) {
Dees_Troy51127312012-09-08 13:08:49 -0400644 std::vector<TWPartition*>::iterator iter;
645 int ret = false;
646 bool found = false;
Dees_Troy38bd7602012-09-14 13:33:53 -0400647 string Local_Path = TWFunc::Get_Root_Path(Path);
Dees_Troy51127312012-09-08 13:08:49 -0400648
649 // Iterate through all partitions
650 for (iter = Partitions.begin(); iter != Partitions.end(); iter++) {
Dees_Troy657c3092012-09-10 20:32:10 -0400651 if ((*iter)->Mount_Point == Local_Path || (!(*iter)->Symlink_Mount_Point.empty() && (*iter)->Symlink_Mount_Point == Local_Path)) {
Dees_Troy51127312012-09-08 13:08:49 -0400652 ret = (*iter)->UnMount(Display_Error);
653 found = true;
654 } else if ((*iter)->Is_SubPartition && (*iter)->SubPartition_Of == Local_Path) {
655 (*iter)->UnMount(Display_Error);
656 }
657 }
658 if (found) {
659 return ret;
660 } else if (Display_Error) {
Ethan Yonker74db1572015-10-28 12:44:49 -0500661 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 -0400662 } else {
Dees_Troy2673cec2013-04-02 20:22:16 +0000663 LOGINFO("UnMount: Unable to find partition for path '%s'\n", Local_Path.c_str());
Dees_Troy51127312012-09-08 13:08:49 -0400664 }
665 return false;
Dees_Troy51a0e822012-09-05 15:24:24 -0400666}
667
Dees_Troy51a0e822012-09-05 15:24:24 -0400668int TWPartitionManager::Is_Mounted_By_Path(string Path) {
Dees_Troy51127312012-09-08 13:08:49 -0400669 TWPartition* Part = Find_Partition_By_Path(Path);
670
671 if (Part)
672 return Part->Is_Mounted();
673 else
Dees_Troy2673cec2013-04-02 20:22:16 +0000674 LOGINFO("Is_Mounted: Unable to find partition for path '%s'\n", Path.c_str());
Dees_Troy51127312012-09-08 13:08:49 -0400675 return false;
Dees_Troy51a0e822012-09-05 15:24:24 -0400676}
677
Dees_Troy5bf43922012-09-07 16:07:55 -0400678int TWPartitionManager::Mount_Current_Storage(bool Display_Error) {
Dees_Troy51127312012-09-08 13:08:49 -0400679 string current_storage_path = DataManager::GetCurrentStoragePath();
680
681 if (Mount_By_Path(current_storage_path, Display_Error)) {
682 TWPartition* FreeStorage = Find_Partition_By_Path(current_storage_path);
683 if (FreeStorage)
684 DataManager::SetValue(TW_STORAGE_FREE_SIZE, (int)(FreeStorage->Free / 1048576LLU));
685 return true;
686 }
687 return false;
Dees_Troy51a0e822012-09-05 15:24:24 -0400688}
689
Dees_Troy5bf43922012-09-07 16:07:55 -0400690int TWPartitionManager::Mount_Settings_Storage(bool Display_Error) {
691 return Mount_By_Path(DataManager::GetSettingsStoragePath(), Display_Error);
692}
693
Ethan Yonker6e8c27a2016-12-22 17:55:57 -0600694TWPartition* TWPartitionManager::Find_Partition_By_Path(const string& Path) {
Dees_Troy5bf43922012-09-07 16:07:55 -0400695 std::vector<TWPartition*>::iterator iter;
Dees_Troy38bd7602012-09-14 13:33:53 -0400696 string Local_Path = TWFunc::Get_Root_Path(Path);
Dees_Troy5bf43922012-09-07 16:07:55 -0400697
dianlujitaob76a73a2020-04-30 20:33:20 +0800698 if (Local_Path == "/system")
699 Local_Path = Get_Android_Root_Path();
Dees_Troy5bf43922012-09-07 16:07:55 -0400700 for (iter = Partitions.begin(); iter != Partitions.end(); iter++) {
Dees_Troy657c3092012-09-10 20:32:10 -0400701 if ((*iter)->Mount_Point == Local_Path || (!(*iter)->Symlink_Mount_Point.empty() && (*iter)->Symlink_Mount_Point == Local_Path))
Dees_Troy5bf43922012-09-07 16:07:55 -0400702 return (*iter);
703 }
Dees_Troy51a0e822012-09-05 15:24:24 -0400704 return NULL;
705}
706
Ethan Yonker6e8c27a2016-12-22 17:55:57 -0600707TWPartition* TWPartitionManager::Find_Partition_By_Block_Device(const string& Block_Device) {
708 std::vector<TWPartition*>::iterator iter;
709
710 for (iter = Partitions.begin(); iter != Partitions.end(); iter++) {
711 if ((*iter)->Primary_Block_Device == Block_Device || (!(*iter)->Actual_Block_Device.empty() && (*iter)->Actual_Block_Device == Block_Device))
712 return (*iter);
713 }
714 return NULL;
715}
716
Ethan Yonker53796e72019-01-11 22:49:52 -0600717int TWPartitionManager::Check_Backup_Name(const std::string& Backup_Name, bool Display_Error, bool Must_Be_Unique) {
Dees_Troyc9ff7a32012-09-27 10:09:41 -0400718 // Check the backup name to ensure that it is the correct size and contains only valid characters
719 // and that a backup with that name doesn't already exist
720 char backup_name[MAX_BACKUP_NAME_LEN];
721 char backup_loc[255], tw_image_dir[255];
722 int copy_size;
723 int index, cur_char;
Ethan Yonker53796e72019-01-11 22:49:52 -0600724 string Backup_Loc;
Dees_Troyc9ff7a32012-09-27 10:09:41 -0400725
Dees_Troyc9ff7a32012-09-27 10:09:41 -0400726 copy_size = Backup_Name.size();
727 // Check size
728 if (copy_size > MAX_BACKUP_NAME_LEN) {
729 if (Display_Error)
Ethan Yonker74db1572015-10-28 12:44:49 -0500730 gui_err("backup_name_len=Backup name is too long.");
Dees_Troyc9ff7a32012-09-27 10:09:41 -0400731 return -2;
732 }
733
734 // Check each character
735 strncpy(backup_name, Backup_Name.c_str(), copy_size);
Dees_Troya13d74f2013-03-24 08:54:55 -0500736 if (copy_size == 1 && strncmp(backup_name, "0", 1) == 0)
Dees_Troyc9ff7a32012-09-27 10:09:41 -0400737 return 0; // A "0" (zero) means to use the current timestamp for the backup name
738 for (index=0; index<copy_size; index++) {
739 cur_char = (int)backup_name[index];
Matt Mowerfb1c4ff2014-04-16 13:43:36 -0500740 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 -0400741 // These are valid characters
742 // Numbers
743 // Upper case letters
744 // Lower case letters
745 // Space
746 // and -_.{}[]
747 } else {
748 if (Display_Error)
Ethan Yonker4adc33e2016-01-22 16:07:11 -0600749 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 -0400750 return -3;
751 }
752 }
753
Ethan Yonker53796e72019-01-11 22:49:52 -0600754 if (Must_Be_Unique) {
755 // Check to make sure that a backup with this name doesn't already exist
756 DataManager::GetValue(TW_BACKUPS_FOLDER_VAR, Backup_Loc);
757 strcpy(backup_loc, Backup_Loc.c_str());
758 sprintf(tw_image_dir,"%s/%s", backup_loc, Backup_Name.c_str());
759 if (TWFunc::Path_Exists(tw_image_dir)) {
760 if (Display_Error)
761 gui_err("backup_name_exists=A backup with that name already exists!");
bigbiffce8f83c2015-12-12 18:30:21 -0500762
Ethan Yonker53796e72019-01-11 22:49:52 -0600763 return -4;
764 }
765 // Backup is unique
Dees_Troyc9ff7a32012-09-27 10:09:41 -0400766 }
Ethan Yonker53796e72019-01-11 22:49:52 -0600767 // No problems found
Dees_Troyc9ff7a32012-09-27 10:09:41 -0400768 return 0;
769}
770
bigbiffce8f83c2015-12-12 18:30:21 -0500771bool TWPartitionManager::Backup_Partition(PartitionSettings *part_settings) {
Dees_Troy43d8b002012-09-17 16:00:01 -0400772 time_t start, stop;
Matt Mower23d8aae2017-01-06 14:30:33 -0600773 int use_compression;
bigbiffce8f83c2015-12-12 18:30:21 -0500774 string backup_log = part_settings->Backup_Folder + "/recovery.log";
Dees_Troy43d8b002012-09-17 16:00:01 -0400775
bigbiffce8f83c2015-12-12 18:30:21 -0500776 if (part_settings->Part == NULL)
Dees_Troy43d8b002012-09-17 16:00:01 -0400777 return true;
778
Dees_Troy093b7642012-09-21 15:59:38 -0400779 DataManager::GetValue(TW_USE_COMPRESSION_VAR, use_compression);
Dees_Troy093b7642012-09-21 15:59:38 -0400780
Tom Hite5a926722014-09-15 01:31:03 +0000781 TWFunc::SetPerformanceMode(true);
Dees_Troy43d8b002012-09-17 16:00:01 -0400782 time(&start);
783
bigbiffce8f83c2015-12-12 18:30:21 -0500784 if (part_settings->Part->Backup(part_settings, &tar_fork_pid)) {
Ethan Yonkercd00a8b2017-07-06 10:23:30 -0500785 sync();
786 sync();
bigbiff bigbiff56cf5642016-08-19 17:43:45 -0400787 string Full_Filename = part_settings->Backup_Folder + "/" + part_settings->Part->Backup_FileName;
Ethan Yonkercd00a8b2017-07-06 10:23:30 -0500788 if (!part_settings->adbbackup && part_settings->generate_digest) {
789 if (!twrpDigestDriver::Make_Digest(Full_Filename))
790 goto backup_error;
bigbiff bigbiff56cf5642016-08-19 17:43:45 -0400791 }
bigbiff bigbiff8fd4b092016-08-30 20:48:53 -0400792
bigbiffce8f83c2015-12-12 18:30:21 -0500793 if (part_settings->Part->Has_SubPartition) {
Dees_Troy8170a922012-09-18 15:40:25 -0400794 std::vector<TWPartition*>::iterator subpart;
bigbiff bigbiff8fd4b092016-08-30 20:48:53 -0400795 TWPartition *parentPart = part_settings->Part;
Dees_Troy8170a922012-09-18 15:40:25 -0400796
797 for (subpart = Partitions.begin(); subpart != Partitions.end(); subpart++) {
bigbiff bigbiff8fd4b092016-08-30 20:48:53 -0400798 if ((*subpart)->Can_Be_Backed_Up && (*subpart)->Is_SubPartition && (*subpart)->SubPartition_Of == parentPart->Mount_Point) {
Ethan Yonkerdcf2b672016-09-13 14:41:53 -0500799 part_settings->Part = *subpart;
bigbiffce8f83c2015-12-12 18:30:21 -0500800 if (!(*subpart)->Backup(part_settings, &tar_fork_pid)) {
Ethan Yonkercd00a8b2017-07-06 10:23:30 -0500801 goto backup_error;
Tom Hite5a926722014-09-15 01:31:03 +0000802 }
Dees_Troy2727b992013-08-14 20:09:30 +0000803 sync();
804 sync();
bigbiff bigbifff5955b12019-05-18 17:28:58 -0400805 string Full_Filename = part_settings->Backup_Folder + "/" + part_settings->Part->Backup_FileName;
bigbiff bigbiff56cf5642016-08-19 17:43:45 -0400806 if (!part_settings->adbbackup && part_settings->generate_digest) {
807 if (!twrpDigestDriver::Make_Digest(Full_Filename)) {
Ethan Yonkercd00a8b2017-07-06 10:23:30 -0500808 goto backup_error;
bigbiffce8f83c2015-12-12 18:30:21 -0500809 }
Tom Hite5a926722014-09-15 01:31:03 +0000810 }
Dees_Troy8170a922012-09-18 15:40:25 -0400811 }
812 }
813 }
bigbiff bigbiff56cf5642016-08-19 17:43:45 -0400814
Dees_Troy43d8b002012-09-17 16:00:01 -0400815 time(&stop);
that203bcc92015-05-09 17:27:33 +0200816 int backup_time = (int) difftime(stop, start);
Dees_Troy2673cec2013-04-02 20:22:16 +0000817 LOGINFO("Partition Backup time: %d\n", backup_time);
bigbiff bigbiff8fd4b092016-08-30 20:48:53 -0400818
bigbiffce8f83c2015-12-12 18:30:21 -0500819 if (part_settings->Part->Backup_Method == BM_FILES) {
820 part_settings->file_time += backup_time;
Dees_Troy43d8b002012-09-17 16:00:01 -0400821 } else {
bigbiffce8f83c2015-12-12 18:30:21 -0500822 part_settings->img_time += backup_time;
823
Dees_Troy43d8b002012-09-17 16:00:01 -0400824 }
Tom Hite5a926722014-09-15 01:31:03 +0000825
Matt Mower02899552016-12-30 18:13:51 -0600826 TWFunc::SetPerformanceMode(false);
Ethan Yonkercd00a8b2017-07-06 10:23:30 -0500827 return true;
Dees_Troy43d8b002012-09-17 16:00:01 -0400828 }
Ethan Yonkercd00a8b2017-07-06 10:23:30 -0500829backup_error:
830 Clean_Backup_Folder(part_settings->Backup_Folder);
831 TWFunc::copy_file("/tmp/recovery.log", backup_log, 0644);
832 tw_set_default_metadata(backup_log.c_str());
833 TWFunc::SetPerformanceMode(false);
834 return false;
bigbiff7abc5fe2015-01-17 16:53:12 -0500835}
836
bigbiffbf1d6722015-02-14 16:25:59 -0500837void TWPartitionManager::Clean_Backup_Folder(string Backup_Folder) {
838 DIR *d = opendir(Backup_Folder.c_str());
839 struct dirent *p;
840 int r;
bigbiff bigbiff56cf5642016-08-19 17:43:45 -0400841 vector<string> ext;
842
843 //extensions we should delete when cleaning
844 ext.push_back("win");
845 ext.push_back("md5");
846 ext.push_back("sha2");
847 ext.push_back("info");
bigbiffbf1d6722015-02-14 16:25:59 -0500848
Ethan Yonker74db1572015-10-28 12:44:49 -0500849 gui_msg("backup_clean=Backup Failed. Cleaning Backup Folder.");
bigbiffbf1d6722015-02-14 16:25:59 -0500850
851 if (d == NULL) {
Ethan Yonker74db1572015-10-28 12:44:49 -0500852 gui_msg(Msg(msg::kError, "error_opening_strerr=Error opening: '{1}' ({2})")(Backup_Folder)(strerror(errno)));
bigbiffbf1d6722015-02-14 16:25:59 -0500853 return;
854 }
855
Matt Mower2b18a532015-02-20 16:58:05 -0600856 while ((p = readdir(d))) {
bigbiffbf1d6722015-02-14 16:25:59 -0500857 if (!strcmp(p->d_name, ".") || !strcmp(p->d_name, ".."))
858 continue;
859
Ethan Yonkere080c1f2016-09-19 13:50:25 -0500860 string path = Backup_Folder + "/" + p->d_name;
bigbiffbf1d6722015-02-14 16:25:59 -0500861
862 size_t dot = path.find_last_of(".") + 1;
bigbiff bigbiff56cf5642016-08-19 17:43:45 -0400863 for (vector<string>::const_iterator i = ext.begin(); i != ext.end(); ++i) {
864 if (path.substr(dot) == *i) {
865 r = unlink(path.c_str());
866 if (r != 0)
867 LOGINFO("Unable to unlink '%s: %s'\n", path.c_str(), strerror(errno));
bigbiffbf1d6722015-02-14 16:25:59 -0500868 }
869 }
870 }
871 closedir(d);
872}
873
Ethan Yonker472f5062016-02-25 13:47:30 -0600874int TWPartitionManager::Check_Backup_Cancel() {
875 return stop_backup.get_value();
876}
877
bigbiff7abc5fe2015-01-17 16:53:12 -0500878int TWPartitionManager::Cancel_Backup() {
879 string Backup_Folder, Backup_Name, Full_Backup_Path;
880
881 stop_backup.set_value(1);
882
883 if (tar_fork_pid != 0) {
884 DataManager::GetValue(TW_BACKUP_NAME, Backup_Name);
885 DataManager::GetValue(TW_BACKUPS_FOLDER_VAR, Backup_Folder);
Ethan Yonkere080c1f2016-09-19 13:50:25 -0500886 Full_Backup_Path = Backup_Folder + "/" + Backup_Name;
bigbiff7abc5fe2015-01-17 16:53:12 -0500887 LOGINFO("Killing pid: %d\n", tar_fork_pid);
888 kill(tar_fork_pid, SIGUSR2);
889 while (kill(tar_fork_pid, 0) == 0) {
890 usleep(1000);
891 }
892 LOGINFO("Backup_Run stopped and returning false, backup cancelled.\n");
893 LOGINFO("Removing directory %s\n", Full_Backup_Path.c_str());
894 TWFunc::removeDir(Full_Backup_Path, false);
895 tar_fork_pid = 0;
896 }
897
898 return 0;
Dees_Troy43d8b002012-09-17 16:00:01 -0400899}
900
bigbiffce8f83c2015-12-12 18:30:21 -0500901int TWPartitionManager::Run_Backup(bool adbbackup) {
902 PartitionSettings part_settings;
bigbiff bigbiff56cf5642016-08-19 17:43:45 -0400903 int partition_count = 0, disable_free_space_check = 0, skip_digest = 0;
bigbiffce8f83c2015-12-12 18:30:21 -0500904 string Backup_Name, Backup_List, backup_path;
Matt Mower23d8aae2017-01-06 14:30:33 -0600905 unsigned long long total_bytes = 0, free_space = 0;
Dees_Troy43d8b002012-09-17 16:00:01 -0400906 TWPartition* storage = NULL;
907 struct tm *t;
Matt Mower23d8aae2017-01-06 14:30:33 -0600908 time_t seconds, total_start, total_stop;
Dees_Troya13d74f2013-03-24 08:54:55 -0500909 size_t start_pos = 0, end_pos = 0;
bigbiff7abc5fe2015-01-17 16:53:12 -0500910 stop_backup.set_value(0);
Dees_Troy43d8b002012-09-17 16:00:01 -0400911 seconds = time(0);
Matt Mowerfb1c4ff2014-04-16 13:43:36 -0500912 t = localtime(&seconds);
Dees_Troy43d8b002012-09-17 16:00:01 -0400913
bigbiffce8f83c2015-12-12 18:30:21 -0500914 part_settings.img_bytes_remaining = 0;
915 part_settings.file_bytes_remaining = 0;
916 part_settings.img_time = 0;
917 part_settings.file_time = 0;
918 part_settings.img_bytes = 0;
919 part_settings.file_bytes = 0;
920 part_settings.PM_Method = PM_BACKUP;
921
bigbiffce8f83c2015-12-12 18:30:21 -0500922 part_settings.adbbackup = adbbackup;
Dees_Troy43d8b002012-09-17 16:00:01 -0400923 time(&total_start);
924
925 Update_System_Details();
926
927 if (!Mount_Current_Storage(true))
928 return false;
929
bigbiff bigbiff56cf5642016-08-19 17:43:45 -0400930 DataManager::GetValue(TW_SKIP_DIGEST_GENERATE_VAR, skip_digest);
931 if (skip_digest == 0)
932 part_settings.generate_digest = true;
Dees_Troyc5865ab2012-09-24 15:08:04 -0400933 else
bigbiff bigbiff56cf5642016-08-19 17:43:45 -0400934 part_settings.generate_digest = false;
Dees_Troy4a2a1262012-09-18 09:33:47 -0400935
bigbiffce8f83c2015-12-12 18:30:21 -0500936 DataManager::GetValue(TW_BACKUPS_FOLDER_VAR, part_settings.Backup_Folder);
Ethan Yonkerdcf2b672016-09-13 14:41:53 -0500937 DataManager::GetValue(TW_BACKUP_NAME, Backup_Name);
938 if (Backup_Name == gui_lookup("curr_date", "(Current Date)")) {
939 Backup_Name = TWFunc::Get_Current_Date();
940 } else if (Backup_Name == gui_lookup("auto_generate", "(Auto Generate)") || Backup_Name == "0" || Backup_Name.empty()) {
Dees Troyb21cc642013-09-10 17:36:41 +0000941 TWFunc::Auto_Generate_Backup_Name();
Ethan Yonkerdcf2b672016-09-13 14:41:53 -0500942 DataManager::GetValue(TW_BACKUP_NAME, Backup_Name);
Dees_Troy43d8b002012-09-17 16:00:01 -0400943 }
bigbiffce8f83c2015-12-12 18:30:21 -0500944
Ethan Yonkerdcf2b672016-09-13 14:41:53 -0500945 LOGINFO("Backup Name is: '%s'\n", Backup_Name.c_str());
Ethan Yonkere080c1f2016-09-19 13:50:25 -0500946 part_settings.Backup_Folder = part_settings.Backup_Folder + "/" + Backup_Name;
bigbiffce8f83c2015-12-12 18:30:21 -0500947
Ethan Yonkere080c1f2016-09-19 13:50:25 -0500948 LOGINFO("Backup_Folder is: '%s'\n", part_settings.Backup_Folder.c_str());
Dees_Troy43d8b002012-09-17 16:00:01 -0400949
Dees_Troy2673cec2013-04-02 20:22:16 +0000950 LOGINFO("Calculating backup details...\n");
Dees_Troya13d74f2013-03-24 08:54:55 -0500951 DataManager::GetValue("tw_backup_list", Backup_List);
bigbiff7ba75002020-04-11 20:47:09 -0400952 LOGINFO("Backup_List: %s\n", Backup_List.c_str());
Dees_Troya13d74f2013-03-24 08:54:55 -0500953 if (!Backup_List.empty()) {
954 end_pos = Backup_List.find(";", start_pos);
955 while (end_pos != string::npos && start_pos < Backup_List.size()) {
956 backup_path = Backup_List.substr(start_pos, end_pos - start_pos);
bigbiff7ba75002020-04-11 20:47:09 -0400957 LOGINFO("backup_path: %s\n", backup_path.c_str());
bigbiffce8f83c2015-12-12 18:30:21 -0500958 part_settings.Part = Find_Partition_By_Path(backup_path);
959 if (part_settings.Part != NULL) {
Dees_Troya13d74f2013-03-24 08:54:55 -0500960 partition_count++;
bigbiffce8f83c2015-12-12 18:30:21 -0500961 if (part_settings.Part->Backup_Method == BM_FILES)
962 part_settings.file_bytes += part_settings.Part->Backup_Size;
Dees_Troya13d74f2013-03-24 08:54:55 -0500963 else
bigbiffce8f83c2015-12-12 18:30:21 -0500964 part_settings.img_bytes += part_settings.Part->Backup_Size;
965 if (part_settings.Part->Has_SubPartition) {
Dees_Troya13d74f2013-03-24 08:54:55 -0500966 std::vector<TWPartition*>::iterator subpart;
967
968 for (subpart = Partitions.begin(); subpart != Partitions.end(); subpart++) {
bigbiffce8f83c2015-12-12 18:30:21 -0500969 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 -0500970 partition_count++;
bigbiffce8f83c2015-12-12 18:30:21 -0500971 if ((*subpart)->Backup_Method == BM_FILES)
972 part_settings.file_bytes += (*subpart)->Backup_Size;
Dees_Troya13d74f2013-03-24 08:54:55 -0500973 else
bigbiffce8f83c2015-12-12 18:30:21 -0500974 part_settings.img_bytes += (*subpart)->Backup_Size;
Dees_Troya13d74f2013-03-24 08:54:55 -0500975 }
976 }
Dees_Troy8170a922012-09-18 15:40:25 -0400977 }
Dees_Troya13d74f2013-03-24 08:54:55 -0500978 } else {
Ethan Yonker74db1572015-10-28 12:44:49 -0500979 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 -0400980 }
Dees_Troya13d74f2013-03-24 08:54:55 -0500981 start_pos = end_pos + 1;
982 end_pos = Backup_List.find(";", start_pos);
Dees_Troy43d8b002012-09-17 16:00:01 -0400983 }
984 }
Dees_Troy43d8b002012-09-17 16:00:01 -0400985
986 if (partition_count == 0) {
Ethan Yonker74db1572015-10-28 12:44:49 -0500987 gui_msg("no_partition_selected=No partitions selected for backup.");
Dees_Troy43d8b002012-09-17 16:00:01 -0400988 return false;
989 }
bigbiffce8f83c2015-12-12 18:30:21 -0500990 if (adbbackup) {
991 if (twadbbu::Write_ADB_Stream_Header(partition_count) == false) {
992 return false;
993 }
994 }
995 total_bytes = part_settings.file_bytes + part_settings.img_bytes;
Ethan Yonker472f5062016-02-25 13:47:30 -0600996 ProgressTracking progress(total_bytes);
bigbiffce8f83c2015-12-12 18:30:21 -0500997 part_settings.progress = &progress;
998
Ethan Yonker74db1572015-10-28 12:44:49 -0500999 gui_msg(Msg("total_partitions_backup= * Total number of partitions to back up: {1}")(partition_count));
1000 gui_msg(Msg("total_backup_size= * Total size of all data: {1}MB")(total_bytes / 1024 / 1024));
Dees_Troy43d8b002012-09-17 16:00:01 -04001001 storage = Find_Partition_By_Path(DataManager::GetCurrentStoragePath());
1002 if (storage != NULL) {
1003 free_space = storage->Free;
Ethan Yonker74db1572015-10-28 12:44:49 -05001004 gui_msg(Msg("available_space= * Available space: {1}MB")(free_space / 1024 / 1024));
Dees_Troy43d8b002012-09-17 16:00:01 -04001005 } else {
Ethan Yonker74db1572015-10-28 12:44:49 -05001006 gui_err("unable_locate_storage=Unable to locate storage device.");
Dees_Troy43d8b002012-09-17 16:00:01 -04001007 return false;
1008 }
bigbiffbf1d6722015-02-14 16:25:59 -05001009
Matt Mowerbfccfb82016-04-25 23:22:31 -05001010 DataManager::GetValue(TW_DISABLE_FREE_SPACE_VAR, disable_free_space_check);
bigbiffce8f83c2015-12-12 18:30:21 -05001011
1012 if (adbbackup)
1013 disable_free_space_check = true;
1014
bigbiffbf1d6722015-02-14 16:25:59 -05001015 if (!disable_free_space_check) {
1016 if (free_space - (32 * 1024 * 1024) < total_bytes) {
1017 // We require an extra 32MB just in case
Ethan Yonker74db1572015-10-28 12:44:49 -05001018 gui_err("no_space=Not enough free space on storage.");
bigbiffbf1d6722015-02-14 16:25:59 -05001019 return false;
1020 }
Dees_Troy43d8b002012-09-17 16:00:01 -04001021 }
bigbiffce8f83c2015-12-12 18:30:21 -05001022 part_settings.img_bytes_remaining = part_settings.img_bytes;
1023 part_settings.file_bytes_remaining = part_settings.file_bytes;
Dees_Troy43d8b002012-09-17 16:00:01 -04001024
Ethan Yonker74db1572015-10-28 12:44:49 -05001025 gui_msg("backup_started=[BACKUP STARTED]");
bigbiff bigbiffcdd97c72019-03-29 19:12:33 -04001026
1027 int is_decrypted = 0;
1028 int is_encrypted = 0;
1029
1030 DataManager::GetValue(TW_IS_DECRYPTED, is_decrypted);
1031 DataManager::GetValue(TW_IS_ENCRYPTED, is_encrypted);
1032 if (!adbbackup || (!is_encrypted || (is_encrypted && is_decrypted))) {
1033 gui_msg(Msg("backup_folder= * Backup Folder: {1}")(part_settings.Backup_Folder));
1034 if (!TWFunc::Recursive_Mkdir(part_settings.Backup_Folder)) {
1035 gui_err("fail_backup_folder=Failed to make backup folder.");
1036 return false;
1037 }
Dees_Troyd4b22b02013-01-18 17:17:58 +00001038 }
1039
Dees_Troy2673cec2013-04-02 20:22:16 +00001040 DataManager::SetProgress(0.0);
Dees_Troy093b7642012-09-21 15:59:38 -04001041
Dees_Troya13d74f2013-03-24 08:54:55 -05001042 start_pos = 0;
1043 end_pos = Backup_List.find(";", start_pos);
1044 while (end_pos != string::npos && start_pos < Backup_List.size()) {
bigbiff7abc5fe2015-01-17 16:53:12 -05001045 if (stop_backup.get_value() != 0)
1046 return -1;
Dees_Troya13d74f2013-03-24 08:54:55 -05001047 backup_path = Backup_List.substr(start_pos, end_pos - start_pos);
bigbiffce8f83c2015-12-12 18:30:21 -05001048 part_settings.Part = Find_Partition_By_Path(backup_path);
1049 if (part_settings.Part != NULL) {
1050 if (!Backup_Partition(&part_settings))
Dees_Troya13d74f2013-03-24 08:54:55 -05001051 return false;
1052 } else {
Ethan Yonker74db1572015-10-28 12:44:49 -05001053 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 -05001054 }
1055 start_pos = end_pos + 1;
1056 end_pos = Backup_List.find(";", start_pos);
1057 }
Dees_Troy43d8b002012-09-17 16:00:01 -04001058
1059 // Average BPS
bigbiffce8f83c2015-12-12 18:30:21 -05001060 if (part_settings.img_time == 0)
1061 part_settings.img_time = 1;
1062 if (part_settings.file_time == 0)
1063 part_settings.file_time = 1;
1064 int img_bps = (int)part_settings.img_bytes / (int)part_settings.img_time;
1065 unsigned long long file_bps = part_settings.file_bytes / (int)part_settings.file_time;
Dees_Troy43d8b002012-09-17 16:00:01 -04001066
bigbiffce8f83c2015-12-12 18:30:21 -05001067 if (part_settings.file_bytes != 0)
Ethan Yonker472f5062016-02-25 13:47:30 -06001068 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 -05001069 if (part_settings.img_bytes != 0)
Ethan Yonker472f5062016-02-25 13:47:30 -06001070 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 -04001071
1072 time(&total_stop);
1073 int total_time = (int) difftime(total_stop, total_start);
bigbiffce8f83c2015-12-12 18:30:21 -05001074
1075 uint64_t actual_backup_size;
Ethan Yonker3fdcda42016-11-30 12:29:37 -06001076 if (!adbbackup) {
1077 TWExclude twe;
1078 actual_backup_size = twe.Get_Folder_Size(part_settings.Backup_Folder);
1079 } else
bigbiffce8f83c2015-12-12 18:30:21 -05001080 actual_backup_size = part_settings.file_bytes + part_settings.img_bytes;
Matt Mowerfb1c4ff2014-04-16 13:43:36 -05001081 actual_backup_size /= (1024LLU * 1024LLU);
Dees_Troy43d8b002012-09-17 16:00:01 -04001082
bigbiffce8f83c2015-12-12 18:30:21 -05001083 int prev_img_bps = 0, use_compression = 0;
1084 unsigned long long prev_file_bps = 0;
Matt Mower173cdb92016-12-31 02:49:19 -06001085 DataManager::GetValue(TW_BACKUP_AVG_IMG_RATE, prev_img_bps);
Dees_Troy093b7642012-09-21 15:59:38 -04001086 img_bps += (prev_img_bps * 4);
Matt Mowerfb1c4ff2014-04-16 13:43:36 -05001087 img_bps /= 5;
Dees_Troy093b7642012-09-21 15:59:38 -04001088
Matt Mowerfb1c4ff2014-04-16 13:43:36 -05001089 DataManager::GetValue(TW_USE_COMPRESSION_VAR, use_compression);
Dees_Troy093b7642012-09-21 15:59:38 -04001090 if (use_compression)
1091 DataManager::GetValue(TW_BACKUP_AVG_FILE_COMP_RATE, prev_file_bps);
Matt Mowerfb1c4ff2014-04-16 13:43:36 -05001092 else
Dees_Troy093b7642012-09-21 15:59:38 -04001093 DataManager::GetValue(TW_BACKUP_AVG_FILE_RATE, prev_file_bps);
1094 file_bps += (prev_file_bps * 4);
Matt Mowerfb1c4ff2014-04-16 13:43:36 -05001095 file_bps /= 5;
Dees_Troy093b7642012-09-21 15:59:38 -04001096
Matt Mowerfb1c4ff2014-04-16 13:43:36 -05001097 DataManager::SetValue(TW_BACKUP_AVG_IMG_RATE, img_bps);
Dees_Troy093b7642012-09-21 15:59:38 -04001098 if (use_compression)
1099 DataManager::SetValue(TW_BACKUP_AVG_FILE_COMP_RATE, file_bps);
1100 else
1101 DataManager::SetValue(TW_BACKUP_AVG_FILE_RATE, file_bps);
1102
Ethan Yonker74db1572015-10-28 12:44:49 -05001103 gui_msg(Msg("total_backed_size=[{1} MB TOTAL BACKED UP]")(actual_backup_size));
Dees_Troy43d8b002012-09-17 16:00:01 -04001104 Update_System_Details();
Dees_Troyd0384ef2012-10-12 12:15:42 -04001105 UnMount_Main_Partitions();
Ethan Yonker56db1c42015-12-20 22:49:00 -06001106 gui_msg(Msg(msg::kHighlight, "backup_completed=[BACKUP COMPLETED IN {1} SECONDS]")(total_time)); // the end
Ethan Yonkere080c1f2016-09-19 13:50:25 -05001107 string backup_log = part_settings.Backup_Folder + "/recovery.log";
Dees_Troy3f5c4e82013-02-01 15:16:59 +00001108 TWFunc::copy_file("/tmp/recovery.log", backup_log, 0644);
Ethan Yonker4b94cfd2014-12-11 10:00:45 -06001109 tw_set_default_metadata(backup_log.c_str());
bigbiffce8f83c2015-12-12 18:30:21 -05001110
1111 if (part_settings.adbbackup) {
1112 if (twadbbu::Write_ADB_Stream_Trailer() == false) {
1113 return false;
1114 }
1115 }
1116 part_settings.adbbackup = false;
1117 DataManager::SetValue("tw_enable_adb_backup", 0);
1118
Dees_Troy3f5c4e82013-02-01 15:16:59 +00001119 return true;
Dees_Troy51a0e822012-09-05 15:24:24 -04001120}
1121
bigbiffce8f83c2015-12-12 18:30:21 -05001122bool TWPartitionManager::Restore_Partition(PartitionSettings *part_settings) {
Dees_Troy4a2a1262012-09-18 09:33:47 -04001123 time_t Start, Stop;
bigbiffce8f83c2015-12-12 18:30:21 -05001124
bigbiff bigbiffb5ecaad2017-03-20 18:53:53 -04001125 if (part_settings->adbbackup) {
bigbiff bigbiff19fb79c2016-09-05 21:04:51 -04001126 std::string partName = part_settings->Part->Backup_Name + "." + part_settings->Part->Current_File_System + ".win";
1127 LOGINFO("setting backup name: %s\n", partName.c_str());
bigbiff bigbiffb5ecaad2017-03-20 18:53:53 -04001128 part_settings->Part->Set_Backup_FileName(part_settings->Part->Backup_Name + "." + part_settings->Part->Current_File_System + ".win");
1129 }
1130
Tom Hite5a926722014-09-15 01:31:03 +00001131 TWFunc::SetPerformanceMode(true);
bigbiffce8f83c2015-12-12 18:30:21 -05001132
Dees_Troy4a2a1262012-09-18 09:33:47 -04001133 time(&Start);
Ethan Yonker472f5062016-02-25 13:47:30 -06001134
bigbiffce8f83c2015-12-12 18:30:21 -05001135 if (!part_settings->Part->Restore(part_settings)) {
Tom Hite5a926722014-09-15 01:31:03 +00001136 TWFunc::SetPerformanceMode(false);
Dees_Troy4a2a1262012-09-18 09:33:47 -04001137 return false;
Tom Hite5a926722014-09-15 01:31:03 +00001138 }
bigbiff bigbiff19fb79c2016-09-05 21:04:51 -04001139 if (part_settings->Part->Has_SubPartition && !part_settings->adbbackup) {
Dees_Troy8170a922012-09-18 15:40:25 -04001140 std::vector<TWPartition*>::iterator subpart;
bigbiff bigbiff8fd4b092016-08-30 20:48:53 -04001141 TWPartition *parentPart = part_settings->Part;
Dees_Troy8170a922012-09-18 15:40:25 -04001142
1143 for (subpart = Partitions.begin(); subpart != Partitions.end(); subpart++) {
bigbiff bigbiff8fd4b092016-08-30 20:48:53 -04001144 part_settings->Part = *subpart;
1145 if ((*subpart)->Is_SubPartition && (*subpart)->SubPartition_Of == parentPart->Mount_Point) {
1146 part_settings->Part = (*subpart);
bigbiff bigbiff19fb79c2016-09-05 21:04:51 -04001147 part_settings->Part->Set_Backup_FileName(part_settings->Part->Backup_Name + "." + part_settings->Part->Current_File_System + ".win");
bigbiffce8f83c2015-12-12 18:30:21 -05001148 if (!(*subpart)->Restore(part_settings)) {
Tom Hite5a926722014-09-15 01:31:03 +00001149 TWFunc::SetPerformanceMode(false);
Dees_Troy8170a922012-09-18 15:40:25 -04001150 return false;
Tom Hite5a926722014-09-15 01:31:03 +00001151 }
Dees_Troy8170a922012-09-18 15:40:25 -04001152 }
1153 }
1154 }
Dees_Troy4a2a1262012-09-18 09:33:47 -04001155 time(&Stop);
Tom Hite5a926722014-09-15 01:31:03 +00001156 TWFunc::SetPerformanceMode(false);
bigbiffce8f83c2015-12-12 18:30:21 -05001157 gui_msg(Msg("restore_part_done=[{1} done ({2} seconds)]")(part_settings->Part->Backup_Display_Name)((int)difftime(Stop, Start)));
1158
Dees_Troy4a2a1262012-09-18 09:33:47 -04001159 return true;
1160}
1161
Ethan Yonker472f5062016-02-25 13:47:30 -06001162int TWPartitionManager::Run_Restore(const string& Restore_Name) {
bigbiffce8f83c2015-12-12 18:30:21 -05001163 PartitionSettings part_settings;
bigbiff bigbiff56cf5642016-08-19 17:43:45 -04001164 int check_digest;
bigbiffce8f83c2015-12-12 18:30:21 -05001165
Dees_Troy4a2a1262012-09-18 09:33:47 -04001166 time_t rStart, rStop;
1167 time(&rStart);
Dees_Troya13d74f2013-03-24 08:54:55 -05001168 string Restore_List, restore_path;
1169 size_t start_pos = 0, end_pos;
bigbiffce8f83c2015-12-12 18:30:21 -05001170
Ethan Yonkerdcf2b672016-09-13 14:41:53 -05001171 part_settings.Backup_Folder = Restore_Name;
bigbiffce8f83c2015-12-12 18:30:21 -05001172 part_settings.Part = NULL;
1173 part_settings.partition_count = 0;
1174 part_settings.total_restore_size = 0;
1175 part_settings.adbbackup = false;
1176 part_settings.PM_Method = PM_RESTORE;
Dees_Troy43d8b002012-09-17 16:00:01 -04001177
Ethan Yonker74db1572015-10-28 12:44:49 -05001178 gui_msg("restore_started=[RESTORE STARTED]");
1179 gui_msg(Msg("restore_folder=Restore folder: '{1}'")(Restore_Name));
Dees_Troy43d8b002012-09-17 16:00:01 -04001180
Dees_Troy4a2a1262012-09-18 09:33:47 -04001181 if (!Mount_Current_Storage(true))
1182 return false;
1183
bigbiff bigbiff56cf5642016-08-19 17:43:45 -04001184 DataManager::GetValue(TW_SKIP_DIGEST_CHECK_VAR, check_digest);
1185 if (check_digest > 0) {
1186 // Check Digest files first before restoring to ensure that all of them match before starting a restore
1187 TWFunc::GUI_Operation_Text(TW_VERIFY_DIGEST_TEXT, gui_parse_text("{@verifying_digest}"));
1188 gui_msg("verifying_digest=Verifying Digest");
Dees_Troya13d74f2013-03-24 08:54:55 -05001189 } else {
bigbiff bigbiff56cf5642016-08-19 17:43:45 -04001190 gui_msg("skip_digest=Skipping Digest check based on user setting.");
Dees_Troya13d74f2013-03-24 08:54:55 -05001191 }
Ethan Yonker74db1572015-10-28 12:44:49 -05001192 gui_msg("calc_restore=Calculating restore details...");
Dees_Troya13d74f2013-03-24 08:54:55 -05001193 DataManager::GetValue("tw_restore_selected", Restore_List);
bigbiffce8f83c2015-12-12 18:30:21 -05001194
Dees_Troya13d74f2013-03-24 08:54:55 -05001195 if (!Restore_List.empty()) {
1196 end_pos = Restore_List.find(";", start_pos);
1197 while (end_pos != string::npos && start_pos < Restore_List.size()) {
1198 restore_path = Restore_List.substr(start_pos, end_pos - start_pos);
bigbiffce8f83c2015-12-12 18:30:21 -05001199 part_settings.Part = Find_Partition_By_Path(restore_path);
1200 if (part_settings.Part != NULL) {
bigbiffce8f83c2015-12-12 18:30:21 -05001201 if (part_settings.Part->Mount_Read_Only) {
1202 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 -05001203 return false;
1204 }
bigbiffce8f83c2015-12-12 18:30:21 -05001205
bigbiff bigbiff56cf5642016-08-19 17:43:45 -04001206 string Full_Filename = part_settings.Backup_Folder + "/" + part_settings.Part->Backup_FileName;
1207
bigbiff4a60bee2021-01-23 14:08:03 -05001208 if (tw_get_default_metadata(Get_Android_Root_Path().c_str()) != 0) {
1209 gui_msg(Msg(msg::kWarning, "restore_system_context=Unable to get default context for {1} -- Android may not boot.")(Get_Android_Root_Path()));
1210 }
1211
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.partition_count++;
1215 part_settings.total_restore_size += part_settings.Part->Get_Restore_Size(&part_settings);
1216 if (part_settings.Part->Has_SubPartition) {
bigbiff bigbiff8fd4b092016-08-30 20:48:53 -04001217 TWPartition *parentPart = part_settings.Part;
Dees_Troya13d74f2013-03-24 08:54:55 -05001218 std::vector<TWPartition*>::iterator subpart;
1219
1220 for (subpart = Partitions.begin(); subpart != Partitions.end(); subpart++) {
bigbiff bigbiff8fd4b092016-08-30 20:48:53 -04001221 part_settings.Part = *subpart;
1222 if ((*subpart)->Is_SubPartition && (*subpart)->SubPartition_Of == parentPart->Mount_Point) {
bigbiff bigbiff56cf5642016-08-19 17:43:45 -04001223 if (check_digest > 0 && !twrpDigestDriver::Check_Digest(Full_Filename))
Dees_Troya13d74f2013-03-24 08:54:55 -05001224 return false;
bigbiffce8f83c2015-12-12 18:30:21 -05001225 part_settings.total_restore_size += (*subpart)->Get_Restore_Size(&part_settings);
Dees_Troya13d74f2013-03-24 08:54:55 -05001226 }
1227 }
1228 }
1229 } else {
Ethan Yonker74db1572015-10-28 12:44:49 -05001230 gui_msg(Msg(msg::kError, "restore_unable_locate=Unable to locate '{1}' partition for restoring.")(restore_path));
Dees_Troya13d74f2013-03-24 08:54:55 -05001231 }
1232 start_pos = end_pos + 1;
1233 end_pos = Restore_List.find(";", start_pos);
Dees_Troy4a2a1262012-09-18 09:33:47 -04001234 }
Dees_Troy4a2a1262012-09-18 09:33:47 -04001235 }
Dees_Troy4a2a1262012-09-18 09:33:47 -04001236
bigbiffce8f83c2015-12-12 18:30:21 -05001237 if (part_settings.partition_count == 0) {
Ethan Yonker74db1572015-10-28 12:44:49 -05001238 gui_err("no_part_restore=No partitions selected for restore.");
Dees_Troy4a2a1262012-09-18 09:33:47 -04001239 return false;
1240 }
1241
bigbiffce8f83c2015-12-12 18:30:21 -05001242 gui_msg(Msg("restore_part_count=Restoring {1} partitions...")(part_settings.partition_count));
1243 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 +00001244 DataManager::SetProgress(0.0);
bigbiffce8f83c2015-12-12 18:30:21 -05001245 ProgressTracking progress(part_settings.total_restore_size);
1246 part_settings.progress = &progress;
Ethan Yonker1b7a31b2014-07-03 15:09:22 -05001247
Dees_Troya13d74f2013-03-24 08:54:55 -05001248 start_pos = 0;
1249 if (!Restore_List.empty()) {
1250 end_pos = Restore_List.find(";", start_pos);
1251 while (end_pos != string::npos && start_pos < Restore_List.size()) {
1252 restore_path = Restore_List.substr(start_pos, end_pos - start_pos);
bigbiffce8f83c2015-12-12 18:30:21 -05001253
1254 part_settings.Part = Find_Partition_By_Path(restore_path);
1255 if (part_settings.Part != NULL) {
1256 part_settings.partition_count++;
bigbiffce8f83c2015-12-12 18:30:21 -05001257 if (!Restore_Partition(&part_settings))
Dees_Troya13d74f2013-03-24 08:54:55 -05001258 return false;
1259 } else {
Ethan Yonker74db1572015-10-28 12:44:49 -05001260 gui_msg(Msg(msg::kError, "restore_unable_locate=Unable to locate '{1}' partition for restoring.")(restore_path));
Dees_Troya13d74f2013-03-24 08:54:55 -05001261 }
1262 start_pos = end_pos + 1;
1263 end_pos = Restore_List.find(";", start_pos);
1264 }
1265 }
Ethan Yonker74db1572015-10-28 12:44:49 -05001266 TWFunc::GUI_Operation_Text(TW_UPDATE_SYSTEM_DETAILS_TEXT, gui_parse_text("{@updating_system_details}"));
bigbiff4a60bee2021-01-23 14:08:03 -05001267 tw_set_default_metadata(Get_Android_Root_Path().c_str());
Captain Throwback9d6feb52018-07-27 10:05:24 -04001268 UnMount_By_Path(Get_Android_Root_Path(), false);
Dees_Troy43d8b002012-09-17 16:00:01 -04001269 Update_System_Details();
Dees_Troyd0384ef2012-10-12 12:15:42 -04001270 UnMount_Main_Partitions();
Dees_Troy4a2a1262012-09-18 09:33:47 -04001271 time(&rStop);
Matt Mower3c366972015-12-25 19:28:31 -06001272 gui_msg(Msg(msg::kHighlight, "restore_completed=[RESTORE COMPLETED IN {1} SECONDS]")((int)difftime(rStop,rStart)));
bigbiff8f5fad32021-11-03 20:39:02 -04001273 TWPartition* Decrypt_Data = Find_Partition_By_Path("/data");
1274 if (Decrypt_Data && Decrypt_Data->Is_Encrypted)
1275 gui_msg(Msg(msg::kWarning, "reboot_after_restore=It is recommended to reboot Android once after first boot."));
Ethan Yonker1b7a31b2014-07-03 15:09:22 -05001276 DataManager::SetValue("tw_file_progress", "");
bigbiffce8f83c2015-12-12 18:30:21 -05001277
Dees_Troy63c8df72012-09-10 14:02:05 -04001278 return true;
Dees_Troy51a0e822012-09-05 15:24:24 -04001279}
1280
1281void TWPartitionManager::Set_Restore_Files(string Restore_Name) {
Dees_Troy63c8df72012-09-10 14:02:05 -04001282 // Start with the default values
Dees_Troya13d74f2013-03-24 08:54:55 -05001283 string Restore_List;
Dees_Troy83bd4832013-05-04 12:39:56 +00001284 bool get_date = true, check_encryption = true;
bigbiff bigbiff19fb79c2016-09-05 21:04:51 -04001285 bool adbbackup = false;
Dees_Troy83bd4832013-05-04 12:39:56 +00001286
1287 DataManager::SetValue("tw_restore_encrypted", 0);
bigbiff bigbiff19fb79c2016-09-05 21:04:51 -04001288 if (twadbbu::Check_ADB_Backup_File(Restore_Name)) {
1289 vector<string> adb_files;
1290 adb_files = twadbbu::Get_ADB_Backup_Files(Restore_Name);
1291 for (unsigned int i = 0; i < adb_files.size(); ++i) {
1292 string adb_restore_file = adb_files.at(i);
1293 std::size_t pos = adb_restore_file.find_first_of(".");
1294 std::string path = "/" + adb_restore_file.substr(0, pos);
1295 Restore_List = path + ";";
1296 TWPartition* Part = Find_Partition_By_Path(path);
1297 Part->Backup_FileName = TWFunc::Get_Filename(adb_restore_file);
1298 adbbackup = true;
1299 }
1300 DataManager::SetValue("tw_enable_adb_backup", 1);
Dees_Troy63c8df72012-09-10 14:02:05 -04001301 }
bigbiff bigbiff19fb79c2016-09-05 21:04:51 -04001302 else {
1303 DIR* d;
1304 d = opendir(Restore_Name.c_str());
1305 if (d == NULL)
Dees_Troy63c8df72012-09-10 14:02:05 -04001306 {
bigbiff bigbiff19fb79c2016-09-05 21:04:51 -04001307 gui_msg(Msg(msg::kError, "error_opening_strerr=Error opening: '{1}' ({2})")(Restore_Name)(strerror(errno)));
1308 return;
Dees_Troy63c8df72012-09-10 14:02:05 -04001309 }
bigbiff bigbiff19fb79c2016-09-05 21:04:51 -04001310
1311 struct dirent* de;
1312 while ((de = readdir(d)) != NULL)
Dees_Troy63c8df72012-09-10 14:02:05 -04001313 {
bigbiff bigbiff19fb79c2016-09-05 21:04:51 -04001314 // Strip off three components
1315 char str[256];
1316 char* label;
1317 char* fstype = NULL;
1318 char* extn = NULL;
1319 char* ptr;
Dees_Troy63c8df72012-09-10 14:02:05 -04001320
bigbiff bigbiff19fb79c2016-09-05 21:04:51 -04001321 strcpy(str, de->d_name);
1322 if (strlen(str) <= 2)
1323 continue;
Dees_Troy83bd4832013-05-04 12:39:56 +00001324
bigbiff bigbiff19fb79c2016-09-05 21:04:51 -04001325 if (get_date) {
1326 char file_path[255];
1327 struct stat st;
1328
1329 strcpy(file_path, Restore_Name.c_str());
1330 strcat(file_path, "/");
1331 strcat(file_path, str);
1332 stat(file_path, &st);
1333 string backup_date = ctime((const time_t*)(&st.st_mtime));
1334 DataManager::SetValue(TW_RESTORE_FILE_DATE, backup_date);
1335 get_date = false;
Dees_Troy83bd4832013-05-04 12:39:56 +00001336 }
Dees_Troy63c8df72012-09-10 14:02:05 -04001337
bigbiff bigbiff19fb79c2016-09-05 21:04:51 -04001338 label = str;
1339 ptr = label;
1340 while (*ptr && *ptr != '.') ptr++;
1341 if (*ptr == '.')
1342 {
1343 *ptr = 0x00;
1344 ptr++;
1345 fstype = ptr;
1346 }
1347 while (*ptr && *ptr != '.') ptr++;
1348 if (*ptr == '.')
1349 {
1350 *ptr = 0x00;
1351 ptr++;
1352 extn = ptr;
1353 }
Dees_Troy63c8df72012-09-10 14:02:05 -04001354
bigbiff bigbiff19fb79c2016-09-05 21:04:51 -04001355 if (fstype == NULL || extn == NULL || strcmp(fstype, "log") == 0) continue;
1356 int extnlength = strlen(extn);
1357 if (extnlength != 3 && extnlength != 6) continue;
1358 if (extnlength >= 3 && strncmp(extn, "win", 3) != 0) continue;
1359 //if (extnlength == 6 && strncmp(extn, "win000", 6) != 0) continue;
Dees_Troy63c8df72012-09-10 14:02:05 -04001360
bigbiff bigbiff19fb79c2016-09-05 21:04:51 -04001361 if (check_encryption) {
1362 string filename = Restore_Name + "/";
1363 filename += de->d_name;
1364 if (TWFunc::Get_File_Type(filename) == 2) {
1365 LOGINFO("'%s' is encrypted\n", filename.c_str());
1366 DataManager::SetValue("tw_restore_encrypted", 1);
1367 }
1368 }
1369 if (extnlength == 6 && strncmp(extn, "win000", 6) != 0) continue;
1370
1371 TWPartition* Part = Find_Partition_By_Path(label);
1372 if (Part == NULL)
1373 {
1374 gui_msg(Msg(msg::kError, "unable_locate_part_backup_name=Unable to locate partition by backup name: '{1}'")(label));
1375 continue;
1376 }
1377
1378 Part->Backup_FileName = de->d_name;
1379 if (strlen(extn) > 3) {
1380 Part->Backup_FileName.resize(Part->Backup_FileName.size() - strlen(extn) + 3);
1381 }
1382
dianlujitaob76a73a2020-04-30 20:33:20 +08001383 if (!Part->Is_SubPartition) {
1384 if (Part->Backup_Path == Get_Android_Root_Path())
1385 Restore_List += "/system;";
1386 else
1387 Restore_List += Part->Backup_Path + ";";
1388 }
bigbiff bigbiff19fb79c2016-09-05 21:04:51 -04001389 }
1390 closedir(d);
Dees_Troy63c8df72012-09-10 14:02:05 -04001391 }
bigbiff bigbiff19fb79c2016-09-05 21:04:51 -04001392
1393 if (adbbackup) {
1394 Restore_List = "ADB_Backup;";
1395 adbbackup = false;
1396 }
Dees_Troy63c8df72012-09-10 14:02:05 -04001397
Dees_Troya13d74f2013-03-24 08:54:55 -05001398 // Set the final value
1399 DataManager::SetValue("tw_restore_list", Restore_List);
1400 DataManager::SetValue("tw_restore_selected", Restore_List);
Dees_Troy51a0e822012-09-05 15:24:24 -04001401 return;
1402}
1403
1404int TWPartitionManager::Wipe_By_Path(string Path) {
Dees_Troy63c8df72012-09-10 14:02:05 -04001405 std::vector<TWPartition*>::iterator iter;
Mohd Farazfdd49bb2020-04-21 18:56:44 +05301406 std::vector < TWPartition * >::iterator iter1;
Dees_Troy63c8df72012-09-10 14:02:05 -04001407 int ret = false;
1408 bool found = false;
Dees_Troy38bd7602012-09-14 13:33:53 -04001409 string Local_Path = TWFunc::Get_Root_Path(Path);
Dees_Troy63c8df72012-09-10 14:02:05 -04001410
dianlujitaob76a73a2020-04-30 20:33:20 +08001411 if (Local_Path == "/system")
1412 Local_Path = Get_Android_Root_Path();
bigbiffaed1bdf2021-08-03 18:21:39 -04001413 if (Path == "/cache") {
1414 TWPartition* cache = Find_Partition_By_Path("/cache");
1415 if (cache == nullptr) {
1416 TWPartition* dat = Find_Partition_By_Path("/data");
1417 if (dat) {
1418 dat->Wipe_Data_Cache();
1419 found = true;
1420 }
1421 }
1422 }
Dees_Troy63c8df72012-09-10 14:02:05 -04001423 // Iterate through all partitions
1424 for (iter = Partitions.begin(); iter != Partitions.end(); iter++) {
Dees_Troy657c3092012-09-10 20:32:10 -04001425 if ((*iter)->Mount_Point == Local_Path || (!(*iter)->Symlink_Mount_Point.empty() && (*iter)->Symlink_Mount_Point == Local_Path)) {
Mohd Farazfdd49bb2020-04-21 18:56:44 +05301426 // iterate through all partitions since some legacy devices uses other partitions as vendor causes issues while wiping
1427 (*iter)->Find_Actual_Block_Device();
1428 for (iter1 = Partitions.begin (); iter1 != Partitions.end (); iter1++)
1429 {
1430 (*iter1)->Find_Actual_Block_Device();
1431 if ((*iter)->Actual_Block_Device == (*iter1)->Actual_Block_Device && (*iter)->Mount_Point != (*iter1)->Mount_Point)
1432 (*iter1)->UnMount(false);
1433 }
Dees_Troye58d5262012-09-21 12:27:57 -04001434 if (Path == "/and-sec")
1435 ret = (*iter)->Wipe_AndSec();
1436 else
1437 ret = (*iter)->Wipe();
Dees_Troy63c8df72012-09-10 14:02:05 -04001438 found = true;
1439 } else if ((*iter)->Is_SubPartition && (*iter)->SubPartition_Of == Local_Path) {
1440 (*iter)->Wipe();
1441 }
1442 }
1443 if (found) {
1444 return ret;
1445 } else
Ethan Yonker74db1572015-10-28 12:44:49 -05001446 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 -04001447 return false;
Dees_Troy51a0e822012-09-05 15:24:24 -04001448}
1449
Ethan Yonker87c7bac2014-05-25 21:41:08 -05001450int TWPartitionManager::Wipe_By_Path(string Path, string New_File_System) {
1451 std::vector<TWPartition*>::iterator iter;
1452 int ret = false;
1453 bool found = false;
1454 string Local_Path = TWFunc::Get_Root_Path(Path);
1455
1456 // Iterate through all partitions
1457 for (iter = Partitions.begin(); iter != Partitions.end(); iter++) {
1458 if ((*iter)->Mount_Point == Local_Path || (!(*iter)->Symlink_Mount_Point.empty() && (*iter)->Symlink_Mount_Point == Local_Path)) {
1459 if (Path == "/and-sec")
1460 ret = (*iter)->Wipe_AndSec();
1461 else
1462 ret = (*iter)->Wipe(New_File_System);
1463 found = true;
1464 } else if ((*iter)->Is_SubPartition && (*iter)->SubPartition_Of == Local_Path) {
1465 (*iter)->Wipe(New_File_System);
1466 }
1467 }
1468 if (found) {
1469 return ret;
1470 } else
Ethan Yonker74db1572015-10-28 12:44:49 -05001471 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 -05001472 return false;
1473}
1474
Dees_Troy51a0e822012-09-05 15:24:24 -04001475int TWPartitionManager::Factory_Reset(void) {
Dees_Troy63c8df72012-09-10 14:02:05 -04001476 std::vector<TWPartition*>::iterator iter;
1477 int ret = true;
1478
1479 for (iter = Partitions.begin(); iter != Partitions.end(); iter++) {
Dees_Troy38bd7602012-09-14 13:33:53 -04001480 if ((*iter)->Wipe_During_Factory_Reset && (*iter)->Is_Present) {
Ethan Yonker89583ef2015-08-26 09:01:59 -05001481#ifdef TW_OEM_BUILD
1482 if ((*iter)->Mount_Point == "/data") {
1483 if (!(*iter)->Wipe_Encryption())
1484 ret = false;
1485 } else {
1486#endif
1487 if (!(*iter)->Wipe())
1488 ret = false;
1489#ifdef TW_OEM_BUILD
1490 }
1491#endif
Dees_Troy094207a2012-09-26 12:00:39 -04001492 } else if ((*iter)->Has_Android_Secure) {
1493 if (!(*iter)->Wipe_AndSec())
1494 ret = false;
Dees_Troy63c8df72012-09-10 14:02:05 -04001495 }
1496 }
bigbiffad58e1b2020-07-06 20:24:34 -04001497 TWFunc::check_and_run_script("/system/bin/factoryreset.sh", "Factory Reset Script");
Dees_Troy63c8df72012-09-10 14:02:05 -04001498 return ret;
Dees_Troy51a0e822012-09-05 15:24:24 -04001499}
1500
Dees_Troy38bd7602012-09-14 13:33:53 -04001501int TWPartitionManager::Wipe_Dalvik_Cache(void) {
1502 struct stat st;
bigbiff bigbiff9c754052013-01-09 09:09:08 -05001503 vector <string> dir;
Dees_Troy38bd7602012-09-14 13:33:53 -04001504
1505 if (!Mount_By_Path("/data", true))
1506 return false;
1507
bigbiff bigbiff9c754052013-01-09 09:09:08 -05001508 dir.push_back("/data/dalvik-cache");
bigbiff bigbiff19874f12019-01-08 20:06:57 -05001509
bigbiff25d25b92020-06-19 16:07:38 -04001510 std::string cacheDir = TWFunc::get_log_dir();
1511 if (cacheDir == CACHE_LOGS_DIR) {
1512 if (!PartitionManager.Mount_By_Path(CACHE_LOGS_DIR, false)) {
1513 LOGINFO("Unable to mount %s for wiping cache.\n", CACHE_LOGS_DIR);
bigbiff bigbiff19874f12019-01-08 20:06:57 -05001514 }
1515 dir.push_back(cacheDir + "dalvik-cache");
1516 dir.push_back(cacheDir + "/dc");
bigbiff bigbiff9c754052013-01-09 09:09:08 -05001517 }
Ethan Yonkerff2b7882016-12-10 09:04:41 -06001518
Dees_Troy38bd7602012-09-14 13:33:53 -04001519 TWPartition* sdext = Find_Partition_By_Path("/sd-ext");
Vojtech Bocekfafb0c52013-07-25 22:53:02 +02001520 if (sdext && sdext->Is_Present && sdext->Mount(false))
1521 {
1522 if (stat("/sd-ext/dalvik-cache", &st) == 0)
1523 {
Ethan Yonkerff2b7882016-12-10 09:04:41 -06001524 dir.push_back("/sd-ext/dalvik-cache");
1525 }
1526 }
1527
bigbiff25d25b92020-06-19 16:07:38 -04001528 if (cacheDir == CACHE_LOGS_DIR) {
bigbiff bigbiff19874f12019-01-08 20:06:57 -05001529 gui_msg("wiping_cache_dalvik=Wiping Dalvik Cache Directories...");
1530 } else {
1531 gui_msg("wiping_dalvik=Wiping Dalvik Directory...");
1532 }
Ethan Yonkerff2b7882016-12-10 09:04:41 -06001533 for (unsigned i = 0; i < dir.size(); ++i) {
1534 if (stat(dir.at(i).c_str(), &st) == 0) {
1535 TWFunc::removeDir(dir.at(i), false);
1536 gui_msg(Msg("cleaned=Cleaned: {1}...")(dir.at(i)));
bigbiff bigbiff9c754052013-01-09 09:09:08 -05001537 }
Vojtech Bocekfafb0c52013-07-25 22:53:02 +02001538 }
bigbiff bigbiff19874f12019-01-08 20:06:57 -05001539
bigbiff25d25b92020-06-19 16:07:38 -04001540 if (cacheDir == CACHE_LOGS_DIR) {
bigbiff bigbiff19874f12019-01-08 20:06:57 -05001541 gui_msg("cache_dalvik_done=-- Dalvik Cache Directories Wipe Complete!");
1542 } else {
1543 gui_msg("dalvik_done=-- Dalvik Directory Wipe Complete!");
1544 }
1545
Dees_Troy38bd7602012-09-14 13:33:53 -04001546 return true;
1547}
1548
1549int TWPartitionManager::Wipe_Rotate_Data(void) {
1550 if (!Mount_By_Path("/data", true))
1551 return false;
1552
bigbiff bigbiff9c754052013-01-09 09:09:08 -05001553 unlink("/data/misc/akmd*");
1554 unlink("/data/misc/rild*");
Dees_Troy2673cec2013-04-02 20:22:16 +00001555 gui_print("Rotation data wiped.\n");
Dees_Troy38bd7602012-09-14 13:33:53 -04001556 return true;
1557}
1558
1559int TWPartitionManager::Wipe_Battery_Stats(void) {
1560 struct stat st;
1561
1562 if (!Mount_By_Path("/data", true))
1563 return false;
1564
1565 if (0 != stat("/data/system/batterystats.bin", &st)) {
Dees_Troy2673cec2013-04-02 20:22:16 +00001566 gui_print("No Battery Stats Found. No Need To Wipe.\n");
Dees_Troy38bd7602012-09-14 13:33:53 -04001567 } else {
1568 remove("/data/system/batterystats.bin");
Dees_Troy2673cec2013-04-02 20:22:16 +00001569 gui_print("Cleared battery stats.\n");
Dees_Troy38bd7602012-09-14 13:33:53 -04001570 }
1571 return true;
1572}
1573
Dees_Troy2ff5a8d2012-09-26 14:53:02 -04001574int TWPartitionManager::Wipe_Android_Secure(void) {
1575 std::vector<TWPartition*>::iterator iter;
1576 int ret = false;
1577 bool found = false;
1578
1579 // Iterate through all partitions
1580 for (iter = Partitions.begin(); iter != Partitions.end(); iter++) {
1581 if ((*iter)->Has_Android_Secure) {
1582 ret = (*iter)->Wipe_AndSec();
1583 found = true;
1584 }
1585 }
1586 if (found) {
1587 return ret;
1588 } else {
Ethan Yonker74db1572015-10-28 12:44:49 -05001589 gui_err("no_andsec=No android secure partitions found.");
Dees_Troy2ff5a8d2012-09-26 14:53:02 -04001590 }
1591 return false;
1592}
1593
Dees_Troy38bd7602012-09-14 13:33:53 -04001594int TWPartitionManager::Format_Data(void) {
1595 TWPartition* dat = Find_Partition_By_Path("/data");
bigbiffcfa875c2021-06-20 16:20:27 -04001596 TWPartition* metadata = Find_Partition_By_Path("/metadata");
1597 if (metadata != NULL)
1598 metadata->UnMount(false);
Dees_Troy38bd7602012-09-14 13:33:53 -04001599
1600 if (dat != NULL) {
bigbiffab76bd72021-10-11 10:17:48 -04001601 if (android::base::GetBoolProperty("ro.virtual_ab.enabled", false)) {
bigbiffcfa875c2021-06-20 16:20:27 -04001602#ifndef TW_EXCLUDE_APEX
1603 twrpApex apex;
1604 apex.Unmount();
1605#endif
1606 if (metadata != NULL)
1607 metadata->Mount(true);
bigbiffd21252f2021-09-18 15:56:32 -04001608 if (!Check_Pending_Merges())
bigbiffcfa875c2021-06-20 16:20:27 -04001609 return false;
1610 }
Dees_Troy38bd7602012-09-14 13:33:53 -04001611 return dat->Wipe_Encryption();
1612 } else {
Matt Mower3c366972015-12-25 19:28:31 -06001613 gui_msg(Msg(msg::kError, "unable_to_locate=Unable to locate {1}.")("/data"));
Dees_Troy38bd7602012-09-14 13:33:53 -04001614 return false;
1615 }
1616 return false;
1617}
1618
1619int TWPartitionManager::Wipe_Media_From_Data(void) {
1620 TWPartition* dat = Find_Partition_By_Path("/data");
1621
1622 if (dat != NULL) {
1623 if (!dat->Has_Data_Media) {
Dees_Troy2673cec2013-04-02 20:22:16 +00001624 LOGERR("This device does not have /data/media\n");
Dees_Troy38bd7602012-09-14 13:33:53 -04001625 return false;
1626 }
1627 if (!dat->Mount(true))
1628 return false;
1629
Ethan Yonker74db1572015-10-28 12:44:49 -05001630 gui_msg("wiping_datamedia=Wiping internal storage -- /data/media...");
Ethan Yonker726a0202014-12-16 20:01:38 -06001631 Remove_MTP_Storage(dat->MTP_Storage_ID);
bigbiff bigbiff9c754052013-01-09 09:09:08 -05001632 TWFunc::removeDir("/data/media", false);
xiaolu9416f4f2015-06-04 08:22:23 +08001633 dat->Recreate_Media_Folder();
Ethan Yonker726a0202014-12-16 20:01:38 -06001634 Add_MTP_Storage(dat->MTP_Storage_ID);
Dees_Troy38bd7602012-09-14 13:33:53 -04001635 return true;
1636 } else {
Matt Mower3c366972015-12-25 19:28:31 -06001637 gui_msg(Msg(msg::kError, "unable_to_locate=Unable to locate {1}.")("/data"));
Dees_Troy38bd7602012-09-14 13:33:53 -04001638 return false;
1639 }
1640 return false;
1641}
1642
Ethan Yonker87c7bac2014-05-25 21:41:08 -05001643int TWPartitionManager::Repair_By_Path(string Path, bool Display_Error) {
1644 std::vector<TWPartition*>::iterator iter;
1645 int ret = false;
1646 bool found = false;
1647 string Local_Path = TWFunc::Get_Root_Path(Path);
1648
1649 if (Local_Path == "/tmp" || Local_Path == "/")
1650 return true;
1651
1652 // Iterate through all partitions
1653 for (iter = Partitions.begin(); iter != Partitions.end(); iter++) {
1654 if ((*iter)->Mount_Point == Local_Path || (!(*iter)->Symlink_Mount_Point.empty() && (*iter)->Symlink_Mount_Point == Local_Path)) {