blob: 284fe2bc9195bd3f23da4ade831bbbe8e5b550a6 [file] [log] [blame]
Dees Troy3be70a82013-10-22 14:25:12 +00001/*
bigbiffee7b7ff2020-03-23 15:08:27 -04002 Copyright 2014 to 2020 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
bigbiffee7b7ff2020-03-23 15:08:27 -040040
Ethan Yonker6e8c27a2016-12-22 17:55:57 -060041#include <sys/poll.h>
42#include <sys/socket.h>
43#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>
55#include <libgsi/libgsi.h>
56#include <liblp/liblp.h>
Ethan Yonker6e8c27a2016-12-22 17:55:57 -060057
Dees_Troy51a0e822012-09-05 15:24:24 -040058#include "variables.h"
Dees_Troy2673cec2013-04-02 20:22:16 +000059#include "twcommon.h"
Dees_Troy51a0e822012-09-05 15:24:24 -040060#include "partitions.hpp"
Dees_Troy5bf43922012-09-07 16:07:55 -040061#include "data.hpp"
Dees_Troy38bd7602012-09-14 13:33:53 -040062#include "twrp-functions.hpp"
Ethan Yonkerb5fab762016-01-28 14:03:33 -060063#include "fixContexts.hpp"
Ethan Yonker3fdcda42016-11-30 12:29:37 -060064#include "exclude.hpp"
Ethan Yonker4b94cfd2014-12-11 10:00:45 -060065#include "set_metadata.h"
bigbiff7abc5fe2015-01-17 16:53:12 -050066#include "tw_atomic.hpp"
Ethan Yonker74db1572015-10-28 12:44:49 -050067#include "gui/gui.hpp"
Ethan Yonker472f5062016-02-25 13:47:30 -060068#include "progresstracking.hpp"
bigbiff bigbiff56cf5642016-08-19 17:43:45 -040069#include "twrpDigestDriver.hpp"
bigbiffad58e1b2020-07-06 20:24:34 -040070#include "twrpRepacker.hpp"
bigbiffce8f83c2015-12-12 18:30:21 -050071#include "adbbu/libtwadbbu.hpp"
Dees_Troy38bd7602012-09-14 13:33:53 -040072
bigbiff bigbiffc7eee6f2014-09-02 18:59:01 -040073#ifdef TW_HAS_MTP
bigbiff bigbiffaf32bb92018-12-18 18:39:53 -050074#ifdef TW_HAS_LEGACY_MTP
75#include "mtp/legacy/mtp_MtpServer.hpp"
76#include "mtp/legacy/twrpMtp.hpp"
77#include "mtp/legacy/MtpMessage.hpp"
78#else
79#include "mtp/ffs/mtp_MtpServer.hpp"
80#include "mtp/ffs/twrpMtp.hpp"
81#include "mtp/ffs/MtpMessage.hpp"
82#endif
bigbiff bigbiffc7eee6f2014-09-02 18:59:01 -040083#endif
84
Dees Troy6f6441d2014-01-23 02:07:03 +000085extern "C" {
86 #include "cutils/properties.h"
Ethan Yonker74db1572015-10-28 12:44:49 -050087 #include "gui/gui.h"
Dees Troy6f6441d2014-01-23 02:07:03 +000088}
89
Dees_Troy5bf43922012-09-07 16:07:55 -040090#ifdef TW_INCLUDE_CRYPTO
bigbiff7ba75002020-04-11 20:47:09 -040091#include "crypto/fde/cryptfs.h"
92#include "gui/rapidxml.hpp"
93#include "gui/pages.hpp"
94#ifdef TW_INCLUDE_FBE
bigbiffa957f072021-03-07 18:20:29 -050095#include "Decrypt.h"
bigbiff7ba75002020-04-11 20:47:09 -040096#ifdef TW_INCLUDE_FBE_METADATA_DECRYPT
97 #ifdef USE_FSCRYPT
bigbiffa957f072021-03-07 18:20:29 -050098 #include "MetadataCrypt.h"
bigbiffadc599e2020-05-28 19:36:30 +000099 #endif
bigbiff7ba75002020-04-11 20:47:09 -0400100#endif
101#endif
102#ifdef TW_CRYPTO_USE_SYSTEM_VOLD
103#include "crypto/vold_decrypt/vold_decrypt.h"
104#endif
Dees_Troy5bf43922012-09-07 16:07:55 -0400105#endif
Dees_Troy51a0e822012-09-05 15:24:24 -0400106
Ethan Yonker1b190162016-12-05 15:25:19 -0600107#ifdef AB_OTA_UPDATER
108#include <hardware/hardware.h>
109#include <hardware/boot_control.h>
110#endif
111
bigbiffee7b7ff2020-03-23 15:08:27 -0400112using android::fs_mgr::Fstab;
113using android::fs_mgr::FstabEntry;
Ethan Yonker6277c792014-09-15 14:54:30 -0500114
bigbiffee7b7ff2020-03-23 15:08:27 -0400115extern bool datamedia;
Noah Jacobson81d638d2019-04-28 00:10:07 -0400116std::vector<users_struct> Users_List;
117
bigbiff bigbiff34684ff2013-12-01 21:03:45 -0500118TWPartitionManager::TWPartitionManager(void) {
bigbiff bigbiffc7eee6f2014-09-02 18:59:01 -0400119 mtp_was_enabled = false;
Ethan Yonker726a0202014-12-16 20:01:38 -0600120 mtp_write_fd = -1;
Ethan Yonker6e8c27a2016-12-22 17:55:57 -0600121 uevent_pfd.fd = -1;
bigbiff7abc5fe2015-01-17 16:53:12 -0500122 stop_backup.set_value(0);
Ethan Yonker1b190162016-12-05 15:25:19 -0600123#ifdef AB_OTA_UPDATER
124 char slot_suffix[PROPERTY_VALUE_MAX];
Ethan Yonkerfefe5912017-09-30 22:22:13 -0500125 property_get("ro.boot.slot_suffix", slot_suffix, "error");
126 if (strcmp(slot_suffix, "error") == 0)
127 property_get("ro.boot.slot", slot_suffix, "error");
Ethan Yonker1b190162016-12-05 15:25:19 -0600128 Active_Slot_Display = "";
Ethan Yonkerfefe5912017-09-30 22:22:13 -0500129 if (strcmp(slot_suffix, "_a") == 0 || strcmp(slot_suffix, "a") == 0)
Ethan Yonker1b190162016-12-05 15:25:19 -0600130 Set_Active_Slot("A");
131 else
132 Set_Active_Slot("B");
133#endif
bigbiff bigbiff34684ff2013-12-01 21:03:45 -0500134}
135
Captain Throwback18aea272020-10-29 12:43:17 -0400136int TWPartitionManager::Set_FDE_Encrypt_Status(void) {
137 property_set("ro.crypto.state", "encrypted");
138 property_set("ro.crypto.type", "block");
139 // Sleep for a bit so that services can start if needed
140 sleep(1);
141 return 0;
142}
143
bigbiff8da46fa2020-09-08 16:42:34 -0400144int TWPartitionManager::Process_Fstab(string Fstab_Filename, bool Display_Error) {
Dees_Troy5bf43922012-09-07 16:07:55 -0400145 FILE *fstabFile;
146 char fstab_line[MAX_FSTAB_LINE_LENGTH];
Dees Troy02a64532014-03-19 15:23:32 +0000147 TWPartition* settings_partition = NULL;
Matt Mowerbf4efa32014-04-14 23:25:26 -0500148 TWPartition* andsec_partition = NULL;
Ethan Yonker726a0202014-12-16 20:01:38 -0600149 unsigned int storageid = 1 << 16; // upper 16 bits are for physical storage device, we pretend to have only one
Ethan Yonker6e8c27a2016-12-22 17:55:57 -0600150 std::map<string, Flags_Map> twrp_flags;
151
152 fstabFile = fopen("/etc/twrp.flags", "rt");
153 if (fstabFile != NULL) {
Ian Macdonald160e8d32020-09-29 20:47:31 +0200154 LOGINFO("Reading /etc/twrp.flags\n");
Ethan Yonker6e8c27a2016-12-22 17:55:57 -0600155 while (fgets(fstab_line, sizeof(fstab_line), fstabFile) != NULL) {
156 if (fstab_line[0] != '/')
157 continue;
158
159 size_t line_size = strlen(fstab_line);
160 if (fstab_line[line_size - 1] != '\n')
161 fstab_line[line_size] = '\n';
162 Flags_Map line_flags;
163 line_flags.Primary_Block_Device = "";
164 line_flags.Alternate_Block_Device = "";
165 line_flags.fstab_line = (char*)malloc(MAX_FSTAB_LINE_LENGTH);
166 if (!line_flags.fstab_line) {
167 LOGERR("malloc error on line_flags.fstab_line\n");
168 return false;
169 }
170 memcpy(line_flags.fstab_line, fstab_line, MAX_FSTAB_LINE_LENGTH);
171 bool found_separator = false;
172 char *fs_loc = NULL;
173 char *block_loc = NULL;
174 char *flags_loc = NULL;
175 size_t index, item_index = 0;
176 for (index = 0; index < line_size; index++) {
177 if (fstab_line[index] <= 32) {
178 fstab_line[index] = '\0';
179 found_separator = true;
180 } else if (found_separator) {
181 if (item_index == 0) {
182 fs_loc = fstab_line + index;
183 } else if (item_index == 1) {
184 block_loc = fstab_line + index;
185 } else if (item_index > 1) {
186 char *ptr = fstab_line + index;
187 if (*ptr == '/') {
188 line_flags.Alternate_Block_Device = ptr;
189 } else if (strlen(ptr) > strlen("flags=") && strncmp(ptr, "flags=", strlen("flags=")) == 0) {
190 flags_loc = ptr;
191 // Once we find the flags=, we're done scanning the line
192 break;
193 }
194 }
195 found_separator = false;
196 item_index++;
197 }
198 }
199 if (block_loc)
200 line_flags.Primary_Block_Device = block_loc;
201 if (fs_loc)
202 line_flags.File_System = fs_loc;
203 if (flags_loc)
204 line_flags.Flags = flags_loc;
205 string Mount_Point = fstab_line;
206 twrp_flags[Mount_Point] = line_flags;
207 memset(fstab_line, 0, sizeof(fstab_line));
208 }
209 fclose(fstabFile);
210 }
Dees_Troy5bf43922012-09-07 16:07:55 -0400211
212 fstabFile = fopen(Fstab_Filename.c_str(), "rt");
213 if (fstabFile == NULL) {
Dees_Troy2673cec2013-04-02 20:22:16 +0000214 LOGERR("Critical Error: Unable to open fstab at '%s'.\n", Fstab_Filename.c_str());
Dees_Troy5bf43922012-09-07 16:07:55 -0400215 return false;
Ethan Yonker6e8c27a2016-12-22 17:55:57 -0600216 } else
217 LOGINFO("Reading %s\n", Fstab_Filename.c_str());
Dees_Troy5bf43922012-09-07 16:07:55 -0400218
219 while (fgets(fstab_line, sizeof(fstab_line), fstabFile) != NULL) {
bigbiffee7b7ff2020-03-23 15:08:27 -0400220 bool isSuper = Is_Super_Partition(fstab_line);
221
222 if (!isSuper && fstab_line[0] != '/')
Dees_Troy5bf43922012-09-07 16:07:55 -0400223 continue;
224
Ethan Yonker6e8c27a2016-12-22 17:55:57 -0600225 if (strstr(fstab_line, "swap"))
226 continue; // Skip swap in recovery
227
228 size_t line_size = strlen(fstab_line);
229 if (fstab_line[line_size - 1] != '\n')
230 fstab_line[line_size] = '\n';
Dees_Troy2a923582012-09-20 12:13:34 -0400231
Matt Mower2b2dd152016-04-26 11:24:08 -0500232 TWPartition* partition = new TWPartition();
bigbiff8da46fa2020-09-08 16:42:34 -0400233 if (partition->Process_Fstab_Line(fstab_line, Display_Error, &twrp_flags))
Ethan Yonkerc05c5982014-03-13 09:19:56 -0500234 Partitions.push_back(partition);
Matt Mower72c87ce2016-04-26 14:34:56 -0500235 else
Dees_Troy5bf43922012-09-07 16:07:55 -0400236 delete partition;
Matt Mower2b2dd152016-04-26 11:24:08 -0500237
238 memset(fstab_line, 0, sizeof(fstab_line));
Dees_Troy5bf43922012-09-07 16:07:55 -0400239 }
240 fclose(fstabFile);
Matt Mower72c87ce2016-04-26 14:34:56 -0500241
Ethan Yonker6e8c27a2016-12-22 17:55:57 -0600242 if (twrp_flags.size() > 0) {
243 LOGINFO("Processing remaining twrp.flags\n");
244 // Add any items from twrp.flags that did not exist in the recovery.fstab
245 for (std::map<string, Flags_Map>::iterator mapit=twrp_flags.begin(); mapit!=twrp_flags.end(); mapit++) {
246 if (Find_Partition_By_Path(mapit->first) == NULL) {
247 TWPartition* partition = new TWPartition();
bigbiff8da46fa2020-09-08 16:42:34 -0400248 if (partition->Process_Fstab_Line(mapit->second.fstab_line, Display_Error, NULL))
Ethan Yonker6e8c27a2016-12-22 17:55:57 -0600249 Partitions.push_back(partition);
250 else
251 delete partition;
252 }
253 if (mapit->second.fstab_line)
254 free(mapit->second.fstab_line);
255 mapit->second.fstab_line = NULL;
256 }
257 }
Mohd Faraze3948ec2020-08-14 01:40:59 +0000258 if (Get_Super_Status()) {
259 Setup_Super_Devices();
260 }
Ethan Yonker6e8c27a2016-12-22 17:55:57 -0600261 LOGINFO("Done processing fstab files\n");
262
Matt Mower72c87ce2016-04-26 14:34:56 -0500263 std::vector<TWPartition*>::iterator iter;
264 for (iter = Partitions.begin(); iter != Partitions.end(); iter++) {
265 (*iter)->Partition_Post_Processing(Display_Error);
266
267 if ((*iter)->Is_Storage) {
268 ++storageid;
269 (*iter)->MTP_Storage_ID = storageid;
270 }
271
272 if (!settings_partition && (*iter)->Is_Settings_Storage && (*iter)->Is_Present)
273 settings_partition = (*iter);
274 else
275 (*iter)->Is_Settings_Storage = false;
276
277 if (!andsec_partition && (*iter)->Has_Android_Secure && (*iter)->Is_Present)
278 andsec_partition = (*iter);
279 else
280 (*iter)->Has_Android_Secure = false;
bigbiffdf8436b2020-08-30 16:22:34 -0400281
Mohd Faraze3948ec2020-08-14 01:40:59 +0000282 if (Is_Super_Partition(TWFunc::Remove_Beginning_Slash((*iter)->Get_Mount_Point()).c_str()))
283 Prepare_Super_Volume((*iter));
284 }
285
286 //Setup Apex before decryption
287 TWPartition* sys = PartitionManager.Find_Partition_By_Path(PartitionManager.Get_Android_Root_Path());
288 TWPartition* ven = PartitionManager.Find_Partition_By_Path("/vendor");
289 if (sys) {
290 if (sys->Get_Super_Status()) {
291 sys->Mount(true);
292 if (ven) {
293 ven->Mount(true);
294 }
295 twrpApex apex;
296 if (!apex.loadApexImages()) {
297 LOGERR("Unable to load apex images from %s\n", APEX_DIR);
298 property_set("twrp.apex.loaded", "false");
299 } else {
300 property_set("twrp.apex.loaded", "true");
301 }
Mohd Farazd9e66712020-10-28 20:42:57 +0530302 TWFunc::check_and_run_script("/sbin/resyncapex.sh", "apex");
Mohd Faraze3948ec2020-08-14 01:40:59 +0000303 }
Matt Mower72c87ce2016-04-26 14:34:56 -0500304 }
Mohd Faraz9a4ef262020-10-18 23:58:21 +0530305#ifndef USE_VENDOR_LIBS
306 if (ven)
307 ven->UnMount(true);
308 if (sys)
309 sys->UnMount(true);
310#endif
Matt Mower72c87ce2016-04-26 14:34:56 -0500311
Ethan Yonker6277c792014-09-15 14:54:30 -0500312 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) {
313 // Attempt to automatically identify /data/media emulated storage devices
314 TWPartition* Dat = Find_Partition_By_Path("/data");
315 if (Dat) {
316 LOGINFO("Using automatic handling for /data/media emulated storage device.\n");
317 datamedia = true;
that9e0593e2014-10-08 00:01:24 +0200318 Dat->Setup_Data_Media();
Ethan Yonker6277c792014-09-15 14:54:30 -0500319 settings_partition = Dat;
Ethan Yonker726a0202014-12-16 20:01:38 -0600320 // Since /data was not considered a storage partition earlier, we still need to assign an MTP ID
321 ++storageid;
322 Dat->MTP_Storage_ID = storageid;
Ethan Yonker6277c792014-09-15 14:54:30 -0500323 }
324 }
Dees Troy02a64532014-03-19 15:23:32 +0000325 if (!settings_partition) {
Dees_Troya13d74f2013-03-24 08:54:55 -0500326 for (iter = Partitions.begin(); iter != Partitions.end(); iter++) {
327 if ((*iter)->Is_Storage) {
Dees Troy02a64532014-03-19 15:23:32 +0000328 settings_partition = (*iter);
Dees_Troya13d74f2013-03-24 08:54:55 -0500329 break;
330 }
331 }
Dees Troy02a64532014-03-19 15:23:32 +0000332 if (!settings_partition)
Dees_Troy2673cec2013-04-02 20:22:16 +0000333 LOGERR("Unable to locate storage partition for storing settings file.\n");
Dees_Troya13d74f2013-03-24 08:54:55 -0500334 }
Dees_Troy5bf43922012-09-07 16:07:55 -0400335 if (!Write_Fstab()) {
336 if (Display_Error)
Dees_Troy2673cec2013-04-02 20:22:16 +0000337 LOGERR("Error creating fstab\n");
Dees_Troy5bf43922012-09-07 16:07:55 -0400338 else
Dees_Troy2673cec2013-04-02 20:22:16 +0000339 LOGINFO("Error creating fstab\n");
Dees_Troy5bf43922012-09-07 16:07:55 -0400340 }
Matt Mowered71fa32014-04-16 13:21:47 -0500341
Matt Mowerbf4efa32014-04-14 23:25:26 -0500342 if (andsec_partition) {
343 Setup_Android_Secure_Location(andsec_partition);
Matt Mowered71fa32014-04-16 13:21:47 -0500344 } else if (settings_partition) {
Matt Mowerbf4efa32014-04-14 23:25:26 -0500345 Setup_Android_Secure_Location(settings_partition);
346 }
Matt Mowered71fa32014-04-16 13:21:47 -0500347 if (settings_partition) {
348 Setup_Settings_Storage_Partition(settings_partition);
349 }
bigbiff7ba75002020-04-11 20:47:09 -0400350
Mohd Faraze3948ec2020-08-14 01:40:59 +0000351#ifdef TW_INCLUDE_CRYPTO
352 DataManager::SetValue(TW_IS_ENCRYPTED, 1);
353 Decrypt_Data();
354#endif
355
Mohd Faraze3948ec2020-08-14 01:40:59 +0000356 if (Get_Super_Status())
357 Setup_Super_Partition();
bigbiff7ba75002020-04-11 20:47:09 -0400358 UnMount_Main_Partitions();
359#ifdef AB_OTA_UPDATER
360 DataManager::SetValue("tw_active_slot", Get_Active_Slot_Display());
361#endif
362 setup_uevent();
363 return true;
364}
365
366int TWPartitionManager::Write_Fstab(void) {
367 FILE *fp;
368 std::vector<TWPartition*>::iterator iter;
369 string Line;
370
371 fp = fopen("/etc/fstab", "w");
372 if (fp == NULL) {
373 LOGINFO("Can not open /etc/fstab.\n");
374 return false;
375 }
376 for (iter = Partitions.begin(); iter != Partitions.end(); iter++) {
377 if ((*iter)->Can_Be_Mounted) {
Mohd Faraz2a1e3752020-09-30 10:55:48 +0530378 Line = (*iter)->Actual_Block_Device + " " + (*iter)->Mount_Point + " " + (*iter)->Current_File_System +
379 ((*iter)->Mount_Read_Only ? " ro " : " rw ") + "0 0\n";
bigbiff7ba75002020-04-11 20:47:09 -0400380 fputs(Line.c_str(), fp);
381 }
382 // Handle subpartition tracking
383 if ((*iter)->Is_SubPartition) {
384 TWPartition* ParentPartition = Find_Partition_By_Path((*iter)->SubPartition_Of);
385 if (ParentPartition)
386 ParentPartition->Has_SubPartition = true;
387 else
388 LOGERR("Unable to locate parent partition '%s' of '%s'\n", (*iter)->SubPartition_Of.c_str(), (*iter)->Mount_Point.c_str());
389 }
390 }
391 fclose(fp);
392 return true;
393}
394
395void TWPartitionManager::Decrypt_Data() {
396 #ifdef TW_INCLUDE_CRYPTO
Ethan Yonkercceebb82014-11-18 10:17:59 -0600397 TWPartition* Decrypt_Data = Find_Partition_By_Path("/data");
398 if (Decrypt_Data && Decrypt_Data->Is_Encrypted && !Decrypt_Data->Is_Decrypted) {
nebrassyf74255e2020-10-24 21:08:20 +0200399 property_set("ro.crypto.state", "encrypted");
Ethan Yonker93382822018-11-01 15:25:31 -0500400 if (!Decrypt_Data->Key_Directory.empty() && Mount_By_Path(Decrypt_Data->Key_Directory, false)) {
nebrassyf74255e2020-10-24 21:08:20 +0200401 property_set("ro.crypto.type", "file");
Ethan Yonker93382822018-11-01 15:25:31 -0500402#ifdef TW_INCLUDE_FBE_METADATA_DECRYPT
bigbiff7ba75002020-04-11 20:47:09 -0400403#ifdef USE_FSCRYPT
404 if (fscrypt_mount_metadata_encrypted(Decrypt_Data->Actual_Block_Device, Decrypt_Data->Mount_Point, false)) {
bigbiffa957f072021-03-07 18:20:29 -0500405 std::string crypto_blkdev = android::base::GetProperty("ro.crypto.fs_crypto_blkdev", "error");
Mohd Faraze3948ec2020-08-14 01:40:59 +0000406 Decrypt_Data->Decrypted_Block_Device = crypto_blkdev;
bigbiff7ba75002020-04-11 20:47:09 -0400407 LOGINFO("Successfully decrypted metadata encrypted data partition with new block device: '%s'\n", crypto_blkdev.c_str());
bigbiff7ba75002020-04-11 20:47:09 -0400408#endif
Ethan Yonker93382822018-11-01 15:25:31 -0500409 Decrypt_Data->Is_Decrypted = true; // Needed to make the mount function work correctly
410 int retry_count = 10;
411 while (!Decrypt_Data->Mount(false) && --retry_count)
412 usleep(500);
413 if (Decrypt_Data->Mount(false)) {
bigbiff bigbiff0be03b32019-08-27 20:50:31 -0400414 if (!Decrypt_Data->Decrypt_FBE_DE()) {
mauronofriofc79aa62019-11-23 23:13:04 +0100415 char wrappedvalue[PROPERTY_VALUE_MAX];
416 property_get("fbe.data.wrappedkey", wrappedvalue, "");
417 std::string wrappedkeyvalue(wrappedvalue);
418 if (wrappedkeyvalue == "true") {
bigbiff bigbiff0be03b32019-08-27 20:50:31 -0400419 LOGERR("Unable to decrypt FBE device\n");
mauronofriofc79aa62019-11-23 23:13:04 +0100420 } else {
421 LOGINFO("Trying wrapped key.\n");
422 property_set("fbe.data.wrappedkey", "true");
423 if (!Decrypt_Data->Decrypt_FBE_DE()) {
424 LOGERR("Unable to decrypt FBE device\n");
425 }
bigbiff bigbiff0be03b32019-08-27 20:50:31 -0400426 }
427 }
428
Ethan Yonker93382822018-11-01 15:25:31 -0500429 } else {
430 LOGINFO("Failed to mount data after metadata decrypt\n");
431 }
432 } else {
433 LOGINFO("Unable to decrypt metadata encryption\n");
434 }
435#else
436 LOGERR("Metadata FBE decrypt support not present in this TWRP\n");
437#endif
438 }
Ethan Yonkerbd7492d2016-12-07 13:55:01 -0600439 if (Decrypt_Data->Is_FBE) {
440 if (DataManager::GetIntValue(TW_CRYPTO_PWTYPE) == 0) {
441 if (Decrypt_Device("!") == 0) {
442 gui_msg("decrypt_success=Successfully decrypted with default password.");
443 DataManager::SetValue(TW_IS_ENCRYPTED, 0);
444 } else {
445 gui_err("unable_to_decrypt=Unable to decrypt with default password.");
446 }
Ethan Yonkercceebb82014-11-18 10:17:59 -0600447 }
448 } else {
Captain Throwback18aea272020-10-29 12:43:17 -0400449 Set_FDE_Encrypt_Status();
Ethan Yonkerbd7492d2016-12-07 13:55:01 -0600450 int password_type = cryptfs_get_password_type();
451 if (password_type == CRYPT_TYPE_DEFAULT) {
452 LOGINFO("Device is encrypted with the default password, attempting to decrypt.\n");
453 if (Decrypt_Device("default_password") == 0) {
454 gui_msg("decrypt_success=Successfully decrypted with default password.");
455 DataManager::SetValue(TW_IS_ENCRYPTED, 0);
456 } else {
457 gui_err("unable_to_decrypt=Unable to decrypt with default password.");
458 }
459 } else {
460 DataManager::SetValue("TW_CRYPTO_TYPE", password_type);
Noah Jacobson81d638d2019-04-28 00:10:07 -0400461 DataManager::SetValue("tw_crypto_pwtype_0", password_type);
Ethan Yonkerbd7492d2016-12-07 13:55:01 -0600462 }
Ethan Yonkercceebb82014-11-18 10:17:59 -0600463 }
464 }
Noah Jacobson81d638d2019-04-28 00:10:07 -0400465 if (Decrypt_Data && (!Decrypt_Data->Is_Encrypted || Decrypt_Data->Is_Decrypted) &&
466 Decrypt_Data->Mount(false)) {
Ethan Yonker66a19492015-12-10 10:19:45 -0600467 Decrypt_Adopted();
468 }
Ethan Yonkercceebb82014-11-18 10:17:59 -0600469#endif
Dees_Troy51a0e822012-09-05 15:24:24 -0400470}
471
Ethan Yonkerc05c5982014-03-13 09:19:56 -0500472void TWPartitionManager::Setup_Settings_Storage_Partition(TWPartition* Part) {
Ethan Yonkerc05c5982014-03-13 09:19:56 -0500473 DataManager::SetValue("tw_settings_path", Part->Storage_Path);
474 DataManager::SetValue("tw_storage_path", Part->Storage_Path);
475 LOGINFO("Settings storage is '%s'\n", Part->Storage_Path.c_str());
476}
477
Matt Mowerbf4efa32014-04-14 23:25:26 -0500478void TWPartitionManager::Setup_Android_Secure_Location(TWPartition* Part) {
479 if (Part->Has_Android_Secure)
480 Part->Setup_AndSec();
Ethan Yonker6277c792014-09-15 14:54:30 -0500481 else if (!datamedia)
Matt Mowerbf4efa32014-04-14 23:25:26 -0500482 Part->Setup_AndSec();
Matt Mowerbf4efa32014-04-14 23:25:26 -0500483}
484
Dees_Troy8170a922012-09-18 15:40:25 -0400485void TWPartitionManager::Output_Partition_Logging(void) {
486 std::vector<TWPartition*>::iterator iter;
487
488 printf("\n\nPartition Logs:\n");
489 for (iter = Partitions.begin(); iter != Partitions.end(); iter++)
490 Output_Partition((*iter));
491}
492
493void TWPartitionManager::Output_Partition(TWPartition* Part) {
494 unsigned long long mb = 1048576;
495
Gary Peck004d48b2012-11-21 16:28:18 -0800496 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 -0400497 if (Part->Can_Be_Mounted) {
Gary Peck004d48b2012-11-21 16:28:18 -0800498 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 -0400499 }
Gary Peck004d48b2012-11-21 16:28:18 -0800500 printf("\n Flags: ");
Dees_Troya13d74f2013-03-24 08:54:55 -0500501 if (Part->Can_Be_Mounted)
502 printf("Can_Be_Mounted ");
Gary Peck004d48b2012-11-21 16:28:18 -0800503 if (Part->Can_Be_Wiped)
504 printf("Can_Be_Wiped ");
Hashcodedabfd492013-08-29 22:45:30 -0700505 if (Part->Use_Rm_Rf)
506 printf("Use_Rm_Rf ");
Dees_Troya13d74f2013-03-24 08:54:55 -0500507 if (Part->Can_Be_Backed_Up)
508 printf("Can_Be_Backed_Up ");
Gary Peck004d48b2012-11-21 16:28:18 -0800509 if (Part->Wipe_During_Factory_Reset)
510 printf("Wipe_During_Factory_Reset ");
511 if (Part->Wipe_Available_in_GUI)
512 printf("Wipe_Available_in_GUI ");
513 if (Part->Is_SubPartition)
514 printf("Is_SubPartition ");
515 if (Part->Has_SubPartition)
516 printf("Has_SubPartition ");
517 if (Part->Removable)
518 printf("Removable ");
519 if (Part->Is_Present)
520 printf("IsPresent ");
521 if (Part->Can_Be_Encrypted)
522 printf("Can_Be_Encrypted ");
523 if (Part->Is_Encrypted)
524 printf("Is_Encrypted ");
525 if (Part->Is_Decrypted)
526 printf("Is_Decrypted ");
527 if (Part->Has_Data_Media)
528 printf("Has_Data_Media ");
Dees_Troy83bd4832013-05-04 12:39:56 +0000529 if (Part->Can_Encrypt_Backup)
530 printf("Can_Encrypt_Backup ");
531 if (Part->Use_Userdata_Encryption)
532 printf("Use_Userdata_Encryption ");
Gary Peck004d48b2012-11-21 16:28:18 -0800533 if (Part->Has_Android_Secure)
534 printf("Has_Android_Secure ");
535 if (Part->Is_Storage)
536 printf("Is_Storage ");
Dees_Troya13d74f2013-03-24 08:54:55 -0500537 if (Part->Is_Settings_Storage)
538 printf("Is_Settings_Storage ");
Dees_Troy68cab492012-12-12 19:29:35 +0000539 if (Part->Ignore_Blkid)
540 printf("Ignore_Blkid ");
Ethan Yonker253368a2014-11-25 15:00:52 -0600541 if (Part->Mount_To_Decrypt)
542 printf("Mount_To_Decrypt ");
Ethan Yonker96af84a2015-01-05 14:58:36 -0600543 if (Part->Can_Flash_Img)
544 printf("Can_Flash_Img ");
Ethan Yonker66a19492015-12-10 10:19:45 -0600545 if (Part->Is_Adopted_Storage)
546 printf("Is_Adopted_Storage ");
Ethan Yonker1b190162016-12-05 15:25:19 -0600547 if (Part->SlotSelect)
548 printf("SlotSelect ");
Ethan Yonker6e8c27a2016-12-22 17:55:57 -0600549 if (Part->Mount_Read_Only)
550 printf("Mount_Read_Only ");
Gary Peck004d48b2012-11-21 16:28:18 -0800551 printf("\n");
552 if (!Part->SubPartition_Of.empty())
553 printf(" SubPartition_Of: %s\n", Part->SubPartition_Of.c_str());
554 if (!Part->Symlink_Path.empty())
555 printf(" Symlink_Path: %s\n", Part->Symlink_Path.c_str());
556 if (!Part->Symlink_Mount_Point.empty())
557 printf(" Symlink_Mount_Point: %s\n", Part->Symlink_Mount_Point.c_str());
558 if (!Part->Primary_Block_Device.empty())
559 printf(" Primary_Block_Device: %s\n", Part->Primary_Block_Device.c_str());
560 if (!Part->Alternate_Block_Device.empty())
561 printf(" Alternate_Block_Device: %s\n", Part->Alternate_Block_Device.c_str());
562 if (!Part->Decrypted_Block_Device.empty())
563 printf(" Decrypted_Block_Device: %s\n", Part->Decrypted_Block_Device.c_str());
dianlujitao4879b372018-12-03 18:45:47 +0800564 if (!Part->Crypto_Key_Location.empty())
Ethan Yonker253368a2014-11-25 15:00:52 -0600565 printf(" Crypto_Key_Location: %s\n", Part->Crypto_Key_Location.c_str());
Gary Peck004d48b2012-11-21 16:28:18 -0800566 if (Part->Length != 0)
567 printf(" Length: %i\n", Part->Length);
568 if (!Part->Display_Name.empty())
569 printf(" Display_Name: %s\n", Part->Display_Name.c_str());
Dees_Troya13d74f2013-03-24 08:54:55 -0500570 if (!Part->Storage_Name.empty())
571 printf(" Storage_Name: %s\n", Part->Storage_Name.c_str());
Gary Peck004d48b2012-11-21 16:28:18 -0800572 if (!Part->Backup_Path.empty())
573 printf(" Backup_Path: %s\n", Part->Backup_Path.c_str());
574 if (!Part->Backup_Name.empty())
575 printf(" Backup_Name: %s\n", Part->Backup_Name.c_str());
Dees_Troya13d74f2013-03-24 08:54:55 -0500576 if (!Part->Backup_Display_Name.empty())
577 printf(" Backup_Display_Name: %s\n", Part->Backup_Display_Name.c_str());
Gary Peck004d48b2012-11-21 16:28:18 -0800578 if (!Part->Backup_FileName.empty())
579 printf(" Backup_FileName: %s\n", Part->Backup_FileName.c_str());
580 if (!Part->Storage_Path.empty())
581 printf(" Storage_Path: %s\n", Part->Storage_Path.c_str());
582 if (!Part->Current_File_System.empty())
583 printf(" Current_File_System: %s\n", Part->Current_File_System.c_str());
584 if (!Part->Fstab_File_System.empty())
585 printf(" Fstab_File_System: %s\n", Part->Fstab_File_System.c_str());
586 if (Part->Format_Block_Size != 0)
Ethan Yonkerc798c9c2015-10-09 11:15:26 -0500587 printf(" Format_Block_Size: %lu\n", Part->Format_Block_Size);
Dees_Troy094207a2012-09-26 12:00:39 -0400588 if (!Part->MTD_Name.empty())
589 printf(" MTD_Name: %s\n", Part->MTD_Name.c_str());
Matt Mower029a82d2017-01-08 13:12:38 -0600590 printf(" Backup_Method: %s\n", Part->Backup_Method_By_Name().c_str());
Hashcode62bd9e02013-11-19 21:59:42 -0800591 if (Part->Mount_Flags || !Part->Mount_Options.empty())
Ethan Yonker6e8c27a2016-12-22 17:55:57 -0600592 printf(" Mount_Flags: %i, Mount_Options: %s\n", Part->Mount_Flags, Part->Mount_Options.c_str());
Ethan Yonker726a0202014-12-16 20:01:38 -0600593 if (Part->MTP_Storage_ID)
594 printf(" MTP_Storage_ID: %i\n", Part->MTP_Storage_ID);
Ethan Yonker93382822018-11-01 15:25:31 -0500595 if (!Part->Key_Directory.empty())
596 printf(" Metadata Key Directory: %s\n", Part->Key_Directory.c_str());
Ethan Yonker6277c792014-09-15 14:54:30 -0500597 printf("\n");
Dees_Troy8170a922012-09-18 15:40:25 -0400598}
599
Dees_Troy51a0e822012-09-05 15:24:24 -0400600int TWPartitionManager::Mount_By_Path(string Path, bool Display_Error) {
Dees_Troy5bf43922012-09-07 16:07:55 -0400601 std::vector<TWPartition*>::iterator iter;
602 int ret = false;
603 bool found = false;
Dees_Troy38bd7602012-09-14 13:33:53 -0400604 string Local_Path = TWFunc::Get_Root_Path(Path);
Dees_Troy5bf43922012-09-07 16:07:55 -0400605
bigbiffd58ba182020-03-23 10:02:29 -0400606 if (Local_Path == "/tmp" || Local_Path == "/")
Dees_Troy43d8b002012-09-17 16:00:01 -0400607 return true;
608
Dees_Troy5bf43922012-09-07 16:07:55 -0400609 // Iterate through all partitions
610 for (iter = Partitions.begin(); iter != Partitions.end(); iter++) {
Dees_Troy657c3092012-09-10 20:32:10 -0400611 if ((*iter)->Mount_Point == Local_Path || (!(*iter)->Symlink_Mount_Point.empty() && (*iter)->Symlink_Mount_Point == Local_Path)) {
Dees_Troy5bf43922012-09-07 16:07:55 -0400612 ret = (*iter)->Mount(Display_Error);
613 found = true;
Dees_Troy51127312012-09-08 13:08:49 -0400614 } else if ((*iter)->Is_SubPartition && (*iter)->SubPartition_Of == Local_Path) {
Dees_Troy5bf43922012-09-07 16:07:55 -0400615 (*iter)->Mount(Display_Error);
Dees_Troy51127312012-09-08 13:08:49 -0400616 }
Dees_Troy5bf43922012-09-07 16:07:55 -0400617 }
618 if (found) {
619 return ret;
620 } else if (Display_Error) {
Ethan Yonker74db1572015-10-28 12:44:49 -0500621 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 -0400622 } else {
Dees_Troy2673cec2013-04-02 20:22:16 +0000623 LOGINFO("Mount: Unable to find partition for path '%s'\n", Local_Path.c_str());
Dees_Troy5bf43922012-09-07 16:07:55 -0400624 }
625 return false;
Dees_Troy51a0e822012-09-05 15:24:24 -0400626}
627
Dees_Troy51a0e822012-09-05 15:24:24 -0400628int TWPartitionManager::UnMount_By_Path(string Path, bool Display_Error) {
Dees_Troy51127312012-09-08 13:08:49 -0400629 std::vector<TWPartition*>::iterator iter;
630 int ret = false;
631 bool found = false;
Dees_Troy38bd7602012-09-14 13:33:53 -0400632 string Local_Path = TWFunc::Get_Root_Path(Path);
Dees_Troy51127312012-09-08 13:08:49 -0400633
634 // Iterate through all partitions
635 for (iter = Partitions.begin(); iter != Partitions.end(); iter++) {
Dees_Troy657c3092012-09-10 20:32:10 -0400636 if ((*iter)->Mount_Point == Local_Path || (!(*iter)->Symlink_Mount_Point.empty() && (*iter)->Symlink_Mount_Point == Local_Path)) {
Dees_Troy51127312012-09-08 13:08:49 -0400637 ret = (*iter)->UnMount(Display_Error);
638 found = true;
639 } else if ((*iter)->Is_SubPartition && (*iter)->SubPartition_Of == Local_Path) {
640 (*iter)->UnMount(Display_Error);
641 }
642 }
643 if (found) {
644 return ret;
645 } else if (Display_Error) {
Ethan Yonker74db1572015-10-28 12:44:49 -0500646 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 -0400647 } else {
Dees_Troy2673cec2013-04-02 20:22:16 +0000648 LOGINFO("UnMount: Unable to find partition for path '%s'\n", Local_Path.c_str());
Dees_Troy51127312012-09-08 13:08:49 -0400649 }
650 return false;
Dees_Troy51a0e822012-09-05 15:24:24 -0400651}
652
Dees_Troy51a0e822012-09-05 15:24:24 -0400653int TWPartitionManager::Is_Mounted_By_Path(string Path) {
Dees_Troy51127312012-09-08 13:08:49 -0400654 TWPartition* Part = Find_Partition_By_Path(Path);
655
656 if (Part)
657 return Part->Is_Mounted();
658 else
Dees_Troy2673cec2013-04-02 20:22:16 +0000659 LOGINFO("Is_Mounted: Unable to find partition for path '%s'\n", Path.c_str());
Dees_Troy51127312012-09-08 13:08:49 -0400660 return false;
Dees_Troy51a0e822012-09-05 15:24:24 -0400661}
662
Dees_Troy5bf43922012-09-07 16:07:55 -0400663int TWPartitionManager::Mount_Current_Storage(bool Display_Error) {
Dees_Troy51127312012-09-08 13:08:49 -0400664 string current_storage_path = DataManager::GetCurrentStoragePath();
665
666 if (Mount_By_Path(current_storage_path, Display_Error)) {
667 TWPartition* FreeStorage = Find_Partition_By_Path(current_storage_path);
668 if (FreeStorage)
669 DataManager::SetValue(TW_STORAGE_FREE_SIZE, (int)(FreeStorage->Free / 1048576LLU));
670 return true;
671 }
672 return false;
Dees_Troy51a0e822012-09-05 15:24:24 -0400673}
674
Dees_Troy5bf43922012-09-07 16:07:55 -0400675int TWPartitionManager::Mount_Settings_Storage(bool Display_Error) {
676 return Mount_By_Path(DataManager::GetSettingsStoragePath(), Display_Error);
677}
678
Ethan Yonker6e8c27a2016-12-22 17:55:57 -0600679TWPartition* TWPartitionManager::Find_Partition_By_Path(const string& Path) {
Dees_Troy5bf43922012-09-07 16:07:55 -0400680 std::vector<TWPartition*>::iterator iter;
Dees_Troy38bd7602012-09-14 13:33:53 -0400681 string Local_Path = TWFunc::Get_Root_Path(Path);
Dees_Troy5bf43922012-09-07 16:07:55 -0400682
dianlujitaob76a73a2020-04-30 20:33:20 +0800683 if (Local_Path == "/system")
684 Local_Path = Get_Android_Root_Path();
Dees_Troy5bf43922012-09-07 16:07:55 -0400685 for (iter = Partitions.begin(); iter != Partitions.end(); iter++) {
Dees_Troy657c3092012-09-10 20:32:10 -0400686 if ((*iter)->Mount_Point == Local_Path || (!(*iter)->Symlink_Mount_Point.empty() && (*iter)->Symlink_Mount_Point == Local_Path))
Dees_Troy5bf43922012-09-07 16:07:55 -0400687 return (*iter);
688 }
Dees_Troy51a0e822012-09-05 15:24:24 -0400689 return NULL;
690}
691
Ethan Yonker6e8c27a2016-12-22 17:55:57 -0600692TWPartition* TWPartitionManager::Find_Partition_By_Block_Device(const string& Block_Device) {
693 std::vector<TWPartition*>::iterator iter;
694
695 for (iter = Partitions.begin(); iter != Partitions.end(); iter++) {
696 if ((*iter)->Primary_Block_Device == Block_Device || (!(*iter)->Actual_Block_Device.empty() && (*iter)->Actual_Block_Device == Block_Device))
697 return (*iter);
698 }
699 return NULL;
700}
701
Ethan Yonker53796e72019-01-11 22:49:52 -0600702int TWPartitionManager::Check_Backup_Name(const std::string& Backup_Name, bool Display_Error, bool Must_Be_Unique) {
Dees_Troyc9ff7a32012-09-27 10:09:41 -0400703 // Check the backup name to ensure that it is the correct size and contains only valid characters
704 // and that a backup with that name doesn't already exist
705 char backup_name[MAX_BACKUP_NAME_LEN];
706 char backup_loc[255], tw_image_dir[255];
707 int copy_size;
708 int index, cur_char;
Ethan Yonker53796e72019-01-11 22:49:52 -0600709 string Backup_Loc;
Dees_Troyc9ff7a32012-09-27 10:09:41 -0400710
Dees_Troyc9ff7a32012-09-27 10:09:41 -0400711 copy_size = Backup_Name.size();
712 // Check size
713 if (copy_size > MAX_BACKUP_NAME_LEN) {
714 if (Display_Error)
Ethan Yonker74db1572015-10-28 12:44:49 -0500715 gui_err("backup_name_len=Backup name is too long.");
Dees_Troyc9ff7a32012-09-27 10:09:41 -0400716 return -2;
717 }
718
719 // Check each character
720 strncpy(backup_name, Backup_Name.c_str(), copy_size);
Dees_Troya13d74f2013-03-24 08:54:55 -0500721 if (copy_size == 1 && strncmp(backup_name, "0", 1) == 0)
Dees_Troyc9ff7a32012-09-27 10:09:41 -0400722 return 0; // A "0" (zero) means to use the current timestamp for the backup name
723 for (index=0; index<copy_size; index++) {
724 cur_char = (int)backup_name[index];
Matt Mowerfb1c4ff2014-04-16 13:43:36 -0500725 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 -0400726 // These are valid characters
727 // Numbers
728 // Upper case letters
729 // Lower case letters
730 // Space
731 // and -_.{}[]
732 } else {
733 if (Display_Error)
Ethan Yonker4adc33e2016-01-22 16:07:11 -0600734 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 -0400735 return -3;
736 }
737 }
738
Ethan Yonker53796e72019-01-11 22:49:52 -0600739 if (Must_Be_Unique) {
740 // Check to make sure that a backup with this name doesn't already exist
741 DataManager::GetValue(TW_BACKUPS_FOLDER_VAR, Backup_Loc);
742 strcpy(backup_loc, Backup_Loc.c_str());
743 sprintf(tw_image_dir,"%s/%s", backup_loc, Backup_Name.c_str());
744 if (TWFunc::Path_Exists(tw_image_dir)) {
745 if (Display_Error)
746 gui_err("backup_name_exists=A backup with that name already exists!");
bigbiffce8f83c2015-12-12 18:30:21 -0500747
Ethan Yonker53796e72019-01-11 22:49:52 -0600748 return -4;
749 }
750 // Backup is unique
Dees_Troyc9ff7a32012-09-27 10:09:41 -0400751 }
Ethan Yonker53796e72019-01-11 22:49:52 -0600752 // No problems found
Dees_Troyc9ff7a32012-09-27 10:09:41 -0400753 return 0;
754}
755
bigbiffce8f83c2015-12-12 18:30:21 -0500756bool TWPartitionManager::Backup_Partition(PartitionSettings *part_settings) {
Dees_Troy43d8b002012-09-17 16:00:01 -0400757 time_t start, stop;
Matt Mower23d8aae2017-01-06 14:30:33 -0600758 int use_compression;
bigbiffce8f83c2015-12-12 18:30:21 -0500759 string backup_log = part_settings->Backup_Folder + "/recovery.log";
Dees_Troy43d8b002012-09-17 16:00:01 -0400760
bigbiffce8f83c2015-12-12 18:30:21 -0500761 if (part_settings->Part == NULL)
Dees_Troy43d8b002012-09-17 16:00:01 -0400762 return true;
763
Dees_Troy093b7642012-09-21 15:59:38 -0400764 DataManager::GetValue(TW_USE_COMPRESSION_VAR, use_compression);
Dees_Troy093b7642012-09-21 15:59:38 -0400765
Tom Hite5a926722014-09-15 01:31:03 +0000766 TWFunc::SetPerformanceMode(true);
Dees_Troy43d8b002012-09-17 16:00:01 -0400767 time(&start);
768
bigbiffce8f83c2015-12-12 18:30:21 -0500769 if (part_settings->Part->Backup(part_settings, &tar_fork_pid)) {
Ethan Yonkercd00a8b2017-07-06 10:23:30 -0500770 sync();
771 sync();
bigbiff bigbiff56cf5642016-08-19 17:43:45 -0400772 string Full_Filename = part_settings->Backup_Folder + "/" + part_settings->Part->Backup_FileName;
Ethan Yonkercd00a8b2017-07-06 10:23:30 -0500773 if (!part_settings->adbbackup && part_settings->generate_digest) {
774 if (!twrpDigestDriver::Make_Digest(Full_Filename))
775 goto backup_error;
bigbiff bigbiff56cf5642016-08-19 17:43:45 -0400776 }
bigbiff bigbiff8fd4b092016-08-30 20:48:53 -0400777
bigbiffce8f83c2015-12-12 18:30:21 -0500778 if (part_settings->Part->Has_SubPartition) {
Dees_Troy8170a922012-09-18 15:40:25 -0400779 std::vector<TWPartition*>::iterator subpart;
bigbiff bigbiff8fd4b092016-08-30 20:48:53 -0400780 TWPartition *parentPart = part_settings->Part;
Dees_Troy8170a922012-09-18 15:40:25 -0400781
782 for (subpart = Partitions.begin(); subpart != Partitions.end(); subpart++) {
bigbiff bigbiff8fd4b092016-08-30 20:48:53 -0400783 if ((*subpart)->Can_Be_Backed_Up && (*subpart)->Is_SubPartition && (*subpart)->SubPartition_Of == parentPart->Mount_Point) {
Ethan Yonkerdcf2b672016-09-13 14:41:53 -0500784 part_settings->Part = *subpart;
bigbiffce8f83c2015-12-12 18:30:21 -0500785 if (!(*subpart)->Backup(part_settings, &tar_fork_pid)) {
Ethan Yonkercd00a8b2017-07-06 10:23:30 -0500786 goto backup_error;
Tom Hite5a926722014-09-15 01:31:03 +0000787 }
Dees_Troy2727b992013-08-14 20:09:30 +0000788 sync();
789 sync();
bigbiff bigbifff5955b12019-05-18 17:28:58 -0400790 string Full_Filename = part_settings->Backup_Folder + "/" + part_settings->Part->Backup_FileName;
bigbiff bigbiff56cf5642016-08-19 17:43:45 -0400791 if (!part_settings->adbbackup && part_settings->generate_digest) {
792 if (!twrpDigestDriver::Make_Digest(Full_Filename)) {
Ethan Yonkercd00a8b2017-07-06 10:23:30 -0500793 goto backup_error;
bigbiffce8f83c2015-12-12 18:30:21 -0500794 }
Tom Hite5a926722014-09-15 01:31:03 +0000795 }
Dees_Troy8170a922012-09-18 15:40:25 -0400796 }
797 }
798 }
bigbiff bigbiff56cf5642016-08-19 17:43:45 -0400799
Dees_Troy43d8b002012-09-17 16:00:01 -0400800 time(&stop);
that203bcc92015-05-09 17:27:33 +0200801 int backup_time = (int) difftime(stop, start);
Dees_Troy2673cec2013-04-02 20:22:16 +0000802 LOGINFO("Partition Backup time: %d\n", backup_time);
bigbiff bigbiff8fd4b092016-08-30 20:48:53 -0400803
bigbiffce8f83c2015-12-12 18:30:21 -0500804 if (part_settings->Part->Backup_Method == BM_FILES) {
805 part_settings->file_time += backup_time;
Dees_Troy43d8b002012-09-17 16:00:01 -0400806 } else {
bigbiffce8f83c2015-12-12 18:30:21 -0500807 part_settings->img_time += backup_time;
808
Dees_Troy43d8b002012-09-17 16:00:01 -0400809 }
Tom Hite5a926722014-09-15 01:31:03 +0000810
Matt Mower02899552016-12-30 18:13:51 -0600811 TWFunc::SetPerformanceMode(false);
Ethan Yonkercd00a8b2017-07-06 10:23:30 -0500812 return true;
Dees_Troy43d8b002012-09-17 16:00:01 -0400813 }
Ethan Yonkercd00a8b2017-07-06 10:23:30 -0500814backup_error:
815 Clean_Backup_Folder(part_settings->Backup_Folder);
816 TWFunc::copy_file("/tmp/recovery.log", backup_log, 0644);
817 tw_set_default_metadata(backup_log.c_str());
818 TWFunc::SetPerformanceMode(false);
819 return false;
bigbiff7abc5fe2015-01-17 16:53:12 -0500820}
821
bigbiffbf1d6722015-02-14 16:25:59 -0500822void TWPartitionManager::Clean_Backup_Folder(string Backup_Folder) {
823 DIR *d = opendir(Backup_Folder.c_str());
824 struct dirent *p;
825 int r;
bigbiff bigbiff56cf5642016-08-19 17:43:45 -0400826 vector<string> ext;
827
828 //extensions we should delete when cleaning
829 ext.push_back("win");
830 ext.push_back("md5");
831 ext.push_back("sha2");
832 ext.push_back("info");
bigbiffbf1d6722015-02-14 16:25:59 -0500833
Ethan Yonker74db1572015-10-28 12:44:49 -0500834 gui_msg("backup_clean=Backup Failed. Cleaning Backup Folder.");
bigbiffbf1d6722015-02-14 16:25:59 -0500835
836 if (d == NULL) {
Ethan Yonker74db1572015-10-28 12:44:49 -0500837 gui_msg(Msg(msg::kError, "error_opening_strerr=Error opening: '{1}' ({2})")(Backup_Folder)(strerror(errno)));
bigbiffbf1d6722015-02-14 16:25:59 -0500838 return;
839 }
840
Matt Mower2b18a532015-02-20 16:58:05 -0600841 while ((p = readdir(d))) {
bigbiffbf1d6722015-02-14 16:25:59 -0500842 if (!strcmp(p->d_name, ".") || !strcmp(p->d_name, ".."))
843 continue;
844
Ethan Yonkere080c1f2016-09-19 13:50:25 -0500845 string path = Backup_Folder + "/" + p->d_name;
bigbiffbf1d6722015-02-14 16:25:59 -0500846
847 size_t dot = path.find_last_of(".") + 1;
bigbiff bigbiff56cf5642016-08-19 17:43:45 -0400848 for (vector<string>::const_iterator i = ext.begin(); i != ext.end(); ++i) {
849 if (path.substr(dot) == *i) {
850 r = unlink(path.c_str());
851 if (r != 0)
852 LOGINFO("Unable to unlink '%s: %s'\n", path.c_str(), strerror(errno));
bigbiffbf1d6722015-02-14 16:25:59 -0500853 }
854 }
855 }
856 closedir(d);
857}
858
Ethan Yonker472f5062016-02-25 13:47:30 -0600859int TWPartitionManager::Check_Backup_Cancel() {
860 return stop_backup.get_value();
861}
862
bigbiff7abc5fe2015-01-17 16:53:12 -0500863int TWPartitionManager::Cancel_Backup() {
864 string Backup_Folder, Backup_Name, Full_Backup_Path;
865
866 stop_backup.set_value(1);
867
868 if (tar_fork_pid != 0) {
869 DataManager::GetValue(TW_BACKUP_NAME, Backup_Name);
870 DataManager::GetValue(TW_BACKUPS_FOLDER_VAR, Backup_Folder);
Ethan Yonkere080c1f2016-09-19 13:50:25 -0500871 Full_Backup_Path = Backup_Folder + "/" + Backup_Name;
bigbiff7abc5fe2015-01-17 16:53:12 -0500872 LOGINFO("Killing pid: %d\n", tar_fork_pid);
873 kill(tar_fork_pid, SIGUSR2);
874 while (kill(tar_fork_pid, 0) == 0) {
875 usleep(1000);
876 }
877 LOGINFO("Backup_Run stopped and returning false, backup cancelled.\n");
878 LOGINFO("Removing directory %s\n", Full_Backup_Path.c_str());
879 TWFunc::removeDir(Full_Backup_Path, false);
880 tar_fork_pid = 0;
881 }
882
883 return 0;
Dees_Troy43d8b002012-09-17 16:00:01 -0400884}
885
bigbiffce8f83c2015-12-12 18:30:21 -0500886int TWPartitionManager::Run_Backup(bool adbbackup) {
887 PartitionSettings part_settings;
bigbiff bigbiff56cf5642016-08-19 17:43:45 -0400888 int partition_count = 0, disable_free_space_check = 0, skip_digest = 0;
bigbiffce8f83c2015-12-12 18:30:21 -0500889 string Backup_Name, Backup_List, backup_path;
Matt Mower23d8aae2017-01-06 14:30:33 -0600890 unsigned long long total_bytes = 0, free_space = 0;
Dees_Troy43d8b002012-09-17 16:00:01 -0400891 TWPartition* storage = NULL;
892 struct tm *t;
Matt Mower23d8aae2017-01-06 14:30:33 -0600893 time_t seconds, total_start, total_stop;
Dees_Troya13d74f2013-03-24 08:54:55 -0500894 size_t start_pos = 0, end_pos = 0;
bigbiff7abc5fe2015-01-17 16:53:12 -0500895 stop_backup.set_value(0);
Dees_Troy43d8b002012-09-17 16:00:01 -0400896 seconds = time(0);
Matt Mowerfb1c4ff2014-04-16 13:43:36 -0500897 t = localtime(&seconds);
Dees_Troy43d8b002012-09-17 16:00:01 -0400898
bigbiffce8f83c2015-12-12 18:30:21 -0500899 part_settings.img_bytes_remaining = 0;
900 part_settings.file_bytes_remaining = 0;
901 part_settings.img_time = 0;
902 part_settings.file_time = 0;
903 part_settings.img_bytes = 0;
904 part_settings.file_bytes = 0;
905 part_settings.PM_Method = PM_BACKUP;
906
bigbiffce8f83c2015-12-12 18:30:21 -0500907 part_settings.adbbackup = adbbackup;
Dees_Troy43d8b002012-09-17 16:00:01 -0400908 time(&total_start);
909
910 Update_System_Details();
911
912 if (!Mount_Current_Storage(true))
913 return false;
914
bigbiff bigbiff56cf5642016-08-19 17:43:45 -0400915 DataManager::GetValue(TW_SKIP_DIGEST_GENERATE_VAR, skip_digest);
916 if (skip_digest == 0)
917 part_settings.generate_digest = true;
Dees_Troyc5865ab2012-09-24 15:08:04 -0400918 else
bigbiff bigbiff56cf5642016-08-19 17:43:45 -0400919 part_settings.generate_digest = false;
Dees_Troy4a2a1262012-09-18 09:33:47 -0400920
bigbiffce8f83c2015-12-12 18:30:21 -0500921 DataManager::GetValue(TW_BACKUPS_FOLDER_VAR, part_settings.Backup_Folder);
Ethan Yonkerdcf2b672016-09-13 14:41:53 -0500922 DataManager::GetValue(TW_BACKUP_NAME, Backup_Name);
923 if (Backup_Name == gui_lookup("curr_date", "(Current Date)")) {
924 Backup_Name = TWFunc::Get_Current_Date();
925 } else if (Backup_Name == gui_lookup("auto_generate", "(Auto Generate)") || Backup_Name == "0" || Backup_Name.empty()) {
Dees Troyb21cc642013-09-10 17:36:41 +0000926 TWFunc::Auto_Generate_Backup_Name();
Ethan Yonkerdcf2b672016-09-13 14:41:53 -0500927 DataManager::GetValue(TW_BACKUP_NAME, Backup_Name);
Dees_Troy43d8b002012-09-17 16:00:01 -0400928 }
bigbiffce8f83c2015-12-12 18:30:21 -0500929
Ethan Yonkerdcf2b672016-09-13 14:41:53 -0500930 LOGINFO("Backup Name is: '%s'\n", Backup_Name.c_str());
Ethan Yonkere080c1f2016-09-19 13:50:25 -0500931 part_settings.Backup_Folder = part_settings.Backup_Folder + "/" + Backup_Name;
bigbiffce8f83c2015-12-12 18:30:21 -0500932
Ethan Yonkere080c1f2016-09-19 13:50:25 -0500933 LOGINFO("Backup_Folder is: '%s'\n", part_settings.Backup_Folder.c_str());
Dees_Troy43d8b002012-09-17 16:00:01 -0400934
Dees_Troy2673cec2013-04-02 20:22:16 +0000935 LOGINFO("Calculating backup details...\n");
Dees_Troya13d74f2013-03-24 08:54:55 -0500936 DataManager::GetValue("tw_backup_list", Backup_List);
bigbiff7ba75002020-04-11 20:47:09 -0400937 LOGINFO("Backup_List: %s\n", Backup_List.c_str());
Dees_Troya13d74f2013-03-24 08:54:55 -0500938 if (!Backup_List.empty()) {
939 end_pos = Backup_List.find(";", start_pos);
940 while (end_pos != string::npos && start_pos < Backup_List.size()) {
941 backup_path = Backup_List.substr(start_pos, end_pos - start_pos);
bigbiff7ba75002020-04-11 20:47:09 -0400942 LOGINFO("backup_path: %s\n", backup_path.c_str());
bigbiffce8f83c2015-12-12 18:30:21 -0500943 part_settings.Part = Find_Partition_By_Path(backup_path);
944 if (part_settings.Part != NULL) {
Dees_Troya13d74f2013-03-24 08:54:55 -0500945 partition_count++;
bigbiffce8f83c2015-12-12 18:30:21 -0500946 if (part_settings.Part->Backup_Method == BM_FILES)
947 part_settings.file_bytes += part_settings.Part->Backup_Size;
Dees_Troya13d74f2013-03-24 08:54:55 -0500948 else
bigbiffce8f83c2015-12-12 18:30:21 -0500949 part_settings.img_bytes += part_settings.Part->Backup_Size;
950 if (part_settings.Part->Has_SubPartition) {
Dees_Troya13d74f2013-03-24 08:54:55 -0500951 std::vector<TWPartition*>::iterator subpart;
952
953 for (subpart = Partitions.begin(); subpart != Partitions.end(); subpart++) {
bigbiffce8f83c2015-12-12 18:30:21 -0500954 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 -0500955 partition_count++;
bigbiffce8f83c2015-12-12 18:30:21 -0500956 if ((*subpart)->Backup_Method == BM_FILES)
957 part_settings.file_bytes += (*subpart)->Backup_Size;
Dees_Troya13d74f2013-03-24 08:54:55 -0500958 else
bigbiffce8f83c2015-12-12 18:30:21 -0500959 part_settings.img_bytes += (*subpart)->Backup_Size;
Dees_Troya13d74f2013-03-24 08:54:55 -0500960 }
961 }
Dees_Troy8170a922012-09-18 15:40:25 -0400962 }
Dees_Troya13d74f2013-03-24 08:54:55 -0500963 } else {
Ethan Yonker74db1572015-10-28 12:44:49 -0500964 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 -0400965 }
Dees_Troya13d74f2013-03-24 08:54:55 -0500966 start_pos = end_pos + 1;
967 end_pos = Backup_List.find(";", start_pos);
Dees_Troy43d8b002012-09-17 16:00:01 -0400968 }
969 }
Dees_Troy43d8b002012-09-17 16:00:01 -0400970
971 if (partition_count == 0) {
Ethan Yonker74db1572015-10-28 12:44:49 -0500972 gui_msg("no_partition_selected=No partitions selected for backup.");
Dees_Troy43d8b002012-09-17 16:00:01 -0400973 return false;
974 }
bigbiffce8f83c2015-12-12 18:30:21 -0500975 if (adbbackup) {
976 if (twadbbu::Write_ADB_Stream_Header(partition_count) == false) {
977 return false;
978 }
979 }
980 total_bytes = part_settings.file_bytes + part_settings.img_bytes;
Ethan Yonker472f5062016-02-25 13:47:30 -0600981 ProgressTracking progress(total_bytes);
bigbiffce8f83c2015-12-12 18:30:21 -0500982 part_settings.progress = &progress;
983
Ethan Yonker74db1572015-10-28 12:44:49 -0500984 gui_msg(Msg("total_partitions_backup= * Total number of partitions to back up: {1}")(partition_count));
985 gui_msg(Msg("total_backup_size= * Total size of all data: {1}MB")(total_bytes / 1024 / 1024));
Dees_Troy43d8b002012-09-17 16:00:01 -0400986 storage = Find_Partition_By_Path(DataManager::GetCurrentStoragePath());
987 if (storage != NULL) {
988 free_space = storage->Free;
Ethan Yonker74db1572015-10-28 12:44:49 -0500989 gui_msg(Msg("available_space= * Available space: {1}MB")(free_space / 1024 / 1024));
Dees_Troy43d8b002012-09-17 16:00:01 -0400990 } else {
Ethan Yonker74db1572015-10-28 12:44:49 -0500991 gui_err("unable_locate_storage=Unable to locate storage device.");
Dees_Troy43d8b002012-09-17 16:00:01 -0400992 return false;
993 }
bigbiffbf1d6722015-02-14 16:25:59 -0500994
Matt Mowerbfccfb82016-04-25 23:22:31 -0500995 DataManager::GetValue(TW_DISABLE_FREE_SPACE_VAR, disable_free_space_check);
bigbiffce8f83c2015-12-12 18:30:21 -0500996
997 if (adbbackup)
998 disable_free_space_check = true;
999
bigbiffbf1d6722015-02-14 16:25:59 -05001000 if (!disable_free_space_check) {
1001 if (free_space - (32 * 1024 * 1024) < total_bytes) {
1002 // We require an extra 32MB just in case
Ethan Yonker74db1572015-10-28 12:44:49 -05001003 gui_err("no_space=Not enough free space on storage.");
bigbiffbf1d6722015-02-14 16:25:59 -05001004 return false;
1005 }
Dees_Troy43d8b002012-09-17 16:00:01 -04001006 }
bigbiffce8f83c2015-12-12 18:30:21 -05001007 part_settings.img_bytes_remaining = part_settings.img_bytes;
1008 part_settings.file_bytes_remaining = part_settings.file_bytes;
Dees_Troy43d8b002012-09-17 16:00:01 -04001009
Ethan Yonker74db1572015-10-28 12:44:49 -05001010 gui_msg("backup_started=[BACKUP STARTED]");
bigbiff bigbiffcdd97c72019-03-29 19:12:33 -04001011
1012 int is_decrypted = 0;
1013 int is_encrypted = 0;
1014
1015 DataManager::GetValue(TW_IS_DECRYPTED, is_decrypted);
1016 DataManager::GetValue(TW_IS_ENCRYPTED, is_encrypted);
1017 if (!adbbackup || (!is_encrypted || (is_encrypted && is_decrypted))) {
1018 gui_msg(Msg("backup_folder= * Backup Folder: {1}")(part_settings.Backup_Folder));
1019 if (!TWFunc::Recursive_Mkdir(part_settings.Backup_Folder)) {
1020 gui_err("fail_backup_folder=Failed to make backup folder.");
1021 return false;
1022 }
Dees_Troyd4b22b02013-01-18 17:17:58 +00001023 }
1024
Dees_Troy2673cec2013-04-02 20:22:16 +00001025 DataManager::SetProgress(0.0);
Dees_Troy093b7642012-09-21 15:59:38 -04001026
Dees_Troya13d74f2013-03-24 08:54:55 -05001027 start_pos = 0;
1028 end_pos = Backup_List.find(";", start_pos);
1029 while (end_pos != string::npos && start_pos < Backup_List.size()) {
bigbiff7abc5fe2015-01-17 16:53:12 -05001030 if (stop_backup.get_value() != 0)
1031 return -1;
Dees_Troya13d74f2013-03-24 08:54:55 -05001032 backup_path = Backup_List.substr(start_pos, end_pos - start_pos);
bigbiffce8f83c2015-12-12 18:30:21 -05001033 part_settings.Part = Find_Partition_By_Path(backup_path);
1034 if (part_settings.Part != NULL) {
1035 if (!Backup_Partition(&part_settings))
Dees_Troya13d74f2013-03-24 08:54:55 -05001036 return false;
1037 } else {
Ethan Yonker74db1572015-10-28 12:44:49 -05001038 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 -05001039 }
1040 start_pos = end_pos + 1;
1041 end_pos = Backup_List.find(";", start_pos);
1042 }
Dees_Troy43d8b002012-09-17 16:00:01 -04001043
1044 // Average BPS
bigbiffce8f83c2015-12-12 18:30:21 -05001045 if (part_settings.img_time == 0)
1046 part_settings.img_time = 1;
1047 if (part_settings.file_time == 0)
1048 part_settings.file_time = 1;
1049 int img_bps = (int)part_settings.img_bytes / (int)part_settings.img_time;
1050 unsigned long long file_bps = part_settings.file_bytes / (int)part_settings.file_time;
Dees_Troy43d8b002012-09-17 16:00:01 -04001051
bigbiffce8f83c2015-12-12 18:30:21 -05001052 if (part_settings.file_bytes != 0)
Ethan Yonker472f5062016-02-25 13:47:30 -06001053 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 -05001054 if (part_settings.img_bytes != 0)
Ethan Yonker472f5062016-02-25 13:47:30 -06001055 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 -04001056
1057 time(&total_stop);
1058 int total_time = (int) difftime(total_stop, total_start);
bigbiffce8f83c2015-12-12 18:30:21 -05001059
1060 uint64_t actual_backup_size;
Ethan Yonker3fdcda42016-11-30 12:29:37 -06001061 if (!adbbackup) {
1062 TWExclude twe;
1063 actual_backup_size = twe.Get_Folder_Size(part_settings.Backup_Folder);
1064 } else
bigbiffce8f83c2015-12-12 18:30:21 -05001065 actual_backup_size = part_settings.file_bytes + part_settings.img_bytes;
Matt Mowerfb1c4ff2014-04-16 13:43:36 -05001066 actual_backup_size /= (1024LLU * 1024LLU);
Dees_Troy43d8b002012-09-17 16:00:01 -04001067
bigbiffce8f83c2015-12-12 18:30:21 -05001068 int prev_img_bps = 0, use_compression = 0;
1069 unsigned long long prev_file_bps = 0;
Matt Mower173cdb92016-12-31 02:49:19 -06001070 DataManager::GetValue(TW_BACKUP_AVG_IMG_RATE, prev_img_bps);
Dees_Troy093b7642012-09-21 15:59:38 -04001071 img_bps += (prev_img_bps * 4);
Matt Mowerfb1c4ff2014-04-16 13:43:36 -05001072 img_bps /= 5;
Dees_Troy093b7642012-09-21 15:59:38 -04001073
Matt Mowerfb1c4ff2014-04-16 13:43:36 -05001074 DataManager::GetValue(TW_USE_COMPRESSION_VAR, use_compression);
Dees_Troy093b7642012-09-21 15:59:38 -04001075 if (use_compression)
1076 DataManager::GetValue(TW_BACKUP_AVG_FILE_COMP_RATE, prev_file_bps);
Matt Mowerfb1c4ff2014-04-16 13:43:36 -05001077 else
Dees_Troy093b7642012-09-21 15:59:38 -04001078 DataManager::GetValue(TW_BACKUP_AVG_FILE_RATE, prev_file_bps);
1079 file_bps += (prev_file_bps * 4);
Matt Mowerfb1c4ff2014-04-16 13:43:36 -05001080 file_bps /= 5;
Dees_Troy093b7642012-09-21 15:59:38 -04001081
Matt Mowerfb1c4ff2014-04-16 13:43:36 -05001082 DataManager::SetValue(TW_BACKUP_AVG_IMG_RATE, img_bps);
Dees_Troy093b7642012-09-21 15:59:38 -04001083 if (use_compression)
1084 DataManager::SetValue(TW_BACKUP_AVG_FILE_COMP_RATE, file_bps);
1085 else
1086 DataManager::SetValue(TW_BACKUP_AVG_FILE_RATE, file_bps);
1087
Ethan Yonker74db1572015-10-28 12:44:49 -05001088 gui_msg(Msg("total_backed_size=[{1} MB TOTAL BACKED UP]")(actual_backup_size));
Dees_Troy43d8b002012-09-17 16:00:01 -04001089 Update_System_Details();
Dees_Troyd0384ef2012-10-12 12:15:42 -04001090 UnMount_Main_Partitions();
Ethan Yonker56db1c42015-12-20 22:49:00 -06001091 gui_msg(Msg(msg::kHighlight, "backup_completed=[BACKUP COMPLETED IN {1} SECONDS]")(total_time)); // the end
Ethan Yonkere080c1f2016-09-19 13:50:25 -05001092 string backup_log = part_settings.Backup_Folder + "/recovery.log";
Dees_Troy3f5c4e82013-02-01 15:16:59 +00001093 TWFunc::copy_file("/tmp/recovery.log", backup_log, 0644);
Ethan Yonker4b94cfd2014-12-11 10:00:45 -06001094 tw_set_default_metadata(backup_log.c_str());
bigbiffce8f83c2015-12-12 18:30:21 -05001095
1096 if (part_settings.adbbackup) {
1097 if (twadbbu::Write_ADB_Stream_Trailer() == false) {
1098 return false;
1099 }
1100 }
1101 part_settings.adbbackup = false;
1102 DataManager::SetValue("tw_enable_adb_backup", 0);
1103
Dees_Troy3f5c4e82013-02-01 15:16:59 +00001104 return true;
Dees_Troy51a0e822012-09-05 15:24:24 -04001105}
1106
bigbiffce8f83c2015-12-12 18:30:21 -05001107bool TWPartitionManager::Restore_Partition(PartitionSettings *part_settings) {
Dees_Troy4a2a1262012-09-18 09:33:47 -04001108 time_t Start, Stop;
bigbiffce8f83c2015-12-12 18:30:21 -05001109
bigbiff bigbiffb5ecaad2017-03-20 18:53:53 -04001110 if (part_settings->adbbackup) {
bigbiff bigbiff19fb79c2016-09-05 21:04:51 -04001111 std::string partName = part_settings->Part->Backup_Name + "." + part_settings->Part->Current_File_System + ".win";
1112 LOGINFO("setting backup name: %s\n", partName.c_str());
bigbiff bigbiffb5ecaad2017-03-20 18:53:53 -04001113 part_settings->Part->Set_Backup_FileName(part_settings->Part->Backup_Name + "." + part_settings->Part->Current_File_System + ".win");
1114 }
1115
Tom Hite5a926722014-09-15 01:31:03 +00001116 TWFunc::SetPerformanceMode(true);
bigbiffce8f83c2015-12-12 18:30:21 -05001117
Dees_Troy4a2a1262012-09-18 09:33:47 -04001118 time(&Start);
Ethan Yonker472f5062016-02-25 13:47:30 -06001119
bigbiffce8f83c2015-12-12 18:30:21 -05001120 if (!part_settings->Part->Restore(part_settings)) {
Tom Hite5a926722014-09-15 01:31:03 +00001121 TWFunc::SetPerformanceMode(false);
Dees_Troy4a2a1262012-09-18 09:33:47 -04001122 return false;
Tom Hite5a926722014-09-15 01:31:03 +00001123 }
bigbiff bigbiff19fb79c2016-09-05 21:04:51 -04001124 if (part_settings->Part->Has_SubPartition && !part_settings->adbbackup) {
Dees_Troy8170a922012-09-18 15:40:25 -04001125 std::vector<TWPartition*>::iterator subpart;
bigbiff bigbiff8fd4b092016-08-30 20:48:53 -04001126 TWPartition *parentPart = part_settings->Part;
Dees_Troy8170a922012-09-18 15:40:25 -04001127
1128 for (subpart = Partitions.begin(); subpart != Partitions.end(); subpart++) {
bigbiff bigbiff8fd4b092016-08-30 20:48:53 -04001129 part_settings->Part = *subpart;
1130 if ((*subpart)->Is_SubPartition && (*subpart)->SubPartition_Of == parentPart->Mount_Point) {
1131 part_settings->Part = (*subpart);
bigbiff bigbiff19fb79c2016-09-05 21:04:51 -04001132 part_settings->Part->Set_Backup_FileName(part_settings->Part->Backup_Name + "." + part_settings->Part->Current_File_System + ".win");
bigbiffce8f83c2015-12-12 18:30:21 -05001133 if (!(*subpart)->Restore(part_settings)) {
Tom Hite5a926722014-09-15 01:31:03 +00001134 TWFunc::SetPerformanceMode(false);
Dees_Troy8170a922012-09-18 15:40:25 -04001135 return false;
Tom Hite5a926722014-09-15 01:31:03 +00001136 }
Dees_Troy8170a922012-09-18 15:40:25 -04001137 }
1138 }
1139 }
Dees_Troy4a2a1262012-09-18 09:33:47 -04001140 time(&Stop);
Tom Hite5a926722014-09-15 01:31:03 +00001141 TWFunc::SetPerformanceMode(false);
bigbiffce8f83c2015-12-12 18:30:21 -05001142 gui_msg(Msg("restore_part_done=[{1} done ({2} seconds)]")(part_settings->Part->Backup_Display_Name)((int)difftime(Stop, Start)));
1143
Dees_Troy4a2a1262012-09-18 09:33:47 -04001144 return true;
1145}
1146
Ethan Yonker472f5062016-02-25 13:47:30 -06001147int TWPartitionManager::Run_Restore(const string& Restore_Name) {
bigbiffce8f83c2015-12-12 18:30:21 -05001148 PartitionSettings part_settings;
bigbiff bigbiff56cf5642016-08-19 17:43:45 -04001149 int check_digest;
bigbiffce8f83c2015-12-12 18:30:21 -05001150
Dees_Troy4a2a1262012-09-18 09:33:47 -04001151 time_t rStart, rStop;
1152 time(&rStart);
Dees_Troya13d74f2013-03-24 08:54:55 -05001153 string Restore_List, restore_path;
1154 size_t start_pos = 0, end_pos;
bigbiffce8f83c2015-12-12 18:30:21 -05001155
Ethan Yonkerdcf2b672016-09-13 14:41:53 -05001156 part_settings.Backup_Folder = Restore_Name;
bigbiffce8f83c2015-12-12 18:30:21 -05001157 part_settings.Part = NULL;
1158 part_settings.partition_count = 0;
1159 part_settings.total_restore_size = 0;
1160 part_settings.adbbackup = false;
1161 part_settings.PM_Method = PM_RESTORE;
Dees_Troy43d8b002012-09-17 16:00:01 -04001162
Ethan Yonker74db1572015-10-28 12:44:49 -05001163 gui_msg("restore_started=[RESTORE STARTED]");
1164 gui_msg(Msg("restore_folder=Restore folder: '{1}'")(Restore_Name));
Dees_Troy43d8b002012-09-17 16:00:01 -04001165
Dees_Troy4a2a1262012-09-18 09:33:47 -04001166 if (!Mount_Current_Storage(true))
1167 return false;
1168
bigbiff bigbiff56cf5642016-08-19 17:43:45 -04001169 DataManager::GetValue(TW_SKIP_DIGEST_CHECK_VAR, check_digest);
1170 if (check_digest > 0) {
1171 // Check Digest files first before restoring to ensure that all of them match before starting a restore
1172 TWFunc::GUI_Operation_Text(TW_VERIFY_DIGEST_TEXT, gui_parse_text("{@verifying_digest}"));
1173 gui_msg("verifying_digest=Verifying Digest");
Dees_Troya13d74f2013-03-24 08:54:55 -05001174 } else {
bigbiff bigbiff56cf5642016-08-19 17:43:45 -04001175 gui_msg("skip_digest=Skipping Digest check based on user setting.");
Dees_Troya13d74f2013-03-24 08:54:55 -05001176 }
Ethan Yonker74db1572015-10-28 12:44:49 -05001177 gui_msg("calc_restore=Calculating restore details...");
Dees_Troya13d74f2013-03-24 08:54:55 -05001178 DataManager::GetValue("tw_restore_selected", Restore_List);
bigbiffce8f83c2015-12-12 18:30:21 -05001179
Dees_Troya13d74f2013-03-24 08:54:55 -05001180 if (!Restore_List.empty()) {
1181 end_pos = Restore_List.find(";", start_pos);
1182 while (end_pos != string::npos && start_pos < Restore_List.size()) {
1183 restore_path = Restore_List.substr(start_pos, end_pos - start_pos);
bigbiffce8f83c2015-12-12 18:30:21 -05001184 part_settings.Part = Find_Partition_By_Path(restore_path);
1185 if (part_settings.Part != NULL) {
bigbiffce8f83c2015-12-12 18:30:21 -05001186 if (part_settings.Part->Mount_Read_Only) {
1187 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 -05001188 return false;
1189 }
bigbiffce8f83c2015-12-12 18:30:21 -05001190
bigbiff bigbiff56cf5642016-08-19 17:43:45 -04001191 string Full_Filename = part_settings.Backup_Folder + "/" + part_settings.Part->Backup_FileName;
1192
bigbiff4a60bee2021-01-23 14:08:03 -05001193 if (tw_get_default_metadata(Get_Android_Root_Path().c_str()) != 0) {
1194 gui_msg(Msg(msg::kWarning, "restore_system_context=Unable to get default context for {1} -- Android may not boot.")(Get_Android_Root_Path()));
1195 }
1196
bigbiff bigbiff56cf5642016-08-19 17:43:45 -04001197 if (check_digest > 0 && !twrpDigestDriver::Check_Digest(Full_Filename))
Dees_Troya13d74f2013-03-24 08:54:55 -05001198 return false;
bigbiffce8f83c2015-12-12 18:30:21 -05001199 part_settings.partition_count++;
1200 part_settings.total_restore_size += part_settings.Part->Get_Restore_Size(&part_settings);
1201 if (part_settings.Part->Has_SubPartition) {
bigbiff bigbiff8fd4b092016-08-30 20:48:53 -04001202 TWPartition *parentPart = part_settings.Part;
Dees_Troya13d74f2013-03-24 08:54:55 -05001203 std::vector<TWPartition*>::iterator subpart;
1204
1205 for (subpart = Partitions.begin(); subpart != Partitions.end(); subpart++) {
bigbiff bigbiff8fd4b092016-08-30 20:48:53 -04001206 part_settings.Part = *subpart;
1207 if ((*subpart)->Is_SubPartition && (*subpart)->SubPartition_Of == parentPart->Mount_Point) {
bigbiff bigbiff56cf5642016-08-19 17:43:45 -04001208 if (check_digest > 0 && !twrpDigestDriver::Check_Digest(Full_Filename))
Dees_Troya13d74f2013-03-24 08:54:55 -05001209 return false;
bigbiffce8f83c2015-12-12 18:30:21 -05001210 part_settings.total_restore_size += (*subpart)->Get_Restore_Size(&part_settings);
Dees_Troya13d74f2013-03-24 08:54:55 -05001211 }
1212 }
1213 }
1214 } else {
Ethan Yonker74db1572015-10-28 12:44:49 -05001215 gui_msg(Msg(msg::kError, "restore_unable_locate=Unable to locate '{1}' partition for restoring.")(restore_path));
Dees_Troya13d74f2013-03-24 08:54:55 -05001216 }
1217 start_pos = end_pos + 1;
1218 end_pos = Restore_List.find(";", start_pos);
Dees_Troy4a2a1262012-09-18 09:33:47 -04001219 }
Dees_Troy4a2a1262012-09-18 09:33:47 -04001220 }
Dees_Troy4a2a1262012-09-18 09:33:47 -04001221
bigbiffce8f83c2015-12-12 18:30:21 -05001222 if (part_settings.partition_count == 0) {
Ethan Yonker74db1572015-10-28 12:44:49 -05001223 gui_err("no_part_restore=No partitions selected for restore.");
Dees_Troy4a2a1262012-09-18 09:33:47 -04001224 return false;
1225 }
1226
bigbiffce8f83c2015-12-12 18:30:21 -05001227 gui_msg(Msg("restore_part_count=Restoring {1} partitions...")(part_settings.partition_count));
1228 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 +00001229 DataManager::SetProgress(0.0);
bigbiffce8f83c2015-12-12 18:30:21 -05001230 ProgressTracking progress(part_settings.total_restore_size);
1231 part_settings.progress = &progress;
Ethan Yonker1b7a31b2014-07-03 15:09:22 -05001232
Dees_Troya13d74f2013-03-24 08:54:55 -05001233 start_pos = 0;
1234 if (!Restore_List.empty()) {
1235 end_pos = Restore_List.find(";", start_pos);
1236 while (end_pos != string::npos && start_pos < Restore_List.size()) {
1237 restore_path = Restore_List.substr(start_pos, end_pos - start_pos);
bigbiffce8f83c2015-12-12 18:30:21 -05001238
1239 part_settings.Part = Find_Partition_By_Path(restore_path);
1240 if (part_settings.Part != NULL) {
1241 part_settings.partition_count++;
bigbiffce8f83c2015-12-12 18:30:21 -05001242 if (!Restore_Partition(&part_settings))
Dees_Troya13d74f2013-03-24 08:54:55 -05001243 return false;
1244 } else {
Ethan Yonker74db1572015-10-28 12:44:49 -05001245 gui_msg(Msg(msg::kError, "restore_unable_locate=Unable to locate '{1}' partition for restoring.")(restore_path));
Dees_Troya13d74f2013-03-24 08:54:55 -05001246 }
1247 start_pos = end_pos + 1;
1248 end_pos = Restore_List.find(";", start_pos);
1249 }
1250 }
Ethan Yonker74db1572015-10-28 12:44:49 -05001251 TWFunc::GUI_Operation_Text(TW_UPDATE_SYSTEM_DETAILS_TEXT, gui_parse_text("{@updating_system_details}"));
bigbiff4a60bee2021-01-23 14:08:03 -05001252 tw_set_default_metadata(Get_Android_Root_Path().c_str());
Captain Throwback9d6feb52018-07-27 10:05:24 -04001253 UnMount_By_Path(Get_Android_Root_Path(), false);
Dees_Troy43d8b002012-09-17 16:00:01 -04001254 Update_System_Details();
Dees_Troyd0384ef2012-10-12 12:15:42 -04001255 UnMount_Main_Partitions();
Dees_Troy4a2a1262012-09-18 09:33:47 -04001256 time(&rStop);
Matt Mower3c366972015-12-25 19:28:31 -06001257 gui_msg(Msg(msg::kHighlight, "restore_completed=[RESTORE COMPLETED IN {1} SECONDS]")((int)difftime(rStop,rStart)));
Ethan Yonker1b7a31b2014-07-03 15:09:22 -05001258 DataManager::SetValue("tw_file_progress", "");
bigbiffce8f83c2015-12-12 18:30:21 -05001259
Dees_Troy63c8df72012-09-10 14:02:05 -04001260 return true;
Dees_Troy51a0e822012-09-05 15:24:24 -04001261}
1262
1263void TWPartitionManager::Set_Restore_Files(string Restore_Name) {
Dees_Troy63c8df72012-09-10 14:02:05 -04001264 // Start with the default values
Dees_Troya13d74f2013-03-24 08:54:55 -05001265 string Restore_List;
Dees_Troy83bd4832013-05-04 12:39:56 +00001266 bool get_date = true, check_encryption = true;
bigbiff bigbiff19fb79c2016-09-05 21:04:51 -04001267 bool adbbackup = false;
Dees_Troy83bd4832013-05-04 12:39:56 +00001268
1269 DataManager::SetValue("tw_restore_encrypted", 0);
bigbiff bigbiff19fb79c2016-09-05 21:04:51 -04001270 if (twadbbu::Check_ADB_Backup_File(Restore_Name)) {
1271 vector<string> adb_files;
1272 adb_files = twadbbu::Get_ADB_Backup_Files(Restore_Name);
1273 for (unsigned int i = 0; i < adb_files.size(); ++i) {
1274 string adb_restore_file = adb_files.at(i);
1275 std::size_t pos = adb_restore_file.find_first_of(".");
1276 std::string path = "/" + adb_restore_file.substr(0, pos);
1277 Restore_List = path + ";";
1278 TWPartition* Part = Find_Partition_By_Path(path);
1279 Part->Backup_FileName = TWFunc::Get_Filename(adb_restore_file);
1280 adbbackup = true;
1281 }
1282 DataManager::SetValue("tw_enable_adb_backup", 1);
Dees_Troy63c8df72012-09-10 14:02:05 -04001283 }
bigbiff bigbiff19fb79c2016-09-05 21:04:51 -04001284 else {
1285 DIR* d;
1286 d = opendir(Restore_Name.c_str());
1287 if (d == NULL)
Dees_Troy63c8df72012-09-10 14:02:05 -04001288 {
bigbiff bigbiff19fb79c2016-09-05 21:04:51 -04001289 gui_msg(Msg(msg::kError, "error_opening_strerr=Error opening: '{1}' ({2})")(Restore_Name)(strerror(errno)));
1290 return;
Dees_Troy63c8df72012-09-10 14:02:05 -04001291 }
bigbiff bigbiff19fb79c2016-09-05 21:04:51 -04001292
1293 struct dirent* de;
1294 while ((de = readdir(d)) != NULL)
Dees_Troy63c8df72012-09-10 14:02:05 -04001295 {
bigbiff bigbiff19fb79c2016-09-05 21:04:51 -04001296 // Strip off three components
1297 char str[256];
1298 char* label;
1299 char* fstype = NULL;
1300 char* extn = NULL;
1301 char* ptr;
Dees_Troy63c8df72012-09-10 14:02:05 -04001302
bigbiff bigbiff19fb79c2016-09-05 21:04:51 -04001303 strcpy(str, de->d_name);
1304 if (strlen(str) <= 2)
1305 continue;
Dees_Troy83bd4832013-05-04 12:39:56 +00001306
bigbiff bigbiff19fb79c2016-09-05 21:04:51 -04001307 if (get_date) {
1308 char file_path[255];
1309 struct stat st;
1310
1311 strcpy(file_path, Restore_Name.c_str());
1312 strcat(file_path, "/");
1313 strcat(file_path, str);
1314 stat(file_path, &st);
1315 string backup_date = ctime((const time_t*)(&st.st_mtime));
1316 DataManager::SetValue(TW_RESTORE_FILE_DATE, backup_date);
1317 get_date = false;
Dees_Troy83bd4832013-05-04 12:39:56 +00001318 }
Dees_Troy63c8df72012-09-10 14:02:05 -04001319
bigbiff bigbiff19fb79c2016-09-05 21:04:51 -04001320 label = str;
1321 ptr = label;
1322 while (*ptr && *ptr != '.') ptr++;
1323 if (*ptr == '.')
1324 {
1325 *ptr = 0x00;
1326 ptr++;
1327 fstype = ptr;
1328 }
1329 while (*ptr && *ptr != '.') ptr++;
1330 if (*ptr == '.')
1331 {
1332 *ptr = 0x00;
1333 ptr++;
1334 extn = ptr;
1335 }
Dees_Troy63c8df72012-09-10 14:02:05 -04001336
bigbiff bigbiff19fb79c2016-09-05 21:04:51 -04001337 if (fstype == NULL || extn == NULL || strcmp(fstype, "log") == 0) continue;
1338 int extnlength = strlen(extn);
1339 if (extnlength != 3 && extnlength != 6) continue;
1340 if (extnlength >= 3 && strncmp(extn, "win", 3) != 0) continue;
1341 //if (extnlength == 6 && strncmp(extn, "win000", 6) != 0) continue;
Dees_Troy63c8df72012-09-10 14:02:05 -04001342
bigbiff bigbiff19fb79c2016-09-05 21:04:51 -04001343 if (check_encryption) {
1344 string filename = Restore_Name + "/";
1345 filename += de->d_name;
1346 if (TWFunc::Get_File_Type(filename) == 2) {
1347 LOGINFO("'%s' is encrypted\n", filename.c_str());
1348 DataManager::SetValue("tw_restore_encrypted", 1);
1349 }
1350 }
1351 if (extnlength == 6 && strncmp(extn, "win000", 6) != 0) continue;
1352
1353 TWPartition* Part = Find_Partition_By_Path(label);
1354 if (Part == NULL)
1355 {
1356 gui_msg(Msg(msg::kError, "unable_locate_part_backup_name=Unable to locate partition by backup name: '{1}'")(label));
1357 continue;
1358 }
1359
1360 Part->Backup_FileName = de->d_name;
1361 if (strlen(extn) > 3) {
1362 Part->Backup_FileName.resize(Part->Backup_FileName.size() - strlen(extn) + 3);
1363 }
1364
dianlujitaob76a73a2020-04-30 20:33:20 +08001365 if (!Part->Is_SubPartition) {
1366 if (Part->Backup_Path == Get_Android_Root_Path())
1367 Restore_List += "/system;";
1368 else
1369 Restore_List += Part->Backup_Path + ";";
1370 }
bigbiff bigbiff19fb79c2016-09-05 21:04:51 -04001371 }
1372 closedir(d);
Dees_Troy63c8df72012-09-10 14:02:05 -04001373 }
bigbiff bigbiff19fb79c2016-09-05 21:04:51 -04001374
1375 if (adbbackup) {
1376 Restore_List = "ADB_Backup;";
1377 adbbackup = false;
1378 }
Dees_Troy63c8df72012-09-10 14:02:05 -04001379
Dees_Troya13d74f2013-03-24 08:54:55 -05001380 // Set the final value
1381 DataManager::SetValue("tw_restore_list", Restore_List);
1382 DataManager::SetValue("tw_restore_selected", Restore_List);
Dees_Troy51a0e822012-09-05 15:24:24 -04001383 return;
1384}
1385
1386int TWPartitionManager::Wipe_By_Path(string Path) {
Dees_Troy63c8df72012-09-10 14:02:05 -04001387 std::vector<TWPartition*>::iterator iter;
Mohd Farazfdd49bb2020-04-21 18:56:44 +05301388 std::vector < TWPartition * >::iterator iter1;
Dees_Troy63c8df72012-09-10 14:02:05 -04001389 int ret = false;
1390 bool found = false;
Dees_Troy38bd7602012-09-14 13:33:53 -04001391 string Local_Path = TWFunc::Get_Root_Path(Path);
Dees_Troy63c8df72012-09-10 14:02:05 -04001392
dianlujitaob76a73a2020-04-30 20:33:20 +08001393 if (Local_Path == "/system")
1394 Local_Path = Get_Android_Root_Path();
Dees_Troy63c8df72012-09-10 14:02:05 -04001395 // Iterate through all partitions
1396 for (iter = Partitions.begin(); iter != Partitions.end(); iter++) {
Dees_Troy657c3092012-09-10 20:32:10 -04001397 if ((*iter)->Mount_Point == Local_Path || (!(*iter)->Symlink_Mount_Point.empty() && (*iter)->Symlink_Mount_Point == Local_Path)) {
Mohd Farazfdd49bb2020-04-21 18:56:44 +05301398 // iterate through all partitions since some legacy devices uses other partitions as vendor causes issues while wiping
1399 (*iter)->Find_Actual_Block_Device();
1400 for (iter1 = Partitions.begin (); iter1 != Partitions.end (); iter1++)
1401 {
1402 (*iter1)->Find_Actual_Block_Device();
1403 if ((*iter)->Actual_Block_Device == (*iter1)->Actual_Block_Device && (*iter)->Mount_Point != (*iter1)->Mount_Point)
1404 (*iter1)->UnMount(false);
1405 }
Dees_Troye58d5262012-09-21 12:27:57 -04001406 if (Path == "/and-sec")
1407 ret = (*iter)->Wipe_AndSec();
1408 else
1409 ret = (*iter)->Wipe();
Dees_Troy63c8df72012-09-10 14:02:05 -04001410 found = true;
1411 } else if ((*iter)->Is_SubPartition && (*iter)->SubPartition_Of == Local_Path) {
1412 (*iter)->Wipe();
1413 }
1414 }
1415 if (found) {
1416 return ret;
1417 } else
Ethan Yonker74db1572015-10-28 12:44:49 -05001418 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 -04001419 return false;
Dees_Troy51a0e822012-09-05 15:24:24 -04001420}
1421
Ethan Yonker87c7bac2014-05-25 21:41:08 -05001422int TWPartitionManager::Wipe_By_Path(string Path, string New_File_System) {
1423 std::vector<TWPartition*>::iterator iter;
1424 int ret = false;
1425 bool found = false;
1426 string Local_Path = TWFunc::Get_Root_Path(Path);
1427
1428 // Iterate through all partitions
1429 for (iter = Partitions.begin(); iter != Partitions.end(); iter++) {
1430 if ((*iter)->Mount_Point == Local_Path || (!(*iter)->Symlink_Mount_Point.empty() && (*iter)->Symlink_Mount_Point == Local_Path)) {
1431 if (Path == "/and-sec")
1432 ret = (*iter)->Wipe_AndSec();
1433 else
1434 ret = (*iter)->Wipe(New_File_System);
1435 found = true;
1436 } else if ((*iter)->Is_SubPartition && (*iter)->SubPartition_Of == Local_Path) {
1437 (*iter)->Wipe(New_File_System);
1438 }
1439 }
1440 if (found) {
1441 return ret;
1442 } else
Ethan Yonker74db1572015-10-28 12:44:49 -05001443 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 -05001444 return false;
1445}
1446
Dees_Troy51a0e822012-09-05 15:24:24 -04001447int TWPartitionManager::Factory_Reset(void) {
Dees_Troy63c8df72012-09-10 14:02:05 -04001448 std::vector<TWPartition*>::iterator iter;
1449 int ret = true;
1450
1451 for (iter = Partitions.begin(); iter != Partitions.end(); iter++) {
Dees_Troy38bd7602012-09-14 13:33:53 -04001452 if ((*iter)->Wipe_During_Factory_Reset && (*iter)->Is_Present) {
Ethan Yonker89583ef2015-08-26 09:01:59 -05001453#ifdef TW_OEM_BUILD
1454 if ((*iter)->Mount_Point == "/data") {
1455 if (!(*iter)->Wipe_Encryption())
1456 ret = false;
1457 } else {
1458#endif
1459 if (!(*iter)->Wipe())
1460 ret = false;
1461#ifdef TW_OEM_BUILD
1462 }
1463#endif
Dees_Troy094207a2012-09-26 12:00:39 -04001464 } else if ((*iter)->Has_Android_Secure) {
1465 if (!(*iter)->Wipe_AndSec())
1466 ret = false;
Dees_Troy63c8df72012-09-10 14:02:05 -04001467 }
1468 }
bigbiffad58e1b2020-07-06 20:24:34 -04001469 TWFunc::check_and_run_script("/system/bin/factoryreset.sh", "Factory Reset Script");
Dees_Troy63c8df72012-09-10 14:02:05 -04001470 return ret;
Dees_Troy51a0e822012-09-05 15:24:24 -04001471}
1472
Dees_Troy38bd7602012-09-14 13:33:53 -04001473int TWPartitionManager::Wipe_Dalvik_Cache(void) {
1474 struct stat st;
bigbiff bigbiff9c754052013-01-09 09:09:08 -05001475 vector <string> dir;
Dees_Troy38bd7602012-09-14 13:33:53 -04001476
1477 if (!Mount_By_Path("/data", true))
1478 return false;
1479
bigbiff bigbiff9c754052013-01-09 09:09:08 -05001480 dir.push_back("/data/dalvik-cache");
bigbiff bigbiff19874f12019-01-08 20:06:57 -05001481
bigbiff25d25b92020-06-19 16:07:38 -04001482 std::string cacheDir = TWFunc::get_log_dir();
1483 if (cacheDir == CACHE_LOGS_DIR) {
1484 if (!PartitionManager.Mount_By_Path(CACHE_LOGS_DIR, false)) {
1485 LOGINFO("Unable to mount %s for wiping cache.\n", CACHE_LOGS_DIR);
bigbiff bigbiff19874f12019-01-08 20:06:57 -05001486 }
1487 dir.push_back(cacheDir + "dalvik-cache");
1488 dir.push_back(cacheDir + "/dc");
bigbiff bigbiff9c754052013-01-09 09:09:08 -05001489 }
Ethan Yonkerff2b7882016-12-10 09:04:41 -06001490
Dees_Troy38bd7602012-09-14 13:33:53 -04001491 TWPartition* sdext = Find_Partition_By_Path("/sd-ext");
Vojtech Bocekfafb0c52013-07-25 22:53:02 +02001492 if (sdext && sdext->Is_Present && sdext->Mount(false))
1493 {
1494 if (stat("/sd-ext/dalvik-cache", &st) == 0)
1495 {
Ethan Yonkerff2b7882016-12-10 09:04:41 -06001496 dir.push_back("/sd-ext/dalvik-cache");
1497 }
1498 }
1499
bigbiff25d25b92020-06-19 16:07:38 -04001500 if (cacheDir == CACHE_LOGS_DIR) {
bigbiff bigbiff19874f12019-01-08 20:06:57 -05001501 gui_msg("wiping_cache_dalvik=Wiping Dalvik Cache Directories...");
1502 } else {
1503 gui_msg("wiping_dalvik=Wiping Dalvik Directory...");
1504 }
Ethan Yonkerff2b7882016-12-10 09:04:41 -06001505 for (unsigned i = 0; i < dir.size(); ++i) {
1506 if (stat(dir.at(i).c_str(), &st) == 0) {
1507 TWFunc::removeDir(dir.at(i), false);
1508 gui_msg(Msg("cleaned=Cleaned: {1}...")(dir.at(i)));
bigbiff bigbiff9c754052013-01-09 09:09:08 -05001509 }
Vojtech Bocekfafb0c52013-07-25 22:53:02 +02001510 }
bigbiff bigbiff19874f12019-01-08 20:06:57 -05001511
bigbiff25d25b92020-06-19 16:07:38 -04001512 if (cacheDir == CACHE_LOGS_DIR) {
bigbiff bigbiff19874f12019-01-08 20:06:57 -05001513 gui_msg("cache_dalvik_done=-- Dalvik Cache Directories Wipe Complete!");
1514 } else {
1515 gui_msg("dalvik_done=-- Dalvik Directory Wipe Complete!");
1516 }
1517
Dees_Troy38bd7602012-09-14 13:33:53 -04001518 return true;
1519}
1520
1521int TWPartitionManager::Wipe_Rotate_Data(void) {
1522 if (!Mount_By_Path("/data", true))
1523 return false;
1524
bigbiff bigbiff9c754052013-01-09 09:09:08 -05001525 unlink("/data/misc/akmd*");
1526 unlink("/data/misc/rild*");
Dees_Troy2673cec2013-04-02 20:22:16 +00001527 gui_print("Rotation data wiped.\n");
Dees_Troy38bd7602012-09-14 13:33:53 -04001528 return true;
1529}
1530
1531int TWPartitionManager::Wipe_Battery_Stats(void) {
1532 struct stat st;
1533
1534 if (!Mount_By_Path("/data", true))
1535 return false;
1536
1537 if (0 != stat("/data/system/batterystats.bin", &st)) {
Dees_Troy2673cec2013-04-02 20:22:16 +00001538 gui_print("No Battery Stats Found. No Need To Wipe.\n");
Dees_Troy38bd7602012-09-14 13:33:53 -04001539 } else {
1540 remove("/data/system/batterystats.bin");
Dees_Troy2673cec2013-04-02 20:22:16 +00001541 gui_print("Cleared battery stats.\n");
Dees_Troy38bd7602012-09-14 13:33:53 -04001542 }
1543 return true;
1544}
1545
Dees_Troy2ff5a8d2012-09-26 14:53:02 -04001546int TWPartitionManager::Wipe_Android_Secure(void) {
1547 std::vector<TWPartition*>::iterator iter;
1548 int ret = false;
1549 bool found = false;
1550
1551 // Iterate through all partitions
1552 for (iter = Partitions.begin(); iter != Partitions.end(); iter++) {
1553 if ((*iter)->Has_Android_Secure) {
1554 ret = (*iter)->Wipe_AndSec();
1555 found = true;
1556 }
1557 }
1558 if (found) {
1559 return ret;
1560 } else {
Ethan Yonker74db1572015-10-28 12:44:49 -05001561 gui_err("no_andsec=No android secure partitions found.");
Dees_Troy2ff5a8d2012-09-26 14:53:02 -04001562 }
1563 return false;
1564}
1565
Dees_Troy38bd7602012-09-14 13:33:53 -04001566int TWPartitionManager::Format_Data(void) {
1567 TWPartition* dat = Find_Partition_By_Path("/data");
1568
1569 if (dat != NULL) {
Dees_Troy38bd7602012-09-14 13:33:53 -04001570 return dat->Wipe_Encryption();
1571 } else {
Matt Mower3c366972015-12-25 19:28:31 -06001572 gui_msg(Msg(msg::kError, "unable_to_locate=Unable to locate {1}.")("/data"));
Dees_Troy38bd7602012-09-14 13:33:53 -04001573 return false;
1574 }
1575 return false;
1576}
1577
1578int TWPartitionManager::Wipe_Media_From_Data(void) {
1579 TWPartition* dat = Find_Partition_By_Path("/data");
1580
1581 if (dat != NULL) {
1582 if (!dat->Has_Data_Media) {
Dees_Troy2673cec2013-04-02 20:22:16 +00001583 LOGERR("This device does not have /data/media\n");
Dees_Troy38bd7602012-09-14 13:33:53 -04001584 return false;
1585 }
1586 if (!dat->Mount(true))
1587 return false;
1588
Ethan Yonker74db1572015-10-28 12:44:49 -05001589 gui_msg("wiping_datamedia=Wiping internal storage -- /data/media...");
Ethan Yonker726a0202014-12-16 20:01:38 -06001590 Remove_MTP_Storage(dat->MTP_Storage_ID);
bigbiff bigbiff9c754052013-01-09 09:09:08 -05001591 TWFunc::removeDir("/data/media", false);
xiaolu9416f4f2015-06-04 08:22:23 +08001592 dat->Recreate_Media_Folder();
Ethan Yonker726a0202014-12-16 20:01:38 -06001593 Add_MTP_Storage(dat->MTP_Storage_ID);
Dees_Troy38bd7602012-09-14 13:33:53 -04001594 return true;
1595 } else {
Matt Mower3c366972015-12-25 19:28:31 -06001596 gui_msg(Msg(msg::kError, "unable_to_locate=Unable to locate {1}.")("/data"));
Dees_Troy38bd7602012-09-14 13:33:53 -04001597 return false;
1598 }
1599 return false;
1600}
1601
Ethan Yonker87c7bac2014-05-25 21:41:08 -05001602int TWPartitionManager::Repair_By_Path(string Path, bool Display_Error) {
1603 std::vector<TWPartition*>::iterator iter;
1604 int ret = false;
1605 bool found = false;
1606 string Local_Path = TWFunc::Get_Root_Path(Path);
1607
1608 if (Local_Path == "/tmp" || Local_Path == "/")
1609 return true;
1610
1611 // Iterate through all partitions
1612 for (iter = Partitions.begin(); iter != Partitions.end(); iter++) {
1613 if ((*iter)->Mount_Point == Local_Path || (!(*iter)->Symlink_Mount_Point.empty() && (*iter)->Symlink_Mount_Point == Local_Path)) {
1614 ret = (*iter)->Repair();
1615 found = true;
1616 } else if ((*iter)->Is_SubPartition && (*iter)->SubPartition_Of == Local_Path) {
1617 (*iter)->Repair();
1618 }
1619 }
1620 if (found) {
1621 return ret;
1622 } else if (Display_Error) {
Ethan Yonker74db1572015-10-28 12:44:49 -05001623 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 -05001624 } else {
1625 LOGINFO("Repair: Unable to find partition for path '%s'\n", Local_Path.c_str());
1626 }
1627 return false;
1628}
1629
Ethan Yonkera2719152015-05-28 09:44:41 -0500