blob: 848d00ac066138005b96cb3fe2dcbde2918e48ae [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>
bigbiffce8f83c2015-12-12 18:30:21 -050031#include <zlib.h>
bigbiff bigbiff9c754052013-01-09 09:09:08 -050032#include <iostream>
33#include <iomanip>
Ethan Yonker8613dc02014-09-11 09:28:20 -050034#include <sys/wait.h>
Ethan Yonker483e9f42016-01-11 22:21:18 -060035#include <linux/fs.h>
36#include <sys/mount.h>
Ethan Yonker6e8c27a2016-12-22 17:55:57 -060037
bigbiffee7b7ff2020-03-23 15:08:27 -040038
Ethan Yonker6e8c27a2016-12-22 17:55:57 -060039#include <sys/poll.h>
40#include <sys/socket.h>
41#include <linux/types.h>
42#include <linux/netlink.h>
bigbiffee7b7ff2020-03-23 15:08:27 -040043#include <android-base/chrono_utils.h>
44#include <android-base/file.h>
45#include <android-base/logging.h>
46#include <android-base/strings.h>
47#include <fstab/fstab.h>
48#include <fs_avb/fs_avb.h>
49#include <fs_mgr.h>
50#include <fs_mgr_dm_linear.h>
51#include <fs_mgr_overlayfs.h>
52#include <libgsi/libgsi.h>
53#include <liblp/liblp.h>
Ethan Yonker6e8c27a2016-12-22 17:55:57 -060054
Dees_Troy51a0e822012-09-05 15:24:24 -040055#include "variables.h"
Dees_Troy2673cec2013-04-02 20:22:16 +000056#include "twcommon.h"
Dees_Troy51a0e822012-09-05 15:24:24 -040057#include "partitions.hpp"
Dees_Troy5bf43922012-09-07 16:07:55 -040058#include "data.hpp"
Dees_Troy38bd7602012-09-14 13:33:53 -040059#include "twrp-functions.hpp"
Ethan Yonkerb5fab762016-01-28 14:03:33 -060060#include "fixContexts.hpp"
Ethan Yonker3fdcda42016-11-30 12:29:37 -060061#include "exclude.hpp"
Ethan Yonker4b94cfd2014-12-11 10:00:45 -060062#include "set_metadata.h"
bigbiff7abc5fe2015-01-17 16:53:12 -050063#include "tw_atomic.hpp"
Ethan Yonker74db1572015-10-28 12:44:49 -050064#include "gui/gui.hpp"
Ethan Yonker472f5062016-02-25 13:47:30 -060065#include "progresstracking.hpp"
bigbiff bigbiff56cf5642016-08-19 17:43:45 -040066#include "twrpDigestDriver.hpp"
bigbiffce8f83c2015-12-12 18:30:21 -050067#include "adbbu/libtwadbbu.hpp"
Dees_Troy38bd7602012-09-14 13:33:53 -040068
bigbiff bigbiffc7eee6f2014-09-02 18:59:01 -040069#ifdef TW_HAS_MTP
bigbiff bigbiffaf32bb92018-12-18 18:39:53 -050070#ifdef TW_HAS_LEGACY_MTP
71#include "mtp/legacy/mtp_MtpServer.hpp"
72#include "mtp/legacy/twrpMtp.hpp"
73#include "mtp/legacy/MtpMessage.hpp"
74#else
75#include "mtp/ffs/mtp_MtpServer.hpp"
76#include "mtp/ffs/twrpMtp.hpp"
77#include "mtp/ffs/MtpMessage.hpp"
78#endif
bigbiff bigbiffc7eee6f2014-09-02 18:59:01 -040079#endif
80
Dees Troy6f6441d2014-01-23 02:07:03 +000081extern "C" {
82 #include "cutils/properties.h"
Ethan Yonker74db1572015-10-28 12:44:49 -050083 #include "gui/gui.h"
Dees Troy6f6441d2014-01-23 02:07:03 +000084}
85
Dees_Troy5bf43922012-09-07 16:07:55 -040086#ifdef TW_INCLUDE_CRYPTO
bigbiffadc599e2020-05-28 19:36:30 +000087 #include "crypto/fde/cryptfs.h"
88 #include "gui/rapidxml.hpp"
89 #include "gui/pages.hpp"
90 #ifdef TW_INCLUDE_FBE
91 #include "crypto/ext4crypt/Decrypt.h"
92 #ifdef TW_INCLUDE_FBE_METADATA_DECRYPT
93 #include "crypto/ext4crypt/MetadataCrypt.h"
94 #endif
95 #endif
96 #ifdef TW_CRYPTO_USE_SYSTEM_VOLD
97 #include "crypto/vold_decrypt/vold_decrypt.h"
98 #endif
Dees_Troy5bf43922012-09-07 16:07:55 -040099#endif
Dees_Troy51a0e822012-09-05 15:24:24 -0400100
Ethan Yonker1b190162016-12-05 15:25:19 -0600101#ifdef AB_OTA_UPDATER
102#include <hardware/hardware.h>
103#include <hardware/boot_control.h>
104#endif
105
bigbiffee7b7ff2020-03-23 15:08:27 -0400106using android::fs_mgr::Fstab;
107using android::fs_mgr::FstabEntry;
Ethan Yonker6277c792014-09-15 14:54:30 -0500108
bigbiffee7b7ff2020-03-23 15:08:27 -0400109extern bool datamedia;
110
bigbiff bigbiff34684ff2013-12-01 21:03:45 -0500111TWPartitionManager::TWPartitionManager(void) {
bigbiff bigbiffc7eee6f2014-09-02 18:59:01 -0400112 mtp_was_enabled = false;
Ethan Yonker726a0202014-12-16 20:01:38 -0600113 mtp_write_fd = -1;
Ethan Yonker6e8c27a2016-12-22 17:55:57 -0600114 uevent_pfd.fd = -1;
bigbiff7abc5fe2015-01-17 16:53:12 -0500115 stop_backup.set_value(0);
Ethan Yonker1b190162016-12-05 15:25:19 -0600116#ifdef AB_OTA_UPDATER
117 char slot_suffix[PROPERTY_VALUE_MAX];
Ethan Yonkerfefe5912017-09-30 22:22:13 -0500118 property_get("ro.boot.slot_suffix", slot_suffix, "error");
119 if (strcmp(slot_suffix, "error") == 0)
120 property_get("ro.boot.slot", slot_suffix, "error");
Ethan Yonker1b190162016-12-05 15:25:19 -0600121 Active_Slot_Display = "";
Ethan Yonkerfefe5912017-09-30 22:22:13 -0500122 if (strcmp(slot_suffix, "_a") == 0 || strcmp(slot_suffix, "a") == 0)
Ethan Yonker1b190162016-12-05 15:25:19 -0600123 Set_Active_Slot("A");
124 else
125 Set_Active_Slot("B");
126#endif
bigbiff bigbiff34684ff2013-12-01 21:03:45 -0500127}
128
Chaosmasterf6e42ce2020-01-27 00:17:04 +0100129int TWPartitionManager::Process_Fstab(string Fstab_Filename, bool Display_Error, bool Sar_Detect) {
Dees_Troy5bf43922012-09-07 16:07:55 -0400130 FILE *fstabFile;
131 char fstab_line[MAX_FSTAB_LINE_LENGTH];
Dees Troy02a64532014-03-19 15:23:32 +0000132 TWPartition* settings_partition = NULL;
Matt Mowerbf4efa32014-04-14 23:25:26 -0500133 TWPartition* andsec_partition = NULL;
Ethan Yonker726a0202014-12-16 20:01:38 -0600134 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 -0600135 std::map<string, Flags_Map> twrp_flags;
136
137 fstabFile = fopen("/etc/twrp.flags", "rt");
138 if (fstabFile != NULL) {
139 LOGINFO("reading /etc/twrp.flags\n");
140 while (fgets(fstab_line, sizeof(fstab_line), fstabFile) != NULL) {
141 if (fstab_line[0] != '/')
142 continue;
143
144 size_t line_size = strlen(fstab_line);
145 if (fstab_line[line_size - 1] != '\n')
146 fstab_line[line_size] = '\n';
147 Flags_Map line_flags;
148 line_flags.Primary_Block_Device = "";
149 line_flags.Alternate_Block_Device = "";
150 line_flags.fstab_line = (char*)malloc(MAX_FSTAB_LINE_LENGTH);
151 if (!line_flags.fstab_line) {
152 LOGERR("malloc error on line_flags.fstab_line\n");
153 return false;
154 }
155 memcpy(line_flags.fstab_line, fstab_line, MAX_FSTAB_LINE_LENGTH);
156 bool found_separator = false;
157 char *fs_loc = NULL;
158 char *block_loc = NULL;
159 char *flags_loc = NULL;
160 size_t index, item_index = 0;
161 for (index = 0; index < line_size; index++) {
162 if (fstab_line[index] <= 32) {
163 fstab_line[index] = '\0';
164 found_separator = true;
165 } else if (found_separator) {
166 if (item_index == 0) {
167 fs_loc = fstab_line + index;
168 } else if (item_index == 1) {
169 block_loc = fstab_line + index;
170 } else if (item_index > 1) {
171 char *ptr = fstab_line + index;
172 if (*ptr == '/') {
173 line_flags.Alternate_Block_Device = ptr;
174 } else if (strlen(ptr) > strlen("flags=") && strncmp(ptr, "flags=", strlen("flags=")) == 0) {
175 flags_loc = ptr;
176 // Once we find the flags=, we're done scanning the line
177 break;
178 }
179 }
180 found_separator = false;
181 item_index++;
182 }
183 }
184 if (block_loc)
185 line_flags.Primary_Block_Device = block_loc;
186 if (fs_loc)
187 line_flags.File_System = fs_loc;
188 if (flags_loc)
189 line_flags.Flags = flags_loc;
190 string Mount_Point = fstab_line;
191 twrp_flags[Mount_Point] = line_flags;
192 memset(fstab_line, 0, sizeof(fstab_line));
193 }
194 fclose(fstabFile);
195 }
Dees_Troy5bf43922012-09-07 16:07:55 -0400196
197 fstabFile = fopen(Fstab_Filename.c_str(), "rt");
198 if (fstabFile == NULL) {
Dees_Troy2673cec2013-04-02 20:22:16 +0000199 LOGERR("Critical Error: Unable to open fstab at '%s'.\n", Fstab_Filename.c_str());
Dees_Troy5bf43922012-09-07 16:07:55 -0400200 return false;
Ethan Yonker6e8c27a2016-12-22 17:55:57 -0600201 } else
202 LOGINFO("Reading %s\n", Fstab_Filename.c_str());
Dees_Troy5bf43922012-09-07 16:07:55 -0400203
204 while (fgets(fstab_line, sizeof(fstab_line), fstabFile) != NULL) {
bigbiffee7b7ff2020-03-23 15:08:27 -0400205 bool isSuper = Is_Super_Partition(fstab_line);
206
207 if (!isSuper && fstab_line[0] != '/')
Dees_Troy5bf43922012-09-07 16:07:55 -0400208 continue;
209
Ethan Yonker6e8c27a2016-12-22 17:55:57 -0600210 if (strstr(fstab_line, "swap"))
211 continue; // Skip swap in recovery
212
213 size_t line_size = strlen(fstab_line);
214 if (fstab_line[line_size - 1] != '\n')
215 fstab_line[line_size] = '\n';
Dees_Troy2a923582012-09-20 12:13:34 -0400216
Matt Mower2b2dd152016-04-26 11:24:08 -0500217 TWPartition* partition = new TWPartition();
Chaosmasterf6e42ce2020-01-27 00:17:04 +0100218 if (partition->Process_Fstab_Line(fstab_line, Display_Error, &twrp_flags, Sar_Detect))
Ethan Yonkerc05c5982014-03-13 09:19:56 -0500219 Partitions.push_back(partition);
Matt Mower72c87ce2016-04-26 14:34:56 -0500220 else
Dees_Troy5bf43922012-09-07 16:07:55 -0400221 delete partition;
Matt Mower2b2dd152016-04-26 11:24:08 -0500222
223 memset(fstab_line, 0, sizeof(fstab_line));
Dees_Troy5bf43922012-09-07 16:07:55 -0400224 }
225 fclose(fstabFile);
Matt Mower72c87ce2016-04-26 14:34:56 -0500226
Ethan Yonker6e8c27a2016-12-22 17:55:57 -0600227 if (twrp_flags.size() > 0) {
228 LOGINFO("Processing remaining twrp.flags\n");
229 // Add any items from twrp.flags that did not exist in the recovery.fstab
230 for (std::map<string, Flags_Map>::iterator mapit=twrp_flags.begin(); mapit!=twrp_flags.end(); mapit++) {
231 if (Find_Partition_By_Path(mapit->first) == NULL) {
232 TWPartition* partition = new TWPartition();
Chaosmasterf6e42ce2020-01-27 00:17:04 +0100233 if (partition->Process_Fstab_Line(mapit->second.fstab_line, Display_Error, NULL, Sar_Detect))
Ethan Yonker6e8c27a2016-12-22 17:55:57 -0600234 Partitions.push_back(partition);
235 else
236 delete partition;
237 }
238 if (mapit->second.fstab_line)
239 free(mapit->second.fstab_line);
240 mapit->second.fstab_line = NULL;
241 }
242 }
243 LOGINFO("Done processing fstab files\n");
244
Matt Mower72c87ce2016-04-26 14:34:56 -0500245 std::vector<TWPartition*>::iterator iter;
246 for (iter = Partitions.begin(); iter != Partitions.end(); iter++) {
Chaosmasterf6e42ce2020-01-27 00:17:04 +0100247 if (Sar_Detect) {
248 if ((*iter)->Mount_Point == "/s")
249 return true;
250 else
251 continue;
252 }
253
Matt Mower72c87ce2016-04-26 14:34:56 -0500254 (*iter)->Partition_Post_Processing(Display_Error);
255
256 if ((*iter)->Is_Storage) {
257 ++storageid;
258 (*iter)->MTP_Storage_ID = storageid;
259 }
260
261 if (!settings_partition && (*iter)->Is_Settings_Storage && (*iter)->Is_Present)
262 settings_partition = (*iter);
263 else
264 (*iter)->Is_Settings_Storage = false;
265
266 if (!andsec_partition && (*iter)->Has_Android_Secure && (*iter)->Is_Present)
267 andsec_partition = (*iter);
268 else
269 (*iter)->Has_Android_Secure = false;
270 }
271
Ethan Yonker6277c792014-09-15 14:54:30 -0500272 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) {
273 // Attempt to automatically identify /data/media emulated storage devices
274 TWPartition* Dat = Find_Partition_By_Path("/data");
275 if (Dat) {
276 LOGINFO("Using automatic handling for /data/media emulated storage device.\n");
277 datamedia = true;
that9e0593e2014-10-08 00:01:24 +0200278 Dat->Setup_Data_Media();
Ethan Yonker6277c792014-09-15 14:54:30 -0500279 settings_partition = Dat;
Ethan Yonker726a0202014-12-16 20:01:38 -0600280 // Since /data was not considered a storage partition earlier, we still need to assign an MTP ID
281 ++storageid;
282 Dat->MTP_Storage_ID = storageid;
Ethan Yonker6277c792014-09-15 14:54:30 -0500283 }
284 }
Dees Troy02a64532014-03-19 15:23:32 +0000285 if (!settings_partition) {
Dees_Troya13d74f2013-03-24 08:54:55 -0500286 for (iter = Partitions.begin(); iter != Partitions.end(); iter++) {
287 if ((*iter)->Is_Storage) {
Dees Troy02a64532014-03-19 15:23:32 +0000288 settings_partition = (*iter);
Dees_Troya13d74f2013-03-24 08:54:55 -0500289 break;
290 }
291 }
Dees Troy02a64532014-03-19 15:23:32 +0000292 if (!settings_partition)
Dees_Troy2673cec2013-04-02 20:22:16 +0000293 LOGERR("Unable to locate storage partition for storing settings file.\n");
Dees_Troya13d74f2013-03-24 08:54:55 -0500294 }
Dees_Troy5bf43922012-09-07 16:07:55 -0400295 if (!Write_Fstab()) {
296 if (Display_Error)
Dees_Troy2673cec2013-04-02 20:22:16 +0000297 LOGERR("Error creating fstab\n");
Dees_Troy5bf43922012-09-07 16:07:55 -0400298 else
Dees_Troy2673cec2013-04-02 20:22:16 +0000299 LOGINFO("Error creating fstab\n");
Dees_Troy5bf43922012-09-07 16:07:55 -0400300 }
Matt Mowered71fa32014-04-16 13:21:47 -0500301
Matt Mowerbf4efa32014-04-14 23:25:26 -0500302 if (andsec_partition) {
303 Setup_Android_Secure_Location(andsec_partition);
Matt Mowered71fa32014-04-16 13:21:47 -0500304 } else if (settings_partition) {
Matt Mowerbf4efa32014-04-14 23:25:26 -0500305 Setup_Android_Secure_Location(settings_partition);
306 }
Matt Mowered71fa32014-04-16 13:21:47 -0500307 if (settings_partition) {
308 Setup_Settings_Storage_Partition(settings_partition);
309 }
Ethan Yonker253368a2014-11-25 15:00:52 -0600310#ifdef TW_INCLUDE_CRYPTO
Ethan Yonkercceebb82014-11-18 10:17:59 -0600311 TWPartition* Decrypt_Data = Find_Partition_By_Path("/data");
312 if (Decrypt_Data && Decrypt_Data->Is_Encrypted && !Decrypt_Data->Is_Decrypted) {
Ethan Yonker93382822018-11-01 15:25:31 -0500313 if (!Decrypt_Data->Key_Directory.empty() && Mount_By_Path(Decrypt_Data->Key_Directory, false)) {
314#ifdef TW_INCLUDE_FBE_METADATA_DECRYPT
315 if (e4crypt_mount_metadata_encrypted(Decrypt_Data->Mount_Point, false, Decrypt_Data->Key_Directory, Decrypt_Data->Actual_Block_Device, &Decrypt_Data->Decrypted_Block_Device)) {
316 LOGINFO("Successfully decrypted metadata encrypted data partition with new block device: '%s'\n", Decrypt_Data->Decrypted_Block_Device.c_str());
317 property_set("ro.crypto.state", "encrypted");
318 Decrypt_Data->Is_Decrypted = true; // Needed to make the mount function work correctly
319 int retry_count = 10;
320 while (!Decrypt_Data->Mount(false) && --retry_count)
321 usleep(500);
322 if (Decrypt_Data->Mount(false)) {
bigbiff bigbiff0be03b32019-08-27 20:50:31 -0400323 if (!Decrypt_Data->Decrypt_FBE_DE()) {
mauronofriofc79aa62019-11-23 23:13:04 +0100324 char wrappedvalue[PROPERTY_VALUE_MAX];
325 property_get("fbe.data.wrappedkey", wrappedvalue, "");
326 std::string wrappedkeyvalue(wrappedvalue);
327 if (wrappedkeyvalue == "true") {
bigbiff bigbiff0be03b32019-08-27 20:50:31 -0400328 LOGERR("Unable to decrypt FBE device\n");
mauronofriofc79aa62019-11-23 23:13:04 +0100329 } else {
330 LOGINFO("Trying wrapped key.\n");
331 property_set("fbe.data.wrappedkey", "true");
332 if (!Decrypt_Data->Decrypt_FBE_DE()) {
333 LOGERR("Unable to decrypt FBE device\n");
334 }
bigbiff bigbiff0be03b32019-08-27 20:50:31 -0400335 }
336 }
337
Ethan Yonker93382822018-11-01 15:25:31 -0500338 } else {
339 LOGINFO("Failed to mount data after metadata decrypt\n");
340 }
341 } else {
342 LOGINFO("Unable to decrypt metadata encryption\n");
343 }
344#else
345 LOGERR("Metadata FBE decrypt support not present in this TWRP\n");
346#endif
347 }
Ethan Yonkerbd7492d2016-12-07 13:55:01 -0600348 if (Decrypt_Data->Is_FBE) {
349 if (DataManager::GetIntValue(TW_CRYPTO_PWTYPE) == 0) {
350 if (Decrypt_Device("!") == 0) {
351 gui_msg("decrypt_success=Successfully decrypted with default password.");
352 DataManager::SetValue(TW_IS_ENCRYPTED, 0);
353 } else {
354 gui_err("unable_to_decrypt=Unable to decrypt with default password.");
355 }
Ethan Yonkercceebb82014-11-18 10:17:59 -0600356 }
357 } else {
Ethan Yonkerbd7492d2016-12-07 13:55:01 -0600358 int password_type = cryptfs_get_password_type();
359 if (password_type == CRYPT_TYPE_DEFAULT) {
360 LOGINFO("Device is encrypted with the default password, attempting to decrypt.\n");
361 if (Decrypt_Device("default_password") == 0) {
362 gui_msg("decrypt_success=Successfully decrypted with default password.");
363 DataManager::SetValue(TW_IS_ENCRYPTED, 0);
364 } else {
365 gui_err("unable_to_decrypt=Unable to decrypt with default password.");
366 }
367 } else {
368 DataManager::SetValue("TW_CRYPTO_TYPE", password_type);
369 }
Ethan Yonkercceebb82014-11-18 10:17:59 -0600370 }
371 }
bigbiffadc599e2020-05-28 19:36:30 +0000372 if (Decrypt_Data && (!Decrypt_Data->Is_Encrypted || Decrypt_Data->Is_Decrypted) && Decrypt_Data->Mount(false)) {
Ethan Yonker66a19492015-12-10 10:19:45 -0600373 Decrypt_Adopted();
374 }
Ethan Yonkercceebb82014-11-18 10:17:59 -0600375#endif
Dees_Troy51127312012-09-08 13:08:49 -0400376 Update_System_Details();
Dees_Troyd0384ef2012-10-12 12:15:42 -0400377 UnMount_Main_Partitions();
Ethan Yonker1b190162016-12-05 15:25:19 -0600378#ifdef AB_OTA_UPDATER
379 DataManager::SetValue("tw_active_slot", Get_Active_Slot_Display());
380#endif
Ethan Yonker6e8c27a2016-12-22 17:55:57 -0600381 setup_uevent();
Dees_Troy5bf43922012-09-07 16:07:55 -0400382 return true;
383}
384
385int TWPartitionManager::Write_Fstab(void) {
386 FILE *fp;
387 std::vector<TWPartition*>::iterator iter;
388 string Line;
389
390 fp = fopen("/etc/fstab", "w");
391 if (fp == NULL) {
Dees_Troy2673cec2013-04-02 20:22:16 +0000392 LOGINFO("Can not open /etc/fstab.\n");
Dees_Troy5bf43922012-09-07 16:07:55 -0400393 return false;
394 }
Dees_Troy63c8df72012-09-10 14:02:05 -0400395 for (iter = Partitions.begin(); iter != Partitions.end(); iter++) {
Dees_Troy51127312012-09-08 13:08:49 -0400396 if ((*iter)->Can_Be_Mounted) {
dianlujitao7d304c72016-01-02 12:15:50 +0800397 Line = (*iter)->Actual_Block_Device + " " + (*iter)->Mount_Point + " " + (*iter)->Current_File_System + " rw 0 0\n";
Dees_Troy5bf43922012-09-07 16:07:55 -0400398 fputs(Line.c_str(), fp);
Dees_Troy91862e62013-04-04 23:48:21 +0000399 }
400 // Handle subpartition tracking
401 if ((*iter)->Is_SubPartition) {
402 TWPartition* ParentPartition = Find_Partition_By_Path((*iter)->SubPartition_Of);
403 if (ParentPartition)
404 ParentPartition->Has_SubPartition = true;
405 else
406 LOGERR("Unable to locate parent partition '%s' of '%s'\n", (*iter)->SubPartition_Of.c_str(), (*iter)->Mount_Point.c_str());
Dees_Troy5bf43922012-09-07 16:07:55 -0400407 }
408 }
409 fclose(fp);
410 return true;
Dees_Troy51a0e822012-09-05 15:24:24 -0400411}
412
Ethan Yonkerc05c5982014-03-13 09:19:56 -0500413void TWPartitionManager::Setup_Settings_Storage_Partition(TWPartition* Part) {
Ethan Yonkerc05c5982014-03-13 09:19:56 -0500414 DataManager::SetValue("tw_settings_path", Part->Storage_Path);
415 DataManager::SetValue("tw_storage_path", Part->Storage_Path);
416 LOGINFO("Settings storage is '%s'\n", Part->Storage_Path.c_str());
417}
418
Matt Mowerbf4efa32014-04-14 23:25:26 -0500419void TWPartitionManager::Setup_Android_Secure_Location(TWPartition* Part) {
420 if (Part->Has_Android_Secure)
421 Part->Setup_AndSec();
Ethan Yonker6277c792014-09-15 14:54:30 -0500422 else if (!datamedia)
Matt Mowerbf4efa32014-04-14 23:25:26 -0500423 Part->Setup_AndSec();
Matt Mowerbf4efa32014-04-14 23:25:26 -0500424}
425
Dees_Troy8170a922012-09-18 15:40:25 -0400426void TWPartitionManager::Output_Partition_Logging(void) {
427 std::vector<TWPartition*>::iterator iter;
428
429 printf("\n\nPartition Logs:\n");
430 for (iter = Partitions.begin(); iter != Partitions.end(); iter++)
431 Output_Partition((*iter));
432}
433
434void TWPartitionManager::Output_Partition(TWPartition* Part) {
435 unsigned long long mb = 1048576;
436
Gary Peck004d48b2012-11-21 16:28:18 -0800437 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 -0400438 if (Part->Can_Be_Mounted) {
Gary Peck004d48b2012-11-21 16:28:18 -0800439 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 -0400440 }
Gary Peck004d48b2012-11-21 16:28:18 -0800441 printf("\n Flags: ");
Dees_Troya13d74f2013-03-24 08:54:55 -0500442 if (Part->Can_Be_Mounted)
443 printf("Can_Be_Mounted ");
Gary Peck004d48b2012-11-21 16:28:18 -0800444 if (Part->Can_Be_Wiped)
445 printf("Can_Be_Wiped ");
Hashcodedabfd492013-08-29 22:45:30 -0700446 if (Part->Use_Rm_Rf)
447 printf("Use_Rm_Rf ");
Dees_Troya13d74f2013-03-24 08:54:55 -0500448 if (Part->Can_Be_Backed_Up)
449 printf("Can_Be_Backed_Up ");
Gary Peck004d48b2012-11-21 16:28:18 -0800450 if (Part->Wipe_During_Factory_Reset)
451 printf("Wipe_During_Factory_Reset ");
452 if (Part->Wipe_Available_in_GUI)
453 printf("Wipe_Available_in_GUI ");
454 if (Part->Is_SubPartition)
455 printf("Is_SubPartition ");
456 if (Part->Has_SubPartition)
457 printf("Has_SubPartition ");
458 if (Part->Removable)
459 printf("Removable ");
460 if (Part->Is_Present)
461 printf("IsPresent ");
462 if (Part->Can_Be_Encrypted)
463 printf("Can_Be_Encrypted ");
464 if (Part->Is_Encrypted)
465 printf("Is_Encrypted ");
466 if (Part->Is_Decrypted)
467 printf("Is_Decrypted ");
468 if (Part->Has_Data_Media)
469 printf("Has_Data_Media ");
Dees_Troy83bd4832013-05-04 12:39:56 +0000470 if (Part->Can_Encrypt_Backup)
471 printf("Can_Encrypt_Backup ");
472 if (Part->Use_Userdata_Encryption)
473 printf("Use_Userdata_Encryption ");
Gary Peck004d48b2012-11-21 16:28:18 -0800474 if (Part->Has_Android_Secure)
475 printf("Has_Android_Secure ");
476 if (Part->Is_Storage)
477 printf("Is_Storage ");
Dees_Troya13d74f2013-03-24 08:54:55 -0500478 if (Part->Is_Settings_Storage)
479 printf("Is_Settings_Storage ");
Dees_Troy68cab492012-12-12 19:29:35 +0000480 if (Part->Ignore_Blkid)
481 printf("Ignore_Blkid ");
Dees_Troy16c2b312013-01-15 16:51:18 +0000482 if (Part->Retain_Layout_Version)
483 printf("Retain_Layout_Version ");
Ethan Yonker253368a2014-11-25 15:00:52 -0600484 if (Part->Mount_To_Decrypt)
485 printf("Mount_To_Decrypt ");
Ethan Yonker96af84a2015-01-05 14:58:36 -0600486 if (Part->Can_Flash_Img)
487 printf("Can_Flash_Img ");
Ethan Yonker66a19492015-12-10 10:19:45 -0600488 if (Part->Is_Adopted_Storage)
489 printf("Is_Adopted_Storage ");
Ethan Yonker1b190162016-12-05 15:25:19 -0600490 if (Part->SlotSelect)
491 printf("SlotSelect ");
Ethan Yonker6e8c27a2016-12-22 17:55:57 -0600492 if (Part->Mount_Read_Only)
493 printf("Mount_Read_Only ");
Gary Peck004d48b2012-11-21 16:28:18 -0800494 printf("\n");
495 if (!Part->SubPartition_Of.empty())
496 printf(" SubPartition_Of: %s\n", Part->SubPartition_Of.c_str());
497 if (!Part->Symlink_Path.empty())
498 printf(" Symlink_Path: %s\n", Part->Symlink_Path.c_str());
499 if (!Part->Symlink_Mount_Point.empty())
500 printf(" Symlink_Mount_Point: %s\n", Part->Symlink_Mount_Point.c_str());
501 if (!Part->Primary_Block_Device.empty())
502 printf(" Primary_Block_Device: %s\n", Part->Primary_Block_Device.c_str());
503 if (!Part->Alternate_Block_Device.empty())
504 printf(" Alternate_Block_Device: %s\n", Part->Alternate_Block_Device.c_str());
505 if (!Part->Decrypted_Block_Device.empty())
506 printf(" Decrypted_Block_Device: %s\n", Part->Decrypted_Block_Device.c_str());
dianlujitao4879b372018-12-03 18:45:47 +0800507 if (!Part->Crypto_Key_Location.empty())
Ethan Yonker253368a2014-11-25 15:00:52 -0600508 printf(" Crypto_Key_Location: %s\n", Part->Crypto_Key_Location.c_str());
Gary Peck004d48b2012-11-21 16:28:18 -0800509 if (Part->Length != 0)
510 printf(" Length: %i\n", Part->Length);
511 if (!Part->Display_Name.empty())
512 printf(" Display_Name: %s\n", Part->Display_Name.c_str());
Dees_Troya13d74f2013-03-24 08:54:55 -0500513 if (!Part->Storage_Name.empty())
514 printf(" Storage_Name: %s\n", Part->Storage_Name.c_str());
Gary Peck004d48b2012-11-21 16:28:18 -0800515 if (!Part->Backup_Path.empty())
516 printf(" Backup_Path: %s\n", Part->Backup_Path.c_str());
517 if (!Part->Backup_Name.empty())
518 printf(" Backup_Name: %s\n", Part->Backup_Name.c_str());
Dees_Troya13d74f2013-03-24 08:54:55 -0500519 if (!Part->Backup_Display_Name.empty())
520 printf(" Backup_Display_Name: %s\n", Part->Backup_Display_Name.c_str());
Gary Peck004d48b2012-11-21 16:28:18 -0800521 if (!Part->Backup_FileName.empty())
522 printf(" Backup_FileName: %s\n", Part->Backup_FileName.c_str());
523 if (!Part->Storage_Path.empty())
524 printf(" Storage_Path: %s\n", Part->Storage_Path.c_str());
525 if (!Part->Current_File_System.empty())
526 printf(" Current_File_System: %s\n", Part->Current_File_System.c_str());
527 if (!Part->Fstab_File_System.empty())
528 printf(" Fstab_File_System: %s\n", Part->Fstab_File_System.c_str());
529 if (Part->Format_Block_Size != 0)
Ethan Yonkerc798c9c2015-10-09 11:15:26 -0500530 printf(" Format_Block_Size: %lu\n", Part->Format_Block_Size);
Dees_Troy094207a2012-09-26 12:00:39 -0400531 if (!Part->MTD_Name.empty())
532 printf(" MTD_Name: %s\n", Part->MTD_Name.c_str());
Matt Mower029a82d2017-01-08 13:12:38 -0600533 printf(" Backup_Method: %s\n", Part->Backup_Method_By_Name().c_str());
Hashcode62bd9e02013-11-19 21:59:42 -0800534 if (Part->Mount_Flags || !Part->Mount_Options.empty())
Ethan Yonker6e8c27a2016-12-22 17:55:57 -0600535 printf(" Mount_Flags: %i, Mount_Options: %s\n", Part->Mount_Flags, Part->Mount_Options.c_str());
Ethan Yonker726a0202014-12-16 20:01:38 -0600536 if (Part->MTP_Storage_ID)
537 printf(" MTP_Storage_ID: %i\n", Part->MTP_Storage_ID);
Ethan Yonker93382822018-11-01 15:25:31 -0500538 if (!Part->Key_Directory.empty())
539 printf(" Metadata Key Directory: %s\n", Part->Key_Directory.c_str());
Ethan Yonker6277c792014-09-15 14:54:30 -0500540 printf("\n");
Dees_Troy8170a922012-09-18 15:40:25 -0400541}
542
Dees_Troy51a0e822012-09-05 15:24:24 -0400543int TWPartitionManager::Mount_By_Path(string Path, bool Display_Error) {
Dees_Troy5bf43922012-09-07 16:07:55 -0400544 std::vector<TWPartition*>::iterator iter;
545 int ret = false;
546 bool found = false;
Dees_Troy38bd7602012-09-14 13:33:53 -0400547 string Local_Path = TWFunc::Get_Root_Path(Path);
Dees_Troy5bf43922012-09-07 16:07:55 -0400548
bigbiffd58ba182020-03-23 10:02:29 -0400549 if (Local_Path == "/tmp" || Local_Path == "/")
Dees_Troy43d8b002012-09-17 16:00:01 -0400550 return true;
551
Dees_Troy5bf43922012-09-07 16:07:55 -0400552 // Iterate through all partitions
553 for (iter = Partitions.begin(); iter != Partitions.end(); iter++) {
Dees_Troy657c3092012-09-10 20:32:10 -0400554 if ((*iter)->Mount_Point == Local_Path || (!(*iter)->Symlink_Mount_Point.empty() && (*iter)->Symlink_Mount_Point == Local_Path)) {
Dees_Troy5bf43922012-09-07 16:07:55 -0400555 ret = (*iter)->Mount(Display_Error);
556 found = true;
Dees_Troy51127312012-09-08 13:08:49 -0400557 } else if ((*iter)->Is_SubPartition && (*iter)->SubPartition_Of == Local_Path) {
Dees_Troy5bf43922012-09-07 16:07:55 -0400558 (*iter)->Mount(Display_Error);
Dees_Troy51127312012-09-08 13:08:49 -0400559 }
Dees_Troy5bf43922012-09-07 16:07:55 -0400560 }
561 if (found) {
562 return ret;
563 } else if (Display_Error) {
Ethan Yonker74db1572015-10-28 12:44:49 -0500564 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 -0400565 } else {
Dees_Troy2673cec2013-04-02 20:22:16 +0000566 LOGINFO("Mount: Unable to find partition for path '%s'\n", Local_Path.c_str());
Dees_Troy5bf43922012-09-07 16:07:55 -0400567 }
568 return false;
Dees_Troy51a0e822012-09-05 15:24:24 -0400569}
570
Dees_Troy51a0e822012-09-05 15:24:24 -0400571int TWPartitionManager::UnMount_By_Path(string Path, bool Display_Error) {
Dees_Troy51127312012-09-08 13:08:49 -0400572 std::vector<TWPartition*>::iterator iter;
573 int ret = false;
574 bool found = false;
Dees_Troy38bd7602012-09-14 13:33:53 -0400575 string Local_Path = TWFunc::Get_Root_Path(Path);
Dees_Troy51127312012-09-08 13:08:49 -0400576
577 // Iterate through all partitions
578 for (iter = Partitions.begin(); iter != Partitions.end(); iter++) {
Dees_Troy657c3092012-09-10 20:32:10 -0400579 if ((*iter)->Mount_Point == Local_Path || (!(*iter)->Symlink_Mount_Point.empty() && (*iter)->Symlink_Mount_Point == Local_Path)) {
Dees_Troy51127312012-09-08 13:08:49 -0400580 ret = (*iter)->UnMount(Display_Error);
581 found = true;
582 } else if ((*iter)->Is_SubPartition && (*iter)->SubPartition_Of == Local_Path) {
583 (*iter)->UnMount(Display_Error);
584 }
585 }
586 if (found) {
587 return ret;
588 } else if (Display_Error) {
Ethan Yonker74db1572015-10-28 12:44:49 -0500589 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 -0400590 } else {
Dees_Troy2673cec2013-04-02 20:22:16 +0000591 LOGINFO("UnMount: Unable to find partition for path '%s'\n", Local_Path.c_str());
Dees_Troy51127312012-09-08 13:08:49 -0400592 }
593 return false;
Dees_Troy51a0e822012-09-05 15:24:24 -0400594}
595
Dees_Troy51a0e822012-09-05 15:24:24 -0400596int TWPartitionManager::Is_Mounted_By_Path(string Path) {
Dees_Troy51127312012-09-08 13:08:49 -0400597 TWPartition* Part = Find_Partition_By_Path(Path);
598
599 if (Part)
600 return Part->Is_Mounted();
601 else
Dees_Troy2673cec2013-04-02 20:22:16 +0000602 LOGINFO("Is_Mounted: Unable to find partition for path '%s'\n", Path.c_str());
Dees_Troy51127312012-09-08 13:08:49 -0400603 return false;
Dees_Troy51a0e822012-09-05 15:24:24 -0400604}
605
Dees_Troy5bf43922012-09-07 16:07:55 -0400606int TWPartitionManager::Mount_Current_Storage(bool Display_Error) {
Dees_Troy51127312012-09-08 13:08:49 -0400607 string current_storage_path = DataManager::GetCurrentStoragePath();
608
609 if (Mount_By_Path(current_storage_path, Display_Error)) {
610 TWPartition* FreeStorage = Find_Partition_By_Path(current_storage_path);
611 if (FreeStorage)
612 DataManager::SetValue(TW_STORAGE_FREE_SIZE, (int)(FreeStorage->Free / 1048576LLU));
613 return true;
614 }
615 return false;
Dees_Troy51a0e822012-09-05 15:24:24 -0400616}
617
Dees_Troy5bf43922012-09-07 16:07:55 -0400618int TWPartitionManager::Mount_Settings_Storage(bool Display_Error) {
619 return Mount_By_Path(DataManager::GetSettingsStoragePath(), Display_Error);
620}
621
Ethan Yonker6e8c27a2016-12-22 17:55:57 -0600622TWPartition* TWPartitionManager::Find_Partition_By_Path(const string& Path) {
Dees_Troy5bf43922012-09-07 16:07:55 -0400623 std::vector<TWPartition*>::iterator iter;
Dees_Troy38bd7602012-09-14 13:33:53 -0400624 string Local_Path = TWFunc::Get_Root_Path(Path);
Dees_Troy5bf43922012-09-07 16:07:55 -0400625
dianlujitaob76a73a2020-04-30 20:33:20 +0800626 if (Local_Path == "/system")
627 Local_Path = Get_Android_Root_Path();
Dees_Troy5bf43922012-09-07 16:07:55 -0400628 for (iter = Partitions.begin(); iter != Partitions.end(); iter++) {
Dees_Troy657c3092012-09-10 20:32:10 -0400629 if ((*iter)->Mount_Point == Local_Path || (!(*iter)->Symlink_Mount_Point.empty() && (*iter)->Symlink_Mount_Point == Local_Path))
Dees_Troy5bf43922012-09-07 16:07:55 -0400630 return (*iter);
631 }
Dees_Troy51a0e822012-09-05 15:24:24 -0400632 return NULL;
633}
634
Ethan Yonker6e8c27a2016-12-22 17:55:57 -0600635TWPartition* TWPartitionManager::Find_Partition_By_Block_Device(const string& Block_Device) {
636 std::vector<TWPartition*>::iterator iter;
637
638 for (iter = Partitions.begin(); iter != Partitions.end(); iter++) {
639 if ((*iter)->Primary_Block_Device == Block_Device || (!(*iter)->Actual_Block_Device.empty() && (*iter)->Actual_Block_Device == Block_Device))
640 return (*iter);
641 }
642 return NULL;
643}
644
Ethan Yonker53796e72019-01-11 22:49:52 -0600645int TWPartitionManager::Check_Backup_Name(const std::string& Backup_Name, bool Display_Error, bool Must_Be_Unique) {
Dees_Troyc9ff7a32012-09-27 10:09:41 -0400646 // Check the backup name to ensure that it is the correct size and contains only valid characters
647 // and that a backup with that name doesn't already exist
648 char backup_name[MAX_BACKUP_NAME_LEN];
649 char backup_loc[255], tw_image_dir[255];
650 int copy_size;
651 int index, cur_char;
Ethan Yonker53796e72019-01-11 22:49:52 -0600652 string Backup_Loc;
Dees_Troyc9ff7a32012-09-27 10:09:41 -0400653
Dees_Troyc9ff7a32012-09-27 10:09:41 -0400654 copy_size = Backup_Name.size();
655 // Check size
656 if (copy_size > MAX_BACKUP_NAME_LEN) {
657 if (Display_Error)
Ethan Yonker74db1572015-10-28 12:44:49 -0500658 gui_err("backup_name_len=Backup name is too long.");
Dees_Troyc9ff7a32012-09-27 10:09:41 -0400659 return -2;
660 }
661
662 // Check each character
663 strncpy(backup_name, Backup_Name.c_str(), copy_size);
Dees_Troya13d74f2013-03-24 08:54:55 -0500664 if (copy_size == 1 && strncmp(backup_name, "0", 1) == 0)
Dees_Troyc9ff7a32012-09-27 10:09:41 -0400665 return 0; // A "0" (zero) means to use the current timestamp for the backup name
666 for (index=0; index<copy_size; index++) {
667 cur_char = (int)backup_name[index];
Matt Mowerfb1c4ff2014-04-16 13:43:36 -0500668 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 -0400669 // These are valid characters
670 // Numbers
671 // Upper case letters
672 // Lower case letters
673 // Space
674 // and -_.{}[]
675 } else {
676 if (Display_Error)
Ethan Yonker4adc33e2016-01-22 16:07:11 -0600677 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 -0400678 return -3;
679 }
680 }
681
Ethan Yonker53796e72019-01-11 22:49:52 -0600682 if (Must_Be_Unique) {
683 // Check to make sure that a backup with this name doesn't already exist
684 DataManager::GetValue(TW_BACKUPS_FOLDER_VAR, Backup_Loc);
685 strcpy(backup_loc, Backup_Loc.c_str());
686 sprintf(tw_image_dir,"%s/%s", backup_loc, Backup_Name.c_str());
687 if (TWFunc::Path_Exists(tw_image_dir)) {
688 if (Display_Error)
689 gui_err("backup_name_exists=A backup with that name already exists!");
bigbiffce8f83c2015-12-12 18:30:21 -0500690
Ethan Yonker53796e72019-01-11 22:49:52 -0600691 return -4;
692 }
693 // Backup is unique
Dees_Troyc9ff7a32012-09-27 10:09:41 -0400694 }
Ethan Yonker53796e72019-01-11 22:49:52 -0600695 // No problems found
Dees_Troyc9ff7a32012-09-27 10:09:41 -0400696 return 0;
697}
698
bigbiffce8f83c2015-12-12 18:30:21 -0500699bool TWPartitionManager::Backup_Partition(PartitionSettings *part_settings) {
Dees_Troy43d8b002012-09-17 16:00:01 -0400700 time_t start, stop;
Matt Mower23d8aae2017-01-06 14:30:33 -0600701 int use_compression;
bigbiffce8f83c2015-12-12 18:30:21 -0500702 string backup_log = part_settings->Backup_Folder + "/recovery.log";
Dees_Troy43d8b002012-09-17 16:00:01 -0400703
bigbiffce8f83c2015-12-12 18:30:21 -0500704 if (part_settings->Part == NULL)
Dees_Troy43d8b002012-09-17 16:00:01 -0400705 return true;
706
Dees_Troy093b7642012-09-21 15:59:38 -0400707 DataManager::GetValue(TW_USE_COMPRESSION_VAR, use_compression);
Dees_Troy093b7642012-09-21 15:59:38 -0400708
Tom Hite5a926722014-09-15 01:31:03 +0000709 TWFunc::SetPerformanceMode(true);
Dees_Troy43d8b002012-09-17 16:00:01 -0400710 time(&start);
711
bigbiffce8f83c2015-12-12 18:30:21 -0500712 if (part_settings->Part->Backup(part_settings, &tar_fork_pid)) {
Ethan Yonkercd00a8b2017-07-06 10:23:30 -0500713 sync();
714 sync();
bigbiff bigbiff56cf5642016-08-19 17:43:45 -0400715 string Full_Filename = part_settings->Backup_Folder + "/" + part_settings->Part->Backup_FileName;
Ethan Yonkercd00a8b2017-07-06 10:23:30 -0500716 if (!part_settings->adbbackup && part_settings->generate_digest) {
717 if (!twrpDigestDriver::Make_Digest(Full_Filename))
718 goto backup_error;
bigbiff bigbiff56cf5642016-08-19 17:43:45 -0400719 }
bigbiff bigbiff8fd4b092016-08-30 20:48:53 -0400720
bigbiffce8f83c2015-12-12 18:30:21 -0500721 if (part_settings->Part->Has_SubPartition) {
Dees_Troy8170a922012-09-18 15:40:25 -0400722 std::vector<TWPartition*>::iterator subpart;
bigbiff bigbiff8fd4b092016-08-30 20:48:53 -0400723 TWPartition *parentPart = part_settings->Part;
Dees_Troy8170a922012-09-18 15:40:25 -0400724
725 for (subpart = Partitions.begin(); subpart != Partitions.end(); subpart++) {
bigbiff bigbiff8fd4b092016-08-30 20:48:53 -0400726 if ((*subpart)->Can_Be_Backed_Up && (*subpart)->Is_SubPartition && (*subpart)->SubPartition_Of == parentPart->Mount_Point) {
Ethan Yonkerdcf2b672016-09-13 14:41:53 -0500727 part_settings->Part = *subpart;
bigbiffce8f83c2015-12-12 18:30:21 -0500728 if (!(*subpart)->Backup(part_settings, &tar_fork_pid)) {
Ethan Yonkercd00a8b2017-07-06 10:23:30 -0500729 goto backup_error;
Tom Hite5a926722014-09-15 01:31:03 +0000730 }
Dees_Troy2727b992013-08-14 20:09:30 +0000731 sync();
732 sync();
bigbiff bigbifff5955b12019-05-18 17:28:58 -0400733 string Full_Filename = part_settings->Backup_Folder + "/" + part_settings->Part->Backup_FileName;
bigbiff bigbiff56cf5642016-08-19 17:43:45 -0400734 if (!part_settings->adbbackup && part_settings->generate_digest) {
735 if (!twrpDigestDriver::Make_Digest(Full_Filename)) {
Ethan Yonkercd00a8b2017-07-06 10:23:30 -0500736 goto backup_error;
bigbiffce8f83c2015-12-12 18:30:21 -0500737 }
Tom Hite5a926722014-09-15 01:31:03 +0000738 }
Dees_Troy8170a922012-09-18 15:40:25 -0400739 }
740 }
741 }
bigbiff bigbiff56cf5642016-08-19 17:43:45 -0400742
Dees_Troy43d8b002012-09-17 16:00:01 -0400743 time(&stop);
that203bcc92015-05-09 17:27:33 +0200744 int backup_time = (int) difftime(stop, start);
Dees_Troy2673cec2013-04-02 20:22:16 +0000745 LOGINFO("Partition Backup time: %d\n", backup_time);
bigbiff bigbiff8fd4b092016-08-30 20:48:53 -0400746
bigbiffce8f83c2015-12-12 18:30:21 -0500747 if (part_settings->Part->Backup_Method == BM_FILES) {
748 part_settings->file_time += backup_time;
Dees_Troy43d8b002012-09-17 16:00:01 -0400749 } else {
bigbiffce8f83c2015-12-12 18:30:21 -0500750 part_settings->img_time += backup_time;
751
Dees_Troy43d8b002012-09-17 16:00:01 -0400752 }
Tom Hite5a926722014-09-15 01:31:03 +0000753
Matt Mower02899552016-12-30 18:13:51 -0600754 TWFunc::SetPerformanceMode(false);
Ethan Yonkercd00a8b2017-07-06 10:23:30 -0500755 return true;
Dees_Troy43d8b002012-09-17 16:00:01 -0400756 }
Ethan Yonkercd00a8b2017-07-06 10:23:30 -0500757backup_error:
758 Clean_Backup_Folder(part_settings->Backup_Folder);
759 TWFunc::copy_file("/tmp/recovery.log", backup_log, 0644);
760 tw_set_default_metadata(backup_log.c_str());
761 TWFunc::SetPerformanceMode(false);
762 return false;
bigbiff7abc5fe2015-01-17 16:53:12 -0500763}
764
bigbiffbf1d6722015-02-14 16:25:59 -0500765void TWPartitionManager::Clean_Backup_Folder(string Backup_Folder) {
766 DIR *d = opendir(Backup_Folder.c_str());
767 struct dirent *p;
768 int r;
bigbiff bigbiff56cf5642016-08-19 17:43:45 -0400769 vector<string> ext;
770
771 //extensions we should delete when cleaning
772 ext.push_back("win");
773 ext.push_back("md5");
774 ext.push_back("sha2");
775 ext.push_back("info");
bigbiffbf1d6722015-02-14 16:25:59 -0500776
Ethan Yonker74db1572015-10-28 12:44:49 -0500777 gui_msg("backup_clean=Backup Failed. Cleaning Backup Folder.");
bigbiffbf1d6722015-02-14 16:25:59 -0500778
779 if (d == NULL) {
Ethan Yonker74db1572015-10-28 12:44:49 -0500780 gui_msg(Msg(msg::kError, "error_opening_strerr=Error opening: '{1}' ({2})")(Backup_Folder)(strerror(errno)));
bigbiffbf1d6722015-02-14 16:25:59 -0500781 return;
782 }
783
Matt Mower2b18a532015-02-20 16:58:05 -0600784 while ((p = readdir(d))) {
bigbiffbf1d6722015-02-14 16:25:59 -0500785 if (!strcmp(p->d_name, ".") || !strcmp(p->d_name, ".."))
786 continue;
787
Ethan Yonkere080c1f2016-09-19 13:50:25 -0500788 string path = Backup_Folder + "/" + p->d_name;
bigbiffbf1d6722015-02-14 16:25:59 -0500789
790 size_t dot = path.find_last_of(".") + 1;
bigbiff bigbiff56cf5642016-08-19 17:43:45 -0400791 for (vector<string>::const_iterator i = ext.begin(); i != ext.end(); ++i) {
792 if (path.substr(dot) == *i) {
793 r = unlink(path.c_str());
794 if (r != 0)
795 LOGINFO("Unable to unlink '%s: %s'\n", path.c_str(), strerror(errno));
bigbiffbf1d6722015-02-14 16:25:59 -0500796 }
797 }
798 }
799 closedir(d);
800}
801
Ethan Yonker472f5062016-02-25 13:47:30 -0600802int TWPartitionManager::Check_Backup_Cancel() {
803 return stop_backup.get_value();
804}
805
bigbiff7abc5fe2015-01-17 16:53:12 -0500806int TWPartitionManager::Cancel_Backup() {
807 string Backup_Folder, Backup_Name, Full_Backup_Path;
808
809 stop_backup.set_value(1);
810
811 if (tar_fork_pid != 0) {
812 DataManager::GetValue(TW_BACKUP_NAME, Backup_Name);
813 DataManager::GetValue(TW_BACKUPS_FOLDER_VAR, Backup_Folder);
Ethan Yonkere080c1f2016-09-19 13:50:25 -0500814 Full_Backup_Path = Backup_Folder + "/" + Backup_Name;
bigbiff7abc5fe2015-01-17 16:53:12 -0500815 LOGINFO("Killing pid: %d\n", tar_fork_pid);
816 kill(tar_fork_pid, SIGUSR2);
817 while (kill(tar_fork_pid, 0) == 0) {
818 usleep(1000);
819 }
820 LOGINFO("Backup_Run stopped and returning false, backup cancelled.\n");
821 LOGINFO("Removing directory %s\n", Full_Backup_Path.c_str());
822 TWFunc::removeDir(Full_Backup_Path, false);
823 tar_fork_pid = 0;
824 }
825
826 return 0;
Dees_Troy43d8b002012-09-17 16:00:01 -0400827}
828
bigbiffce8f83c2015-12-12 18:30:21 -0500829int TWPartitionManager::Run_Backup(bool adbbackup) {
830 PartitionSettings part_settings;
bigbiff bigbiff56cf5642016-08-19 17:43:45 -0400831 int partition_count = 0, disable_free_space_check = 0, skip_digest = 0;
bigbiffce8f83c2015-12-12 18:30:21 -0500832 string Backup_Name, Backup_List, backup_path;
Matt Mower23d8aae2017-01-06 14:30:33 -0600833 unsigned long long total_bytes = 0, free_space = 0;
Dees_Troy43d8b002012-09-17 16:00:01 -0400834 TWPartition* storage = NULL;
835 struct tm *t;
Matt Mower23d8aae2017-01-06 14:30:33 -0600836 time_t seconds, total_start, total_stop;
Dees_Troya13d74f2013-03-24 08:54:55 -0500837 size_t start_pos = 0, end_pos = 0;
bigbiff7abc5fe2015-01-17 16:53:12 -0500838 stop_backup.set_value(0);
Dees_Troy43d8b002012-09-17 16:00:01 -0400839 seconds = time(0);
Matt Mowerfb1c4ff2014-04-16 13:43:36 -0500840 t = localtime(&seconds);
Dees_Troy43d8b002012-09-17 16:00:01 -0400841
bigbiffce8f83c2015-12-12 18:30:21 -0500842 part_settings.img_bytes_remaining = 0;
843 part_settings.file_bytes_remaining = 0;
844 part_settings.img_time = 0;
845 part_settings.file_time = 0;
846 part_settings.img_bytes = 0;
847 part_settings.file_bytes = 0;
848 part_settings.PM_Method = PM_BACKUP;
849
bigbiffce8f83c2015-12-12 18:30:21 -0500850 part_settings.adbbackup = adbbackup;
Dees_Troy43d8b002012-09-17 16:00:01 -0400851 time(&total_start);
852
853 Update_System_Details();
854
855 if (!Mount_Current_Storage(true))
856 return false;
857
bigbiff bigbiff56cf5642016-08-19 17:43:45 -0400858 DataManager::GetValue(TW_SKIP_DIGEST_GENERATE_VAR, skip_digest);
859 if (skip_digest == 0)
860 part_settings.generate_digest = true;
Dees_Troyc5865ab2012-09-24 15:08:04 -0400861 else
bigbiff bigbiff56cf5642016-08-19 17:43:45 -0400862 part_settings.generate_digest = false;
Dees_Troy4a2a1262012-09-18 09:33:47 -0400863
bigbiffce8f83c2015-12-12 18:30:21 -0500864 DataManager::GetValue(TW_BACKUPS_FOLDER_VAR, part_settings.Backup_Folder);
Ethan Yonkerdcf2b672016-09-13 14:41:53 -0500865 DataManager::GetValue(TW_BACKUP_NAME, Backup_Name);
866 if (Backup_Name == gui_lookup("curr_date", "(Current Date)")) {
867 Backup_Name = TWFunc::Get_Current_Date();
868 } else if (Backup_Name == gui_lookup("auto_generate", "(Auto Generate)") || Backup_Name == "0" || Backup_Name.empty()) {
Dees Troyb21cc642013-09-10 17:36:41 +0000869 TWFunc::Auto_Generate_Backup_Name();
Ethan Yonkerdcf2b672016-09-13 14:41:53 -0500870 DataManager::GetValue(TW_BACKUP_NAME, Backup_Name);
Dees_Troy43d8b002012-09-17 16:00:01 -0400871 }
bigbiffce8f83c2015-12-12 18:30:21 -0500872
Ethan Yonkerdcf2b672016-09-13 14:41:53 -0500873 LOGINFO("Backup Name is: '%s'\n", Backup_Name.c_str());
Ethan Yonkere080c1f2016-09-19 13:50:25 -0500874 part_settings.Backup_Folder = part_settings.Backup_Folder + "/" + Backup_Name;
bigbiffce8f83c2015-12-12 18:30:21 -0500875
Ethan Yonkere080c1f2016-09-19 13:50:25 -0500876 LOGINFO("Backup_Folder is: '%s'\n", part_settings.Backup_Folder.c_str());
Dees_Troy43d8b002012-09-17 16:00:01 -0400877
Dees_Troy2673cec2013-04-02 20:22:16 +0000878 LOGINFO("Calculating backup details...\n");
Dees_Troya13d74f2013-03-24 08:54:55 -0500879 DataManager::GetValue("tw_backup_list", Backup_List);
880 if (!Backup_List.empty()) {
881 end_pos = Backup_List.find(";", start_pos);
882 while (end_pos != string::npos && start_pos < Backup_List.size()) {
883 backup_path = Backup_List.substr(start_pos, end_pos - start_pos);
bigbiffce8f83c2015-12-12 18:30:21 -0500884 part_settings.Part = Find_Partition_By_Path(backup_path);
885 if (part_settings.Part != NULL) {
Dees_Troya13d74f2013-03-24 08:54:55 -0500886 partition_count++;
bigbiffce8f83c2015-12-12 18:30:21 -0500887 if (part_settings.Part->Backup_Method == BM_FILES)
888 part_settings.file_bytes += part_settings.Part->Backup_Size;
Dees_Troya13d74f2013-03-24 08:54:55 -0500889 else
bigbiffce8f83c2015-12-12 18:30:21 -0500890 part_settings.img_bytes += part_settings.Part->Backup_Size;
891 if (part_settings.Part->Has_SubPartition) {
Dees_Troya13d74f2013-03-24 08:54:55 -0500892 std::vector<TWPartition*>::iterator subpart;
893
894 for (subpart = Partitions.begin(); subpart != Partitions.end(); subpart++) {
bigbiffce8f83c2015-12-12 18:30:21 -0500895 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 -0500896 partition_count++;
bigbiffce8f83c2015-12-12 18:30:21 -0500897 if ((*subpart)->Backup_Method == BM_FILES)
898 part_settings.file_bytes += (*subpart)->Backup_Size;
Dees_Troya13d74f2013-03-24 08:54:55 -0500899 else
bigbiffce8f83c2015-12-12 18:30:21 -0500900 part_settings.img_bytes += (*subpart)->Backup_Size;
Dees_Troya13d74f2013-03-24 08:54:55 -0500901 }
902 }
Dees_Troy8170a922012-09-18 15:40:25 -0400903 }
Dees_Troya13d74f2013-03-24 08:54:55 -0500904 } else {
Ethan Yonker74db1572015-10-28 12:44:49 -0500905 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 -0400906 }
Dees_Troya13d74f2013-03-24 08:54:55 -0500907 start_pos = end_pos + 1;
908 end_pos = Backup_List.find(";", start_pos);
Dees_Troy43d8b002012-09-17 16:00:01 -0400909 }
910 }
Dees_Troy43d8b002012-09-17 16:00:01 -0400911
912 if (partition_count == 0) {
Ethan Yonker74db1572015-10-28 12:44:49 -0500913 gui_msg("no_partition_selected=No partitions selected for backup.");
Dees_Troy43d8b002012-09-17 16:00:01 -0400914 return false;
915 }
bigbiffce8f83c2015-12-12 18:30:21 -0500916 if (adbbackup) {
917 if (twadbbu::Write_ADB_Stream_Header(partition_count) == false) {
918 return false;
919 }
920 }
921 total_bytes = part_settings.file_bytes + part_settings.img_bytes;
Ethan Yonker472f5062016-02-25 13:47:30 -0600922 ProgressTracking progress(total_bytes);
bigbiffce8f83c2015-12-12 18:30:21 -0500923 part_settings.progress = &progress;
924
Ethan Yonker74db1572015-10-28 12:44:49 -0500925 gui_msg(Msg("total_partitions_backup= * Total number of partitions to back up: {1}")(partition_count));
926 gui_msg(Msg("total_backup_size= * Total size of all data: {1}MB")(total_bytes / 1024 / 1024));
Dees_Troy43d8b002012-09-17 16:00:01 -0400927 storage = Find_Partition_By_Path(DataManager::GetCurrentStoragePath());
928 if (storage != NULL) {
929 free_space = storage->Free;
Ethan Yonker74db1572015-10-28 12:44:49 -0500930 gui_msg(Msg("available_space= * Available space: {1}MB")(free_space / 1024 / 1024));
Dees_Troy43d8b002012-09-17 16:00:01 -0400931 } else {
Ethan Yonker74db1572015-10-28 12:44:49 -0500932 gui_err("unable_locate_storage=Unable to locate storage device.");
Dees_Troy43d8b002012-09-17 16:00:01 -0400933 return false;
934 }
bigbiffbf1d6722015-02-14 16:25:59 -0500935
Matt Mowerbfccfb82016-04-25 23:22:31 -0500936 DataManager::GetValue(TW_DISABLE_FREE_SPACE_VAR, disable_free_space_check);
bigbiffce8f83c2015-12-12 18:30:21 -0500937
938 if (adbbackup)
939 disable_free_space_check = true;
940
bigbiffbf1d6722015-02-14 16:25:59 -0500941 if (!disable_free_space_check) {
942 if (free_space - (32 * 1024 * 1024) < total_bytes) {
943 // We require an extra 32MB just in case
Ethan Yonker74db1572015-10-28 12:44:49 -0500944 gui_err("no_space=Not enough free space on storage.");
bigbiffbf1d6722015-02-14 16:25:59 -0500945 return false;
946 }
Dees_Troy43d8b002012-09-17 16:00:01 -0400947 }
bigbiffce8f83c2015-12-12 18:30:21 -0500948 part_settings.img_bytes_remaining = part_settings.img_bytes;
949 part_settings.file_bytes_remaining = part_settings.file_bytes;
Dees_Troy43d8b002012-09-17 16:00:01 -0400950
Ethan Yonker74db1572015-10-28 12:44:49 -0500951 gui_msg("backup_started=[BACKUP STARTED]");
bigbiff bigbiffcdd97c72019-03-29 19:12:33 -0400952
953 int is_decrypted = 0;
954 int is_encrypted = 0;
955
956 DataManager::GetValue(TW_IS_DECRYPTED, is_decrypted);
957 DataManager::GetValue(TW_IS_ENCRYPTED, is_encrypted);
958 if (!adbbackup || (!is_encrypted || (is_encrypted && is_decrypted))) {
959 gui_msg(Msg("backup_folder= * Backup Folder: {1}")(part_settings.Backup_Folder));
960 if (!TWFunc::Recursive_Mkdir(part_settings.Backup_Folder)) {
961 gui_err("fail_backup_folder=Failed to make backup folder.");
962 return false;
963 }
Dees_Troyd4b22b02013-01-18 17:17:58 +0000964 }
965
Dees_Troy2673cec2013-04-02 20:22:16 +0000966 DataManager::SetProgress(0.0);
Dees_Troy093b7642012-09-21 15:59:38 -0400967
Dees_Troya13d74f2013-03-24 08:54:55 -0500968 start_pos = 0;
969 end_pos = Backup_List.find(";", start_pos);
970 while (end_pos != string::npos && start_pos < Backup_List.size()) {
bigbiff7abc5fe2015-01-17 16:53:12 -0500971 if (stop_backup.get_value() != 0)
972 return -1;
Dees_Troya13d74f2013-03-24 08:54:55 -0500973 backup_path = Backup_List.substr(start_pos, end_pos - start_pos);
bigbiffce8f83c2015-12-12 18:30:21 -0500974 part_settings.Part = Find_Partition_By_Path(backup_path);
975 if (part_settings.Part != NULL) {
976 if (!Backup_Partition(&part_settings))
Dees_Troya13d74f2013-03-24 08:54:55 -0500977 return false;
978 } 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_Troya13d74f2013-03-24 08:54:55 -0500980 }
981 start_pos = end_pos + 1;
982 end_pos = Backup_List.find(";", start_pos);
983 }
Dees_Troy43d8b002012-09-17 16:00:01 -0400984
985 // Average BPS
bigbiffce8f83c2015-12-12 18:30:21 -0500986 if (part_settings.img_time == 0)
987 part_settings.img_time = 1;
988 if (part_settings.file_time == 0)
989 part_settings.file_time = 1;
990 int img_bps = (int)part_settings.img_bytes / (int)part_settings.img_time;
991 unsigned long long file_bps = part_settings.file_bytes / (int)part_settings.file_time;
Dees_Troy43d8b002012-09-17 16:00:01 -0400992
bigbiffce8f83c2015-12-12 18:30:21 -0500993 if (part_settings.file_bytes != 0)
Ethan Yonker472f5062016-02-25 13:47:30 -0600994 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 -0500995 if (part_settings.img_bytes != 0)
Ethan Yonker472f5062016-02-25 13:47:30 -0600996 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 -0400997
998 time(&total_stop);
999 int total_time = (int) difftime(total_stop, total_start);
bigbiffce8f83c2015-12-12 18:30:21 -05001000
1001 uint64_t actual_backup_size;
Ethan Yonker3fdcda42016-11-30 12:29:37 -06001002 if (!adbbackup) {
1003 TWExclude twe;
1004 actual_backup_size = twe.Get_Folder_Size(part_settings.Backup_Folder);
1005 } else
bigbiffce8f83c2015-12-12 18:30:21 -05001006 actual_backup_size = part_settings.file_bytes + part_settings.img_bytes;
Matt Mowerfb1c4ff2014-04-16 13:43:36 -05001007 actual_backup_size /= (1024LLU * 1024LLU);
Dees_Troy43d8b002012-09-17 16:00:01 -04001008
bigbiffce8f83c2015-12-12 18:30:21 -05001009 int prev_img_bps = 0, use_compression = 0;
1010 unsigned long long prev_file_bps = 0;
Matt Mower173cdb92016-12-31 02:49:19 -06001011 DataManager::GetValue(TW_BACKUP_AVG_IMG_RATE, prev_img_bps);
Dees_Troy093b7642012-09-21 15:59:38 -04001012 img_bps += (prev_img_bps * 4);
Matt Mowerfb1c4ff2014-04-16 13:43:36 -05001013 img_bps /= 5;
Dees_Troy093b7642012-09-21 15:59:38 -04001014
Matt Mowerfb1c4ff2014-04-16 13:43:36 -05001015 DataManager::GetValue(TW_USE_COMPRESSION_VAR, use_compression);
Dees_Troy093b7642012-09-21 15:59:38 -04001016 if (use_compression)
1017 DataManager::GetValue(TW_BACKUP_AVG_FILE_COMP_RATE, prev_file_bps);
Matt Mowerfb1c4ff2014-04-16 13:43:36 -05001018 else
Dees_Troy093b7642012-09-21 15:59:38 -04001019 DataManager::GetValue(TW_BACKUP_AVG_FILE_RATE, prev_file_bps);
1020 file_bps += (prev_file_bps * 4);
Matt Mowerfb1c4ff2014-04-16 13:43:36 -05001021 file_bps /= 5;
Dees_Troy093b7642012-09-21 15:59:38 -04001022
Matt Mowerfb1c4ff2014-04-16 13:43:36 -05001023 DataManager::SetValue(TW_BACKUP_AVG_IMG_RATE, img_bps);
Dees_Troy093b7642012-09-21 15:59:38 -04001024 if (use_compression)
1025 DataManager::SetValue(TW_BACKUP_AVG_FILE_COMP_RATE, file_bps);
1026 else
1027 DataManager::SetValue(TW_BACKUP_AVG_FILE_RATE, file_bps);
1028
Ethan Yonker74db1572015-10-28 12:44:49 -05001029 gui_msg(Msg("total_backed_size=[{1} MB TOTAL BACKED UP]")(actual_backup_size));
Dees_Troy43d8b002012-09-17 16:00:01 -04001030 Update_System_Details();
Dees_Troyd0384ef2012-10-12 12:15:42 -04001031 UnMount_Main_Partitions();
Ethan Yonker56db1c42015-12-20 22:49:00 -06001032 gui_msg(Msg(msg::kHighlight, "backup_completed=[BACKUP COMPLETED IN {1} SECONDS]")(total_time)); // the end
Ethan Yonkere080c1f2016-09-19 13:50:25 -05001033 string backup_log = part_settings.Backup_Folder + "/recovery.log";
Dees_Troy3f5c4e82013-02-01 15:16:59 +00001034 TWFunc::copy_file("/tmp/recovery.log", backup_log, 0644);
Ethan Yonker4b94cfd2014-12-11 10:00:45 -06001035 tw_set_default_metadata(backup_log.c_str());
bigbiffce8f83c2015-12-12 18:30:21 -05001036
1037 if (part_settings.adbbackup) {
1038 if (twadbbu::Write_ADB_Stream_Trailer() == false) {
1039 return false;
1040 }
1041 }
1042 part_settings.adbbackup = false;
1043 DataManager::SetValue("tw_enable_adb_backup", 0);
1044
Dees_Troy3f5c4e82013-02-01 15:16:59 +00001045 return true;
Dees_Troy51a0e822012-09-05 15:24:24 -04001046}
1047
bigbiffce8f83c2015-12-12 18:30:21 -05001048bool TWPartitionManager::Restore_Partition(PartitionSettings *part_settings) {
Dees_Troy4a2a1262012-09-18 09:33:47 -04001049 time_t Start, Stop;
bigbiffce8f83c2015-12-12 18:30:21 -05001050
bigbiff bigbiffb5ecaad2017-03-20 18:53:53 -04001051 if (part_settings->adbbackup) {
bigbiff bigbiff19fb79c2016-09-05 21:04:51 -04001052 std::string partName = part_settings->Part->Backup_Name + "." + part_settings->Part->Current_File_System + ".win";
1053 LOGINFO("setting backup name: %s\n", partName.c_str());
bigbiff bigbiffb5ecaad2017-03-20 18:53:53 -04001054 part_settings->Part->Set_Backup_FileName(part_settings->Part->Backup_Name + "." + part_settings->Part->Current_File_System + ".win");
1055 }
1056
Tom Hite5a926722014-09-15 01:31:03 +00001057 TWFunc::SetPerformanceMode(true);
bigbiffce8f83c2015-12-12 18:30:21 -05001058
Dees_Troy4a2a1262012-09-18 09:33:47 -04001059 time(&Start);
Ethan Yonker472f5062016-02-25 13:47:30 -06001060
bigbiffce8f83c2015-12-12 18:30:21 -05001061 if (!part_settings->Part->Restore(part_settings)) {
Tom Hite5a926722014-09-15 01:31:03 +00001062 TWFunc::SetPerformanceMode(false);
Dees_Troy4a2a1262012-09-18 09:33:47 -04001063 return false;
Tom Hite5a926722014-09-15 01:31:03 +00001064 }
bigbiff bigbiff19fb79c2016-09-05 21:04:51 -04001065 if (part_settings->Part->Has_SubPartition && !part_settings->adbbackup) {
Dees_Troy8170a922012-09-18 15:40:25 -04001066 std::vector<TWPartition*>::iterator subpart;
bigbiff bigbiff8fd4b092016-08-30 20:48:53 -04001067 TWPartition *parentPart = part_settings->Part;
Dees_Troy8170a922012-09-18 15:40:25 -04001068
1069 for (subpart = Partitions.begin(); subpart != Partitions.end(); subpart++) {
bigbiff bigbiff8fd4b092016-08-30 20:48:53 -04001070 part_settings->Part = *subpart;
1071 if ((*subpart)->Is_SubPartition && (*subpart)->SubPartition_Of == parentPart->Mount_Point) {
1072 part_settings->Part = (*subpart);
bigbiff bigbiff19fb79c2016-09-05 21:04:51 -04001073 part_settings->Part->Set_Backup_FileName(part_settings->Part->Backup_Name + "." + part_settings->Part->Current_File_System + ".win");
bigbiffce8f83c2015-12-12 18:30:21 -05001074 if (!(*subpart)->Restore(part_settings)) {
Tom Hite5a926722014-09-15 01:31:03 +00001075 TWFunc::SetPerformanceMode(false);
Dees_Troy8170a922012-09-18 15:40:25 -04001076 return false;
Tom Hite5a926722014-09-15 01:31:03 +00001077 }
Dees_Troy8170a922012-09-18 15:40:25 -04001078 }
1079 }
1080 }
Dees_Troy4a2a1262012-09-18 09:33:47 -04001081 time(&Stop);
Tom Hite5a926722014-09-15 01:31:03 +00001082 TWFunc::SetPerformanceMode(false);
bigbiffce8f83c2015-12-12 18:30:21 -05001083 gui_msg(Msg("restore_part_done=[{1} done ({2} seconds)]")(part_settings->Part->Backup_Display_Name)((int)difftime(Stop, Start)));
1084
Dees_Troy4a2a1262012-09-18 09:33:47 -04001085 return true;
1086}
1087
Ethan Yonker472f5062016-02-25 13:47:30 -06001088int TWPartitionManager::Run_Restore(const string& Restore_Name) {
bigbiffce8f83c2015-12-12 18:30:21 -05001089 PartitionSettings part_settings;
bigbiff bigbiff56cf5642016-08-19 17:43:45 -04001090 int check_digest;
bigbiffce8f83c2015-12-12 18:30:21 -05001091
Dees_Troy4a2a1262012-09-18 09:33:47 -04001092 time_t rStart, rStop;
1093 time(&rStart);
Dees_Troya13d74f2013-03-24 08:54:55 -05001094 string Restore_List, restore_path;
1095 size_t start_pos = 0, end_pos;
bigbiffce8f83c2015-12-12 18:30:21 -05001096
Ethan Yonkerdcf2b672016-09-13 14:41:53 -05001097 part_settings.Backup_Folder = Restore_Name;
bigbiffce8f83c2015-12-12 18:30:21 -05001098 part_settings.Part = NULL;
1099 part_settings.partition_count = 0;
1100 part_settings.total_restore_size = 0;
1101 part_settings.adbbackup = false;
1102 part_settings.PM_Method = PM_RESTORE;
Dees_Troy43d8b002012-09-17 16:00:01 -04001103
Ethan Yonker74db1572015-10-28 12:44:49 -05001104 gui_msg("restore_started=[RESTORE STARTED]");
1105 gui_msg(Msg("restore_folder=Restore folder: '{1}'")(Restore_Name));
Dees_Troy43d8b002012-09-17 16:00:01 -04001106
Dees_Troy4a2a1262012-09-18 09:33:47 -04001107 if (!Mount_Current_Storage(true))
1108 return false;
1109
bigbiff bigbiff56cf5642016-08-19 17:43:45 -04001110 DataManager::GetValue(TW_SKIP_DIGEST_CHECK_VAR, check_digest);
1111 if (check_digest > 0) {
1112 // Check Digest files first before restoring to ensure that all of them match before starting a restore
1113 TWFunc::GUI_Operation_Text(TW_VERIFY_DIGEST_TEXT, gui_parse_text("{@verifying_digest}"));
1114 gui_msg("verifying_digest=Verifying Digest");
Dees_Troya13d74f2013-03-24 08:54:55 -05001115 } else {
bigbiff bigbiff56cf5642016-08-19 17:43:45 -04001116 gui_msg("skip_digest=Skipping Digest check based on user setting.");
Dees_Troya13d74f2013-03-24 08:54:55 -05001117 }
Ethan Yonker74db1572015-10-28 12:44:49 -05001118 gui_msg("calc_restore=Calculating restore details...");
Dees_Troya13d74f2013-03-24 08:54:55 -05001119 DataManager::GetValue("tw_restore_selected", Restore_List);
bigbiffce8f83c2015-12-12 18:30:21 -05001120
Dees_Troya13d74f2013-03-24 08:54:55 -05001121 if (!Restore_List.empty()) {
1122 end_pos = Restore_List.find(";", start_pos);
1123 while (end_pos != string::npos && start_pos < Restore_List.size()) {
1124 restore_path = Restore_List.substr(start_pos, end_pos - start_pos);
bigbiffce8f83c2015-12-12 18:30:21 -05001125 part_settings.Part = Find_Partition_By_Path(restore_path);
1126 if (part_settings.Part != NULL) {
bigbiffce8f83c2015-12-12 18:30:21 -05001127 if (part_settings.Part->Mount_Read_Only) {
1128 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 -05001129 return false;
1130 }
bigbiffce8f83c2015-12-12 18:30:21 -05001131
bigbiff bigbiff56cf5642016-08-19 17:43:45 -04001132 string Full_Filename = part_settings.Backup_Folder + "/" + part_settings.Part->Backup_FileName;
1133
1134 if (check_digest > 0 && !twrpDigestDriver::Check_Digest(Full_Filename))
Dees_Troya13d74f2013-03-24 08:54:55 -05001135 return false;
bigbiffce8f83c2015-12-12 18:30:21 -05001136 part_settings.partition_count++;
1137 part_settings.total_restore_size += part_settings.Part->Get_Restore_Size(&part_settings);
1138 if (part_settings.Part->Has_SubPartition) {
bigbiff bigbiff8fd4b092016-08-30 20:48:53 -04001139 TWPartition *parentPart = part_settings.Part;
Dees_Troya13d74f2013-03-24 08:54:55 -05001140 std::vector<TWPartition*>::iterator subpart;
1141
1142 for (subpart = Partitions.begin(); subpart != Partitions.end(); subpart++) {
bigbiff bigbiff8fd4b092016-08-30 20:48:53 -04001143 part_settings.Part = *subpart;
1144 if ((*subpart)->Is_SubPartition && (*subpart)->SubPartition_Of == parentPart->Mount_Point) {
bigbiff bigbiff56cf5642016-08-19 17:43:45 -04001145 if (check_digest > 0 && !twrpDigestDriver::Check_Digest(Full_Filename))
Dees_Troya13d74f2013-03-24 08:54:55 -05001146 return false;
bigbiffce8f83c2015-12-12 18:30:21 -05001147 part_settings.total_restore_size += (*subpart)->Get_Restore_Size(&part_settings);
Dees_Troya13d74f2013-03-24 08:54:55 -05001148 }
1149 }
1150 }
1151 } else {
Ethan Yonker74db1572015-10-28 12:44:49 -05001152 gui_msg(Msg(msg::kError, "restore_unable_locate=Unable to locate '{1}' partition for restoring.")(restore_path));
Dees_Troya13d74f2013-03-24 08:54:55 -05001153 }
1154 start_pos = end_pos + 1;
1155 end_pos = Restore_List.find(";", start_pos);
Dees_Troy4a2a1262012-09-18 09:33:47 -04001156 }
Dees_Troy4a2a1262012-09-18 09:33:47 -04001157 }
Dees_Troy4a2a1262012-09-18 09:33:47 -04001158
bigbiffce8f83c2015-12-12 18:30:21 -05001159 if (part_settings.partition_count == 0) {
Ethan Yonker74db1572015-10-28 12:44:49 -05001160 gui_err("no_part_restore=No partitions selected for restore.");
Dees_Troy4a2a1262012-09-18 09:33:47 -04001161 return false;
1162 }
1163
bigbiffce8f83c2015-12-12 18:30:21 -05001164 gui_msg(Msg("restore_part_count=Restoring {1} partitions...")(part_settings.partition_count));
1165 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 +00001166 DataManager::SetProgress(0.0);
bigbiffce8f83c2015-12-12 18:30:21 -05001167 ProgressTracking progress(part_settings.total_restore_size);
1168 part_settings.progress = &progress;
Ethan Yonker1b7a31b2014-07-03 15:09:22 -05001169
Dees_Troya13d74f2013-03-24 08:54:55 -05001170 start_pos = 0;
1171 if (!Restore_List.empty()) {
1172 end_pos = Restore_List.find(";", start_pos);
1173 while (end_pos != string::npos && start_pos < Restore_List.size()) {
1174 restore_path = Restore_List.substr(start_pos, end_pos - start_pos);
bigbiffce8f83c2015-12-12 18:30:21 -05001175
1176 part_settings.Part = Find_Partition_By_Path(restore_path);
1177 if (part_settings.Part != NULL) {
1178 part_settings.partition_count++;
bigbiffce8f83c2015-12-12 18:30:21 -05001179 if (!Restore_Partition(&part_settings))
Dees_Troya13d74f2013-03-24 08:54:55 -05001180 return false;
1181 } else {
Ethan Yonker74db1572015-10-28 12:44:49 -05001182 gui_msg(Msg(msg::kError, "restore_unable_locate=Unable to locate '{1}' partition for restoring.")(restore_path));
Dees_Troya13d74f2013-03-24 08:54:55 -05001183 }
1184 start_pos = end_pos + 1;
1185 end_pos = Restore_List.find(";", start_pos);
1186 }
1187 }
Ethan Yonker74db1572015-10-28 12:44:49 -05001188 TWFunc::GUI_Operation_Text(TW_UPDATE_SYSTEM_DETAILS_TEXT, gui_parse_text("{@updating_system_details}"));
Captain Throwback9d6feb52018-07-27 10:05:24 -04001189 UnMount_By_Path(Get_Android_Root_Path(), false);
Dees_Troy43d8b002012-09-17 16:00:01 -04001190 Update_System_Details();
Dees_Troyd0384ef2012-10-12 12:15:42 -04001191 UnMount_Main_Partitions();
Dees_Troy4a2a1262012-09-18 09:33:47 -04001192 time(&rStop);
Matt Mower3c366972015-12-25 19:28:31 -06001193 gui_msg(Msg(msg::kHighlight, "restore_completed=[RESTORE COMPLETED IN {1} SECONDS]")((int)difftime(rStop,rStart)));
Ethan Yonker1b7a31b2014-07-03 15:09:22 -05001194 DataManager::SetValue("tw_file_progress", "");
bigbiffce8f83c2015-12-12 18:30:21 -05001195
Dees_Troy63c8df72012-09-10 14:02:05 -04001196 return true;
Dees_Troy51a0e822012-09-05 15:24:24 -04001197}
1198
1199void TWPartitionManager::Set_Restore_Files(string Restore_Name) {
Dees_Troy63c8df72012-09-10 14:02:05 -04001200 // Start with the default values
Dees_Troya13d74f2013-03-24 08:54:55 -05001201 string Restore_List;
Dees_Troy83bd4832013-05-04 12:39:56 +00001202 bool get_date = true, check_encryption = true;
bigbiff bigbiff19fb79c2016-09-05 21:04:51 -04001203 bool adbbackup = false;
Dees_Troy83bd4832013-05-04 12:39:56 +00001204
1205 DataManager::SetValue("tw_restore_encrypted", 0);
bigbiff bigbiff19fb79c2016-09-05 21:04:51 -04001206 if (twadbbu::Check_ADB_Backup_File(Restore_Name)) {
1207 vector<string> adb_files;
1208 adb_files = twadbbu::Get_ADB_Backup_Files(Restore_Name);
1209 for (unsigned int i = 0; i < adb_files.size(); ++i) {
1210 string adb_restore_file = adb_files.at(i);
1211 std::size_t pos = adb_restore_file.find_first_of(".");
1212 std::string path = "/" + adb_restore_file.substr(0, pos);
1213 Restore_List = path + ";";
1214 TWPartition* Part = Find_Partition_By_Path(path);
1215 Part->Backup_FileName = TWFunc::Get_Filename(adb_restore_file);
1216 adbbackup = true;
1217 }
1218 DataManager::SetValue("tw_enable_adb_backup", 1);
Dees_Troy63c8df72012-09-10 14:02:05 -04001219 }
bigbiff bigbiff19fb79c2016-09-05 21:04:51 -04001220 else {
1221 DIR* d;
1222 d = opendir(Restore_Name.c_str());
1223 if (d == NULL)
Dees_Troy63c8df72012-09-10 14:02:05 -04001224 {
bigbiff bigbiff19fb79c2016-09-05 21:04:51 -04001225 gui_msg(Msg(msg::kError, "error_opening_strerr=Error opening: '{1}' ({2})")(Restore_Name)(strerror(errno)));
1226 return;
Dees_Troy63c8df72012-09-10 14:02:05 -04001227 }
bigbiff bigbiff19fb79c2016-09-05 21:04:51 -04001228
1229 struct dirent* de;
1230 while ((de = readdir(d)) != NULL)
Dees_Troy63c8df72012-09-10 14:02:05 -04001231 {
bigbiff bigbiff19fb79c2016-09-05 21:04:51 -04001232 // Strip off three components
1233 char str[256];
1234 char* label;
1235 char* fstype = NULL;
1236 char* extn = NULL;
1237 char* ptr;
Dees_Troy63c8df72012-09-10 14:02:05 -04001238
bigbiff bigbiff19fb79c2016-09-05 21:04:51 -04001239 strcpy(str, de->d_name);
1240 if (strlen(str) <= 2)
1241 continue;
Dees_Troy83bd4832013-05-04 12:39:56 +00001242
bigbiff bigbiff19fb79c2016-09-05 21:04:51 -04001243 if (get_date) {
1244 char file_path[255];
1245 struct stat st;
1246
1247 strcpy(file_path, Restore_Name.c_str());
1248 strcat(file_path, "/");
1249 strcat(file_path, str);
1250 stat(file_path, &st);
1251 string backup_date = ctime((const time_t*)(&st.st_mtime));
1252 DataManager::SetValue(TW_RESTORE_FILE_DATE, backup_date);
1253 get_date = false;
Dees_Troy83bd4832013-05-04 12:39:56 +00001254 }
Dees_Troy63c8df72012-09-10 14:02:05 -04001255
bigbiff bigbiff19fb79c2016-09-05 21:04:51 -04001256 label = str;
1257 ptr = label;
1258 while (*ptr && *ptr != '.') ptr++;
1259 if (*ptr == '.')
1260 {
1261 *ptr = 0x00;
1262 ptr++;
1263 fstype = ptr;
1264 }
1265 while (*ptr && *ptr != '.') ptr++;
1266 if (*ptr == '.')
1267 {
1268 *ptr = 0x00;
1269 ptr++;
1270 extn = ptr;
1271 }
Dees_Troy63c8df72012-09-10 14:02:05 -04001272
bigbiff bigbiff19fb79c2016-09-05 21:04:51 -04001273 if (fstype == NULL || extn == NULL || strcmp(fstype, "log") == 0) continue;
1274 int extnlength = strlen(extn);
1275 if (extnlength != 3 && extnlength != 6) continue;
1276 if (extnlength >= 3 && strncmp(extn, "win", 3) != 0) continue;
1277 //if (extnlength == 6 && strncmp(extn, "win000", 6) != 0) continue;
Dees_Troy63c8df72012-09-10 14:02:05 -04001278
bigbiff bigbiff19fb79c2016-09-05 21:04:51 -04001279 if (check_encryption) {
1280 string filename = Restore_Name + "/";
1281 filename += de->d_name;
1282 if (TWFunc::Get_File_Type(filename) == 2) {
1283 LOGINFO("'%s' is encrypted\n", filename.c_str());
1284 DataManager::SetValue("tw_restore_encrypted", 1);
1285 }
1286 }
1287 if (extnlength == 6 && strncmp(extn, "win000", 6) != 0) continue;
1288
1289 TWPartition* Part = Find_Partition_By_Path(label);
1290 if (Part == NULL)
1291 {
1292 gui_msg(Msg(msg::kError, "unable_locate_part_backup_name=Unable to locate partition by backup name: '{1}'")(label));
1293 continue;
1294 }
1295
1296 Part->Backup_FileName = de->d_name;
1297 if (strlen(extn) > 3) {
1298 Part->Backup_FileName.resize(Part->Backup_FileName.size() - strlen(extn) + 3);
1299 }
1300
dianlujitaob76a73a2020-04-30 20:33:20 +08001301 if (!Part->Is_SubPartition) {
1302 if (Part->Backup_Path == Get_Android_Root_Path())
1303 Restore_List += "/system;";
1304 else
1305 Restore_List += Part->Backup_Path + ";";
1306 }
bigbiff bigbiff19fb79c2016-09-05 21:04:51 -04001307 }
1308 closedir(d);
Dees_Troy63c8df72012-09-10 14:02:05 -04001309 }
bigbiff bigbiff19fb79c2016-09-05 21:04:51 -04001310
1311 if (adbbackup) {
1312 Restore_List = "ADB_Backup;";
1313 adbbackup = false;
1314 }
Dees_Troy63c8df72012-09-10 14:02:05 -04001315
Dees_Troya13d74f2013-03-24 08:54:55 -05001316 // Set the final value
1317 DataManager::SetValue("tw_restore_list", Restore_List);
1318 DataManager::SetValue("tw_restore_selected", Restore_List);
Dees_Troy51a0e822012-09-05 15:24:24 -04001319 return;
1320}
1321
1322int TWPartitionManager::Wipe_By_Path(string Path) {
Dees_Troy63c8df72012-09-10 14:02:05 -04001323 std::vector<TWPartition*>::iterator iter;
Mohd Farazfdd49bb2020-04-21 18:56:44 +05301324 std::vector < TWPartition * >::iterator iter1;
Dees_Troy63c8df72012-09-10 14:02:05 -04001325 int ret = false;
1326 bool found = false;
Dees_Troy38bd7602012-09-14 13:33:53 -04001327 string Local_Path = TWFunc::Get_Root_Path(Path);
Dees_Troy63c8df72012-09-10 14:02:05 -04001328
dianlujitaob76a73a2020-04-30 20:33:20 +08001329 if (Local_Path == "/system")
1330 Local_Path = Get_Android_Root_Path();
Dees_Troy63c8df72012-09-10 14:02:05 -04001331 // Iterate through all partitions
1332 for (iter = Partitions.begin(); iter != Partitions.end(); iter++) {
Dees_Troy657c3092012-09-10 20:32:10 -04001333 if ((*iter)->Mount_Point == Local_Path || (!(*iter)->Symlink_Mount_Point.empty() && (*iter)->Symlink_Mount_Point == Local_Path)) {
Mohd Farazfdd49bb2020-04-21 18:56:44 +05301334 // iterate through all partitions since some legacy devices uses other partitions as vendor causes issues while wiping
1335 (*iter)->Find_Actual_Block_Device();
1336 for (iter1 = Partitions.begin (); iter1 != Partitions.end (); iter1++)
1337 {
1338 (*iter1)->Find_Actual_Block_Device();
1339 if ((*iter)->Actual_Block_Device == (*iter1)->Actual_Block_Device && (*iter)->Mount_Point != (*iter1)->Mount_Point)
1340 (*iter1)->UnMount(false);
1341 }
Dees_Troye58d5262012-09-21 12:27:57 -04001342 if (Path == "/and-sec")
1343 ret = (*iter)->Wipe_AndSec();
1344 else
1345 ret = (*iter)->Wipe();
Dees_Troy63c8df72012-09-10 14:02:05 -04001346 found = true;
1347 } else if ((*iter)->Is_SubPartition && (*iter)->SubPartition_Of == Local_Path) {
1348 (*iter)->Wipe();
1349 }
1350 }
1351 if (found) {
1352 return ret;
1353 } else
Ethan Yonker74db1572015-10-28 12:44:49 -05001354 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 -04001355 return false;
Dees_Troy51a0e822012-09-05 15:24:24 -04001356}
1357
Ethan Yonker87c7bac2014-05-25 21:41:08 -05001358int TWPartitionManager::Wipe_By_Path(string Path, string New_File_System) {
1359 std::vector<TWPartition*>::iterator iter;
1360 int ret = false;
1361 bool found = false;
1362 string Local_Path = TWFunc::Get_Root_Path(Path);
1363
1364 // Iterate through all partitions
1365 for (iter = Partitions.begin(); iter != Partitions.end(); iter++) {
1366 if ((*iter)->Mount_Point == Local_Path || (!(*iter)->Symlink_Mount_Point.empty() && (*iter)->Symlink_Mount_Point == Local_Path)) {
1367 if (Path == "/and-sec")
1368 ret = (*iter)->Wipe_AndSec();
1369 else
1370 ret = (*iter)->Wipe(New_File_System);
1371 found = true;
1372 } else if ((*iter)->Is_SubPartition && (*iter)->SubPartition_Of == Local_Path) {
1373 (*iter)->Wipe(New_File_System);
1374 }
1375 }
1376 if (found) {
1377 return ret;
1378 } else
Ethan Yonker74db1572015-10-28 12:44:49 -05001379 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 -05001380 return false;
1381}
1382
Dees_Troy51a0e822012-09-05 15:24:24 -04001383int TWPartitionManager::Factory_Reset(void) {
Dees_Troy63c8df72012-09-10 14:02:05 -04001384 std::vector<TWPartition*>::iterator iter;
1385 int ret = true;
1386
1387 for (iter = Partitions.begin(); iter != Partitions.end(); iter++) {
Dees_Troy38bd7602012-09-14 13:33:53 -04001388 if ((*iter)->Wipe_During_Factory_Reset && (*iter)->Is_Present) {
Ethan Yonker89583ef2015-08-26 09:01:59 -05001389#ifdef TW_OEM_BUILD
1390 if ((*iter)->Mount_Point == "/data") {
1391 if (!(*iter)->Wipe_Encryption())
1392 ret = false;
1393 } else {
1394#endif
1395 if (!(*iter)->Wipe())
1396 ret = false;
1397#ifdef TW_OEM_BUILD
1398 }
1399#endif
Dees_Troy094207a2012-09-26 12:00:39 -04001400 } else if ((*iter)->Has_Android_Secure) {
1401 if (!(*iter)->Wipe_AndSec())
1402 ret = false;
Dees_Troy63c8df72012-09-10 14:02:05 -04001403 }
1404 }
Ethan Yonker9fa76ba2016-06-30 14:05:43 -05001405 TWFunc::check_and_run_script("/sbin/factoryreset.sh", "Factory Reset Script");
Dees_Troy63c8df72012-09-10 14:02:05 -04001406 return ret;
Dees_Troy51a0e822012-09-05 15:24:24 -04001407}
1408
Dees_Troy38bd7602012-09-14 13:33:53 -04001409int TWPartitionManager::Wipe_Dalvik_Cache(void) {
1410 struct stat st;
bigbiff bigbiff9c754052013-01-09 09:09:08 -05001411 vector <string> dir;
Dees_Troy38bd7602012-09-14 13:33:53 -04001412
1413 if (!Mount_By_Path("/data", true))
1414 return false;
1415
bigbiff bigbiff9c754052013-01-09 09:09:08 -05001416 dir.push_back("/data/dalvik-cache");
bigbiff bigbiff19874f12019-01-08 20:06:57 -05001417
1418 std::string cacheDir = TWFunc::get_cache_dir();
1419 if (cacheDir == NON_AB_CACHE_DIR) {
1420 if (!PartitionManager.Mount_By_Path(NON_AB_CACHE_DIR, false)) {
1421 LOGINFO("Unable to mount %s for wiping cache.\n", NON_AB_CACHE_DIR);
1422 }
1423 dir.push_back(cacheDir + "dalvik-cache");
1424 dir.push_back(cacheDir + "/dc");
bigbiff bigbiff9c754052013-01-09 09:09:08 -05001425 }
Ethan Yonkerff2b7882016-12-10 09:04:41 -06001426
Dees_Troy38bd7602012-09-14 13:33:53 -04001427 TWPartition* sdext = Find_Partition_By_Path("/sd-ext");
Vojtech Bocekfafb0c52013-07-25 22:53:02 +02001428 if (sdext && sdext->Is_Present && sdext->Mount(false))
1429 {
1430 if (stat("/sd-ext/dalvik-cache", &st) == 0)
1431 {
Ethan Yonkerff2b7882016-12-10 09:04:41 -06001432 dir.push_back("/sd-ext/dalvik-cache");
1433 }
1434 }
1435
bigbiff bigbiff19874f12019-01-08 20:06:57 -05001436 if (cacheDir == NON_AB_CACHE_DIR) {
1437 gui_msg("wiping_cache_dalvik=Wiping Dalvik Cache Directories...");
1438 } else {
1439 gui_msg("wiping_dalvik=Wiping Dalvik Directory...");
1440 }
Ethan Yonkerff2b7882016-12-10 09:04:41 -06001441 for (unsigned i = 0; i < dir.size(); ++i) {
1442 if (stat(dir.at(i).c_str(), &st) == 0) {
1443 TWFunc::removeDir(dir.at(i), false);
1444 gui_msg(Msg("cleaned=Cleaned: {1}...")(dir.at(i)));
bigbiff bigbiff9c754052013-01-09 09:09:08 -05001445 }
Vojtech Bocekfafb0c52013-07-25 22:53:02 +02001446 }
bigbiff bigbiff19874f12019-01-08 20:06:57 -05001447
1448 if (cacheDir == NON_AB_CACHE_DIR) {
1449 gui_msg("cache_dalvik_done=-- Dalvik Cache Directories Wipe Complete!");
1450 } else {
1451 gui_msg("dalvik_done=-- Dalvik Directory Wipe Complete!");
1452 }
1453
Dees_Troy38bd7602012-09-14 13:33:53 -04001454 return true;
1455}
1456
1457int TWPartitionManager::Wipe_Rotate_Data(void) {
1458 if (!Mount_By_Path("/data", true))
1459 return false;
1460
bigbiff bigbiff9c754052013-01-09 09:09:08 -05001461 unlink("/data/misc/akmd*");
1462 unlink("/data/misc/rild*");
Dees_Troy2673cec2013-04-02 20:22:16 +00001463 gui_print("Rotation data wiped.\n");
Dees_Troy38bd7602012-09-14 13:33:53 -04001464 return true;
1465}
1466
1467int TWPartitionManager::Wipe_Battery_Stats(void) {
1468 struct stat st;
1469
1470 if (!Mount_By_Path("/data", true))
1471 return false;
1472
1473 if (0 != stat("/data/system/batterystats.bin", &st)) {
Dees_Troy2673cec2013-04-02 20:22:16 +00001474 gui_print("No Battery Stats Found. No Need To Wipe.\n");
Dees_Troy38bd7602012-09-14 13:33:53 -04001475 } else {
1476 remove("/data/system/batterystats.bin");
Dees_Troy2673cec2013-04-02 20:22:16 +00001477 gui_print("Cleared battery stats.\n");
Dees_Troy38bd7602012-09-14 13:33:53 -04001478 }
1479 return true;
1480}
1481
Dees_Troy2ff5a8d2012-09-26 14:53:02 -04001482int TWPartitionManager::Wipe_Android_Secure(void) {
1483 std::vector<TWPartition*>::iterator iter;
1484 int ret = false;
1485 bool found = false;
1486
1487 // Iterate through all partitions
1488 for (iter = Partitions.begin(); iter != Partitions.end(); iter++) {
1489 if ((*iter)->Has_Android_Secure) {
1490 ret = (*iter)->Wipe_AndSec();
1491 found = true;
1492 }
1493 }
1494 if (found) {
1495 return ret;
1496 } else {
Ethan Yonker74db1572015-10-28 12:44:49 -05001497 gui_err("no_andsec=No android secure partitions found.");
Dees_Troy2ff5a8d2012-09-26 14:53:02 -04001498 }
1499 return false;
1500}
1501
Dees_Troy38bd7602012-09-14 13:33:53 -04001502int TWPartitionManager::Format_Data(void) {
1503 TWPartition* dat = Find_Partition_By_Path("/data");
1504
1505 if (dat != NULL) {
1506 if (!dat->UnMount(true))
1507 return false;
1508
1509 return dat->Wipe_Encryption();
1510 } else {
Matt Mower3c366972015-12-25 19:28:31 -06001511 gui_msg(Msg(msg::kError, "unable_to_locate=Unable to locate {1}.")("/data"));
Dees_Troy38bd7602012-09-14 13:33:53 -04001512 return false;
1513 }
1514 return false;
1515}
1516
1517int TWPartitionManager::Wipe_Media_From_Data(void) {
1518 TWPartition* dat = Find_Partition_By_Path("/data");
1519
1520 if (dat != NULL) {
1521 if (!dat->Has_Data_Media) {
Dees_Troy2673cec2013-04-02 20:22:16 +00001522 LOGERR("This device does not have /data/media\n");
Dees_Troy38bd7602012-09-14 13:33:53 -04001523 return false;
1524 }
1525 if (!dat->Mount(true))
1526 return false;
1527
Ethan Yonker74db1572015-10-28 12:44:49 -05001528 gui_msg("wiping_datamedia=Wiping internal storage -- /data/media...");
Ethan Yonker726a0202014-12-16 20:01:38 -06001529 Remove_MTP_Storage(dat->MTP_Storage_ID);
bigbiff bigbiff9c754052013-01-09 09:09:08 -05001530 TWFunc::removeDir("/data/media", false);
xiaolu9416f4f2015-06-04 08:22:23 +08001531 dat->Recreate_Media_Folder();
Ethan Yonker726a0202014-12-16 20:01:38 -06001532 Add_MTP_Storage(dat->MTP_Storage_ID);
Dees_Troy38bd7602012-09-14 13:33:53 -04001533 return true;
1534 } else {
Matt Mower3c366972015-12-25 19:28:31 -06001535 gui_msg(Msg(msg::kError, "unable_to_locate=Unable to locate {1}.")("/data"));
Dees_Troy38bd7602012-09-14 13:33:53 -04001536 return false;
1537 }
1538 return false;
1539}
1540
Ethan Yonker87c7bac2014-05-25 21:41:08 -05001541int TWPartitionManager::Repair_By_Path(string Path, bool Display_Error) {
1542 std::vector<TWPartition*>::iterator iter;
1543 int ret = false;
1544 bool found = false;
1545 string Local_Path = TWFunc::Get_Root_Path(Path);
1546
1547 if (Local_Path == "/tmp" || Local_Path == "/")
1548 return true;
1549
1550 // Iterate through all partitions
1551 for (iter = Partitions.begin(); iter != Partitions.end(); iter++) {
1552 if ((*iter)->Mount_Point == Local_Path || (!(*iter)->Symlink_Mount_Point.empty() && (*iter)->Symlink_Mount_Point == Local_Path)) {
1553 ret = (*iter)->Repair();
1554 found = true;
1555 } else if ((*iter)->Is_SubPartition && (*iter)->SubPartition_Of == Local_Path) {
1556 (*iter)->Repair();
1557 }
1558 }
1559 if (found) {
1560 return ret;
1561 } else if (Display_Error) {
Ethan Yonker74db1572015-10-28 12:44:49 -05001562 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 -05001563 } else {
1564 LOGINFO("Repair: Unable to find partition for path '%s'\n", Local_Path.c_str());
1565 }
1566 return false;
1567}
1568
Ethan Yonkera2719152015-05-28 09:44:41 -05001569int TWPartitionManager::Resize_By_Path(string Path, bool Display_Error) {
1570 std::vector<TWPartition*>::iterator iter;
1571 int ret = false;
1572 bool found = false;
1573 string Local_Path = TWFunc::Get_Root_Path(Path);
1574
1575 if (Local_Path == "/tmp" || Local_Path == "/")
1576 return true;
1577
1578 // Iterate through all partitions
1579 for (iter = Partitions.begin(); iter != Partitions.end(); iter++) {
1580 if ((*iter)->Mount_Point == Local_Path || (!(*iter)->Symlink_Mount_Point.empty() && (*iter)->Symlink_Mount_Point == Local_Path)) {
1581 ret = (*iter)->Resize();
1582 found = true;
1583 } else if ((*iter)->Is_SubPartition && (*iter)->SubPartition_Of == Local_Path) {
1584 (*iter)->Resize();
1585 }
1586 }
1587 if (found) {
1588 return ret;
1589 } else if (Display_Error) {
Ethan Yonker74db1572015-10-28 12:44:49 -05001590 gui_msg(Msg(msg::kError, "unable_find_part_path=Unable to find partition for path '{1}'")(Local_Path));
Ethan Yonkera2719152015-05-28 09:44:41 -05001591 } else {
1592 LOGINFO("Resize: Unable to find partition for path '%s'\n", Local_Path.c_str());
1593 }
1594 return false;
1595}
1596
Dees_Troy51a0e822012-09-05 15:24:24 -04001597void TWPartitionManager::Update_System_Details(void) {
Dees_Troy5bf43922012-09-07 16:07:55 -04001598 std::vector<TWPartition*>::iterator iter;
Dees_Troy51127312012-09-08 13:08:49 -04001599 int data_size = 0;
Dees_Troy5bf43922012-09-07 16:07:55 -04001600
Ethan Yonker74db1572015-10-28 12:44:49 -05001601 gui_msg("update_part_details=Updating partition details...");
Dees_Troy5bf43922012-09-07 16:07:55 -04001602 for (iter = Partitions.begin(); iter != Partitions.end(); iter++) {
Ethan Yonker1b190162016-12-05 15:25:19 -06001603 (*iter)->Update_Size(true);
Dees_Troy51127312012-09-08 13:08:49 -04001604 if ((*iter)->Can_Be_Mounted) {
Captain Throwback9d6feb52018-07-27 10:05:24 -04001605 if ((*iter)->Mount_Point == Get_Android_Root_Path()) {
Dees_Troy51127312012-09-08 13:08:49 -04001606 int backup_display_size = (int)((*iter)->Backup_Size / 1048576LLU);
1607 DataManager::SetValue(TW_BACKUP_SYSTEM_SIZE, backup_display_size);
Ethan Yonker76bbd3a2019-05-10 10:50:04 -05001608 TWFunc::Is_TWRP_App_In_System();
Dees_Troy51127312012-09-08 13:08:49 -04001609 } else if ((*iter)->Mount_Point == "/data" || (*iter)->Mount_Point == "/datadata") {
1610 data_size += (int)((*iter)->Backup_Size / 1048576LLU);
1611 } else if ((*iter)->Mount_Point == "/cache") {
1612 int backup_display_size = (int)((*iter)->Backup_Size / 1048576LLU);
1613 DataManager::SetValue(TW_BACKUP_CACHE_SIZE, backup_display_size);
1614 } else if ((*iter)->Mount_Point == "/sd-ext") {
1615 int backup_display_size = (int)((*iter)->Backup_Size / 1048576LLU);
1616 DataManager::SetValue(TW_BACKUP_SDEXT_SIZE, backup_display_size);
1617 if ((*iter)->Backup_Size == 0) {
1618 DataManager::SetValue(TW_HAS_SDEXT_PARTITION, 0);
1619 DataManager::SetValue(TW_BACKUP_SDEXT_VAR, 0);
1620 } else
1621 DataManager::SetValue(TW_HAS_SDEXT_PARTITION, 1);
Dees_Troye58d5262012-09-21 12:27:57 -04001622 } else if ((*iter)->Has_Android_Secure) {
Dees_Troy8170a922012-09-18 15:40:25 -04001623 int backup_display_size = (int)((*iter)->Backup_Size / 1048576LLU);
Dees_Troye58d5262012-09-21 12:27:57 -04001624 DataManager::SetValue(TW_BACKUP_ANDSEC_SIZE, backup_display_size);
Dees_Troy8170a922012-09-18 15:40:25 -04001625 if ((*iter)->Backup_Size == 0) {
1626 DataManager::SetValue(TW_HAS_ANDROID_SECURE, 0);
1627 DataManager::SetValue(TW_BACKUP_ANDSEC_VAR, 0);
1628 } else
1629 DataManager::SetValue(TW_HAS_ANDROID_SECURE, 1);
Dees_Troy2c50e182012-09-26 20:05:28 -0400