blob: e58e8ff3f18aef0e18a8eb5cdb040080c77d882c [file] [log] [blame]
Dees Troy3be70a82013-10-22 14:25:12 +00001/*
bigbiff bigbiff19fb79c2016-09-05 21:04:51 -04002 Copyright 2014 to 2017 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
38#include <sys/poll.h>
39#include <sys/socket.h>
40#include <linux/types.h>
41#include <linux/netlink.h>
42
Dees_Troy51a0e822012-09-05 15:24:24 -040043#include "variables.h"
Dees_Troy2673cec2013-04-02 20:22:16 +000044#include "twcommon.h"
Dees_Troy51a0e822012-09-05 15:24:24 -040045#include "partitions.hpp"
Dees_Troy5bf43922012-09-07 16:07:55 -040046#include "data.hpp"
Dees_Troy38bd7602012-09-14 13:33:53 -040047#include "twrp-functions.hpp"
Ethan Yonkerb5fab762016-01-28 14:03:33 -060048#include "fixContexts.hpp"
Ethan Yonker3fdcda42016-11-30 12:29:37 -060049#include "exclude.hpp"
Ethan Yonker4b94cfd2014-12-11 10:00:45 -060050#include "set_metadata.h"
bigbiff7abc5fe2015-01-17 16:53:12 -050051#include "tw_atomic.hpp"
Ethan Yonker74db1572015-10-28 12:44:49 -050052#include "gui/gui.hpp"
Ethan Yonker472f5062016-02-25 13:47:30 -060053#include "progresstracking.hpp"
bigbiff bigbiff56cf5642016-08-19 17:43:45 -040054#include "twrpDigestDriver.hpp"
bigbiff56b02eb2020-07-06 20:24:34 -040055#include "twrpRepacker.hpp"
bigbiffce8f83c2015-12-12 18:30:21 -050056#include "adbbu/libtwadbbu.hpp"
Dees_Troy38bd7602012-09-14 13:33:53 -040057
bigbiff bigbiffc7eee6f2014-09-02 18:59:01 -040058#ifdef TW_HAS_MTP
bigbiff bigbiffaf32bb92018-12-18 18:39:53 -050059#ifdef TW_HAS_LEGACY_MTP
60#include "mtp/legacy/mtp_MtpServer.hpp"
61#include "mtp/legacy/twrpMtp.hpp"
62#include "mtp/legacy/MtpMessage.hpp"
63#else
64#include "mtp/ffs/mtp_MtpServer.hpp"
65#include "mtp/ffs/twrpMtp.hpp"
66#include "mtp/ffs/MtpMessage.hpp"
67#endif
bigbiff bigbiffc7eee6f2014-09-02 18:59:01 -040068#endif
69
Dees Troy6f6441d2014-01-23 02:07:03 +000070extern "C" {
71 #include "cutils/properties.h"
Ethan Yonker74db1572015-10-28 12:44:49 -050072 #include "gui/gui.h"
Dees Troy6f6441d2014-01-23 02:07:03 +000073}
74
Dees_Troy5bf43922012-09-07 16:07:55 -040075#ifdef TW_INCLUDE_CRYPTO
Noah Jacobson5a79f672019-04-28 00:10:07 -040076#include "crypto/fde/cryptfs.h"
77#include "gui/rapidxml.hpp"
78#include "gui/pages.hpp"
79#ifdef TW_INCLUDE_FBE
80#include "crypto/ext4crypt/Decrypt.h"
81#ifdef TW_INCLUDE_FBE_METADATA_DECRYPT
82#include "crypto/ext4crypt/MetadataCrypt.h"
83#endif
84#endif
85#ifdef TW_CRYPTO_USE_SYSTEM_VOLD
86#include "crypto/vold_decrypt/vold_decrypt.h"
87#endif
Dees_Troy5bf43922012-09-07 16:07:55 -040088#endif
Dees_Troy51a0e822012-09-05 15:24:24 -040089
Ethan Yonker1b190162016-12-05 15:25:19 -060090#ifdef AB_OTA_UPDATER
91#include <hardware/hardware.h>
92#include <hardware/boot_control.h>
93#endif
94
Ethan Yonker6277c792014-09-15 14:54:30 -050095extern bool datamedia;
Noah Jacobson5a79f672019-04-28 00:10:07 -040096std::vector<users_struct> Users_List;
Ethan Yonker6277c792014-09-15 14:54:30 -050097
bigbiff bigbiff34684ff2013-12-01 21:03:45 -050098TWPartitionManager::TWPartitionManager(void) {
bigbiff bigbiffc7eee6f2014-09-02 18:59:01 -040099 mtp_was_enabled = false;
Ethan Yonker726a0202014-12-16 20:01:38 -0600100 mtp_write_fd = -1;
Ethan Yonker6e8c27a2016-12-22 17:55:57 -0600101 uevent_pfd.fd = -1;
bigbiff7abc5fe2015-01-17 16:53:12 -0500102 stop_backup.set_value(0);
Ethan Yonker1b190162016-12-05 15:25:19 -0600103#ifdef AB_OTA_UPDATER
104 char slot_suffix[PROPERTY_VALUE_MAX];
Ethan Yonkerfefe5912017-09-30 22:22:13 -0500105 property_get("ro.boot.slot_suffix", slot_suffix, "error");
106 if (strcmp(slot_suffix, "error") == 0)
107 property_get("ro.boot.slot", slot_suffix, "error");
Ethan Yonker1b190162016-12-05 15:25:19 -0600108 Active_Slot_Display = "";
Ethan Yonkerfefe5912017-09-30 22:22:13 -0500109 if (strcmp(slot_suffix, "_a") == 0 || strcmp(slot_suffix, "a") == 0)
Ethan Yonker1b190162016-12-05 15:25:19 -0600110 Set_Active_Slot("A");
111 else
112 Set_Active_Slot("B");
113#endif
bigbiff bigbiff34684ff2013-12-01 21:03:45 -0500114}
115
Captain Throwbacka1ad7eb2021-10-06 11:38:18 -0400116void TWPartitionManager::Set_Crypto_State() {
117 char crypto_state[PROPERTY_VALUE_MAX];
118 property_get("ro.crypto.state", crypto_state, "error");
119 if (strcmp(crypto_state, "error") == 0)
120 property_set("ro.crypto.state", "encrypted");
121}
122
123int TWPartitionManager::Set_Crypto_Type(const char* crypto_type) {
124 char type_prop[PROPERTY_VALUE_MAX];
125 property_get("ro.crypto.type", type_prop, "error");
126 if (strcmp(type_prop, "error") == 0)
127 property_set("ro.crypto.type", crypto_type);
Captain Throwback07b8e052020-10-29 12:43:17 -0400128 // Sleep for a bit so that services can start if needed
129 sleep(1);
130 return 0;
131}
132
Chaosmasterf6e42ce2020-01-27 00:17:04 +0100133int TWPartitionManager::Process_Fstab(string Fstab_Filename, bool Display_Error, bool Sar_Detect) {
Dees_Troy5bf43922012-09-07 16:07:55 -0400134 FILE *fstabFile;
135 char fstab_line[MAX_FSTAB_LINE_LENGTH];
Dees Troy02a64532014-03-19 15:23:32 +0000136 TWPartition* settings_partition = NULL;
Matt Mowerbf4efa32014-04-14 23:25:26 -0500137 TWPartition* andsec_partition = NULL;
Ethan Yonker726a0202014-12-16 20:01:38 -0600138 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 -0600139 std::map<string, Flags_Map> twrp_flags;
140
141 fstabFile = fopen("/etc/twrp.flags", "rt");
142 if (fstabFile != NULL) {
143 LOGINFO("reading /etc/twrp.flags\n");
144 while (fgets(fstab_line, sizeof(fstab_line), fstabFile) != NULL) {
145 if (fstab_line[0] != '/')
146 continue;
147
148 size_t line_size = strlen(fstab_line);
149 if (fstab_line[line_size - 1] != '\n')
150 fstab_line[line_size] = '\n';
151 Flags_Map line_flags;
152 line_flags.Primary_Block_Device = "";
153 line_flags.Alternate_Block_Device = "";
154 line_flags.fstab_line = (char*)malloc(MAX_FSTAB_LINE_LENGTH);
155 if (!line_flags.fstab_line) {
156 LOGERR("malloc error on line_flags.fstab_line\n");
157 return false;
158 }
159 memcpy(line_flags.fstab_line, fstab_line, MAX_FSTAB_LINE_LENGTH);
160 bool found_separator = false;
161 char *fs_loc = NULL;
162 char *block_loc = NULL;
163 char *flags_loc = NULL;
164 size_t index, item_index = 0;
165 for (index = 0; index < line_size; index++) {
166 if (fstab_line[index] <= 32) {
167 fstab_line[index] = '\0';
168 found_separator = true;
169 } else if (found_separator) {
170 if (item_index == 0) {
171 fs_loc = fstab_line + index;
172 } else if (item_index == 1) {
173 block_loc = fstab_line + index;
174 } else if (item_index > 1) {
175 char *ptr = fstab_line + index;
176 if (*ptr == '/') {
177 line_flags.Alternate_Block_Device = ptr;
178 } else if (strlen(ptr) > strlen("flags=") && strncmp(ptr, "flags=", strlen("flags=")) == 0) {
179 flags_loc = ptr;
180 // Once we find the flags=, we're done scanning the line
181 break;
182 }
183 }
184 found_separator = false;
185 item_index++;
186 }
187 }
188 if (block_loc)
189 line_flags.Primary_Block_Device = block_loc;
190 if (fs_loc)
191 line_flags.File_System = fs_loc;
192 if (flags_loc)
193 line_flags.Flags = flags_loc;
194 string Mount_Point = fstab_line;
195 twrp_flags[Mount_Point] = line_flags;
196 memset(fstab_line, 0, sizeof(fstab_line));
197 }
198 fclose(fstabFile);
199 }
Dees_Troy5bf43922012-09-07 16:07:55 -0400200
201 fstabFile = fopen(Fstab_Filename.c_str(), "rt");
202 if (fstabFile == NULL) {
Dees_Troy2673cec2013-04-02 20:22:16 +0000203 LOGERR("Critical Error: Unable to open fstab at '%s'.\n", Fstab_Filename.c_str());
Dees_Troy5bf43922012-09-07 16:07:55 -0400204 return false;
Ethan Yonker6e8c27a2016-12-22 17:55:57 -0600205 } else
206 LOGINFO("Reading %s\n", Fstab_Filename.c_str());
Dees_Troy5bf43922012-09-07 16:07:55 -0400207
208 while (fgets(fstab_line, sizeof(fstab_line), fstabFile) != NULL) {
209 if (fstab_line[0] != '/')
210 continue;
211
Ethan Yonker6e8c27a2016-12-22 17:55:57 -0600212 if (strstr(fstab_line, "swap"))
213 continue; // Skip swap in recovery
214
215 size_t line_size = strlen(fstab_line);
216 if (fstab_line[line_size - 1] != '\n')
217 fstab_line[line_size] = '\n';
Dees_Troy2a923582012-09-20 12:13:34 -0400218
Matt Mower2b2dd152016-04-26 11:24:08 -0500219 TWPartition* partition = new TWPartition();
Chaosmasterf6e42ce2020-01-27 00:17:04 +0100220 if (partition->Process_Fstab_Line(fstab_line, Display_Error, &twrp_flags, Sar_Detect))
Ethan Yonkerc05c5982014-03-13 09:19:56 -0500221 Partitions.push_back(partition);
Matt Mower72c87ce2016-04-26 14:34:56 -0500222 else
Dees_Troy5bf43922012-09-07 16:07:55 -0400223 delete partition;
Matt Mower2b2dd152016-04-26 11:24:08 -0500224
225 memset(fstab_line, 0, sizeof(fstab_line));
Dees_Troy5bf43922012-09-07 16:07:55 -0400226 }
227 fclose(fstabFile);
Matt Mower72c87ce2016-04-26 14:34:56 -0500228
Ethan Yonker6e8c27a2016-12-22 17:55:57 -0600229 if (twrp_flags.size() > 0) {
230 LOGINFO("Processing remaining twrp.flags\n");
231 // Add any items from twrp.flags that did not exist in the recovery.fstab
232 for (std::map<string, Flags_Map>::iterator mapit=twrp_flags.begin(); mapit!=twrp_flags.end(); mapit++) {
233 if (Find_Partition_By_Path(mapit->first) == NULL) {
234 TWPartition* partition = new TWPartition();
Chaosmasterf6e42ce2020-01-27 00:17:04 +0100235 if (partition->Process_Fstab_Line(mapit->second.fstab_line, Display_Error, NULL, Sar_Detect))
Ethan Yonker6e8c27a2016-12-22 17:55:57 -0600236 Partitions.push_back(partition);
237 else
238 delete partition;
239 }
240 if (mapit->second.fstab_line)
241 free(mapit->second.fstab_line);
242 mapit->second.fstab_line = NULL;
243 }
244 }
245 LOGINFO("Done processing fstab files\n");
246
Matt Mower72c87ce2016-04-26 14:34:56 -0500247 std::vector<TWPartition*>::iterator iter;
248 for (iter = Partitions.begin(); iter != Partitions.end(); iter++) {
Chaosmasterf6e42ce2020-01-27 00:17:04 +0100249 if (Sar_Detect) {
250 if ((*iter)->Mount_Point == "/s")
251 return true;
252 else
253 continue;
254 }
255
Matt Mower72c87ce2016-04-26 14:34:56 -0500256 (*iter)->Partition_Post_Processing(Display_Error);
257
258 if ((*iter)->Is_Storage) {
259 ++storageid;
260 (*iter)->MTP_Storage_ID = storageid;
261 }
262
263 if (!settings_partition && (*iter)->Is_Settings_Storage && (*iter)->Is_Present)
264 settings_partition = (*iter);
265 else
266 (*iter)->Is_Settings_Storage = false;
267
268 if (!andsec_partition && (*iter)->Has_Android_Secure && (*iter)->Is_Present)
269 andsec_partition = (*iter);
270 else
271 (*iter)->Has_Android_Secure = false;
272 }
273
Ethan Yonker6277c792014-09-15 14:54:30 -0500274 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) {
275 // Attempt to automatically identify /data/media emulated storage devices
276 TWPartition* Dat = Find_Partition_By_Path("/data");
277 if (Dat) {
278 LOGINFO("Using automatic handling for /data/media emulated storage device.\n");
279 datamedia = true;
that9e0593e2014-10-08 00:01:24 +0200280 Dat->Setup_Data_Media();
Ethan Yonker6277c792014-09-15 14:54:30 -0500281 settings_partition = Dat;
Ethan Yonker726a0202014-12-16 20:01:38 -0600282 // Since /data was not considered a storage partition earlier, we still need to assign an MTP ID
283 ++storageid;
284 Dat->MTP_Storage_ID = storageid;
Ethan Yonker6277c792014-09-15 14:54:30 -0500285 }
286 }
Dees Troy02a64532014-03-19 15:23:32 +0000287 if (!settings_partition) {
Dees_Troya13d74f2013-03-24 08:54:55 -0500288 for (iter = Partitions.begin(); iter != Partitions.end(); iter++) {
289 if ((*iter)->Is_Storage) {
Dees Troy02a64532014-03-19 15:23:32 +0000290 settings_partition = (*iter);
Dees_Troya13d74f2013-03-24 08:54:55 -0500291 break;
292 }
293 }
Dees Troy02a64532014-03-19 15:23:32 +0000294 if (!settings_partition)
Dees_Troy2673cec2013-04-02 20:22:16 +0000295 LOGERR("Unable to locate storage partition for storing settings file.\n");
Dees_Troya13d74f2013-03-24 08:54:55 -0500296 }
Dees_Troy5bf43922012-09-07 16:07:55 -0400297 if (!Write_Fstab()) {
298 if (Display_Error)
Dees_Troy2673cec2013-04-02 20:22:16 +0000299 LOGERR("Error creating fstab\n");
Dees_Troy5bf43922012-09-07 16:07:55 -0400300 else
Dees_Troy2673cec2013-04-02 20:22:16 +0000301 LOGINFO("Error creating fstab\n");
Dees_Troy5bf43922012-09-07 16:07:55 -0400302 }
Matt Mowered71fa32014-04-16 13:21:47 -0500303
Matt Mowerbf4efa32014-04-14 23:25:26 -0500304 if (andsec_partition) {
305 Setup_Android_Secure_Location(andsec_partition);
Matt Mowered71fa32014-04-16 13:21:47 -0500306 } else if (settings_partition) {
Matt Mowerbf4efa32014-04-14 23:25:26 -0500307 Setup_Android_Secure_Location(settings_partition);
308 }
Matt Mowered71fa32014-04-16 13:21:47 -0500309 if (settings_partition) {
310 Setup_Settings_Storage_Partition(settings_partition);
311 }
Ethan Yonker253368a2014-11-25 15:00:52 -0600312#ifdef TW_INCLUDE_CRYPTO
Ethan Yonkercceebb82014-11-18 10:17:59 -0600313 TWPartition* Decrypt_Data = Find_Partition_By_Path("/data");
314 if (Decrypt_Data && Decrypt_Data->Is_Encrypted && !Decrypt_Data->Is_Decrypted) {
Captain Throwbacka1ad7eb2021-10-06 11:38:18 -0400315 Set_Crypto_State();
Ethan Yonker93382822018-11-01 15:25:31 -0500316 if (!Decrypt_Data->Key_Directory.empty() && Mount_By_Path(Decrypt_Data->Key_Directory, false)) {
Captain Throwbacka1ad7eb2021-10-06 11:38:18 -0400317 Set_Crypto_Type("file");
Ethan Yonker93382822018-11-01 15:25:31 -0500318#ifdef TW_INCLUDE_FBE_METADATA_DECRYPT
319 if (e4crypt_mount_metadata_encrypted(Decrypt_Data->Mount_Point, false, Decrypt_Data->Key_Directory, Decrypt_Data->Actual_Block_Device, &Decrypt_Data->Decrypted_Block_Device)) {
320 LOGINFO("Successfully decrypted metadata encrypted data partition with new block device: '%s'\n", Decrypt_Data->Decrypted_Block_Device.c_str());
Ethan Yonker93382822018-11-01 15:25:31 -0500321 Decrypt_Data->Is_Decrypted = true; // Needed to make the mount function work correctly
322 int retry_count = 10;
323 while (!Decrypt_Data->Mount(false) && --retry_count)
324 usleep(500);
325 if (Decrypt_Data->Mount(false)) {
bigbiff bigbiff0be03b32019-08-27 20:50:31 -0400326 if (!Decrypt_Data->Decrypt_FBE_DE()) {
mauronofrio1db94322019-11-23 23:13:04 +0100327 char wrappedvalue[PROPERTY_VALUE_MAX];
328 property_get("fbe.data.wrappedkey", wrappedvalue, "");
329 std::string wrappedkeyvalue(wrappedvalue);
330 if (wrappedkeyvalue == "true") {
bigbiff bigbiff0be03b32019-08-27 20:50:31 -0400331 LOGERR("Unable to decrypt FBE device\n");
mauronofrio1db94322019-11-23 23:13:04 +0100332 } else {
333 LOGINFO("Trying wrapped key.\n");
334 property_set("fbe.data.wrappedkey", "true");
335 if (!Decrypt_Data->Decrypt_FBE_DE()) {
336 LOGERR("Unable to decrypt FBE device\n");
337 }
bigbiff bigbiff0be03b32019-08-27 20:50:31 -0400338 }
339 }
340
Ethan Yonker93382822018-11-01 15:25:31 -0500341 } else {
342 LOGINFO("Failed to mount data after metadata decrypt\n");
343 }
344 } else {
345 LOGINFO("Unable to decrypt metadata encryption\n");
346 }
347#else
348 LOGERR("Metadata FBE decrypt support not present in this TWRP\n");
349#endif
350 }
Ethan Yonkerbd7492d2016-12-07 13:55:01 -0600351 if (Decrypt_Data->Is_FBE) {
352 if (DataManager::GetIntValue(TW_CRYPTO_PWTYPE) == 0) {
353 if (Decrypt_Device("!") == 0) {
354 gui_msg("decrypt_success=Successfully decrypted with default password.");
355 DataManager::SetValue(TW_IS_ENCRYPTED, 0);
356 } else {
357 gui_err("unable_to_decrypt=Unable to decrypt with default password.");
358 }
Ethan Yonkercceebb82014-11-18 10:17:59 -0600359 }
360 } else {
Captain Throwbacka1ad7eb2021-10-06 11:38:18 -0400361 Set_Crypto_State();
362 Set_Crypto_Type("block");
Ethan Yonkerbd7492d2016-12-07 13:55:01 -0600363 int password_type = cryptfs_get_password_type();
364 if (password_type == CRYPT_TYPE_DEFAULT) {
365 LOGINFO("Device is encrypted with the default password, attempting to decrypt.\n");
366 if (Decrypt_Device("default_password") == 0) {
367 gui_msg("decrypt_success=Successfully decrypted with default password.");
368 DataManager::SetValue(TW_IS_ENCRYPTED, 0);
369 } else {
370 gui_err("unable_to_decrypt=Unable to decrypt with default password.");
371 }
372 } else {
373 DataManager::SetValue("TW_CRYPTO_TYPE", password_type);
Noah Jacobson5a79f672019-04-28 00:10:07 -0400374 DataManager::SetValue("tw_crypto_pwtype_0", password_type);
Ethan Yonkerbd7492d2016-12-07 13:55:01 -0600375 }
Ethan Yonkercceebb82014-11-18 10:17:59 -0600376 }
377 }
Noah Jacobson5a79f672019-04-28 00:10:07 -0400378 if (Decrypt_Data && (!Decrypt_Data->Is_Encrypted || Decrypt_Data->Is_Decrypted) &&
379 Decrypt_Data->Mount(false)) {
Ethan Yonker66a19492015-12-10 10:19:45 -0600380 Decrypt_Adopted();
381 }
Ethan Yonkercceebb82014-11-18 10:17:59 -0600382#endif
Dees_Troy51127312012-09-08 13:08:49 -0400383 Update_System_Details();
Dees_Troyd0384ef2012-10-12 12:15:42 -0400384 UnMount_Main_Partitions();
Ethan Yonker1b190162016-12-05 15:25:19 -0600385#ifdef AB_OTA_UPDATER
386 DataManager::SetValue("tw_active_slot", Get_Active_Slot_Display());
387#endif
Ethan Yonker6e8c27a2016-12-22 17:55:57 -0600388 setup_uevent();
Dees_Troy5bf43922012-09-07 16:07:55 -0400389 return true;
390}
391
392int TWPartitionManager::Write_Fstab(void) {
393 FILE *fp;
394 std::vector<TWPartition*>::iterator iter;
395 string Line;
396
397 fp = fopen("/etc/fstab", "w");
398 if (fp == NULL) {
Dees_Troy2673cec2013-04-02 20:22:16 +0000399 LOGINFO("Can not open /etc/fstab.\n");
Dees_Troy5bf43922012-09-07 16:07:55 -0400400 return false;
401 }
Dees_Troy63c8df72012-09-10 14:02:05 -0400402 for (iter = Partitions.begin(); iter != Partitions.end(); iter++) {
Dees_Troy51127312012-09-08 13:08:49 -0400403 if ((*iter)->Can_Be_Mounted) {
dianlujitao7d304c72016-01-02 12:15:50 +0800404 Line = (*iter)->Actual_Block_Device + " " + (*iter)->Mount_Point + " " + (*iter)->Current_File_System + " rw 0 0\n";
Dees_Troy5bf43922012-09-07 16:07:55 -0400405 fputs(Line.c_str(), fp);
Dees_Troy91862e62013-04-04 23:48:21 +0000406 }
407 // Handle subpartition tracking
408 if ((*iter)->Is_SubPartition) {
409 TWPartition* ParentPartition = Find_Partition_By_Path((*iter)->SubPartition_Of);
410 if (ParentPartition)
411 ParentPartition->Has_SubPartition = true;
412 else
413 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 -0400414 }
415 }
416 fclose(fp);
417 return true;
Dees_Troy51a0e822012-09-05 15:24:24 -0400418}
419
Ethan Yonkerc05c5982014-03-13 09:19:56 -0500420void TWPartitionManager::Setup_Settings_Storage_Partition(TWPartition* Part) {
Ethan Yonkerc05c5982014-03-13 09:19:56 -0500421 DataManager::SetValue("tw_settings_path", Part->Storage_Path);
422 DataManager::SetValue("tw_storage_path", Part->Storage_Path);
423 LOGINFO("Settings storage is '%s'\n", Part->Storage_Path.c_str());
424}
425
Matt Mowerbf4efa32014-04-14 23:25:26 -0500426void TWPartitionManager::Setup_Android_Secure_Location(TWPartition* Part) {
427 if (Part->Has_Android_Secure)
428 Part->Setup_AndSec();
Ethan Yonker6277c792014-09-15 14:54:30 -0500429 else if (!datamedia)
Matt Mowerbf4efa32014-04-14 23:25:26 -0500430 Part->Setup_AndSec();
Matt Mowerbf4efa32014-04-14 23:25:26 -0500431}
432
Dees_Troy8170a922012-09-18 15:40:25 -0400433void TWPartitionManager::Output_Partition_Logging(void) {
434 std::vector<TWPartition*>::iterator iter;
435
436 printf("\n\nPartition Logs:\n");
437 for (iter = Partitions.begin(); iter != Partitions.end(); iter++)
438 Output_Partition((*iter));
439}
440
441void TWPartitionManager::Output_Partition(TWPartition* Part) {
442 unsigned long long mb = 1048576;
443
Gary Peck004d48b2012-11-21 16:28:18 -0800444 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 -0400445 if (Part->Can_Be_Mounted) {
Gary Peck004d48b2012-11-21 16:28:18 -0800446 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 -0400447 }
Gary Peck004d48b2012-11-21 16:28:18 -0800448 printf("\n Flags: ");
Dees_Troya13d74f2013-03-24 08:54:55 -0500449 if (Part->Can_Be_Mounted)
450 printf("Can_Be_Mounted ");
Gary Peck004d48b2012-11-21 16:28:18 -0800451 if (Part->Can_Be_Wiped)
452 printf("Can_Be_Wiped ");
Hashcodedabfd492013-08-29 22:45:30 -0700453 if (Part->Use_Rm_Rf)
454 printf("Use_Rm_Rf ");
Dees_Troya13d74f2013-03-24 08:54:55 -0500455 if (Part->Can_Be_Backed_Up)
456 printf("Can_Be_Backed_Up ");
Gary Peck004d48b2012-11-21 16:28:18 -0800457 if (Part->Wipe_During_Factory_Reset)
458 printf("Wipe_During_Factory_Reset ");
459 if (Part->Wipe_Available_in_GUI)
460 printf("Wipe_Available_in_GUI ");
461 if (Part->Is_SubPartition)
462 printf("Is_SubPartition ");
463 if (Part->Has_SubPartition)
464 printf("Has_SubPartition ");
465 if (Part->Removable)
466 printf("Removable ");
467 if (Part->Is_Present)
468 printf("IsPresent ");
469 if (Part->Can_Be_Encrypted)
470 printf("Can_Be_Encrypted ");
471 if (Part->Is_Encrypted)
472 printf("Is_Encrypted ");
473 if (Part->Is_Decrypted)
474 printf("Is_Decrypted ");
475 if (Part->Has_Data_Media)
476 printf("Has_Data_Media ");
Dees_Troy83bd4832013-05-04 12:39:56 +0000477 if (Part->Can_Encrypt_Backup)
478 printf("Can_Encrypt_Backup ");
479 if (Part->Use_Userdata_Encryption)
480 printf("Use_Userdata_Encryption ");
Gary Peck004d48b2012-11-21 16:28:18 -0800481 if (Part->Has_Android_Secure)
482 printf("Has_Android_Secure ");
483 if (Part->Is_Storage)
484 printf("Is_Storage ");
Dees_Troya13d74f2013-03-24 08:54:55 -0500485 if (Part->Is_Settings_Storage)
486 printf("Is_Settings_Storage ");
Dees_Troy68cab492012-12-12 19:29:35 +0000487 if (Part->Ignore_Blkid)
488 printf("Ignore_Blkid ");
Dees_Troy16c2b312013-01-15 16:51:18 +0000489 if (Part->Retain_Layout_Version)
490 printf("Retain_Layout_Version ");
Ethan Yonker253368a2014-11-25 15:00:52 -0600491 if (Part->Mount_To_Decrypt)
492 printf("Mount_To_Decrypt ");
Ethan Yonker96af84a2015-01-05 14:58:36 -0600493 if (Part->Can_Flash_Img)
494 printf("Can_Flash_Img ");
Ethan Yonker66a19492015-12-10 10:19:45 -0600495 if (Part->Is_Adopted_Storage)
496 printf("Is_Adopted_Storage ");
Ethan Yonker1b190162016-12-05 15:25:19 -0600497 if (Part->SlotSelect)
498 printf("SlotSelect ");
Ethan Yonker6e8c27a2016-12-22 17:55:57 -0600499 if (Part->Mount_Read_Only)
500 printf("Mount_Read_Only ");
Gary Peck004d48b2012-11-21 16:28:18 -0800501 printf("\n");
502 if (!Part->SubPartition_Of.empty())
503 printf(" SubPartition_Of: %s\n", Part->SubPartition_Of.c_str());
504 if (!Part->Symlink_Path.empty())
505 printf(" Symlink_Path: %s\n", Part->Symlink_Path.c_str());
506 if (!Part->Symlink_Mount_Point.empty())
507 printf(" Symlink_Mount_Point: %s\n", Part->Symlink_Mount_Point.c_str());
508 if (!Part->Primary_Block_Device.empty())
509 printf(" Primary_Block_Device: %s\n", Part->Primary_Block_Device.c_str());
510 if (!Part->Alternate_Block_Device.empty())
511 printf(" Alternate_Block_Device: %s\n", Part->Alternate_Block_Device.c_str());
512 if (!Part->Decrypted_Block_Device.empty())
513 printf(" Decrypted_Block_Device: %s\n", Part->Decrypted_Block_Device.c_str());
dianlujitao4879b372018-12-03 18:45:47 +0800514 if (!Part->Crypto_Key_Location.empty())
Ethan Yonker253368a2014-11-25 15:00:52 -0600515 printf(" Crypto_Key_Location: %s\n", Part->Crypto_Key_Location.c_str());
Gary Peck004d48b2012-11-21 16:28:18 -0800516 if (Part->Length != 0)
517 printf(" Length: %i\n", Part->Length);
518 if (!Part->Display_Name.empty())
519 printf(" Display_Name: %s\n", Part->Display_Name.c_str());
Dees_Troya13d74f2013-03-24 08:54:55 -0500520 if (!Part->Storage_Name.empty())
521 printf(" Storage_Name: %s\n", Part->Storage_Name.c_str());
Gary Peck004d48b2012-11-21 16:28:18 -0800522 if (!Part->Backup_Path.empty())
523 printf(" Backup_Path: %s\n", Part->Backup_Path.c_str());
524 if (!Part->Backup_Name.empty())
525 printf(" Backup_Name: %s\n", Part->Backup_Name.c_str());
Dees_Troya13d74f2013-03-24 08:54:55 -0500526 if (!Part->Backup_Display_Name.empty())
527 printf(" Backup_Display_Name: %s\n", Part->Backup_Display_Name.c_str());
Gary Peck004d48b2012-11-21 16:28:18 -0800528 if (!Part->Backup_FileName.empty())
529 printf(" Backup_FileName: %s\n", Part->Backup_FileName.c_str());
530 if (!Part->Storage_Path.empty())
531 printf(" Storage_Path: %s\n", Part->Storage_Path.c_str());
532 if (!Part->Current_File_System.empty())
533 printf(" Current_File_System: %s\n", Part->Current_File_System.c_str());
534 if (!Part->Fstab_File_System.empty())
535 printf(" Fstab_File_System: %s\n", Part->Fstab_File_System.c_str());
536 if (Part->Format_Block_Size != 0)
Ethan Yonkerc798c9c2015-10-09 11:15:26 -0500537 printf(" Format_Block_Size: %lu\n", Part->Format_Block_Size);
Dees_Troy094207a2012-09-26 12:00:39 -0400538 if (!Part->MTD_Name.empty())
539 printf(" MTD_Name: %s\n", Part->MTD_Name.c_str());
Matt Mower029a82d2017-01-08 13:12:38 -0600540 printf(" Backup_Method: %s\n", Part->Backup_Method_By_Name().c_str());
Hashcode62bd9e02013-11-19 21:59:42 -0800541 if (Part->Mount_Flags || !Part->Mount_Options.empty())
Ethan Yonker6e8c27a2016-12-22 17:55:57 -0600542 printf(" Mount_Flags: %i, Mount_Options: %s\n", Part->Mount_Flags, Part->Mount_Options.c_str());
Ethan Yonker726a0202014-12-16 20:01:38 -0600543 if (Part->MTP_Storage_ID)
544 printf(" MTP_Storage_ID: %i\n", Part->MTP_Storage_ID);
Ethan Yonker93382822018-11-01 15:25:31 -0500545 if (!Part->Key_Directory.empty())
546 printf(" Metadata Key Directory: %s\n", Part->Key_Directory.c_str());
Ethan Yonker6277c792014-09-15 14:54:30 -0500547 printf("\n");
Dees_Troy8170a922012-09-18 15:40:25 -0400548}
549
Dees_Troy51a0e822012-09-05 15:24:24 -0400550int TWPartitionManager::Mount_By_Path(string Path, bool Display_Error) {
Dees_Troy5bf43922012-09-07 16:07:55 -0400551 std::vector<TWPartition*>::iterator iter;
552 int ret = false;
553 bool found = false;
Dees_Troy38bd7602012-09-14 13:33:53 -0400554 string Local_Path = TWFunc::Get_Root_Path(Path);
Dees_Troy5bf43922012-09-07 16:07:55 -0400555
Captain Throwbackd54e1da2020-03-04 16:49:51 -0500556 if (Local_Path == "/tmp" || Local_Path == "/" || Local_Path == "/etc")
Dees_Troy43d8b002012-09-17 16:00:01 -0400557 return true;
558
Dees_Troy5bf43922012-09-07 16:07:55 -0400559 // Iterate through all partitions
560 for (iter = Partitions.begin(); iter != Partitions.end(); iter++) {
Dees_Troy657c3092012-09-10 20:32:10 -0400561 if ((*iter)->Mount_Point == Local_Path || (!(*iter)->Symlink_Mount_Point.empty() && (*iter)->Symlink_Mount_Point == Local_Path)) {
Dees_Troy5bf43922012-09-07 16:07:55 -0400562 ret = (*iter)->Mount(Display_Error);
563 found = true;
Dees_Troy51127312012-09-08 13:08:49 -0400564 } else if ((*iter)->Is_SubPartition && (*iter)->SubPartition_Of == Local_Path) {
Dees_Troy5bf43922012-09-07 16:07:55 -0400565 (*iter)->Mount(Display_Error);
Dees_Troy51127312012-09-08 13:08:49 -0400566 }
Dees_Troy5bf43922012-09-07 16:07:55 -0400567 }
568 if (found) {
569 return ret;
570 } else if (Display_Error) {
Ethan Yonker74db1572015-10-28 12:44:49 -0500571 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 -0400572 } else {
Dees_Troy2673cec2013-04-02 20:22:16 +0000573 LOGINFO("Mount: Unable to find partition for path '%s'\n", Local_Path.c_str());
Dees_Troy5bf43922012-09-07 16:07:55 -0400574 }
575 return false;
Dees_Troy51a0e822012-09-05 15:24:24 -0400576}
577
Dees_Troy51a0e822012-09-05 15:24:24 -0400578int TWPartitionManager::UnMount_By_Path(string Path, bool Display_Error) {
Dees_Troy51127312012-09-08 13:08:49 -0400579 std::vector<TWPartition*>::iterator iter;
580 int ret = false;
581 bool found = false;
Dees_Troy38bd7602012-09-14 13:33:53 -0400582 string Local_Path = TWFunc::Get_Root_Path(Path);
Dees_Troy51127312012-09-08 13:08:49 -0400583
584 // Iterate through all partitions
585 for (iter = Partitions.begin(); iter != Partitions.end(); iter++) {
Dees_Troy657c3092012-09-10 20:32:10 -0400586 if ((*iter)->Mount_Point == Local_Path || (!(*iter)->Symlink_Mount_Point.empty() && (*iter)->Symlink_Mount_Point == Local_Path)) {
Dees_Troy51127312012-09-08 13:08:49 -0400587 ret = (*iter)->UnMount(Display_Error);
588 found = true;
589 } else if ((*iter)->Is_SubPartition && (*iter)->SubPartition_Of == Local_Path) {
590 (*iter)->UnMount(Display_Error);
591 }
592 }
593 if (found) {
594 return ret;
595 } else if (Display_Error) {
Ethan Yonker74db1572015-10-28 12:44:49 -0500596 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 -0400597 } else {
Dees_Troy2673cec2013-04-02 20:22:16 +0000598 LOGINFO("UnMount: Unable to find partition for path '%s'\n", Local_Path.c_str());
Dees_Troy51127312012-09-08 13:08:49 -0400599 }
600 return false;
Dees_Troy51a0e822012-09-05 15:24:24 -0400601}
602
Dees_Troy51a0e822012-09-05 15:24:24 -0400603int TWPartitionManager::Is_Mounted_By_Path(string Path) {
Dees_Troy51127312012-09-08 13:08:49 -0400604 TWPartition* Part = Find_Partition_By_Path(Path);
605
606 if (Part)
607 return Part->Is_Mounted();
608 else
Dees_Troy2673cec2013-04-02 20:22:16 +0000609 LOGINFO("Is_Mounted: Unable to find partition for path '%s'\n", Path.c_str());
Dees_Troy51127312012-09-08 13:08:49 -0400610 return false;
Dees_Troy51a0e822012-09-05 15:24:24 -0400611}
612
Dees_Troy5bf43922012-09-07 16:07:55 -0400613int TWPartitionManager::Mount_Current_Storage(bool Display_Error) {
Dees_Troy51127312012-09-08 13:08:49 -0400614 string current_storage_path = DataManager::GetCurrentStoragePath();
615
616 if (Mount_By_Path(current_storage_path, Display_Error)) {
617 TWPartition* FreeStorage = Find_Partition_By_Path(current_storage_path);
618 if (FreeStorage)
619 DataManager::SetValue(TW_STORAGE_FREE_SIZE, (int)(FreeStorage->Free / 1048576LLU));
620 return true;
621 }
622 return false;
Dees_Troy51a0e822012-09-05 15:24:24 -0400623}
624
Dees_Troy5bf43922012-09-07 16:07:55 -0400625int TWPartitionManager::Mount_Settings_Storage(bool Display_Error) {
626 return Mount_By_Path(DataManager::GetSettingsStoragePath(), Display_Error);
627}
628
Ethan Yonker6e8c27a2016-12-22 17:55:57 -0600629TWPartition* TWPartitionManager::Find_Partition_By_Path(const string& Path) {
Dees_Troy5bf43922012-09-07 16:07:55 -0400630 std::vector<TWPartition*>::iterator iter;
Dees_Troy38bd7602012-09-14 13:33:53 -0400631 string Local_Path = TWFunc::Get_Root_Path(Path);
Dees_Troy5bf43922012-09-07 16:07:55 -0400632
dianlujitaob76a73a2020-04-30 20:33:20 +0800633 if (Local_Path == "/system")
634 Local_Path = Get_Android_Root_Path();
Dees_Troy5bf43922012-09-07 16:07:55 -0400635 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_Troy5bf43922012-09-07 16:07:55 -0400637 return (*iter);
638 }
Dees_Troy51a0e822012-09-05 15:24:24 -0400639 return NULL;
640}
641
Ethan Yonker6e8c27a2016-12-22 17:55:57 -0600642TWPartition* TWPartitionManager::Find_Partition_By_Block_Device(const string& Block_Device) {
643 std::vector<TWPartition*>::iterator iter;
644
645 for (iter = Partitions.begin(); iter != Partitions.end(); iter++) {
646 if ((*iter)->Primary_Block_Device == Block_Device || (!(*iter)->Actual_Block_Device.empty() && (*iter)->Actual_Block_Device == Block_Device))
647 return (*iter);
648 }
649 return NULL;
650}
651
Ethan Yonker53796e72019-01-11 22:49:52 -0600652int TWPartitionManager::Check_Backup_Name(const std::string& Backup_Name, bool Display_Error, bool Must_Be_Unique) {
Dees_Troyc9ff7a32012-09-27 10:09:41 -0400653 // Check the backup name to ensure that it is the correct size and contains only valid characters
654 // and that a backup with that name doesn't already exist
655 char backup_name[MAX_BACKUP_NAME_LEN];
656 char backup_loc[255], tw_image_dir[255];
657 int copy_size;
658 int index, cur_char;
Ethan Yonker53796e72019-01-11 22:49:52 -0600659 string Backup_Loc;
Dees_Troyc9ff7a32012-09-27 10:09:41 -0400660
Dees_Troyc9ff7a32012-09-27 10:09:41 -0400661 copy_size = Backup_Name.size();
662 // Check size
663 if (copy_size > MAX_BACKUP_NAME_LEN) {
664 if (Display_Error)
Ethan Yonker74db1572015-10-28 12:44:49 -0500665 gui_err("backup_name_len=Backup name is too long.");
Dees_Troyc9ff7a32012-09-27 10:09:41 -0400666 return -2;
667 }
668
669 // Check each character
670 strncpy(backup_name, Backup_Name.c_str(), copy_size);
Dees_Troya13d74f2013-03-24 08:54:55 -0500671 if (copy_size == 1 && strncmp(backup_name, "0", 1) == 0)
Dees_Troyc9ff7a32012-09-27 10:09:41 -0400672 return 0; // A "0" (zero) means to use the current timestamp for the backup name
673 for (index=0; index<copy_size; index++) {
674 cur_char = (int)backup_name[index];
Matt Mowerfb1c4ff2014-04-16 13:43:36 -0500675 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 -0400676 // These are valid characters
677 // Numbers
678 // Upper case letters
679 // Lower case letters
680 // Space
681 // and -_.{}[]
682 } else {
683 if (Display_Error)
Ethan Yonker4adc33e2016-01-22 16:07:11 -0600684 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 -0400685 return -3;
686 }
687 }
688
Ethan Yonker53796e72019-01-11 22:49:52 -0600689 if (Must_Be_Unique) {
690 // Check to make sure that a backup with this name doesn't already exist
691 DataManager::GetValue(TW_BACKUPS_FOLDER_VAR, Backup_Loc);
692 strcpy(backup_loc, Backup_Loc.c_str());
693 sprintf(tw_image_dir,"%s/%s", backup_loc, Backup_Name.c_str());
694 if (TWFunc::Path_Exists(tw_image_dir)) {
695 if (Display_Error)
696 gui_err("backup_name_exists=A backup with that name already exists!");
bigbiffce8f83c2015-12-12 18:30:21 -0500697
Ethan Yonker53796e72019-01-11 22:49:52 -0600698 return -4;
699 }
700 // Backup is unique
Dees_Troyc9ff7a32012-09-27 10:09:41 -0400701 }
Ethan Yonker53796e72019-01-11 22:49:52 -0600702 // No problems found
Dees_Troyc9ff7a32012-09-27 10:09:41 -0400703 return 0;
704}
705
bigbiffce8f83c2015-12-12 18:30:21 -0500706bool TWPartitionManager::Backup_Partition(PartitionSettings *part_settings) {
Dees_Troy43d8b002012-09-17 16:00:01 -0400707 time_t start, stop;
Matt Mower23d8aae2017-01-06 14:30:33 -0600708 int use_compression;
bigbiffce8f83c2015-12-12 18:30:21 -0500709 string backup_log = part_settings->Backup_Folder + "/recovery.log";
Dees_Troy43d8b002012-09-17 16:00:01 -0400710
bigbiffce8f83c2015-12-12 18:30:21 -0500711 if (part_settings->Part == NULL)
Dees_Troy43d8b002012-09-17 16:00:01 -0400712 return true;
713
Dees_Troy093b7642012-09-21 15:59:38 -0400714 DataManager::GetValue(TW_USE_COMPRESSION_VAR, use_compression);
Dees_Troy093b7642012-09-21 15:59:38 -0400715
Tom Hite5a926722014-09-15 01:31:03 +0000716 TWFunc::SetPerformanceMode(true);
Dees_Troy43d8b002012-09-17 16:00:01 -0400717 time(&start);
718
bigbiffce8f83c2015-12-12 18:30:21 -0500719 if (part_settings->Part->Backup(part_settings, &tar_fork_pid)) {
Ethan Yonkercd00a8b2017-07-06 10:23:30 -0500720 sync();
721 sync();
bigbiff bigbiff56cf5642016-08-19 17:43:45 -0400722 string Full_Filename = part_settings->Backup_Folder + "/" + part_settings->Part->Backup_FileName;
Ethan Yonkercd00a8b2017-07-06 10:23:30 -0500723 if (!part_settings->adbbackup && part_settings->generate_digest) {
724 if (!twrpDigestDriver::Make_Digest(Full_Filename))
725 goto backup_error;
bigbiff bigbiff56cf5642016-08-19 17:43:45 -0400726 }
bigbiff bigbiff8fd4b092016-08-30 20:48:53 -0400727
bigbiffce8f83c2015-12-12 18:30:21 -0500728 if (part_settings->Part->Has_SubPartition) {
Dees_Troy8170a922012-09-18 15:40:25 -0400729 std::vector<TWPartition*>::iterator subpart;
bigbiff bigbiff8fd4b092016-08-30 20:48:53 -0400730 TWPartition *parentPart = part_settings->Part;
Dees_Troy8170a922012-09-18 15:40:25 -0400731
732 for (subpart = Partitions.begin(); subpart != Partitions.end(); subpart++) {
bigbiff bigbiff8fd4b092016-08-30 20:48:53 -0400733 if ((*subpart)->Can_Be_Backed_Up && (*subpart)->Is_SubPartition && (*subpart)->SubPartition_Of == parentPart->Mount_Point) {
Ethan Yonkerdcf2b672016-09-13 14:41:53 -0500734 part_settings->Part = *subpart;
bigbiffce8f83c2015-12-12 18:30:21 -0500735 if (!(*subpart)->Backup(part_settings, &tar_fork_pid)) {
Ethan Yonkercd00a8b2017-07-06 10:23:30 -0500736 goto backup_error;
Tom Hite5a926722014-09-15 01:31:03 +0000737 }
Dees_Troy2727b992013-08-14 20:09:30 +0000738 sync();
739 sync();
bigbiff bigbifff5955b12019-05-18 17:28:58 -0400740 string Full_Filename = part_settings->Backup_Folder + "/" + part_settings->Part->Backup_FileName;
bigbiff bigbiff56cf5642016-08-19 17:43:45 -0400741 if (!part_settings->adbbackup && part_settings->generate_digest) {
742 if (!twrpDigestDriver::Make_Digest(Full_Filename)) {
Ethan Yonkercd00a8b2017-07-06 10:23:30 -0500743 goto backup_error;
bigbiffce8f83c2015-12-12 18:30:21 -0500744 }
Tom Hite5a926722014-09-15 01:31:03 +0000745 }
Dees_Troy8170a922012-09-18 15:40:25 -0400746 }
747 }
748 }
bigbiff bigbiff56cf5642016-08-19 17:43:45 -0400749
Dees_Troy43d8b002012-09-17 16:00:01 -0400750 time(&stop);
that203bcc92015-05-09 17:27:33 +0200751 int backup_time = (int) difftime(stop, start);
Dees_Troy2673cec2013-04-02 20:22:16 +0000752 LOGINFO("Partition Backup time: %d\n", backup_time);
bigbiff bigbiff8fd4b092016-08-30 20:48:53 -0400753
bigbiffce8f83c2015-12-12 18:30:21 -0500754 if (part_settings->Part->Backup_Method == BM_FILES) {
755 part_settings->file_time += backup_time;
Dees_Troy43d8b002012-09-17 16:00:01 -0400756 } else {
bigbiffce8f83c2015-12-12 18:30:21 -0500757 part_settings->img_time += backup_time;
758
Dees_Troy43d8b002012-09-17 16:00:01 -0400759 }
Tom Hite5a926722014-09-15 01:31:03 +0000760
Matt Mower02899552016-12-30 18:13:51 -0600761 TWFunc::SetPerformanceMode(false);
Ethan Yonkercd00a8b2017-07-06 10:23:30 -0500762 return true;
Dees_Troy43d8b002012-09-17 16:00:01 -0400763 }
Ethan Yonkercd00a8b2017-07-06 10:23:30 -0500764backup_error:
765 Clean_Backup_Folder(part_settings->Backup_Folder);
766 TWFunc::copy_file("/tmp/recovery.log", backup_log, 0644);
767 tw_set_default_metadata(backup_log.c_str());
768 TWFunc::SetPerformanceMode(false);
769 return false;
bigbiff7abc5fe2015-01-17 16:53:12 -0500770}
771
bigbiffbf1d6722015-02-14 16:25:59 -0500772void TWPartitionManager::Clean_Backup_Folder(string Backup_Folder) {
773 DIR *d = opendir(Backup_Folder.c_str());
774 struct dirent *p;
775 int r;
bigbiff bigbiff56cf5642016-08-19 17:43:45 -0400776 vector<string> ext;
777
778 //extensions we should delete when cleaning
779 ext.push_back("win");
780 ext.push_back("md5");
781 ext.push_back("sha2");
782 ext.push_back("info");
bigbiffbf1d6722015-02-14 16:25:59 -0500783
Ethan Yonker74db1572015-10-28 12:44:49 -0500784 gui_msg("backup_clean=Backup Failed. Cleaning Backup Folder.");
bigbiffbf1d6722015-02-14 16:25:59 -0500785
786 if (d == NULL) {
Ethan Yonker74db1572015-10-28 12:44:49 -0500787 gui_msg(Msg(msg::kError, "error_opening_strerr=Error opening: '{1}' ({2})")(Backup_Folder)(strerror(errno)));
bigbiffbf1d6722015-02-14 16:25:59 -0500788 return;
789 }
790
Matt Mower2b18a532015-02-20 16:58:05 -0600791 while ((p = readdir(d))) {
bigbiffbf1d6722015-02-14 16:25:59 -0500792 if (!strcmp(p->d_name, ".") || !strcmp(p->d_name, ".."))
793 continue;
794
Ethan Yonkere080c1f2016-09-19 13:50:25 -0500795 string path = Backup_Folder + "/" + p->d_name;
bigbiffbf1d6722015-02-14 16:25:59 -0500796
797 size_t dot = path.find_last_of(".") + 1;
bigbiff bigbiff56cf5642016-08-19 17:43:45 -0400798 for (vector<string>::const_iterator i = ext.begin(); i != ext.end(); ++i) {
799 if (path.substr(dot) == *i) {
800 r = unlink(path.c_str());
801 if (r != 0)
802 LOGINFO("Unable to unlink '%s: %s'\n", path.c_str(), strerror(errno));
bigbiffbf1d6722015-02-14 16:25:59 -0500803 }
804 }
805 }
806 closedir(d);
807}
808
Ethan Yonker472f5062016-02-25 13:47:30 -0600809int TWPartitionManager::Check_Backup_Cancel() {
810 return stop_backup.get_value();
811}
812
bigbiff7abc5fe2015-01-17 16:53:12 -0500813int TWPartitionManager::Cancel_Backup() {
814 string Backup_Folder, Backup_Name, Full_Backup_Path;
815
816 stop_backup.set_value(1);
817
818 if (tar_fork_pid != 0) {
819 DataManager::GetValue(TW_BACKUP_NAME, Backup_Name);
820 DataManager::GetValue(TW_BACKUPS_FOLDER_VAR, Backup_Folder);
Ethan Yonkere080c1f2016-09-19 13:50:25 -0500821 Full_Backup_Path = Backup_Folder + "/" + Backup_Name;
bigbiff7abc5fe2015-01-17 16:53:12 -0500822 LOGINFO("Killing pid: %d\n", tar_fork_pid);
823 kill(tar_fork_pid, SIGUSR2);
824 while (kill(tar_fork_pid, 0) == 0) {
825 usleep(1000);
826 }
827 LOGINFO("Backup_Run stopped and returning false, backup cancelled.\n");
828 LOGINFO("Removing directory %s\n", Full_Backup_Path.c_str());
829 TWFunc::removeDir(Full_Backup_Path, false);
830 tar_fork_pid = 0;
831 }
832
833 return 0;
Dees_Troy43d8b002012-09-17 16:00:01 -0400834}
835
bigbiffce8f83c2015-12-12 18:30:21 -0500836int TWPartitionManager::Run_Backup(bool adbbackup) {
837 PartitionSettings part_settings;
bigbiff bigbiff56cf5642016-08-19 17:43:45 -0400838 int partition_count = 0, disable_free_space_check = 0, skip_digest = 0;
bigbiffce8f83c2015-12-12 18:30:21 -0500839 string Backup_Name, Backup_List, backup_path;
Matt Mower23d8aae2017-01-06 14:30:33 -0600840 unsigned long long total_bytes = 0, free_space = 0;
Dees_Troy43d8b002012-09-17 16:00:01 -0400841 TWPartition* storage = NULL;
Dees_Troy8170a922012-09-18 15:40:25 -0400842 std::vector<TWPartition*>::iterator subpart;
Dees_Troy43d8b002012-09-17 16:00:01 -0400843 struct tm *t;
Matt Mower23d8aae2017-01-06 14:30:33 -0600844 time_t seconds, total_start, total_stop;
Dees_Troya13d74f2013-03-24 08:54:55 -0500845 size_t start_pos = 0, end_pos = 0;
bigbiff7abc5fe2015-01-17 16:53:12 -0500846 stop_backup.set_value(0);
Dees_Troy43d8b002012-09-17 16:00:01 -0400847 seconds = time(0);
Matt Mowerfb1c4ff2014-04-16 13:43:36 -0500848 t = localtime(&seconds);
Dees_Troy43d8b002012-09-17 16:00:01 -0400849
bigbiffce8f83c2015-12-12 18:30:21 -0500850 part_settings.img_bytes_remaining = 0;
851 part_settings.file_bytes_remaining = 0;
852 part_settings.img_time = 0;
853 part_settings.file_time = 0;
854 part_settings.img_bytes = 0;
855 part_settings.file_bytes = 0;
856 part_settings.PM_Method = PM_BACKUP;
857
bigbiffce8f83c2015-12-12 18:30:21 -0500858 part_settings.adbbackup = adbbackup;
Dees_Troy43d8b002012-09-17 16:00:01 -0400859 time(&total_start);
860
861 Update_System_Details();
862
863 if (!Mount_Current_Storage(true))
864 return false;
865
bigbiff bigbiff56cf5642016-08-19 17:43:45 -0400866 DataManager::GetValue(TW_SKIP_DIGEST_GENERATE_VAR, skip_digest);
867 if (skip_digest == 0)
868 part_settings.generate_digest = true;
Dees_Troyc5865ab2012-09-24 15:08:04 -0400869 else
bigbiff bigbiff56cf5642016-08-19 17:43:45 -0400870 part_settings.generate_digest = false;
Dees_Troy4a2a1262012-09-18 09:33:47 -0400871
bigbiffce8f83c2015-12-12 18:30:21 -0500872 DataManager::GetValue(TW_BACKUPS_FOLDER_VAR, part_settings.Backup_Folder);
Ethan Yonkerdcf2b672016-09-13 14:41:53 -0500873 DataManager::GetValue(TW_BACKUP_NAME, Backup_Name);
874 if (Backup_Name == gui_lookup("curr_date", "(Current Date)")) {
875 Backup_Name = TWFunc::Get_Current_Date();
876 } else if (Backup_Name == gui_lookup("auto_generate", "(Auto Generate)") || Backup_Name == "0" || Backup_Name.empty()) {
Dees Troyb21cc642013-09-10 17:36:41 +0000877 TWFunc::Auto_Generate_Backup_Name();
Ethan Yonkerdcf2b672016-09-13 14:41:53 -0500878 DataManager::GetValue(TW_BACKUP_NAME, Backup_Name);
Dees_Troy43d8b002012-09-17 16:00:01 -0400879 }
bigbiffce8f83c2015-12-12 18:30:21 -0500880
Ethan Yonkerdcf2b672016-09-13 14:41:53 -0500881 LOGINFO("Backup Name is: '%s'\n", Backup_Name.c_str());
Ethan Yonkere080c1f2016-09-19 13:50:25 -0500882 part_settings.Backup_Folder = part_settings.Backup_Folder + "/" + Backup_Name;
bigbiffce8f83c2015-12-12 18:30:21 -0500883
Ethan Yonkere080c1f2016-09-19 13:50:25 -0500884 LOGINFO("Backup_Folder is: '%s'\n", part_settings.Backup_Folder.c_str());
Dees_Troy43d8b002012-09-17 16:00:01 -0400885
Dees_Troy2673cec2013-04-02 20:22:16 +0000886 LOGINFO("Calculating backup details...\n");
Dees_Troya13d74f2013-03-24 08:54:55 -0500887 DataManager::GetValue("tw_backup_list", Backup_List);
888 if (!Backup_List.empty()) {
889 end_pos = Backup_List.find(";", start_pos);
890 while (end_pos != string::npos && start_pos < Backup_List.size()) {
891 backup_path = Backup_List.substr(start_pos, end_pos - start_pos);
bigbiffce8f83c2015-12-12 18:30:21 -0500892 part_settings.Part = Find_Partition_By_Path(backup_path);
893 if (part_settings.Part != NULL) {
Dees_Troya13d74f2013-03-24 08:54:55 -0500894 partition_count++;
bigbiffce8f83c2015-12-12 18:30:21 -0500895 if (part_settings.Part->Backup_Method == BM_FILES)
896 part_settings.file_bytes += part_settings.Part->Backup_Size;
Dees_Troya13d74f2013-03-24 08:54:55 -0500897 else
bigbiffce8f83c2015-12-12 18:30:21 -0500898 part_settings.img_bytes += part_settings.Part->Backup_Size;
899 if (part_settings.Part->Has_SubPartition) {
Dees_Troya13d74f2013-03-24 08:54:55 -0500900 std::vector<TWPartition*>::iterator subpart;
901
902 for (subpart = Partitions.begin(); subpart != Partitions.end(); subpart++) {
bigbiffce8f83c2015-12-12 18:30:21 -0500903 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 -0500904 partition_count++;
bigbiffce8f83c2015-12-12 18:30:21 -0500905 if ((*subpart)->Backup_Method == BM_FILES)
906 part_settings.file_bytes += (*subpart)->Backup_Size;
Dees_Troya13d74f2013-03-24 08:54:55 -0500907 else
bigbiffce8f83c2015-12-12 18:30:21 -0500908 part_settings.img_bytes += (*subpart)->Backup_Size;
Dees_Troya13d74f2013-03-24 08:54:55 -0500909 }
910 }
Dees_Troy8170a922012-09-18 15:40:25 -0400911 }
Dees_Troya13d74f2013-03-24 08:54:55 -0500912 } else {
Ethan Yonker74db1572015-10-28 12:44:49 -0500913 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 -0400914 }
Dees_Troya13d74f2013-03-24 08:54:55 -0500915 start_pos = end_pos + 1;
916 end_pos = Backup_List.find(";", start_pos);
Dees_Troy43d8b002012-09-17 16:00:01 -0400917 }
918 }
Dees_Troy43d8b002012-09-17 16:00:01 -0400919
920 if (partition_count == 0) {
Ethan Yonker74db1572015-10-28 12:44:49 -0500921 gui_msg("no_partition_selected=No partitions selected for backup.");
Dees_Troy43d8b002012-09-17 16:00:01 -0400922 return false;
923 }
bigbiffce8f83c2015-12-12 18:30:21 -0500924 if (adbbackup) {
925 if (twadbbu::Write_ADB_Stream_Header(partition_count) == false) {
926 return false;
927 }
928 }
929 total_bytes = part_settings.file_bytes + part_settings.img_bytes;
Ethan Yonker472f5062016-02-25 13:47:30 -0600930 ProgressTracking progress(total_bytes);
bigbiffce8f83c2015-12-12 18:30:21 -0500931 part_settings.progress = &progress;
932
Ethan Yonker74db1572015-10-28 12:44:49 -0500933 gui_msg(Msg("total_partitions_backup= * Total number of partitions to back up: {1}")(partition_count));
934 gui_msg(Msg("total_backup_size= * Total size of all data: {1}MB")(total_bytes / 1024 / 1024));
Dees_Troy43d8b002012-09-17 16:00:01 -0400935 storage = Find_Partition_By_Path(DataManager::GetCurrentStoragePath());
936 if (storage != NULL) {
937 free_space = storage->Free;
Ethan Yonker74db1572015-10-28 12:44:49 -0500938 gui_msg(Msg("available_space= * Available space: {1}MB")(free_space / 1024 / 1024));
Dees_Troy43d8b002012-09-17 16:00:01 -0400939 } else {
Ethan Yonker74db1572015-10-28 12:44:49 -0500940 gui_err("unable_locate_storage=Unable to locate storage device.");
Dees_Troy43d8b002012-09-17 16:00:01 -0400941 return false;
942 }
bigbiffbf1d6722015-02-14 16:25:59 -0500943
Matt Mowerbfccfb82016-04-25 23:22:31 -0500944 DataManager::GetValue(TW_DISABLE_FREE_SPACE_VAR, disable_free_space_check);
bigbiffce8f83c2015-12-12 18:30:21 -0500945
946 if (adbbackup)
947 disable_free_space_check = true;
948
bigbiffbf1d6722015-02-14 16:25:59 -0500949 if (!disable_free_space_check) {
950 if (free_space - (32 * 1024 * 1024) < total_bytes) {
951 // We require an extra 32MB just in case
Ethan Yonker74db1572015-10-28 12:44:49 -0500952 gui_err("no_space=Not enough free space on storage.");
bigbiffbf1d6722015-02-14 16:25:59 -0500953 return false;
954 }
Dees_Troy43d8b002012-09-17 16:00:01 -0400955 }
bigbiffce8f83c2015-12-12 18:30:21 -0500956 part_settings.img_bytes_remaining = part_settings.img_bytes;
957 part_settings.file_bytes_remaining = part_settings.file_bytes;
Dees_Troy43d8b002012-09-17 16:00:01 -0400958
Ethan Yonker74db1572015-10-28 12:44:49 -0500959 gui_msg("backup_started=[BACKUP STARTED]");
bigbiff bigbiffcdd97c72019-03-29 19:12:33 -0400960
961 int is_decrypted = 0;
962 int is_encrypted = 0;
963
964 DataManager::GetValue(TW_IS_DECRYPTED, is_decrypted);
965 DataManager::GetValue(TW_IS_ENCRYPTED, is_encrypted);
966 if (!adbbackup || (!is_encrypted || (is_encrypted && is_decrypted))) {
967 gui_msg(Msg("backup_folder= * Backup Folder: {1}")(part_settings.Backup_Folder));
968 if (!TWFunc::Recursive_Mkdir(part_settings.Backup_Folder)) {
969 gui_err("fail_backup_folder=Failed to make backup folder.");
970 return false;
971 }
Dees_Troyd4b22b02013-01-18 17:17:58 +0000972 }
973
Dees_Troy2673cec2013-04-02 20:22:16 +0000974 DataManager::SetProgress(0.0);
Dees_Troy093b7642012-09-21 15:59:38 -0400975
Dees_Troya13d74f2013-03-24 08:54:55 -0500976 start_pos = 0;
977 end_pos = Backup_List.find(";", start_pos);
978 while (end_pos != string::npos && start_pos < Backup_List.size()) {
bigbiff7abc5fe2015-01-17 16:53:12 -0500979 if (stop_backup.get_value() != 0)
980 return -1;
Dees_Troya13d74f2013-03-24 08:54:55 -0500981 backup_path = Backup_List.substr(start_pos, end_pos - start_pos);
bigbiffce8f83c2015-12-12 18:30:21 -0500982 part_settings.Part = Find_Partition_By_Path(backup_path);
983 if (part_settings.Part != NULL) {
984 if (!Backup_Partition(&part_settings))
Dees_Troya13d74f2013-03-24 08:54:55 -0500985 return false;
986 } else {
Ethan Yonker74db1572015-10-28 12:44:49 -0500987 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 -0500988 }
989 start_pos = end_pos + 1;
990 end_pos = Backup_List.find(";", start_pos);
991 }
Dees_Troy43d8b002012-09-17 16:00:01 -0400992
993 // Average BPS
bigbiffce8f83c2015-12-12 18:30:21 -0500994 if (part_settings.img_time == 0)
995 part_settings.img_time = 1;
996 if (part_settings.file_time == 0)
997 part_settings.file_time = 1;
998 int img_bps = (int)part_settings.img_bytes / (int)part_settings.img_time;
999 unsigned long long file_bps = part_settings.file_bytes / (int)part_settings.file_time;
Dees_Troy43d8b002012-09-17 16:00:01 -04001000
bigbiffce8f83c2015-12-12 18:30:21 -05001001 if (part_settings.file_bytes != 0)
Ethan Yonker472f5062016-02-25 13:47:30 -06001002 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 -05001003 if (part_settings.img_bytes != 0)
Ethan Yonker472f5062016-02-25 13:47:30 -06001004 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 -04001005
1006 time(&total_stop);
1007 int total_time = (int) difftime(total_stop, total_start);
bigbiffce8f83c2015-12-12 18:30:21 -05001008
1009 uint64_t actual_backup_size;
Ethan Yonker3fdcda42016-11-30 12:29:37 -06001010 if (!adbbackup) {
1011 TWExclude twe;
1012 actual_backup_size = twe.Get_Folder_Size(part_settings.Backup_Folder);
1013 } else
bigbiffce8f83c2015-12-12 18:30:21 -05001014 actual_backup_size = part_settings.file_bytes + part_settings.img_bytes;
Matt Mowerfb1c4ff2014-04-16 13:43:36 -05001015 actual_backup_size /= (1024LLU * 1024LLU);
Dees_Troy43d8b002012-09-17 16:00:01 -04001016
bigbiffce8f83c2015-12-12 18:30:21 -05001017 int prev_img_bps = 0, use_compression = 0;
1018 unsigned long long prev_file_bps = 0;
Matt Mower173cdb92016-12-31 02:49:19 -06001019 DataManager::GetValue(TW_BACKUP_AVG_IMG_RATE, prev_img_bps);
Dees_Troy093b7642012-09-21 15:59:38 -04001020 img_bps += (prev_img_bps * 4);
Matt Mowerfb1c4ff2014-04-16 13:43:36 -05001021 img_bps /= 5;
Dees_Troy093b7642012-09-21 15:59:38 -04001022
Matt Mowerfb1c4ff2014-04-16 13:43:36 -05001023 DataManager::GetValue(TW_USE_COMPRESSION_VAR, use_compression);
Dees_Troy093b7642012-09-21 15:59:38 -04001024 if (use_compression)
1025 DataManager::GetValue(TW_BACKUP_AVG_FILE_COMP_RATE, prev_file_bps);
Matt Mowerfb1c4ff2014-04-16 13:43:36 -05001026 else
Dees_Troy093b7642012-09-21 15:59:38 -04001027 DataManager::GetValue(TW_BACKUP_AVG_FILE_RATE, prev_file_bps);
1028 file_bps += (prev_file_bps * 4);
Matt Mowerfb1c4ff2014-04-16 13:43:36 -05001029 file_bps /= 5;
Dees_Troy093b7642012-09-21 15:59:38 -04001030
Matt Mowerfb1c4ff2014-04-16 13:43:36 -05001031 DataManager::SetValue(TW_BACKUP_AVG_IMG_RATE, img_bps);
Dees_Troy093b7642012-09-21 15:59:38 -04001032 if (use_compression)
1033 DataManager::SetValue(TW_BACKUP_AVG_FILE_COMP_RATE, file_bps);
1034 else
1035 DataManager::SetValue(TW_BACKUP_AVG_FILE_RATE, file_bps);
1036
Ethan Yonker74db1572015-10-28 12:44:49 -05001037 gui_msg(Msg("total_backed_size=[{1} MB TOTAL BACKED UP]")(actual_backup_size));
Dees_Troy43d8b002012-09-17 16:00:01 -04001038 Update_System_Details();
Dees_Troyd0384ef2012-10-12 12:15:42 -04001039 UnMount_Main_Partitions();
Ethan Yonker56db1c42015-12-20 22:49:00 -06001040 gui_msg(Msg(msg::kHighlight, "backup_completed=[BACKUP COMPLETED IN {1} SECONDS]")(total_time)); // the end
Ethan Yonkere080c1f2016-09-19 13:50:25 -05001041 string backup_log = part_settings.Backup_Folder + "/recovery.log";
Dees_Troy3f5c4e82013-02-01 15:16:59 +00001042 TWFunc::copy_file("/tmp/recovery.log", backup_log, 0644);
Ethan Yonker4b94cfd2014-12-11 10:00:45 -06001043 tw_set_default_metadata(backup_log.c_str());
bigbiffce8f83c2015-12-12 18:30:21 -05001044
1045 if (part_settings.adbbackup) {
1046 if (twadbbu::Write_ADB_Stream_Trailer() == false) {
1047 return false;
1048 }
1049 }
1050 part_settings.adbbackup = false;
1051 DataManager::SetValue("tw_enable_adb_backup", 0);
1052
Dees_Troy3f5c4e82013-02-01 15:16:59 +00001053 return true;
Dees_Troy51a0e822012-09-05 15:24:24 -04001054}
1055
bigbiffce8f83c2015-12-12 18:30:21 -05001056bool TWPartitionManager::Restore_Partition(PartitionSettings *part_settings) {
Dees_Troy4a2a1262012-09-18 09:33:47 -04001057 time_t Start, Stop;
bigbiffce8f83c2015-12-12 18:30:21 -05001058
bigbiff bigbiffb5ecaad2017-03-20 18:53:53 -04001059 if (part_settings->adbbackup) {
bigbiff bigbiff19fb79c2016-09-05 21:04:51 -04001060 std::string partName = part_settings->Part->Backup_Name + "." + part_settings->Part->Current_File_System + ".win";
1061 LOGINFO("setting backup name: %s\n", partName.c_str());
bigbiff bigbiffb5ecaad2017-03-20 18:53:53 -04001062 part_settings->Part->Set_Backup_FileName(part_settings->Part->Backup_Name + "." + part_settings->Part->Current_File_System + ".win");
1063 }
1064
Tom Hite5a926722014-09-15 01:31:03 +00001065 TWFunc::SetPerformanceMode(true);
bigbiffce8f83c2015-12-12 18:30:21 -05001066
Dees_Troy4a2a1262012-09-18 09:33:47 -04001067 time(&Start);
Ethan Yonker472f5062016-02-25 13:47:30 -06001068
bigbiffce8f83c2015-12-12 18:30:21 -05001069 if (!part_settings->Part->Restore(part_settings)) {
Tom Hite5a926722014-09-15 01:31:03 +00001070 TWFunc::SetPerformanceMode(false);
Dees_Troy4a2a1262012-09-18 09:33:47 -04001071 return false;
Tom Hite5a926722014-09-15 01:31:03 +00001072 }
bigbiff bigbiff19fb79c2016-09-05 21:04:51 -04001073 if (part_settings->Part->Has_SubPartition && !part_settings->adbbackup) {
Dees_Troy8170a922012-09-18 15:40:25 -04001074 std::vector<TWPartition*>::iterator subpart;
bigbiff bigbiff8fd4b092016-08-30 20:48:53 -04001075 TWPartition *parentPart = part_settings->Part;
Dees_Troy8170a922012-09-18 15:40:25 -04001076
1077 for (subpart = Partitions.begin(); subpart != Partitions.end(); subpart++) {
bigbiff bigbiff8fd4b092016-08-30 20:48:53 -04001078 part_settings->Part = *subpart;
1079 if ((*subpart)->Is_SubPartition && (*subpart)->SubPartition_Of == parentPart->Mount_Point) {
1080 part_settings->Part = (*subpart);
bigbiff bigbiff19fb79c2016-09-05 21:04:51 -04001081 part_settings->Part->Set_Backup_FileName(part_settings->Part->Backup_Name + "." + part_settings->Part->Current_File_System + ".win");
bigbiffce8f83c2015-12-12 18:30:21 -05001082 if (!(*subpart)->Restore(part_settings)) {
Tom Hite5a926722014-09-15 01:31:03 +00001083 TWFunc::SetPerformanceMode(false);
Dees_Troy8170a922012-09-18 15:40:25 -04001084 return false;
Tom Hite5a926722014-09-15 01:31:03 +00001085 }
Dees_Troy8170a922012-09-18 15:40:25 -04001086 }
1087 }
1088 }
Dees_Troy4a2a1262012-09-18 09:33:47 -04001089 time(&Stop);
Tom Hite5a926722014-09-15 01:31:03 +00001090 TWFunc::SetPerformanceMode(false);
bigbiffce8f83c2015-12-12 18:30:21 -05001091 gui_msg(Msg("restore_part_done=[{1} done ({2} seconds)]")(part_settings->Part->Backup_Display_Name)((int)difftime(Stop, Start)));
1092
Dees_Troy4a2a1262012-09-18 09:33:47 -04001093 return true;
1094}
1095
Ethan Yonker472f5062016-02-25 13:47:30 -06001096int TWPartitionManager::Run_Restore(const string& Restore_Name) {
bigbiffce8f83c2015-12-12 18:30:21 -05001097 PartitionSettings part_settings;
bigbiff bigbiff56cf5642016-08-19 17:43:45 -04001098 int check_digest;
bigbiffce8f83c2015-12-12 18:30:21 -05001099
Dees_Troy4a2a1262012-09-18 09:33:47 -04001100 time_t rStart, rStop;
1101 time(&rStart);
Dees_Troya13d74f2013-03-24 08:54:55 -05001102 string Restore_List, restore_path;
1103 size_t start_pos = 0, end_pos;
bigbiffce8f83c2015-12-12 18:30:21 -05001104
Ethan Yonkerdcf2b672016-09-13 14:41:53 -05001105 part_settings.Backup_Folder = Restore_Name;
bigbiffce8f83c2015-12-12 18:30:21 -05001106 part_settings.Part = NULL;
1107 part_settings.partition_count = 0;
1108 part_settings.total_restore_size = 0;
1109 part_settings.adbbackup = false;
1110 part_settings.PM_Method = PM_RESTORE;
Dees_Troy43d8b002012-09-17 16:00:01 -04001111
Ethan Yonker74db1572015-10-28 12:44:49 -05001112 gui_msg("restore_started=[RESTORE STARTED]");
1113 gui_msg(Msg("restore_folder=Restore folder: '{1}'")(Restore_Name));
Dees_Troy43d8b002012-09-17 16:00:01 -04001114
Dees_Troy4a2a1262012-09-18 09:33:47 -04001115 if (!Mount_Current_Storage(true))
1116 return false;
1117
bigbiff bigbiff56cf5642016-08-19 17:43:45 -04001118 DataManager::GetValue(TW_SKIP_DIGEST_CHECK_VAR, check_digest);
1119 if (check_digest > 0) {
1120 // Check Digest files first before restoring to ensure that all of them match before starting a restore
1121 TWFunc::GUI_Operation_Text(TW_VERIFY_DIGEST_TEXT, gui_parse_text("{@verifying_digest}"));
1122 gui_msg("verifying_digest=Verifying Digest");
Dees_Troya13d74f2013-03-24 08:54:55 -05001123 } else {
bigbiff bigbiff56cf5642016-08-19 17:43:45 -04001124 gui_msg("skip_digest=Skipping Digest check based on user setting.");
Dees_Troya13d74f2013-03-24 08:54:55 -05001125 }
Ethan Yonker74db1572015-10-28 12:44:49 -05001126 gui_msg("calc_restore=Calculating restore details...");
Dees_Troya13d74f2013-03-24 08:54:55 -05001127 DataManager::GetValue("tw_restore_selected", Restore_List);
bigbiffce8f83c2015-12-12 18:30:21 -05001128
Dees_Troya13d74f2013-03-24 08:54:55 -05001129 if (!Restore_List.empty()) {
1130 end_pos = Restore_List.find(";", start_pos);
1131 while (end_pos != string::npos && start_pos < Restore_List.size()) {
1132 restore_path = Restore_List.substr(start_pos, end_pos - start_pos);
bigbiffce8f83c2015-12-12 18:30:21 -05001133 part_settings.Part = Find_Partition_By_Path(restore_path);
1134 if (part_settings.Part != NULL) {
bigbiffce8f83c2015-12-12 18:30:21 -05001135 if (part_settings.Part->Mount_Read_Only) {
1136 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 -05001137 return false;
1138 }
bigbiffce8f83c2015-12-12 18:30:21 -05001139
bigbiff bigbiff56cf5642016-08-19 17:43:45 -04001140 string Full_Filename = part_settings.Backup_Folder + "/" + part_settings.Part->Backup_FileName;
1141
bigbiff35d2bfd2021-01-23 14:08:03 -05001142 if (tw_get_default_metadata(Get_Android_Root_Path().c_str()) != 0) {
1143 gui_msg(Msg(msg::kWarning, "restore_system_context=Unable to get default context for {1} -- Android may not boot.")(Get_Android_Root_Path()));
1144 }
1145
bigbiff bigbiff56cf5642016-08-19 17:43:45 -04001146 if (check_digest > 0 && !twrpDigestDriver::Check_Digest(Full_Filename))
Dees_Troya13d74f2013-03-24 08:54:55 -05001147 return false;
bigbiffce8f83c2015-12-12 18:30:21 -05001148 part_settings.partition_count++;
1149 part_settings.total_restore_size += part_settings.Part->Get_Restore_Size(&part_settings);
1150 if (part_settings.Part->Has_SubPartition) {
bigbiff bigbiff8fd4b092016-08-30 20:48:53 -04001151 TWPartition *parentPart = part_settings.Part;
Dees_Troya13d74f2013-03-24 08:54:55 -05001152 std::vector<TWPartition*>::iterator subpart;
1153
1154 for (subpart = Partitions.begin(); subpart != Partitions.end(); subpart++) {
bigbiff bigbiff8fd4b092016-08-30 20:48:53 -04001155 part_settings.Part = *subpart;
1156 if ((*subpart)->Is_SubPartition && (*subpart)->SubPartition_Of == parentPart->Mount_Point) {
bigbiff bigbiff56cf5642016-08-19 17:43:45 -04001157 if (check_digest > 0 && !twrpDigestDriver::Check_Digest(Full_Filename))
Dees_Troya13d74f2013-03-24 08:54:55 -05001158 return false;
bigbiffce8f83c2015-12-12 18:30:21 -05001159 part_settings.total_restore_size += (*subpart)->Get_Restore_Size(&part_settings);
Dees_Troya13d74f2013-03-24 08:54:55 -05001160 }
1161 }
1162 }
1163 } else {
Ethan Yonker74db1572015-10-28 12:44:49 -05001164 gui_msg(Msg(msg::kError, "restore_unable_locate=Unable to locate '{1}' partition for restoring.")(restore_path));
Dees_Troya13d74f2013-03-24 08:54:55 -05001165 }
1166 start_pos = end_pos + 1;
1167 end_pos = Restore_List.find(";", start_pos);
Dees_Troy4a2a1262012-09-18 09:33:47 -04001168 }
Dees_Troy4a2a1262012-09-18 09:33:47 -04001169 }
Dees_Troy4a2a1262012-09-18 09:33:47 -04001170
bigbiffce8f83c2015-12-12 18:30:21 -05001171 if (part_settings.partition_count == 0) {
Ethan Yonker74db1572015-10-28 12:44:49 -05001172 gui_err("no_part_restore=No partitions selected for restore.");
Dees_Troy4a2a1262012-09-18 09:33:47 -04001173 return false;
1174 }
1175
bigbiffce8f83c2015-12-12 18:30:21 -05001176 gui_msg(Msg("restore_part_count=Restoring {1} partitions...")(part_settings.partition_count));
1177 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 +00001178 DataManager::SetProgress(0.0);
bigbiffce8f83c2015-12-12 18:30:21 -05001179 ProgressTracking progress(part_settings.total_restore_size);
1180 part_settings.progress = &progress;
Ethan Yonker1b7a31b2014-07-03 15:09:22 -05001181
Dees_Troya13d74f2013-03-24 08:54:55 -05001182 start_pos = 0;
1183 if (!Restore_List.empty()) {
1184 end_pos = Restore_List.find(";", start_pos);
1185 while (end_pos != string::npos && start_pos < Restore_List.size()) {
1186 restore_path = Restore_List.substr(start_pos, end_pos - start_pos);
bigbiffce8f83c2015-12-12 18:30:21 -05001187
1188 part_settings.Part = Find_Partition_By_Path(restore_path);
1189 if (part_settings.Part != NULL) {
1190 part_settings.partition_count++;
bigbiffce8f83c2015-12-12 18:30:21 -05001191 if (!Restore_Partition(&part_settings))
Dees_Troya13d74f2013-03-24 08:54:55 -05001192 return false;
1193 } else {
Ethan Yonker74db1572015-10-28 12:44:49 -05001194 gui_msg(Msg(msg::kError, "restore_unable_locate=Unable to locate '{1}' partition for restoring.")(restore_path));
Dees_Troya13d74f2013-03-24 08:54:55 -05001195 }
1196 start_pos = end_pos + 1;
1197 end_pos = Restore_List.find(";", start_pos);
1198 }
1199 }
Ethan Yonker74db1572015-10-28 12:44:49 -05001200 TWFunc::GUI_Operation_Text(TW_UPDATE_SYSTEM_DETAILS_TEXT, gui_parse_text("{@updating_system_details}"));
bigbiff35d2bfd2021-01-23 14:08:03 -05001201 tw_set_default_metadata(Get_Android_Root_Path().c_str());
Captain Throwback9d6feb52018-07-27 10:05:24 -04001202 UnMount_By_Path(Get_Android_Root_Path(), false);
Dees_Troy43d8b002012-09-17 16:00:01 -04001203 Update_System_Details();
Dees_Troyd0384ef2012-10-12 12:15:42 -04001204 UnMount_Main_Partitions();
Dees_Troy4a2a1262012-09-18 09:33:47 -04001205 time(&rStop);
Matt Mower3c366972015-12-25 19:28:31 -06001206 gui_msg(Msg(msg::kHighlight, "restore_completed=[RESTORE COMPLETED IN {1} SECONDS]")((int)difftime(rStop,rStart)));
Ethan Yonker1b7a31b2014-07-03 15:09:22 -05001207 DataManager::SetValue("tw_file_progress", "");
bigbiffce8f83c2015-12-12 18:30:21 -05001208
Dees_Troy63c8df72012-09-10 14:02:05 -04001209 return true;
Dees_Troy51a0e822012-09-05 15:24:24 -04001210}
1211
1212void TWPartitionManager::Set_Restore_Files(string Restore_Name) {
Dees_Troy63c8df72012-09-10 14:02:05 -04001213 // Start with the default values
Dees_Troya13d74f2013-03-24 08:54:55 -05001214 string Restore_List;
Dees_Troy83bd4832013-05-04 12:39:56 +00001215 bool get_date = true, check_encryption = true;
bigbiff bigbiff19fb79c2016-09-05 21:04:51 -04001216 bool adbbackup = false;
Dees_Troy83bd4832013-05-04 12:39:56 +00001217
1218 DataManager::SetValue("tw_restore_encrypted", 0);
bigbiff bigbiff19fb79c2016-09-05 21:04:51 -04001219 if (twadbbu::Check_ADB_Backup_File(Restore_Name)) {
1220 vector<string> adb_files;
1221 adb_files = twadbbu::Get_ADB_Backup_Files(Restore_Name);
1222 for (unsigned int i = 0; i < adb_files.size(); ++i) {
1223 string adb_restore_file = adb_files.at(i);
1224 std::size_t pos = adb_restore_file.find_first_of(".");
1225 std::string path = "/" + adb_restore_file.substr(0, pos);
1226 Restore_List = path + ";";
1227 TWPartition* Part = Find_Partition_By_Path(path);
1228 Part->Backup_FileName = TWFunc::Get_Filename(adb_restore_file);
1229 adbbackup = true;
1230 }
1231 DataManager::SetValue("tw_enable_adb_backup", 1);
Dees_Troy63c8df72012-09-10 14:02:05 -04001232 }
bigbiff bigbiff19fb79c2016-09-05 21:04:51 -04001233 else {
1234 DIR* d;
1235 d = opendir(Restore_Name.c_str());
1236 if (d == NULL)
Dees_Troy63c8df72012-09-10 14:02:05 -04001237 {
bigbiff bigbiff19fb79c2016-09-05 21:04:51 -04001238 gui_msg(Msg(msg::kError, "error_opening_strerr=Error opening: '{1}' ({2})")(Restore_Name)(strerror(errno)));
1239 return;
Dees_Troy63c8df72012-09-10 14:02:05 -04001240 }
bigbiff bigbiff19fb79c2016-09-05 21:04:51 -04001241
1242 struct dirent* de;
1243 while ((de = readdir(d)) != NULL)
Dees_Troy63c8df72012-09-10 14:02:05 -04001244 {
bigbiff bigbiff19fb79c2016-09-05 21:04:51 -04001245 // Strip off three components
1246 char str[256];
1247 char* label;
1248 char* fstype = NULL;
1249 char* extn = NULL;
1250 char* ptr;
Dees_Troy63c8df72012-09-10 14:02:05 -04001251
bigbiff bigbiff19fb79c2016-09-05 21:04:51 -04001252 strcpy(str, de->d_name);
1253 if (strlen(str) <= 2)
1254 continue;
Dees_Troy83bd4832013-05-04 12:39:56 +00001255
bigbiff bigbiff19fb79c2016-09-05 21:04:51 -04001256 if (get_date) {
1257 char file_path[255];
1258 struct stat st;
1259
1260 strcpy(file_path, Restore_Name.c_str());
1261 strcat(file_path, "/");
1262 strcat(file_path, str);
1263 stat(file_path, &st);
1264 string backup_date = ctime((const time_t*)(&st.st_mtime));
1265 DataManager::SetValue(TW_RESTORE_FILE_DATE, backup_date);
1266 get_date = false;
Dees_Troy83bd4832013-05-04 12:39:56 +00001267 }
Dees_Troy63c8df72012-09-10 14:02:05 -04001268
bigbiff bigbiff19fb79c2016-09-05 21:04:51 -04001269 label = str;
1270 ptr = label;
1271 while (*ptr && *ptr != '.') ptr++;
1272 if (*ptr == '.')
1273 {
1274 *ptr = 0x00;
1275 ptr++;
1276 fstype = ptr;
1277 }
1278 while (*ptr && *ptr != '.') ptr++;
1279 if (*ptr == '.')
1280 {
1281 *ptr = 0x00;
1282 ptr++;
1283 extn = ptr;
1284 }
Dees_Troy63c8df72012-09-10 14:02:05 -04001285
bigbiff bigbiff19fb79c2016-09-05 21:04:51 -04001286 if (fstype == NULL || extn == NULL || strcmp(fstype, "log") == 0) continue;
1287 int extnlength = strlen(extn);
1288 if (extnlength != 3 && extnlength != 6) continue;
1289 if (extnlength >= 3 && strncmp(extn, "win", 3) != 0) continue;
1290 //if (extnlength == 6 && strncmp(extn, "win000", 6) != 0) continue;
Dees_Troy63c8df72012-09-10 14:02:05 -04001291
bigbiff bigbiff19fb79c2016-09-05 21:04:51 -04001292 if (check_encryption) {
1293 string filename = Restore_Name + "/";
1294 filename += de->d_name;
1295 if (TWFunc::Get_File_Type(filename) == 2) {
1296 LOGINFO("'%s' is encrypted\n", filename.c_str());
1297 DataManager::SetValue("tw_restore_encrypted", 1);
1298 }
1299 }
1300 if (extnlength == 6 && strncmp(extn, "win000", 6) != 0) continue;
1301
1302 TWPartition* Part = Find_Partition_By_Path(label);
1303 if (Part == NULL)
1304 {
1305 gui_msg(Msg(msg::kError, "unable_locate_part_backup_name=Unable to locate partition by backup name: '{1}'")(label));
1306 continue;
1307 }
1308
1309 Part->Backup_FileName = de->d_name;
1310 if (strlen(extn) > 3) {
1311 Part->Backup_FileName.resize(Part->Backup_FileName.size() - strlen(extn) + 3);
1312 }
1313
dianlujitaob76a73a2020-04-30 20:33:20 +08001314 if (!Part->Is_SubPartition) {
1315 if (Part->Backup_Path == Get_Android_Root_Path())
1316 Restore_List += "/system;";
1317 else
1318 Restore_List += Part->Backup_Path + ";";
1319 }
bigbiff bigbiff19fb79c2016-09-05 21:04:51 -04001320 }
1321 closedir(d);
Dees_Troy63c8df72012-09-10 14:02:05 -04001322 }
bigbiff bigbiff19fb79c2016-09-05 21:04:51 -04001323
1324 if (adbbackup) {
1325 Restore_List = "ADB_Backup;";
1326 adbbackup = false;
1327 }
Dees_Troy63c8df72012-09-10 14:02:05 -04001328
Dees_Troya13d74f2013-03-24 08:54:55 -05001329 // Set the final value
1330 DataManager::SetValue("tw_restore_list", Restore_List);
1331 DataManager::SetValue("tw_restore_selected", Restore_List);
Dees_Troy51a0e822012-09-05 15:24:24 -04001332 return;
1333}
1334
1335int TWPartitionManager::Wipe_By_Path(string Path) {
Dees_Troy63c8df72012-09-10 14:02:05 -04001336 std::vector<TWPartition*>::iterator iter;
Mohd Faraz77a31912020-04-21 18:56:44 +05301337 std::vector < TWPartition * >::iterator iter1;
Dees_Troy63c8df72012-09-10 14:02:05 -04001338 int ret = false;
1339 bool found = false;
Dees_Troy38bd7602012-09-14 13:33:53 -04001340 string Local_Path = TWFunc::Get_Root_Path(Path);
Dees_Troy63c8df72012-09-10 14:02:05 -04001341
dianlujitaob76a73a2020-04-30 20:33:20 +08001342 if (Local_Path == "/system")
1343 Local_Path = Get_Android_Root_Path();
Dees_Troy63c8df72012-09-10 14:02:05 -04001344 // Iterate through all partitions
1345 for (iter = Partitions.begin(); iter != Partitions.end(); iter++) {
Dees_Troy657c3092012-09-10 20:32:10 -04001346 if ((*iter)->Mount_Point == Local_Path || (!(*iter)->Symlink_Mount_Point.empty() && (*iter)->Symlink_Mount_Point == Local_Path)) {
Mohd Faraz77a31912020-04-21 18:56:44 +05301347 // iterate through all partitions since some legacy devices uses other partitions as vendor causes issues while wiping
1348 (*iter)->Find_Actual_Block_Device();
1349 for (iter1 = Partitions.begin (); iter1 != Partitions.end (); iter1++)
1350 {
1351 (*iter1)->Find_Actual_Block_Device();
1352 if ((*iter)->Actual_Block_Device == (*iter1)->Actual_Block_Device && (*iter)->Mount_Point != (*iter1)->Mount_Point)
1353 (*iter1)->UnMount(false);
1354 }
Dees_Troye58d5262012-09-21 12:27:57 -04001355 if (Path == "/and-sec")
1356 ret = (*iter)->Wipe_AndSec();
1357 else
1358 ret = (*iter)->Wipe();
Dees_Troy63c8df72012-09-10 14:02:05 -04001359 found = true;
1360 } else if ((*iter)->Is_SubPartition && (*iter)->SubPartition_Of == Local_Path) {
1361 (*iter)->Wipe();
1362 }
1363 }
1364 if (found) {
1365 return ret;
1366 } else
Ethan Yonker74db1572015-10-28 12:44:49 -05001367 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 -04001368 return false;
Dees_Troy51a0e822012-09-05 15:24:24 -04001369}
1370
Ethan Yonker87c7bac2014-05-25 21:41:08 -05001371int TWPartitionManager::Wipe_By_Path(string Path, string New_File_System) {
1372 std::vector<TWPartition*>::iterator iter;
1373 int ret = false;
1374 bool found = false;
1375 string Local_Path = TWFunc::Get_Root_Path(Path);
1376
1377 // Iterate through all partitions
1378 for (iter = Partitions.begin(); iter != Partitions.end(); iter++) {
1379 if ((*iter)->Mount_Point == Local_Path || (!(*iter)->Symlink_Mount_Point.empty() && (*iter)->Symlink_Mount_Point == Local_Path)) {
1380 if (Path == "/and-sec")
1381 ret = (*iter)->Wipe_AndSec();
1382 else
1383 ret = (*iter)->Wipe(New_File_System);
1384 found = true;
1385 } else if ((*iter)->Is_SubPartition && (*iter)->SubPartition_Of == Local_Path) {
1386 (*iter)->Wipe(New_File_System);
1387 }
1388 }
1389 if (found) {
1390 return ret;
1391 } else
Ethan Yonker74db1572015-10-28 12:44:49 -05001392 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 -05001393 return false;
1394}
1395
Dees_Troy51a0e822012-09-05 15:24:24 -04001396int TWPartitionManager::Factory_Reset(void) {
Dees_Troy63c8df72012-09-10 14:02:05 -04001397 std::vector<TWPartition*>::iterator iter;
1398 int ret = true;
1399
1400 for (iter = Partitions.begin(); iter != Partitions.end(); iter++) {
Dees_Troy38bd7602012-09-14 13:33:53 -04001401 if ((*iter)->Wipe_During_Factory_Reset && (*iter)->Is_Present) {
Ethan Yonker89583ef2015-08-26 09:01:59 -05001402#ifdef TW_OEM_BUILD
1403 if ((*iter)->Mount_Point == "/data") {
1404 if (!(*iter)->Wipe_Encryption())
1405 ret = false;
1406 } else {
1407#endif
1408 if (!(*iter)->Wipe())
1409 ret = false;
1410#ifdef TW_OEM_BUILD
1411 }
1412#endif
Dees_Troy094207a2012-09-26 12:00:39 -04001413 } else if ((*iter)->Has_Android_Secure) {
1414 if (!(*iter)->Wipe_AndSec())
1415 ret = false;
Dees_Troy63c8df72012-09-10 14:02:05 -04001416 }
1417 }
Ethan Yonker9fa76ba2016-06-30 14:05:43 -05001418 TWFunc::check_and_run_script("/sbin/factoryreset.sh", "Factory Reset Script");
Dees_Troy63c8df72012-09-10 14:02:05 -04001419 return ret;
Dees_Troy51a0e822012-09-05 15:24:24 -04001420}
1421
Dees_Troy38bd7602012-09-14 13:33:53 -04001422int TWPartitionManager::Wipe_Dalvik_Cache(void) {
1423 struct stat st;
bigbiff bigbiff9c754052013-01-09 09:09:08 -05001424 vector <string> dir;
Dees_Troy38bd7602012-09-14 13:33:53 -04001425
1426 if (!Mount_By_Path("/data", true))
1427 return false;
1428
bigbiff bigbiff9c754052013-01-09 09:09:08 -05001429 dir.push_back("/data/dalvik-cache");
bigbiff bigbiff19874f12019-01-08 20:06:57 -05001430
bigbiff349ea552020-06-19 16:07:38 -04001431 std::string cacheDir = TWFunc::get_log_dir();
1432 if (cacheDir == CACHE_LOGS_DIR) {
1433 if (!PartitionManager.Mount_By_Path(CACHE_LOGS_DIR, false)) {
1434 LOGINFO("Unable to mount %s for wiping cache.\n", CACHE_LOGS_DIR);
bigbiff bigbiff19874f12019-01-08 20:06:57 -05001435 }
1436 dir.push_back(cacheDir + "dalvik-cache");
1437 dir.push_back(cacheDir + "/dc");
bigbiff bigbiff9c754052013-01-09 09:09:08 -05001438 }
Ethan Yonkerff2b7882016-12-10 09:04:41 -06001439
Dees_Troy38bd7602012-09-14 13:33:53 -04001440 TWPartition* sdext = Find_Partition_By_Path("/sd-ext");
Vojtech Bocekfafb0c52013-07-25 22:53:02 +02001441 if (sdext && sdext->Is_Present && sdext->Mount(false))
1442 {
1443 if (stat("/sd-ext/dalvik-cache", &st) == 0)
1444 {
Ethan Yonkerff2b7882016-12-10 09:04:41 -06001445 dir.push_back("/sd-ext/dalvik-cache");
1446 }
1447 }
1448
bigbiff349ea552020-06-19 16:07:38 -04001449 if (cacheDir == CACHE_LOGS_DIR) {
bigbiff bigbiff19874f12019-01-08 20:06:57 -05001450 gui_msg("wiping_cache_dalvik=Wiping Dalvik Cache Directories...");
1451 } else {
1452 gui_msg("wiping_dalvik=Wiping Dalvik Directory...");
1453 }
Ethan Yonkerff2b7882016-12-10 09:04:41 -06001454 for (unsigned i = 0; i < dir.size(); ++i) {
1455 if (stat(dir.at(i).c_str(), &st) == 0) {
1456 TWFunc::removeDir(dir.at(i), false);
1457 gui_msg(Msg("cleaned=Cleaned: {1}...")(dir.at(i)));
bigbiff bigbiff9c754052013-01-09 09:09:08 -05001458 }
Vojtech Bocekfafb0c52013-07-25 22:53:02 +02001459 }
bigbiff bigbiff19874f12019-01-08 20:06:57 -05001460
bigbiff349ea552020-06-19 16:07:38 -04001461 if (cacheDir == CACHE_LOGS_DIR) {
bigbiff bigbiff19874f12019-01-08 20:06:57 -05001462 gui_msg("cache_dalvik_done=-- Dalvik Cache Directories Wipe Complete!");
1463 } else {
1464 gui_msg("dalvik_done=-- Dalvik Directory Wipe Complete!");
1465 }
1466
Dees_Troy38bd7602012-09-14 13:33:53 -04001467 return true;
1468}
1469
1470int TWPartitionManager::Wipe_Rotate_Data(void) {
1471 if (!Mount_By_Path("/data", true))
1472 return false;
1473
bigbiff bigbiff9c754052013-01-09 09:09:08 -05001474 unlink("/data/misc/akmd*");
1475 unlink("/data/misc/rild*");
Dees_Troy2673cec2013-04-02 20:22:16 +00001476 gui_print("Rotation data wiped.\n");
Dees_Troy38bd7602012-09-14 13:33:53 -04001477 return true;
1478}
1479
1480int TWPartitionManager::Wipe_Battery_Stats(void) {
1481 struct stat st;
1482
1483 if (!Mount_By_Path("/data", true))
1484 return false;
1485
1486 if (0 != stat("/data/system/batterystats.bin", &st)) {
Dees_Troy2673cec2013-04-02 20:22:16 +00001487 gui_print("No Battery Stats Found. No Need To Wipe.\n");
Dees_Troy38bd7602012-09-14 13:33:53 -04001488 } else {
1489 remove("/data/system/batterystats.bin");
Dees_Troy2673cec2013-04-02 20:22:16 +00001490 gui_print("Cleared battery stats.\n");
Dees_Troy38bd7602012-09-14 13:33:53 -04001491 }
1492 return true;
1493}
1494
Dees_Troy2ff5a8d2012-09-26 14:53:02 -04001495int TWPartitionManager::Wipe_Android_Secure(void) {
1496 std::vector<TWPartition*>::iterator iter;
1497 int ret = false;
1498 bool found = false;
1499
1500 // Iterate through all partitions
1501 for (iter = Partitions.begin(); iter != Partitions.end(); iter++) {
1502 if ((*iter)->Has_Android_Secure) {
1503 ret = (*iter)->Wipe_AndSec();
1504 found = true;
1505 }
1506 }
1507 if (found) {
1508 return ret;
1509 } else {
Ethan Yonker74db1572015-10-28 12:44:49 -05001510 gui_err("no_andsec=No android secure partitions found.");
Dees_Troy2ff5a8d2012-09-26 14:53:02 -04001511 }
1512 return false;
1513}
1514
Dees_Troy38bd7602012-09-14 13:33:53 -04001515int TWPartitionManager::Format_Data(void) {
1516 TWPartition* dat = Find_Partition_By_Path("/data");
1517
1518 if (dat != NULL) {
Dees_Troy38bd7602012-09-14 13:33:53 -04001519 return dat->Wipe_Encryption();
1520 } else {
Matt Mower3c366972015-12-25 19:28:31 -06001521 gui_msg(Msg(msg::kError, "unable_to_locate=Unable to locate {1}.")("/data"));
Dees_Troy38bd7602012-09-14 13:33:53 -04001522 return false;
1523 }
1524 return false;
1525}
1526
1527int TWPartitionManager::Wipe_Media_From_Data(void) {
1528 TWPartition* dat = Find_Partition_By_Path("/data");
1529
1530 if (dat != NULL) {
1531 if (!dat->Has_Data_Media) {
Dees_Troy2673cec2013-04-02 20:22:16 +00001532 LOGERR("This device does not have /data/media\n");
Dees_Troy38bd7602012-09-14 13:33:53 -04001533 return false;
1534 }
1535 if (!dat->Mount(true))
1536 return false;
1537
Ethan Yonker74db1572015-10-28 12:44:49 -05001538 gui_msg("wiping_datamedia=Wiping internal storage -- /data/media...");
Ethan Yonker726a0202014-12-16 20:01:38 -06001539 Remove_MTP_Storage(dat->MTP_Storage_ID);
bigbiff bigbiff9c754052013-01-09 09:09:08 -05001540 TWFunc::removeDir("/data/media", false);
xiaolu9416f4f2015-06-04 08:22:23 +08001541 dat->Recreate_Media_Folder();
Ethan Yonker726a0202014-12-16 20:01:38 -06001542 Add_MTP_Storage(dat->MTP_Storage_ID);
Dees_Troy38bd7602012-09-14 13:33:53 -04001543 return true;
1544 } else {
Matt Mower3c366972015-12-25 19:28:31 -06001545 gui_msg(Msg(msg::kError, "unable_to_locate=Unable to locate {1}.")("/data"));
Dees_Troy38bd7602012-09-14 13:33:53 -04001546 return false;
1547 }
1548 return false;
1549}
1550
Ethan Yonker87c7bac2014-05-25 21:41:08 -05001551int TWPartitionManager::Repair_By_Path(string Path, bool Display_Error) {
1552 std::vector<TWPartition*>::iterator iter;
1553 int ret = false;
1554 bool found = false;
1555 string Local_Path = TWFunc::Get_Root_Path(Path);
1556
1557 if (Local_Path == "/tmp" || Local_Path == "/")
1558 return true;
1559
1560 // Iterate through all partitions
1561 for (iter = Partitions.begin(); iter != Partitions.end(); iter++) {
1562 if ((*iter)->Mount_Point == Local_Path || (!(*iter)->Symlink_Mount_Point.empty() && (*iter)->Symlink_Mount_Point == Local_Path)) {
1563 ret = (*iter)->Repair();
1564 found = true;
1565 } else if ((*iter)->Is_SubPartition && (*iter)->SubPartition_Of == Local_Path) {
1566 (*iter)->Repair();
1567 }
1568 }
1569 if (found) {
1570 return ret;
1571 } else if (Display_Error) {
Ethan Yonker74db1572015-10-28 12:44:49 -05001572 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 -05001573 } else {
1574 LOGINFO("Repair: Unable to find partition for path '%s'\n", Local_Path.c_str());
1575 }
1576 return false;
1577}
1578
Ethan Yonkera2719152015-05-28 09:44:41 -05001579int TWPartitionManager::Resize_By_Path(string Path, bool Display_Error) {
1580 std::vector<TWPartition*>::iterator iter;
1581 int ret = false;
1582 bool found = false;
1583 string Local_Path = TWFunc::Get_Root_Path(Path);
1584
1585 if (Local_Path == "/tmp" || Local_Path == "/")
1586 return true;
1587
1588 // Iterate through all partitions
1589 for (iter = Partitions.begin(); iter != Partitions.end(); iter++) {
1590 if ((*iter)->Mount_Point == Local_Path || (!(*iter)->Symlink_Mount_Point.empty() && (*iter)->Symlink_Mount_Point == Local_Path)) {
1591 ret = (*iter)->Resize();
1592 found = true;
1593 } else if ((*iter)->Is_SubPartition && (*iter)->SubPartition_Of == Local_Path) {
1594 (*iter)->Resize();
1595 }
1596 }
1597 if (found) {
1598 return ret;
1599 } else if (Display_Error) {
Ethan Yonker74db1572015-10-28 12:44:49 -05001600 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 -05001601 } else {
1602 LOGINFO("Resize: Unable to find partition for path '%s'\n", Local_Path.c_str());
1603 }
1604 return false;
1605}
1606
Dees_Troy51a0e822012-09-05 15:24:24 -04001607void TWPartitionManager::Update_System_Details(void) {
Dees_Troy5bf43922012-09-07 16:07:55 -04001608 std::vector<TWPartition*>::iterator iter;
Dees_Troy51127312012-09-08 13:08:49 -04001609 int data_size = 0;
Dees_Troy5bf43922012-09-07 16:07:55 -04001610
Ethan Yonker74db1572015-10-28 12:44:49 -05001611 gui_msg("update_part_details=Updating partition details...");
Dees_Troy5bf43922012-09-07 16:07:55 -04001612 for (iter = Partitions.begin(); iter != Partitions.end(); iter++) {
Ethan Yonker1b190162016-12-05 15:25:19 -06001613 (*iter)->Update_Size(true);
Dees_Troy51127312012-09-08 13:08:49 -04001614 if ((*iter)->Can_Be_Mounted) {
Captain Throwback9d6feb52018-07-27 10:05:24 -04001615 if ((*iter)->Mount_Point == Get_Android_Root_Path()) {
Dees_Troy51127312012-09-08 13:08:49 -04001616 int backup_display_size = (int)((*iter)->Backup_Size / 1048576LLU);
1617 DataManager::SetValue(TW_BACKUP_SYSTEM_SIZE, backup_display_size);
Ethan Yonker76bbd3a2019-05-10 10:50:04 -05001618 TWFunc::Is_TWRP_App_In_System();
Dees_Troy51127312012-09-08 13:08:49 -04001619 } else if ((*iter)->Mount_Point == "/data" || (*iter)->Mount_Point == "/datadata") {
1620 data_size += (int)((*iter)->Backup_Size / 1048576LLU);
1621 } else if ((*iter)->Mount_Point == "/cache") {
1622 int backup_display_size = (int)((*iter)->Backup_Size / 1048576LLU);
1623 DataManager::SetValue(TW_BACKUP_CACHE_SIZE, backup_display_size);
1624 } else if ((*iter)->Mount_Point == "/sd-ext") {
1625 int backup_display_size = (int)((*iter)->Backup_Size / 1048576LLU);
1626 DataManager::SetValue(TW_BACKUP_SDEXT_SIZE, backup_display_size);
1627 if ((*iter)->Backup_Size == 0) {
1628 DataManager::SetValue(TW_HAS_SDEXT_PARTITION, 0);
1629 DataManager::SetValue(TW_BACKUP_SDEXT_VAR, 0);
1630 } else
1631 DataManager::SetValue(TW_HAS_SDEXT_PARTITION, 1);
Dees_Troye58d5262012-09-21 12:27:57 -04001632 } else if ((*iter)->Has_Android_Secure) {
Dees_Troy8170a922012-09-18 15:40:25 -04001633 int backup_display_size = (int)((*iter)->Backup_Size / 1048576LLU);
Dees_Troye58d5262012-09-21 12:27:57 -04001634 DataManager::SetValue(TW_BACKUP_ANDSEC_SIZE, backup_display_size);
Dees_Troy8170a922012-09-18 15:40:25 -04001635 if ((*iter)->Backup_Size == 0) {
1636 DataManager::SetValue(TW_HAS_ANDROID_SECURE, 0);
1637 DataManager::SetValue(TW_BACKUP_ANDSEC_VAR, 0);
1638 } else
1639 DataManager::SetValue(TW_HAS_ANDROID_SECURE, 1);
Dees_Troy2c50e182012-09-26 20:05:28 -04001640 } else if ((*iter)->Mount_Point == "/boot") {
1641 int backup_display_size = (int)((*iter)->Backup_Size / 1048576LLU);
1642 DataManager::SetValue(TW_BACKUP_BOOT_SIZE, backup_display_size);
1643 if ((*iter)->Backup_Size == 0) {
1644 DataManager::SetValue("tw_has_boot_partition", 0);
1645 DataManager::SetValue(TW_BACKUP_BOOT_VAR, 0);
1646 } else
1647 DataManager::SetValue("tw_has_boot_partition", 1);
Dees_Troy51127312012-09-08 13:08:49 -04001648 }
Dees_Troyaa9cc402012-10-13 12:14:05 -04001649 } else {
1650 // Handle unmountable partitions in case we reset defaults
1651 if ((*iter)->Mount_Point == "/boot") {
1652 int backup_display_size = (int)((*iter)->Backup_Size / 1048576LLU);
1653 DataManager::SetValue(TW_BACKUP_BOOT_SIZE, backup_display_size);
1654 if ((*iter)->Backup_Size == 0) {
1655 DataManager::SetValue(TW_HAS_BOOT_PARTITION, 0);
1656 DataManager::SetValue(TW_BACKUP_BOOT_VAR, 0);
1657 } else
1658 DataManager::SetValue(TW_HAS_BOOT_PARTITION, 1);
1659 } else if ((*iter)->Mount_Point == "/recovery") {
1660 int backup_display_size = (int)((*iter)->Backup_Size / 1048576LLU);
1661 DataManager::SetValue(TW_BACKUP_RECOVERY_SIZE, backup_display_size);
1662 if ((*iter)->Backup_Size == 0) {
1663 DataManager::SetValue(TW_HAS_RECOVERY_PARTITION, 0);
1664 DataManager::SetValue(TW_BACKUP_RECOVERY_VAR, 0);
1665 } else
1666 DataManager::SetValue(TW_HAS_RECOVERY_PARTITION, 1);
Gary Peck82599a82012-11-21 16:23:12 -08001667 } else if ((*iter)->Mount_Point == "/data") {
1668 data_size += (int)((*iter)->Backup_Size / 1048576LLU);
Dees_Troyaa9cc402012-10-13 12:14:05 -04001669 }
Dees_Troy51127312012-09-08 13:08:49 -04001670 }
Dees_Troy5bf43922012-09-07 16:07:55 -04001671 }
Ethan Yonker74db1572015-10-28 12:44:49 -05001672 gui_msg("update_part_details_done=...done");
Dees_Troy51127312012-09-08 13:08:49 -04001673 DataManager::SetValue(TW_BACKUP_DATA_SIZE, data_size);
1674 string current_storage_path = DataManager::GetCurrentStoragePath();
1675 TWPartition* FreeStorage = Find_Partition_By_Path(current_storage_path);
Dees_Troy8170a922012-09-18 15:40:25 -04001676 if (FreeStorage != NULL) {
1677 // Attempt to mount storage
1678 if (!FreeStorage->Mount(false)) {
Matt Mower2d50cad2015-12-03 22:26:55 -06001679 gui_msg(Msg(msg::kError, "unable_to_mount_storage=Unable to mount storage"));
1680 DataManager::SetValue(TW_STORAGE_FREE_SIZE, 0);
Dees_Troy8170a922012-09-18 15:40:25 -04001681 } else {
1682 DataManager::SetValue(TW_STORAGE_FREE_SIZE, (int)(FreeStorage->Free / 1048576LLU));
1683 }
1684 } else {
Dees_Troy2673cec2013-04-02 20:22:16 +00001685 LOGINFO("Unable to find storage partition '%s'.\n", current_storage_path.c_str());
Dees_Troy8170a922012-09-18 15:40:25 -04001686 }
Dees_Troy5bf43922012-09-07 16:07:55 -04001687 if (!Write_Fstab())
Dees_Troy2673cec2013-04-02 20:22:16 +00001688 LOGERR("Error creating fstab\n");
Dees_Troy51a0e822012-09-05 15:24:24 -04001689 return;
1690}
1691
Ethan Yonkerbd7492d2016-12-07 13:55:01 -06001692void TWPartitionManager::Post_Decrypt(const string& Block_Device) {
1693 TWPartition* dat = Find_Partition_By_Path("/data");
1694 if (dat != NULL) {
1695 DataManager::SetValue(TW_IS_DECRYPTED, 1);
1696 dat->Is_Decrypted = true;
1697 if (!Block_Device.empty()) {
1698 dat->Decrypted_Block_Device = Block_Device;
1699 gui_msg(Msg("decrypt_success_dev=Data successfully decrypted, new block device: '{1}'")(Block_Device));
1700 } else {
1701 gui_msg("decrypt_success_nodev=Data successfully decrypted");
1702 }
Noah Jacobson5a79f672019-04-28 00:10:07 -04001703 property_set("twrp.decrypt.done", "true");
Ethan Yonkerbd7492d2016-12-07 13:55:01 -06001704 dat->Setup_File_System(false);
Noah Jacobson5a79f672019-04-28 00:10:07 -04001705 dat->Current_File_System = dat->Fstab_File_System; // Needed if we're ignoring blkid because encrypted devices start out as emmc
Ethan Yonkerbd7492d2016-12-07 13:55:01 -06001706
Noah Jacobson5a79f672019-04-28 00:10:07 -04001707 sleep(1); // Sleep for a bit so that the device will be ready
Ethan Yonkerbd7492d2016-12-07 13:55:01 -06001708 if (dat->Has_Data_Media && dat->Mount(false) && TWFunc::Path_Exists("/data/media/0")) {
1709 dat->Storage_Path = "/data/media/0";
1710 dat->Symlink_Path = dat->Storage_Path;
1711 DataManager::SetValue("tw_storage_path", "/data/media/0");
1712 DataManager::SetValue("tw_settings_path", "/data/media/0");
1713 dat->UnMount(false);
Ethan Yonkerbd7492d2016-12-07 13:55:01 -06001714 }
epicX98053c32021-01-04 13:01:31 +05301715 DataManager::LoadTWRPFolderInfo();
Ethan Yonkerbd7492d2016-12-07 13:55:01 -06001716 Update_System_Details();
nkk71ffb02bd2017-06-04 23:12:16 +03001717 Output_Partition(dat);
Ethan Yonkerbd7492d2016-12-07 13:55:01 -06001718 UnMount_Main_Partitions();
1719 } else
1720 LOGERR("Unable to locate data partition.\n");
1721}
1722
Noah Jacobson5a79f672019-04-28 00:10:07 -04001723void TWPartitionManager::Parse_Users() {
1724#ifdef TW_INCLUDE_FBE
1725 char user_check_result[PROPERTY_VALUE_MAX];
1726 for (int userId = 0; userId <= 9999; userId++) {
1727 string prop = "twrp.user." + to_string(userId) + ".decrypt";
1728 property_get(prop.c_str(), user_check_result, "-1");
1729 if (strcmp(user_check_result, "-1") != 0) {
1730 if (userId < 0 || userId > 9999) {
1731 LOGINFO("Incorrect user id %d\n", userId);
1732 continue;
1733 }
1734 struct users_struct user;
1735 user.userId = to_string(userId);
1736
1737 // Attempt to get name of user. Fallback to user ID if this fails.
zhenyolka22be9c12021-11-08 19:05:30 +03001738 std::string path = "/data/system/users/" + to_string(userId) + ".xml";
1739 if ((atoi(TWFunc::System_Property_Get("ro.build.version.sdk").c_str()) > 30) && TWFunc::Path_Exists(path)) {
Captain Throwback7ae713a2021-11-19 20:17:38 -05001740 if(!TWFunc::Check_Xml_Format(path.c_str()))
Noah Jacobson5a79f672019-04-28 00:10:07 -04001741 user.userName = to_string(userId);
zhenyolka22be9c12021-11-08 19:05:30 +03001742 }
1743 else {
1744 char* userFile = PageManager::LoadFileToBuffer(path, NULL);
1745 if (userFile == NULL) {
1746 user.userName = to_string(userId);
1747 }
1748 else {
1749 xml_document<> *userXml = new xml_document<>();
1750 userXml->parse<0>(userFile);
1751 xml_node<>* userNode = userXml->first_node("user");
1752 if (userNode == nullptr) {
Noah Jacobson5a79f672019-04-28 00:10:07 -04001753 user.userName = to_string(userId);
zhenyolka22be9c12021-11-08 19:05:30 +03001754 } else {
1755 xml_node<>* nameNode = userNode->first_node("name");
1756 if (nameNode == nullptr)
1757 user.userName = to_string(userId);
1758 else {
1759 string userName = nameNode->value();
1760 user.userName = userName + " (" + to_string(userId) + ")";
1761 }
Noah Jacobson5a79f672019-04-28 00:10:07 -04001762 }
1763 }
1764 }
1765
1766 string filename;
1767 user.type = Get_Password_Type(userId, filename);
1768
1769 user.isDecrypted = false;
1770 if (strcmp(user_check_result, "1") == 0)
1771 user.isDecrypted = true;
1772 Users_List.push_back(user);
1773 }
1774 }
1775 Check_Users_Decryption_Status();
1776#endif
1777}
1778
1779std::vector<users_struct>* TWPartitionManager::Get_Users_List() {
1780 return &Users_List;
1781}
1782
1783void TWPartitionManager::Mark_User_Decrypted(int userID) {
1784#ifdef TW_INCLUDE_FBE
1785 std::vector<users_struct>::iterator iter;
1786 for (iter = Users_List.begin(); iter != Users_List.end(); iter++) {
1787 if (atoi((*iter).userId.c_str()) == userID) {
1788 (*iter).isDecrypted = true;
1789 string user_prop_decrypted = "twrp.user." + to_string(userID) + ".decrypt";
1790 property_set(user_prop_decrypted.c_str(), "1");
1791 break;
1792 }
1793 }
1794 Check_Users_Decryption_Status();
1795#endif
1796}
1797
1798void TWPartitionManager::Check_Users_Decryption_Status() {
1799#ifdef TW_INCLUDE_FBE
1800 int all_is_decrypted = 1;
1801 std::vector<users_struct>::iterator iter;
1802 for (iter = Users_List.begin(); iter != Users_List.end(); iter++) {
1803 if (!(*iter).isDecrypted) {
Noah Jacobsonbf0b0fb2020-06-05 12:47:20 -04001804 LOGINFO("User %s is not decrypted.\n", (*iter).userId.c_str());
Noah Jacobson5a79f672019-04-28 00:10:07 -04001805 all_is_decrypted = 0;
1806 break;
1807 }
1808 }
1809 if (all_is_decrypted == 1) {
Noah Jacobsonbf0b0fb2020-06-05 12:47:20 -04001810 LOGINFO("All found users are decrypted.\n");
Noah Jacobson5a79f672019-04-28 00:10:07 -04001811 DataManager::SetValue("tw_all_users_decrypted", "1");
1812 property_set("twrp.all.users.decrypted", "true");
1813 } else
1814 DataManager::SetValue("tw_all_users_decrypted", "0");
1815#endif
1816}
1817
1818int TWPartitionManager::Decrypt_Device(string Password, int user_id) {
Dees_Troy5bf43922012-09-07 16:07:55 -04001819#ifdef TW_INCLUDE_CRYPTO
Captain Throwbacka1ad7eb2021-10-06 11:38:18 -04001820 char crypto_blkdev[PROPERTY_VALUE_MAX];
Ethan Yonker253368a2014-11-25 15:00:52 -06001821 std::vector<TWPartition*>::iterator iter;
Dees_Troy5bf43922012-09-07 16:07:55 -04001822
Ethan Yonker253368a2014-11-25 15:00:52 -06001823 // Mount any partitions that need to be mounted for decrypt
1824 for (iter = Partitions.begin(); iter != Partitions.end(); iter++) {
1825 if ((*iter)->Mount_To_Decrypt) {
1826 (*iter)->Mount(true);
1827 }
a39552696ff55ce2013-01-08 16:14:56 +00001828 }
oshmouna82a7542018-04-10 17:45:55 +02001829 property_set("twrp.mount_to_decrypt", "1");
a39552696ff55ce2013-01-08 16:14:56 +00001830
Captain Throwbacka1ad7eb2021-10-06 11:38:18 -04001831 Set_Crypto_State();
1832 Set_Crypto_Type("block");
Ethan Yonkera1de1492015-11-04 11:58:27 -06001833
Ethan Yonkerbd7492d2016-12-07 13:55:01 -06001834 if (DataManager::GetIntValue(TW_IS_FBE)) {
1835#ifdef TW_INCLUDE_FBE
1836 if (!Mount_By_Path("/data", true)) // /data has to be mounted for FBE
1837 return -1;
Noah Jacobson5a79f672019-04-28 00:10:07 -04001838
1839 bool user_need_decrypt = false;
1840 std::vector<users_struct>::iterator iter;
1841 for (iter = Users_List.begin(); iter != Users_List.end(); iter++) {
1842 if (atoi((*iter).userId.c_str()) == user_id && !(*iter).isDecrypted) {
1843 user_need_decrypt = true;
1844 }
1845 }
1846 if (!user_need_decrypt) {
1847 LOGINFO("User %d does not require decryption\n", user_id);
1848 return 0;
1849 }
1850
Ethan Yonkerbd7492d2016-12-07 13:55:01 -06001851 int retry_count = 10;
1852 while (!TWFunc::Path_Exists("/data/system/users/gatekeeper.password.key") && --retry_count)
Noah Jacobson5a79f672019-04-28 00:10:07 -04001853 usleep(2000); // A small sleep is needed after mounting /data to ensure reliable decrypt...maybe because of DE?
1854 gui_msg(Msg("decrypting_user_fbe=Attempting to decrypt FBE for user {1}...")(user_id));
Ethan Yonkerbd7492d2016-12-07 13:55:01 -06001855 if (Decrypt_User(user_id, Password)) {
Noah Jacobson5a79f672019-04-28 00:10:07 -04001856 gui_msg(Msg("decrypt_user_success_fbe=User {1} Decrypted Successfully")(user_id));
1857 Mark_User_Decrypted(user_id);
1858 if (user_id == 0) {
1859 // When decrypting user 0 also try all other users
1860 std::vector<users_struct>::iterator iter;
1861 for (iter = Users_List.begin(); iter != Users_List.end(); iter++) {
1862 if ((*iter).userId == "0" || (*iter).isDecrypted)
1863 continue;
1864
1865 int tmp_user_id = atoi((*iter).userId.c_str());
1866 gui_msg(Msg("decrypting_user_fbe=Attempting to decrypt FBE for user {1}...")(tmp_user_id));
1867 if (Decrypt_User(tmp_user_id, Password) ||
1868 (Password != "!" && Decrypt_User(tmp_user_id, "!"))) { // "!" means default password
1869 gui_msg(Msg("decrypt_user_success_fbe=User {1} Decrypted Successfully")(tmp_user_id));
1870 Mark_User_Decrypted(tmp_user_id);
1871 } else {
1872 gui_msg(Msg("decrypt_user_fail_fbe=Failed to decrypt user {1}")(tmp_user_id));
1873 }
1874 }
1875 Post_Decrypt("");
1876 }
1877
Ethan Yonkerbd7492d2016-12-07 13:55:01 -06001878 return 0;
Noah Jacobson5a79f672019-04-28 00:10:07 -04001879 } else {
1880 gui_msg(Msg(msg::kError, "decrypt_user_fail_fbe=Failed to decrypt user {1}")(user_id));
Ethan Yonkerbd7492d2016-12-07 13:55:01 -06001881 }
1882#else
1883 LOGERR("FBE support is not present\n");
1884#endif
1885 return -1;
1886 }
1887
Noah Jacobson5a79f672019-04-28 00:10:07 -04001888 char isdecrypteddata[PROPERTY_VALUE_MAX];
1889 property_get("twrp.decrypt.done", isdecrypteddata, "");
1890 if (strcmp(isdecrypteddata, "true") == 0) {
1891 LOGINFO("Data has no decryption required\n");
1892 return 0;
1893 }
1894
Ethan Yonkerddb63e22017-01-19 14:01:57 -06001895 int pwret = -1;
1896 pid_t pid = fork();
1897 if (pid < 0) {
1898 LOGERR("fork failed\n");
1899 return -1;
1900 } else if (pid == 0) {
1901 // Child process
1902 char cPassword[255];
1903 strcpy(cPassword, Password.c_str());
1904 int ret = cryptfs_check_passwd(cPassword);
1905 exit(ret);
1906 } else {
1907 // Parent
1908 int status;
1909 if (TWFunc::Wait_For_Child_Timeout(pid, &status, "Decrypt", 30))
1910 pwret = -1;
1911 else
1912 pwret = WEXITSTATUS(status) ? -1 : 0;
1913 }
a39552696ff55ce2013-01-08 16:14:56 +00001914
nkk7171c6c502017-01-05 23:55:05 +02001915#ifdef TW_CRYPTO_USE_SYSTEM_VOLD
1916 if (pwret != 0) {
1917 pwret = vold_decrypt(Password);
nkk717d1222a2017-11-06 17:27:21 +02001918 switch (pwret) {
1919 case VD_SUCCESS:
1920 break;
1921 case VD_ERR_MISSING_VDC:
1922 gui_msg(Msg(msg::kError, "decrypt_data_vold_os_missing=Missing files needed for vold decrypt: {1}")("/system/bin/vdc"));
1923 break;
1924 case VD_ERR_MISSING_VOLD:
1925 gui_msg(Msg(msg::kError, "decrypt_data_vold_os_missing=Missing files needed for vold decrypt: {1}")("/system/bin/vold"));
1926 break;
1927 }
nkk7171c6c502017-01-05 23:55:05 +02001928 }
1929#endif // TW_CRYPTO_USE_SYSTEM_VOLD
1930
Ethan Yonker253368a2014-11-25 15:00:52 -06001931 // Unmount any partitions that were needed for decrypt
1932 for (iter = Partitions.begin(); iter != Partitions.end(); iter++) {
1933 if ((*iter)->Mount_To_Decrypt) {
1934 (*iter)->UnMount(false);
1935 }
1936 }
oshmouna82a7542018-04-10 17:45:55 +02001937 property_set("twrp.mount_to_decrypt", "0");
Ethan Yonker253368a2014-11-25 15:00:52 -06001938
a39552696ff55ce2013-01-08 16:14:56 +00001939 if (pwret != 0) {
Ethan Yonker74db1572015-10-28 12:44:49 -05001940 gui_err("fail_decrypt=Failed to decrypt data.");
Dees_Troy5bf43922012-09-07 16:07:55 -04001941 return -1;
1942 }
a39552696ff55ce2013-01-08 16:14:56 +00001943
Dees_Troy5bf43922012-09-07 16:07:55 -04001944 property_get("ro.crypto.fs_crypto_blkdev", crypto_blkdev, "error");
1945 if (strcmp(crypto_blkdev, "error") == 0) {
Dees_Troy2673cec2013-04-02 20:22:16 +00001946 LOGERR("Error retrieving decrypted data block device.\n");
Dees_Troy5bf43922012-09-07 16:07:55 -04001947 } else {
Ethan Yonkerbd7492d2016-12-07 13:55:01 -06001948 Post_Decrypt(crypto_blkdev);
Dees_Troy5bf43922012-09-07 16:07:55 -04001949 }
1950 return 0;
1951#else
Ethan Yonker74db1572015-10-28 12:44:49 -05001952 gui_err("no_crypto_support=No crypto support was compiled into this build.");
Dees_Troy5bf43922012-09-07 16:07:55 -04001953 return -1;
1954#endif
Dees_Troy51a0e822012-09-05 15:24:24 -04001955 return 1;
Dees_Troy51127312012-09-08 13:08:49 -04001956}
1957
Ethan Yonkerb5fab762016-01-28 14:03:33 -06001958int TWPartitionManager::Fix_Contexts(void) {
Ethan Yonkerb5fab762016-01-28 14:03:33 -06001959 std::vector<TWPartition*>::iterator iter;
1960 for (iter = Partitions.begin(); iter != Partitions.end(); iter++) {
1961 if ((*iter)->Has_Data_Media) {
1962 if ((*iter)->Mount(true)) {
1963 if (fixContexts::fixDataMediaContexts((*iter)->Mount_Point) != 0)
1964 return -1;
1965 }
1966 }
1967 }
Dees_Troy1a650e62012-10-19 20:54:32 -04001968 UnMount_Main_Partitions();
Ethan Yonker74db1572015-10-28 12:44:49 -05001969 gui_msg("done=Done.");
Ethan Yonkerb5fab762016-01-28 14:03:33 -06001970 return 0;
bigbiff bigbiffa0f8a592012-10-09 21:01:03 -04001971}
1972
Ethan Yonker66a19492015-12-10 10:19:45 -06001973TWPartition* TWPartitionManager::Find_Next_Storage(string Path, bool Exclude_Data_Media) {
Ethan Yonker47360be2014-04-01 10:34:34 -05001974 std::vector<TWPartition*>::iterator iter = Partitions.begin();
1975
1976 if (!Path.empty()) {
1977 string Search_Path = TWFunc::Get_Root_Path(Path);
1978 for (; iter != Partitions.end(); iter++) {
Matt Mower9a561dd2016-02-22 21:25:51 -06001979 if ((*iter)->Mount_Point == Search_Path) {
Ethan Yonker47360be2014-04-01 10:34:34 -05001980 iter++;
1981 break;
1982 }
1983 }
1984 }
1985
1986 for (; iter != Partitions.end(); iter++) {
Ethan Yonker66a19492015-12-10 10:19:45 -06001987 if (Exclude_Data_Media && (*iter)->Has_Data_Media) {
1988 // do nothing, do not return this type of partition
1989 } else if ((*iter)->Is_Storage && (*iter)->Is_Present) {
Ethan Yonker47360be2014-04-01 10:34:34 -05001990 return (*iter);
1991 }
1992 }
1993
1994 return NULL;
1995}
1996
Dees_Troyd21618c2012-10-14 18:48:49 -04001997int TWPartitionManager::Open_Lun_File(string Partition_Path, string Lun_File) {
Dees_Troyd21618c2012-10-14 18:48:49 -04001998 TWPartition* Part = Find_Partition_By_Path(Partition_Path);
1999
2000 if (Part == NULL) {
Ethan Yonker74db1572015-10-28 12:44:49 -05002001 LOGINFO("Unable to locate '%s' for USB storage mode.", Partition_Path.c_str());
2002 gui_msg(Msg(msg::kError, "unable_find_part_path=Unable to find partition for path '{1}'")(Partition_Path));
Dees_Troyd21618c2012-10-14 18:48:49 -04002003 return false;
2004 }
Ethan Yonker47360be2014-04-01 10:34:34 -05002005 LOGINFO("USB mount '%s', '%s' > '%s'\n", Partition_Path.c_str(), Part->Actual_Block_Device.c_str(), Lun_File.c_str());
2006 if (!Part->UnMount(true) || !Part->Is_Present)
Dees_Troyd21618c2012-10-14 18:48:49 -04002007 return false;
2008
Ethan Yonker6e8c27a2016-12-22 17:55:57 -06002009 if (TWFunc::write_to_file(Lun_File, Part->Actual_Block_Device)) {
Dees_Troy2673cec2013-04-02 20:22:16 +00002010 LOGERR("Unable to write to ums lunfile '%s': (%s)\n", Lun_File.c_str(), strerror(errno));
Dees_Troyd21618c2012-10-14 18:48:49 -04002011 return false;
2012 }
Dees_Troyd21618c2012-10-14 18:48:49 -04002013 return true;
2014}
2015
Dees_Troy8170a922012-09-18 15:40:25 -04002016int TWPartitionManager::usb_storage_enable(void) {
Dees_Troy8170a922012-09-18 15:40:25 -04002017 char lun_file[255];
Dees_Troyd21618c2012-10-14 18:48:49 -04002018 bool has_multiple_lun = false;
Dees_Troy8170a922012-09-18 15:40:25 -04002019
Ethan Yonker47360be2014-04-01 10:34:34 -05002020 string Lun_File_str = CUSTOM_LUN_FILE;
2021 size_t found = Lun_File_str.find("%");
2022 if (found != string::npos) {
2023 sprintf(lun_file, CUSTOM_LUN_FILE, 1);
2024 if (TWFunc::Path_Exists(lun_file))
2025 has_multiple_lun = true;
2026 }
Ethan Yonker726a0202014-12-16 20:01:38 -06002027 mtp_was_enabled = TWFunc::Toggle_MTP(false); // Must disable MTP for USB Storage
Ethan Yonker47360be2014-04-01 10:34:34 -05002028 if (!has_multiple_lun) {
2029 LOGINFO("Device doesn't have multiple lun files, mount current storage\n");
2030 sprintf(lun_file, CUSTOM_LUN_FILE, 0);
2031 if (TWFunc::Get_Root_Path(DataManager::GetCurrentStoragePath()) == "/data") {
Ethan Yonker66a19492015-12-10 10:19:45 -06002032 TWPartition* Mount = Find_Next_Storage("", true);
Ethan Yonker47360be2014-04-01 10:34:34 -05002033 if (Mount) {
bigbiff bigbiffc7eee6f2014-09-02 18:59:01 -04002034 if (!Open_Lun_File(Mount->Mount_Point, lun_file)) {
2035 goto error_handle;
2036 }
Ethan Yonker47360be2014-04-01 10:34:34 -05002037 } else {
Ethan Yonker74db1572015-10-28 12:44:49 -05002038 gui_err("unable_locate_storage=Unable to locate storage device.");
bigbiff bigbiffc7eee6f2014-09-02 18:59:01 -04002039 goto error_handle;
Ethan Yonker47360be2014-04-01 10:34:34 -05002040 }
2041 } else if (!Open_Lun_File(DataManager::GetCurrentStoragePath(), lun_file)) {
bigbiff bigbiffc7eee6f2014-09-02 18:59:01 -04002042 goto error_handle;
Dees_Troy8170a922012-09-18 15:40:25 -04002043 }
Dees_Troy8170a922012-09-18 15:40:25 -04002044 } else {
Ethan Yonker47360be2014-04-01 10:34:34 -05002045 LOGINFO("Device has multiple lun files\n");
2046 TWPartition* Mount1;
2047 TWPartition* Mount2;
Dees_Troy8170a922012-09-18 15:40:25 -04002048 sprintf(lun_file, CUSTOM_LUN_FILE, 0);
Ethan Yonker66a19492015-12-10 10:19:45 -06002049 Mount1 = Find_Next_Storage("", true);
Ethan Yonker47360be2014-04-01 10:34:34 -05002050 if (Mount1) {
bigbiff bigbiffc7eee6f2014-09-02 18:59:01 -04002051 if (!Open_Lun_File(Mount1->Mount_Point, lun_file)) {
2052 goto error_handle;
2053 }
Matt Moweree717062014-04-26 01:46:46 -05002054 sprintf(lun_file, CUSTOM_LUN_FILE, 1);
Ethan Yonker66a19492015-12-10 10:19:45 -06002055 Mount2 = Find_Next_Storage(Mount1->Mount_Point, true);
Matt Mower1fdcdb72016-01-25 20:53:47 -06002056 if (Mount2 && Mount2->Mount_Point != Mount1->Mount_Point) {
Matt Moweree717062014-04-26 01:46:46 -05002057 Open_Lun_File(Mount2->Mount_Point, lun_file);
nkk71f940ba22017-03-24 18:28:03 +02002058 // Mimic single lun code: Mount CurrentStoragePath if it's not /data
2059 } else if (TWFunc::Get_Root_Path(DataManager::GetCurrentStoragePath()) != "/data") {
2060 Open_Lun_File(DataManager::GetCurrentStoragePath(), lun_file);
Ethan Yonker47360be2014-04-01 10:34:34 -05002061 }
nkk71f940ba22017-03-24 18:28:03 +02002062 // Mimic single lun code: Mount CurrentStoragePath if it's not /data
2063 } else if (TWFunc::Get_Root_Path(DataManager::GetCurrentStoragePath()) != "/data" && !Open_Lun_File(DataManager::GetCurrentStoragePath(), lun_file)) {
Ethan Yonker74db1572015-10-28 12:44:49 -05002064 gui_err("unable_locate_storage=Unable to locate storage device.");
bigbiff bigbiffc7eee6f2014-09-02 18:59:01 -04002065 goto error_handle;
Ethan Yonker47360be2014-04-01 10:34:34 -05002066 }
Dees_Troy8170a922012-09-18 15:40:25 -04002067 }
Matt Mowerb6ef4782014-11-06 02:24:36 -06002068 property_set("sys.storage.ums_enabled", "1");
HandyMenny37d42992014-10-26 22:15:59 +01002069 property_set("sys.usb.config", "mass_storage,adb");
Dees_Troy8170a922012-09-18 15:40:25 -04002070 return true;
bigbiff bigbiffc7eee6f2014-09-02 18:59:01 -04002071error_handle:
2072 if (mtp_was_enabled)
2073 if (!Enable_MTP())
2074 Disable_MTP();
2075 return false;
Dees_Troy8170a922012-09-18 15:40:25 -04002076}
2077
2078int TWPartitionManager::usb_storage_disable(void) {
Dees_Troy2673cec2013-04-02 20:22:16 +00002079 int index, ret;
2080 char lun_file[255], ch[2] = {0, 0};
2081 string str = ch;
Dees_Troy8170a922012-09-18 15:40:25 -04002082
2083 for (index=0; index<2; index++) {
2084 sprintf(lun_file, CUSTOM_LUN_FILE, index);
Ethan Yonker6e8c27a2016-12-22 17:55:57 -06002085 ret = TWFunc::write_to_file(lun_file, str);
Dees_Troy2673cec2013-04-02 20:22:16 +00002086 if (ret < 0) {
2087 break;
Dees_Troy8170a922012-09-18 15:40:25 -04002088 }
Dees_Troy8170a922012-09-18 15:40:25 -04002089 }
Dees_Troye58d5262012-09-21 12:27:57 -04002090 Mount_All_Storage();
2091 Update_System_Details();
Dees_Troycfd73ef2012-10-12 16:52:00 -04002092 UnMount_Main_Partitions();
Matt Mowerd9cb9062013-12-14 20:34:45 -06002093 property_set("sys.storage.ums_enabled", "0");
HandyMenny37d42992014-10-26 22:15:59 +01002094 property_set("sys.usb.config", "adb");
bigbiff bigbiffc7eee6f2014-09-02 18:59:01 -04002095 if (mtp_was_enabled)
2096 if (!Enable_MTP())
2097 Disable_MTP();
Dees_Troy2673cec2013-04-02 20:22:16 +00002098 if (ret < 0 && index == 0) {
2099 LOGERR("Unable to write to ums lunfile '%s'.", lun_file);
2100 return false;
2101 } else {
2102 return true;
2103 }
Dees_Troy8170a922012-09-18 15:40:25 -04002104 return true;
Dees_Troy812660f2012-09-20 09:55:17 -04002105}
2106
2107void TWPartitionManager::Mount_All_Storage(void) {
2108 std::vector<TWPartition*>::iterator iter;
2109
2110 for (iter = Partitions.begin(); iter != Partitions.end(); iter++) {
2111 if ((*iter)->Is_Storage)
2112 (*iter)->Mount(false);
2113 }
Dees_Troy2c50e182012-09-26 20:05:28 -04002114}
Dees_Troy9350b8d2012-09-27 12:38:38 -04002115
Dees_Troyd0384ef2012-10-12 12:15:42 -04002116void TWPartitionManager::UnMount_Main_Partitions(void) {
2117 // Unmounts system and data if data is not data/media
2118 // Also unmounts boot if boot is mountable
Dees_Troy2673cec2013-04-02 20:22:16 +00002119 LOGINFO("Unmounting main partitions...\n");
Dees_Troyd0384ef2012-10-12 12:15:42 -04002120
2121 TWPartition* Boot_Partition = Find_Partition_By_Path("/boot");
2122
Captain Throwback9d6feb52018-07-27 10:05:24 -04002123 UnMount_By_Path(Get_Android_Root_Path(), true);
Ethan Yonker6277c792014-09-15 14:54:30 -05002124 if (!datamedia)
2125 UnMount_By_Path("/data", true);
2126
Dees_Troyd0384ef2012-10-12 12:15:42 -04002127 if (Boot_Partition != NULL && Boot_Partition->Can_Be_Mounted)
2128 Boot_Partition->UnMount(true);
2129}
2130
Dees_Troy9350b8d2012-09-27 12:38:38 -04002131int TWPartitionManager::Partition_SDCard(void) {
Matt Mower23d8aae2017-01-06 14:30:33 -06002132 char temp[255];
Ethan Yonker483e9f42016-01-11 22:21:18 -06002133 string Storage_Path, Command, Device, fat_str, ext_str, start_loc, end_loc, ext_format, sd_path, tmpdevice;
Dees_Troy9350b8d2012-09-27 12:38:38 -04002134 int ext, swap, total_size = 0, fat_size;
Dees_Troy9350b8d2012-09-27 12:38:38 -04002135
Ethan Yonker74db1572015-10-28 12:44:49 -05002136 gui_msg("start_partition_sd=Partitioning SD Card...");
Ethan Yonker483e9f42016-01-11 22:21:18 -06002137
2138 // Locate and validate device to partition
2139 TWPartition* SDCard = Find_Partition_By_Path(DataManager::GetCurrentStoragePath());
2140
Ethan Yonker66a19492015-12-10 10:19:45 -06002141 if (SDCard->Is_Adopted_Storage)
2142 SDCard->Revert_Adopted();
2143
Ethan Yonker1eff6cd2014-09-15 13:30:42 -05002144 if (SDCard == NULL || !SDCard->Removable || SDCard->Has_Data_Media) {
Ethan Yonker74db1572015-10-28 12:44:49 -05002145 gui_err("partition_sd_locate=Unable to locate device to partition.");
Dees_Troy9350b8d2012-09-27 12:38:38 -04002146 return false;
2147 }
Ethan Yonker483e9f42016-01-11 22:21:18 -06002148
2149 // Unmount everything
Dees_Troy9350b8d2012-09-27 12:38:38 -04002150 if (!SDCard->UnMount(true))
2151 return false;
2152 TWPartition* SDext = Find_Partition_By_Path("/sd-ext");
2153 if (SDext != NULL) {
2154 if (!SDext->UnMount(true))
2155 return false;
2156 }
Ethan Yonker483e9f42016-01-11 22:21:18 -06002157 char* swappath = getenv("SWAPPATH");
2158 if (swappath != NULL) {
2159 LOGINFO("Unmounting swap at '%s'\n", swappath);
2160 umount(swappath);
2161 }
Vojtech Bocek05534202013-09-11 08:11:56 +02002162
Ethan Yonker483e9f42016-01-11 22:21:18 -06002163 // Determine block device
2164 if (SDCard->Alternate_Block_Device.empty()) {
2165 SDCard->Find_Actual_Block_Device();
2166 Device = SDCard->Actual_Block_Device;
2167 // Just use the root block device
2168 Device.resize(strlen("/dev/block/mmcblkX"));
2169 } else {
2170 Device = SDCard->Alternate_Block_Device;
2171 }
Dees_Troy9350b8d2012-09-27 12:38:38 -04002172
2173 // Find the size of the block device:
Ethan Yonker483e9f42016-01-11 22:21:18 -06002174 total_size = (int)(TWFunc::IOCTL_Get_Block_Size(Device.c_str()) / (1048576));
Dees_Troy9350b8d2012-09-27 12:38:38 -04002175
2176 DataManager::GetValue("tw_sdext_size", ext);
2177 DataManager::GetValue("tw_swap_size", swap);
2178 DataManager::GetValue("tw_sdpart_file_system", ext_format);
2179 fat_size = total_size - ext - swap;
Ethan Yonker483e9f42016-01-11 22:21:18 -06002180 LOGINFO("sd card mount point %s block device is '%s', sdcard size is: %iMB, fat size: %iMB, ext size: %iMB, ext system: '%s', swap size: %iMB\n", DataManager::GetCurrentStoragePath().c_str(), Device.c_str(), total_size, fat_size, ext, ext_format.c_str(), swap);
2181
2182 // Determine partition sizes
2183 if (swap == 0 && ext == 0) {
2184 fat_str = "-0";
2185 } else {
2186 memset(temp, 0, sizeof(temp));
2187 sprintf(temp, "%i", fat_size);
2188 fat_str = temp;
2189 fat_str += "MB";
2190 }
2191 if (swap == 0) {
2192 ext_str = "-0";
2193 } else {
2194 memset(temp, 0, sizeof(temp));
2195 sprintf(temp, "%i", ext);
2196 ext_str = "+";
2197 ext_str += temp;
2198 ext_str += "MB";
2199 }
2200
Dees_Troy9350b8d2012-09-27 12:38:38 -04002201 if (ext + swap > total_size) {
Ethan Yonker74db1572015-10-28 12:44:49 -05002202 gui_err("ext_swap_size=EXT + Swap size is larger than sdcard size.");
Dees_Troy9350b8d2012-09-27 12:38:38 -04002203 return false;
2204 }
Ethan Yonker483e9f42016-01-11 22:21:18 -06002205
Ethan Yonker74db1572015-10-28 12:44:49 -05002206 gui_msg("remove_part_table=Removing partition table...");
Ethan Yonker483e9f42016-01-11 22:21:18 -06002207 Command = "sgdisk --zap-all " + Device;
Dees_Troy2673cec2013-04-02 20:22:16 +00002208 LOGINFO("Command is: '%s'\n", Command.c_str());
Vojtech Bocek05534202013-09-11 08:11:56 +02002209 if (TWFunc::Exec_Cmd(Command) != 0) {
Ethan Yonker74db1572015-10-28 12:44:49 -05002210 gui_err("unable_rm_part=Unable to remove partition table.");
Dees_Troy9350b8d2012-09-27 12:38:38 -04002211 Update_System_Details();
2212 return false;
2213 }
Ethan Yonker74db1572015-10-28 12:44:49 -05002214 gui_msg(Msg("create_part=Creating {1} partition...")("FAT32"));
Captain Throwback9643a802016-05-27 11:44:51 -04002215 Command = "sgdisk --new=0:0:" + fat_str + " --change-name=0:\"Microsoft basic data\" --typecode=0:EBD0A0A2-B9E5-4433-87C0-68B6B72699C7 " + Device;
Dees_Troy2673cec2013-04-02 20:22:16 +00002216 LOGINFO("Command is: '%s'\n", Command.c_str());
Vojtech Bocek05534202013-09-11 08:11:56 +02002217 if (TWFunc::Exec_Cmd(Command) != 0) {
Ethan Yonker74db1572015-10-28 12:44:49 -05002218 gui_msg(Msg(msg::kError, "unable_to_create_part=Unable to create {1} partition.")("FAT32"));
Dees_Troy9350b8d2012-09-27 12:38:38 -04002219 return false;
2220 }
2221 if (ext > 0) {
Ethan Yonker74db1572015-10-28 12:44:49 -05002222 gui_msg(Msg("create_part=Creating {1} partition...")("EXT"));
Ethan Yonker483e9f42016-01-11 22:21:18 -06002223 Command = "sgdisk --new=0:0:" + ext_str + " --change-name=0:\"Linux filesystem\" " + Device;
Dees_Troy2673cec2013-04-02 20:22:16 +00002224 LOGINFO("Command is: '%s'\n", Command.c_str());
Vojtech Bocek05534202013-09-11 08:11:56 +02002225 if (TWFunc::Exec_Cmd(Command) != 0) {
Ethan Yonker74db1572015-10-28 12:44:49 -05002226 gui_msg(Msg(msg::kError, "unable_to_create_part=Unable to create {1} partition.")("EXT"));
Dees_Troy9350b8d2012-09-27 12:38:38 -04002227 Update_System_Details();
2228 return false;
2229 }
2230 }
2231 if (swap > 0) {
Ethan Yonker74db1572015-10-28 12:44:49 -05002232 gui_msg(Msg("create_part=Creating {1} partition...")("swap"));
Ethan Yonker483e9f42016-01-11 22:21:18 -06002233 Command = "sgdisk --new=0:0:-0 --change-name=0:\"Linux swap\" --typecode=0:0657FD6D-A4AB-43C4-84E5-0933C84B4F4F " + Device;
Dees_Troy2673cec2013-04-02 20:22:16 +00002234 LOGINFO("Command is: '%s'\n", Command.c_str());
Vojtech Bocek05534202013-09-11 08:11:56 +02002235 if (TWFunc::Exec_Cmd(Command) != 0) {
Ethan Yonker74db1572015-10-28 12:44:49 -05002236 gui_msg(Msg(msg::kError, "unable_to_create_part=Unable to create {1} partition.")("swap"));
Dees_Troy9350b8d2012-09-27 12:38:38 -04002237 Update_System_Details();
2238 return false;
2239 }
2240 }
Ethan Yonker483e9f42016-01-11 22:21:18 -06002241
2242 // Convert GPT to MBR
2243 Command = "sgdisk --gpttombr " + Device;
2244 if (TWFunc::Exec_Cmd(Command) != 0)
2245 LOGINFO("Failed to covert partition GPT to MBR\n");
2246
2247 // Tell the kernel to rescan the partition table
2248 int fd = open(Device.c_str(), O_RDONLY);
2249 ioctl(fd, BLKRRPART, 0);
2250 close(fd);
2251
2252 string format_device = Device;
2253 if (Device.substr(0, 17) == "/dev/block/mmcblk")
2254 format_device += "p";
2255
2256 // Format new partitions to proper file system
2257 if (fat_size > 0) {
2258 Command = "mkfs.fat " + format_device + "1";
2259 TWFunc::Exec_Cmd(Command);
2260 }
Dees_Troy9350b8d2012-09-27 12:38:38 -04002261 if (ext > 0) {
2262 if (SDext == NULL) {
Ethan Yonker483e9f42016-01-11 22:21:18 -06002263 Command = "mke2fs -t " + ext_format + " -m 0 " + format_device + "2";
2264 gui_msg(Msg("format_sdext_as=Formatting sd-ext as {1}...")(ext_format));
2265 LOGINFO("Formatting sd-ext after partitioning, command: '%s'\n", Command.c_str());
2266 TWFunc::Exec_Cmd(Command);
2267 } else {
2268 SDext->Wipe(ext_format);
Dees_Troy9350b8d2012-09-27 12:38:38 -04002269 }
Ethan Yonker483e9f42016-01-11 22:21:18 -06002270 }
2271 if (swap > 0) {
2272 Command = "mkswap " + format_device;
2273 if (ext > 0)
2274 Command += "3";
2275 else
2276 Command += "2";
Vojtech Bocek05534202013-09-11 08:11:56 +02002277 TWFunc::Exec_Cmd(Command);
Dees_Troy9350b8d2012-09-27 12:38:38 -04002278 }
2279
Ethan Yonker483e9f42016-01-11 22:21:18 -06002280 // recreate TWRP folder and rewrite settings - these will be gone after sdcard is partitioned
2281 if (SDCard->Mount(true)) {
2282 string TWRP_Folder = SDCard->Mount_Point + "/TWRP";
2283 mkdir(TWRP_Folder.c_str(), 0777);
2284 DataManager::Flush();
2285 }
2286
Dees_Troy9350b8d2012-09-27 12:38:38 -04002287 Update_System_Details();
Ethan Yonker74db1572015-10-28 12:44:49 -05002288 gui_msg("part_complete=Partitioning complete.");
Dees_Troy9350b8d2012-09-27 12:38:38 -04002289 return true;
bigbiff bigbiffa0f8a592012-10-09 21:01:03 -04002290}
Dees_Troya13d74f2013-03-24 08:54:55 -05002291
2292void TWPartitionManager::Get_Partition_List(string ListType, std::vector<PartitionList> *Partition_List) {
2293 std::vector<TWPartition*>::iterator iter;
2294 if (ListType == "mount") {
2295 for (iter = Partitions.begin(); iter != Partitions.end(); iter++) {
Ethan Yonker6e8c27a2016-12-22 17:55:57 -06002296 if ((*iter)->Can_Be_Mounted) {
Dees_Troya13d74f2013-03-24 08:54:55 -05002297 struct PartitionList part;
2298 part.Display_Name = (*iter)->Display_Name;
2299 part.Mount_Point = (*iter)->Mount_Point;
2300 part.selected = (*iter)->Is_Mounted();
2301 Partition_List->push_back(part);
2302 }
2303 }
2304 } else if (ListType == "storage") {
2305 char free_space[255];
2306 string Current_Storage = DataManager::GetCurrentStoragePath();
2307 for (iter = Partitions.begin(); iter != Partitions.end(); iter++) {
2308 if ((*iter)->Is_Storage) {
2309 struct PartitionList part;
2310 sprintf(free_space, "%llu", (*iter)->Free / 1024 / 1024);
2311 part.Display_Name = (*iter)->Storage_Name + " (";
2312 part.Display_Name += free_space;
2313 part.Display_Name += "MB)";
2314 part.Mount_Point = (*iter)->Storage_Path;
2315 if ((*iter)->Storage_Path == Current_Storage)
2316 part.selected = 1;
2317 else
2318 part.selected = 0;
2319 Partition_List->push_back(part);
2320 }
2321 }
2322 } else if (ListType == "backup") {
2323 char backup_size[255];
Dees_Troy9e0b71c2013-04-08 13:35:37 +00002324 unsigned long long Backup_Size;
Dees_Troya13d74f2013-03-24 08:54:55 -05002325 for (iter = Partitions.begin(); iter != Partitions.end(); iter++) {
Dees_Troy9e0b71c2013-04-08 13:35:37 +00002326 if ((*iter)->Can_Be_Backed_Up && !(*iter)->Is_SubPartition && (*iter)->Is_Present) {
Dees_Troya13d74f2013-03-24 08:54:55 -05002327 struct PartitionList part;
Dees_Troy9e0b71c2013-04-08 13:35:37 +00002328 Backup_Size = (*iter)->Backup_Size;
2329 if ((*iter)->Has_SubPartition) {
2330 std::vector<TWPartition*>::iterator subpart;
2331
2332 for (subpart = Partitions.begin(); subpart != Partitions.end(); subpart++) {
2333 if ((*subpart)->Is_SubPartition && (*subpart)->Can_Be_Backed_Up && (*subpart)->Is_Present && (*subpart)->SubPartition_Of == (*iter)->Mount_Point)
2334 Backup_Size += (*subpart)->Backup_Size;
2335 }
2336 }
2337 sprintf(backup_size, "%llu", Backup_Size / 1024 / 1024);
Dees_Troya13d74f2013-03-24 08:54:55 -05002338 part.Display_Name = (*iter)->Backup_Display_Name + " (";
2339 part.Display_Name += backup_size;
2340 part.Display_Name += "MB)";
2341 part.Mount_Point = (*iter)->Backup_Path;
2342 part.selected = 0;
2343 Partition_List->push_back(part);
2344 }
2345 }
2346 } else if (ListType == "restore") {
2347 string Restore_List, restore_path;
2348 TWPartition* restore_part = NULL;
2349
2350 DataManager::GetValue("tw_restore_list", Restore_List);
2351 if (!Restore_List.empty()) {
2352 size_t start_pos = 0, end_pos = Restore_List.find(";", start_pos);
2353 while (end_pos != string::npos && start_pos < Restore_List.size()) {
2354 restore_path = Restore_List.substr(start_pos, end_pos - start_pos);
bigbiff bigbiff19fb79c2016-09-05 21:04:51 -04002355 struct PartitionList part;
2356 if (restore_path.compare("ADB_Backup") == 0) {
2357 part.Display_Name = "ADB Backup";
2358 part.Mount_Point = "ADB Backup";
2359 part.selected = 1;
2360 Partition_List->push_back(part);
2361 break;
2362 }
Dees_Troy59df9262013-06-19 14:53:57 -05002363 if ((restore_part = Find_Partition_By_Path(restore_path)) != NULL) {
Dees Troy4159aed2014-02-28 17:24:43 +00002364 if ((restore_part->Backup_Name == "recovery" && !restore_part->Can_Be_Backed_Up) || restore_part->Is_SubPartition) {
Dees_Troya13d74f2013-03-24 08:54:55 -05002365 // Don't allow restore of recovery (causes problems on some devices)
Dees_Troy59df9262013-06-19 14:53:57 -05002366 // Don't add subpartitions to the list of items
Dees_Troya13d74f2013-03-24 08:54:55 -05002367 } else {
Dees_Troya13d74f2013-03-24 08:54:55 -05002368 part.Display_Name = restore_part->Backup_Display_Name;
2369 part.Mount_Point = restore_part->Backup_Path;
2370 part.selected = 1;
2371 Partition_List->push_back(part);
2372 }
2373 } else {
Ethan Yonker74db1572015-10-28 12:44:49 -05002374 gui_msg(Msg(msg::kError, "restore_unable_locate=Unable to locate '{1}' partition for restoring.")(restore_path));
Dees_Troya13d74f2013-03-24 08:54:55 -05002375 }
2376 start_pos = end_pos + 1;
2377 end_pos = Restore_List.find(";", start_pos);
2378 }
2379 }
2380 } else if (ListType == "wipe") {
2381 struct PartitionList dalvik;
Ethan Yonker74db1572015-10-28 12:44:49 -05002382 dalvik.Display_Name = gui_parse_text("{@dalvik}");
Dees_Troya13d74f2013-03-24 08:54:55 -05002383 dalvik.Mount_Point = "DALVIK";
2384 dalvik.selected = 0;
2385 Partition_List->push_back(dalvik);
2386 for (iter = Partitions.begin(); iter != Partitions.end(); iter++) {
2387 if ((*iter)->Wipe_Available_in_GUI && !(*iter)->Is_SubPartition) {
2388 struct PartitionList part;
2389 part.Display_Name = (*iter)->Display_Name;
2390 part.Mount_Point = (*iter)->Mount_Point;
2391 part.selected = 0;
2392 Partition_List->push_back(part);
2393 }
2394 if ((*iter)->Has_Android_Secure) {
2395 struct PartitionList part;
2396 part.Display_Name = (*iter)->Backup_Display_Name;
2397 part.Mount_Point = (*iter)->Backup_Path;
2398 part.selected = 0;
2399 Partition_List->push_back(part);
2400 }
Dees_Troy74fb2e92013-04-15 14:35:47 +00002401 if ((*iter)->Has_Data_Media) {
2402 struct PartitionList datamedia;
2403 datamedia.Display_Name = (*iter)->Storage_Name;
2404 datamedia.Mount_Point = "INTERNAL";
2405 datamedia.selected = 0;
2406 Partition_List->push_back(datamedia);
2407 }
Dees_Troya13d74f2013-03-24 08:54:55 -05002408 }
Ethan Yonker96af84a2015-01-05 14:58:36 -06002409 } else if (ListType == "flashimg") {
2410 for (iter = Partitions.begin(); iter != Partitions.end(); iter++) {
2411 if ((*iter)->Can_Flash_Img && (*iter)->Is_Present) {
2412 struct PartitionList part;
2413 part.Display_Name = (*iter)->Backup_Display_Name;
2414 part.Mount_Point = (*iter)->Backup_Path;
2415 part.selected = 0;
2416 Partition_List->push_back(part);
2417 }
2418 }
Ethan Yonker53796e72019-01-11 22:49:52 -06002419 if (DataManager::GetIntValue("tw_has_repack_tools") != 0 && DataManager::GetIntValue("tw_has_boot_slots") != 0) {
2420 TWPartition* boot = Find_Partition_By_Path("/boot");
2421 if (boot) {
2422 // Allow flashing kernels and ramdisks
2423 struct PartitionList repack_ramdisk;
2424 repack_ramdisk.Display_Name = gui_lookup("install_twrp_ramdisk", "Install Recovery Ramdisk");
2425 repack_ramdisk.Mount_Point = "/repack_ramdisk";
2426 repack_ramdisk.selected = 0;
2427 Partition_List->push_back(repack_ramdisk);
2428 /*struct PartitionList repack_kernel; For now let's leave repacking kernels under advanced only
2429 repack_kernel.Display_Name = gui_lookup("install_kernel", "Install Kernel");
2430 repack_kernel.Mount_Point = "/repack_kernel";
2431 repack_kernel.selected = 0;
2432 Partition_List->push_back(repack_kernel);*/
2433 }
2434 }
Dees_Troya13d74f2013-03-24 08:54:55 -05002435 } else {
Dees_Troy2673cec2013-04-02 20:22:16 +00002436 LOGERR("Unknown list type '%s' requested for TWPartitionManager::Get_Partition_List\n", ListType.c_str());
Dees_Troya13d74f2013-03-24 08:54:55 -05002437 }
2438}
2439
2440int TWPartitionManager::Fstab_Processed(void) {
2441 return Partitions.size();
2442}
Dees_Troyd93bda52013-07-03 19:55:19 +00002443
2444void TWPartitionManager::Output_Storage_Fstab(void) {
2445 std::vector<TWPartition*>::iterator iter;
2446 char storage_partition[255];
bigbiff bigbiffe4bdb152019-03-23 18:33:17 -04002447 std::string Temp;
bigbiff349ea552020-06-19 16:07:38 -04002448 std::string cacheDir = TWFunc::get_log_dir();
bigbiff bigbiffe4bdb152019-03-23 18:33:17 -04002449
2450 if (cacheDir.empty()) {
2451 LOGINFO("Unable to find cache directory\n");
2452 return;
2453 }
bigbiff bigbiff19874f12019-01-08 20:06:57 -05002454
bigbiff349ea552020-06-19 16:07:38 -04002455 std::string storageFstab = TWFunc::get_log_dir() + "recovery/storage.fstab";
bigbiff bigbiff19874f12019-01-08 20:06:57 -05002456 FILE *fp = fopen(storageFstab.c_str(), "w");
Dees_Troyd93bda52013-07-03 19:55:19 +00002457
2458 if (fp == NULL) {
bigbiff bigbiff19874f12019-01-08 20:06:57 -05002459 gui_msg(Msg(msg::kError, "unable_to_open=Unable to open '{1}'.")(storageFstab));
Dees_Troyd93bda52013-07-03 19:55:19 +00002460 return;
2461 }
2462
2463 // Iterate through all partitions
2464 for (iter = Partitions.begin(); iter != Partitions.end(); iter++) {
2465 if ((*iter)->Is_Storage) {
2466 Temp = (*iter)->Storage_Path + ";" + (*iter)->Storage_Name + ";\n";
2467 strcpy(storage_partition, Temp.c_str());
2468 fwrite(storage_partition, sizeof(storage_partition[0]), strlen(storage_partition) / sizeof(storage_partition[0]), fp);
2469 }
2470 }
2471 fclose(fp);
Vojtech Bocekfafb0c52013-07-25 22:53:02 +02002472}
Vojtech Bocek93cb1ef2014-05-12 15:41:52 +02002473
2474TWPartition *TWPartitionManager::Get_Default_Storage_Partition()
2475{
2476 TWPartition *res = NULL;
2477 for (std::vector<TWPartition*>::iterator iter = Partitions.begin(); iter != Partitions.end(); ++iter) {
Matt Mowera8a89d12016-12-30 18:10:37 -06002478 if (!(*iter)->Is_Storage)
Vojtech Bocek93cb1ef2014-05-12 15:41:52 +02002479 continue;
2480
Matt Mowera8a89d12016-12-30 18:10:37 -06002481 if ((*iter)->Is_Settings_Storage)
Vojtech Bocek93cb1ef2014-05-12 15:41:52 +02002482 return *iter;
2483
Matt Mowera8a89d12016-12-30 18:10:37 -06002484 if (!res)
Vojtech Bocek93cb1ef2014-05-12 15:41:52 +02002485 res = *iter;
2486 }
2487 return res;
2488}
bigbiff bigbiffc7eee6f2014-09-02 18:59:01 -04002489
2490bool TWPartitionManager::Enable_MTP(void) {
2491#ifdef TW_HAS_MTP
Ethan Yonker8dfa7772014-09-04 21:48:41 -05002492 if (mtppid) {
Ethan Yonker74db1572015-10-28 12:44:49 -05002493 gui_err("mtp_already_enabled=MTP already enabled");
bigbiff bigbiffc7eee6f2014-09-02 18:59:01 -04002494 return true;
2495 }
Ethan Yonker726a0202014-12-16 20:01:38 -06002496
2497 int mtppipe[2];
2498
2499 if (pipe(mtppipe) < 0) {
2500 LOGERR("Error creating MTP pipe\n");
2501 return false;
2502 }
2503
Ethan Yonkerdf7abac2014-12-29 10:48:17 -06002504 char old_value[PROPERTY_VALUE_MAX];
Matt Mowere07f0102017-02-23 17:40:00 -06002505 property_get("sys.usb.config", old_value, "");
2506 if (strcmp(old_value, "mtp,adb") != 0) {
Ethan Yonkerdf7abac2014-12-29 10:48:17 -06002507 char vendor[PROPERTY_VALUE_MAX];
2508 char product[PROPERTY_VALUE_MAX];
2509 property_set("sys.usb.config", "none");
2510 property_get("usb.vendor", vendor, "18D1");
2511 property_get("usb.product.mtpadb", product, "4EE2");
2512 string vendorstr = vendor;
2513 string productstr = product;
Ethan Yonker6e8c27a2016-12-22 17:55:57 -06002514 TWFunc::write_to_file("/sys/class/android_usb/android0/idVendor", vendorstr);
2515 TWFunc::write_to_file("/sys/class/android_usb/android0/idProduct", productstr);
Ethan Yonkerdf7abac2014-12-29 10:48:17 -06002516 property_set("sys.usb.config", "mtp,adb");
2517 }
Matt Mower653a1702017-02-16 10:38:52 -06002518 /* To enable MTP debug, use the twrp command line feature:
Ethan Yonker6d154c42014-09-03 14:19:43 -05002519 * twrp set tw_mtp_debug 1
2520 */
2521 twrpMtp *mtp = new twrpMtp(DataManager::GetIntValue("tw_mtp_debug"));
Ethan Yonker1b039202015-01-30 10:08:48 -06002522 mtppid = mtp->forkserver(mtppipe);
2523 if (mtppid) {
2524 close(mtppipe[0]); // Host closes read side
2525 mtp_write_fd = mtppipe[1];
2526 DataManager::SetValue("tw_mtp_enabled", 1);
2527 Add_All_MTP_Storage();
2528 return true;
Ethan Yonker726a0202014-12-16 20:01:38 -06002529 } else {
2530 close(mtppipe[0]);
2531 close(mtppipe[1]);
Ethan Yonker74db1572015-10-28 12:44:49 -05002532 gui_err("mtp_fail=Failed to enable MTP");
Ethan Yonker1b039202015-01-30 10:08:48 -06002533 return false;
bigbiff bigbiffc7eee6f2014-09-02 18:59:01 -04002534 }
bigbiff bigbiffc7eee6f2014-09-02 18:59:01 -04002535#else
Ethan Yonker74db1572015-10-28 12:44:49 -05002536 gui_err("no_mtp=MTP support not included");
bigbiff bigbiffc7eee6f2014-09-02 18:59:01 -04002537#endif
2538 DataManager::SetValue("tw_mtp_enabled", 0);
2539 return false;
2540}
2541
Ethan Yonker1b039202015-01-30 10:08:48 -06002542void TWPartitionManager::Add_All_MTP_Storage(void) {
2543#ifdef TW_HAS_MTP
2544 std::vector<TWPartition*>::iterator iter;
2545
2546 if (!mtppid)
2547 return; // MTP is not enabled
2548
2549 for (iter = Partitions.begin(); iter != Partitions.end(); iter++) {
2550 if ((*iter)->Is_Storage && (*iter)->Is_Present && (*iter)->Mount(false))
2551 Add_Remove_MTP_Storage((*iter), MTP_MESSAGE_ADD_STORAGE);
2552 }
2553#else
2554 return;
2555#endif
2556}
2557
bigbiff bigbiffc7eee6f2014-09-02 18:59:01 -04002558bool TWPartitionManager::Disable_MTP(void) {
Ethan Yonkerdf7abac2014-12-29 10:48:17 -06002559 char old_value[PROPERTY_VALUE_MAX];
bigbiff bigbiffaf32bb92018-12-18 18:39:53 -05002560 property_set("sys.usb.ffs.mtp.ready", "0");
Matt Mowere07f0102017-02-23 17:40:00 -06002561 property_get("sys.usb.config", old_value, "");
Ethan Yonkerdf7abac2014-12-29 10:48:17 -06002562 if (strcmp(old_value, "adb") != 0) {
2563 char vendor[PROPERTY_VALUE_MAX];
2564 char product[PROPERTY_VALUE_MAX];
2565 property_set("sys.usb.config", "none");
2566 property_get("usb.vendor", vendor, "18D1");
Matt Mowere07f0102017-02-23 17:40:00 -06002567 property_get("usb.product.adb", product, "D001");
Ethan Yonkerdf7abac2014-12-29 10:48:17 -06002568 string vendorstr = vendor;
2569 string productstr = product;
Ethan Yonker6e8c27a2016-12-22 17:55:57 -06002570 TWFunc::write_to_file("/sys/class/android_usb/android0/idVendor", vendorstr);
2571 TWFunc::write_to_file("/sys/class/android_usb/android0/idProduct", productstr);
Ethan Yonkerdf7abac2014-12-29 10:48:17 -06002572 usleep(2000);
2573 }
bigbiff bigbiffc7eee6f2014-09-02 18:59:01 -04002574#ifdef TW_HAS_MTP
Ethan Yonker8dfa7772014-09-04 21:48:41 -05002575 if (mtppid) {
Ethan Yonker8613dc02014-09-11 09:28:20 -05002576 LOGINFO("Disabling MTP\n");
2577 int status;
2578 kill(mtppid, SIGKILL);
Ethan Yonker8dfa7772014-09-04 21:48:41 -05002579 mtppid = 0;
Ethan Yonker8613dc02014-09-11 09:28:20 -05002580 // We don't care about the exit value, but this prevents a zombie process
2581 waitpid(mtppid, &status, 0);
Ethan Yonker726a0202014-12-16 20:01:38 -06002582 close(mtp_write_fd);
2583 mtp_write_fd = -1;
bigbiff bigbiffc7eee6f2014-09-02 18:59:01 -04002584 }
Ethan Yonkerdf7abac2014-12-29 10:48:17 -06002585#endif
bigbiff bigbiffc7eee6f2014-09-02 18:59:01 -04002586 property_set("sys.usb.config", "adb");
Ethan Yonkerdf7abac2014-12-29 10:48:17 -06002587#ifdef TW_HAS_MTP
bigbiff bigbiffc7eee6f2014-09-02 18:59:01 -04002588 DataManager::SetValue("tw_mtp_enabled", 0);
2589 return true;
bigbiff bigbiffc7eee6f2014-09-02 18:59:01 -04002590#endif
Ethan Yonkerdf7abac2014-12-29 10:48:17 -06002591 return false;
bigbiff bigbiffc7eee6f2014-09-02 18:59:01 -04002592}
Ethan Yonker726a0202014-12-16 20:01:38 -06002593
2594TWPartition* TWPartitionManager::Find_Partition_By_MTP_Storage_ID(unsigned int Storage_ID) {
2595 std::vector<TWPartition*>::iterator iter;
2596
2597 for (iter = Partitions.begin(); iter != Partitions.end(); iter++) {
2598 if ((*iter)->MTP_Storage_ID == Storage_ID)
2599 return (*iter);
2600 }
2601 return NULL;
2602}
2603
2604bool TWPartitionManager::Add_Remove_MTP_Storage(TWPartition* Part, int message_type) {
2605#ifdef TW_HAS_MTP
2606 struct mtpmsg mtp_message;
2607
2608 if (!mtppid)
2609 return false; // MTP is disabled
2610
2611 if (mtp_write_fd < 0) {
Ethan Yonkerd9ff3c52015-01-21 21:51:20 -06002612 LOGINFO("MTP: mtp_write_fd is not set\n");
Ethan Yonker726a0202014-12-16 20:01:38 -06002613 return false;
2614 }
2615
2616 if (Part) {
Ethan Yonker4bfabab2014-12-29 09:15:37 -06002617 if (Part->MTP_Storage_ID == 0)
2618 return false;
Ethan Yonker726a0202014-12-16 20:01:38 -06002619 if (message_type == MTP_MESSAGE_REMOVE_STORAGE) {
2620 mtp_message.message_type = MTP_MESSAGE_REMOVE_STORAGE; // Remove
2621 LOGINFO("sending message to remove %i\n", Part->MTP_Storage_ID);
2622 mtp_message.storage_id = Part->MTP_Storage_ID;
2623 if (write(mtp_write_fd, &mtp_message, sizeof(mtp_message)) <= 0) {
Ethan Yonkerd9ff3c52015-01-21 21:51:20 -06002624 LOGINFO("error sending message to remove storage %i\n", Part->MTP_Storage_ID);
Ethan Yonker726a0202014-12-16 20:01:38 -06002625 return false;
2626 } else {
2627 LOGINFO("Message sent, remove storage ID: %i\n", Part->MTP_Storage_ID);
2628 return true;
2629 }
2630 } else if (message_type == MTP_MESSAGE_ADD_STORAGE && Part->Is_Mounted()) {
2631 mtp_message.message_type = MTP_MESSAGE_ADD_STORAGE; // Add
2632 mtp_message.storage_id = Part->MTP_Storage_ID;
Ethan Yonker6e8c27a2016-12-22 17:55:57 -06002633 if (Part->Storage_Path.size() >= sizeof(mtp_message.path)) {
2634 LOGERR("Storage path '%s' too large for mtpmsg\n", Part->Storage_Path.c_str());
2635 return false;
2636 }
2637 strcpy(mtp_message.path, Part->Storage_Path.c_str());
2638 if (Part->Storage_Name.size() >= sizeof(mtp_message.display)) {
2639 LOGERR("Storage name '%s' too large for mtpmsg\n", Part->Storage_Name.c_str());
2640 return false;
2641 }
2642 strcpy(mtp_message.display, Part->Storage_Name.c_str());
Ethan Yonker726a0202014-12-16 20:01:38 -06002643 mtp_message.maxFileSize = Part->Get_Max_FileSize();
Ethan Yonker1b039202015-01-30 10:08:48 -06002644 LOGINFO("sending message to add %i '%s' '%s'\n", mtp_message.storage_id, mtp_message.path, mtp_message.display);
Ethan Yonker726a0202014-12-16 20:01:38 -06002645 if (write(mtp_write_fd, &mtp_message, sizeof(mtp_message)) <= 0) {
Ethan Yonkerd9ff3c52015-01-21 21:51:20 -06002646 LOGINFO("error sending message to add storage %i\n", Part->MTP_Storage_ID);
Ethan Yonker726a0202014-12-16 20:01:38 -06002647 return false;
2648 } else {
Ethan Yonker6e8c27a2016-12-22 17:55:57 -06002649 LOGINFO("Message sent, add storage ID: %i '%s'\n", Part->MTP_Storage_ID, mtp_message.path);
Ethan Yonker726a0202014-12-16 20:01:38 -06002650 return true;
2651 }
2652 } else {
2653 LOGERR("Unknown MTP message type: %i\n", message_type);
2654 }
2655 } else {
2656 // This hopefully never happens as the error handling should
2657 // occur in the calling function.
Ethan Yonkerd9ff3c52015-01-21 21:51:20 -06002658 LOGINFO("TWPartitionManager::Add_Remove_MTP_Storage NULL partition given\n");
Ethan Yonker726a0202014-12-16 20:01:38 -06002659 }
2660 return true;
2661#else
Ethan Yonker74db1572015-10-28 12:44:49 -05002662 gui_err("no_mtp=MTP support not included");
Ethan Yonker726a0202014-12-16 20:01:38 -06002663 DataManager::SetValue("tw_mtp_enabled", 0);
2664 return false;
2665#endif
2666}
2667
2668bool TWPartitionManager::Add_MTP_Storage(string Mount_Point) {
2669#ifdef TW_HAS_MTP
2670 TWPartition* Part = PartitionManager.Find_Partition_By_Path(Mount_Point);
2671 if (Part) {
2672 return PartitionManager.Add_Remove_MTP_Storage(Part, MTP_MESSAGE_ADD_STORAGE);
2673 } else {
Ethan Yonkerd9ff3c52015-01-21 21:51:20 -06002674 LOGINFO("TWFunc::Add_MTP_Storage unable to locate partition for '%s'\n", Mount_Point.c_str());
Ethan Yonker726a0202014-12-16 20:01:38 -06002675 }
2676#endif
2677 return false;
2678}
2679
2680bool TWPartitionManager::Add_MTP_Storage(unsigned int Storage_ID) {
2681#ifdef TW_HAS_MTP
2682 TWPartition* Part = PartitionManager.Find_Partition_By_MTP_Storage_ID(Storage_ID);
2683 if (Part) {
2684 return PartitionManager.Add_Remove_MTP_Storage(Part, MTP_MESSAGE_ADD_STORAGE);
2685 } else {
Ethan Yonkerd9ff3c52015-01-21 21:51:20 -06002686 LOGINFO("TWFunc::Add_MTP_Storage unable to locate partition for %i\n", Storage_ID);
Ethan Yonker726a0202014-12-16 20:01:38 -06002687 }
2688#endif
2689 return false;
2690}
2691
2692bool TWPartitionManager::Remove_MTP_Storage(string Mount_Point) {
2693#ifdef TW_HAS_MTP
2694 TWPartition* Part = PartitionManager.Find_Partition_By_Path(Mount_Point);
2695 if (Part) {
2696 return PartitionManager.Add_Remove_MTP_Storage(Part, MTP_MESSAGE_REMOVE_STORAGE);
2697 } else {
Ethan Yonkerd9ff3c52015-01-21 21:51:20 -06002698 LOGINFO("TWFunc::Remove_MTP_Storage unable to locate partition for '%s'\n", Mount_Point.c_str());
Ethan Yonker726a0202014-12-16 20:01:38 -06002699 }
2700#endif
2701 return false;
2702}
2703
2704bool TWPartitionManager::Remove_MTP_Storage(unsigned int Storage_ID) {
2705#ifdef TW_HAS_MTP
2706 TWPartition* Part = PartitionManager.Find_Partition_By_MTP_Storage_ID(Storage_ID);
2707 if (Part) {
2708 return PartitionManager.Add_Remove_MTP_Storage(Part, MTP_MESSAGE_REMOVE_STORAGE);
2709 } else {
Ethan Yonkerd9ff3c52015-01-21 21:51:20 -06002710 LOGINFO("TWFunc::Remove_MTP_Storage unable to locate partition for %i\n", Storage_ID);
Ethan Yonker726a0202014-12-16 20:01:38 -06002711 }
2712#endif
2713 return false;
2714}
Ethan Yonker96af84a2015-01-05 14:58:36 -06002715
Ethan Yonkere080c1f2016-09-19 13:50:25 -05002716bool TWPartitionManager::Flash_Image(string& path, string& filename) {
bigbiff56b02eb2020-07-06 20:24:34 -04002717 twrpRepacker repacker;
Matt Mower23d8aae2017-01-06 14:30:33 -06002718 int partition_count = 0;
Ethan Yonker96af84a2015-01-05 14:58:36 -06002719 TWPartition* flash_part = NULL;
bigbiffce8f83c2015-12-12 18:30:21 -05002720 string Flash_List, flash_path, full_filename;
Ethan Yonker96af84a2015-01-05 14:58:36 -06002721 size_t start_pos = 0, end_pos = 0;
2722
Ethan Yonkere080c1f2016-09-19 13:50:25 -05002723 full_filename = path + "/" + filename;
Ethan Yonker96af84a2015-01-05 14:58:36 -06002724
bigbiffce8f83c2015-12-12 18:30:21 -05002725 gui_msg("image_flash_start=[IMAGE FLASH STARTED]");
2726 gui_msg(Msg("img_to_flash=Image to flash: '{1}'")(full_filename));
2727
2728 if (!TWFunc::Path_Exists(full_filename)) {
2729 if (!Mount_By_Path(full_filename, true)) {
Ethan Yonkerb78fbdf2016-01-15 16:46:35 -06002730 return false;
2731 }
bigbiffce8f83c2015-12-12 18:30:21 -05002732 if (!TWFunc::Path_Exists(full_filename)) {
2733 gui_msg(Msg(msg::kError, "unable_to_locate=Unable to locate {1}.")(full_filename));
Ethan Yonkerb78fbdf2016-01-15 16:46:35 -06002734 return false;
2735 }
2736 }
Ethan Yonker96af84a2015-01-05 14:58:36 -06002737
Ethan Yonker53796e72019-01-11 22:49:52 -06002738 DataManager::GetValue("tw_flash_partition", Flash_List);
2739 Repack_Type repack = REPLACE_NONE;
2740 if (Flash_List == "/repack_ramdisk;") {
2741 repack = REPLACE_RAMDISK;
2742 } else if (Flash_List == "/repack_kernel;") {
2743 repack = REPLACE_KERNEL;
2744 }
2745 if (repack != REPLACE_NONE) {
2746 Repack_Options_struct Repack_Options;
2747 Repack_Options.Type = repack;
2748 Repack_Options.Disable_Verity = false;
2749 Repack_Options.Disable_Force_Encrypt = false;
2750 Repack_Options.Backup_First = DataManager::GetIntValue("tw_repack_backup_first") != 0;
bigbiff56b02eb2020-07-06 20:24:34 -04002751 return repacker.Repack_Image_And_Flash(full_filename, Repack_Options);
Ethan Yonker53796e72019-01-11 22:49:52 -06002752 }
Ethan Yonkere080c1f2016-09-19 13:50:25 -05002753 PartitionSettings part_settings;
2754 part_settings.Backup_Folder = path;
2755 unsigned long long total_bytes = TWFunc::Get_File_Size(full_filename);
2756 ProgressTracking progress(total_bytes);
2757 part_settings.progress = &progress;
2758 part_settings.adbbackup = false;
2759 part_settings.PM_Method = PM_RESTORE;
Ethan Yonker74db1572015-10-28 12:44:49 -05002760 gui_msg("calc_restore=Calculating restore details...");
Ethan Yonker96af84a2015-01-05 14:58:36 -06002761 if (!Flash_List.empty()) {
2762 end_pos = Flash_List.find(";", start_pos);
2763 while (end_pos != string::npos && start_pos < Flash_List.size()) {
2764 flash_path = Flash_List.substr(start_pos, end_pos - start_pos);
2765 flash_part = Find_Partition_By_Path(flash_path);
2766 if (flash_part != NULL) {
2767 partition_count++;
2768 if (partition_count > 1) {
Ethan Yonker74db1572015-10-28 12:44:49 -05002769 gui_err("too_many_flash=Too many partitions selected for flashing.");
Ethan Yonker96af84a2015-01-05 14:58:36 -06002770 return false;
2771 }
2772 } else {
Ethan Yonker74db1572015-10-28 12:44:49 -05002773 gui_msg(Msg(msg::kError, "flash_unable_locate=Unable to locate '{1}' partition for flashing.")(flash_path));
Ethan Yonker96af84a2015-01-05 14:58:36 -06002774 return false;
2775 }
2776 start_pos = end_pos + 1;
2777 end_pos = Flash_List.find(";", start_pos);
2778 }
2779 }
2780
2781 if (partition_count == 0) {
Ethan Yonker74db1572015-10-28 12:44:49 -05002782 gui_err("no_part_flash=No partitions selected for flashing.");
Ethan Yonker96af84a2015-01-05 14:58:36 -06002783 return false;
2784 }
2785
2786 DataManager::SetProgress(0.0);
2787 if (flash_part) {
Ethan Yonkere080c1f2016-09-19 13:50:25 -05002788 flash_part->Backup_FileName = filename;
2789 if (!flash_part->Flash_Image(&part_settings))
Ethan Yonker96af84a2015-01-05 14:58:36 -06002790 return false;
2791 } else {
Ethan Yonker74db1572015-10-28 12:44:49 -05002792 gui_err("invalid_flash=Invalid flash partition specified.");
Ethan Yonker96af84a2015-01-05 14:58:36 -06002793 return false;
2794 }
Ethan Yonker74db1572015-10-28 12:44:49 -05002795 gui_highlight("flash_done=IMAGE FLASH COMPLETED]");
Ethan Yonker96af84a2015-01-05 14:58:36 -06002796 return true;
2797}
Ethan Yonker74db1572015-10-28 12:44:49 -05002798
2799void TWPartitionManager::Translate_Partition(const char* path, const char* resource_name, const char* default_value) {
2800 TWPartition* part = PartitionManager.Find_Partition_By_Path(path);
2801 if (part) {
Ethan Yonker66a19492015-12-10 10:19:45 -06002802 if (part->Is_Adopted_Storage) {
2803 part->Display_Name = part->Display_Name + " - " + gui_lookup("data", "Data");
2804 part->Backup_Display_Name = part->Display_Name;
2805 part->Storage_Name = part->Storage_Name + " - " + gui_lookup("adopted_storage", "Adopted Storage");
2806 } else {
2807 part->Display_Name = gui_lookup(resource_name, default_value);
2808 part->Backup_Display_Name = part->Display_Name;
2809 }
Ethan Yonker74db1572015-10-28 12:44:49 -05002810 }
2811}
2812
2813void TWPartitionManager::Translate_Partition(const char* path, const char* resource_name, const char* default_value, const char* storage_resource_name, const char* storage_default_value) {
2814 TWPartition* part = PartitionManager.Find_Partition_By_Path(path);
2815 if (part) {
Ethan Yonker66a19492015-12-10 10:19:45 -06002816 if (part->Is_Adopted_Storage) {
Ethan Yonker01f4e032017-02-03 15:30:52 -06002817 part->Backup_Display_Name = part->Display_Name + " - " + gui_lookup("data_backup", "Data (excl. storage)");
Ethan Yonker66a19492015-12-10 10:19:45 -06002818 part->Display_Name = part->Display_Name + " - " + gui_lookup("data", "Data");
Ethan Yonker66a19492015-12-10 10:19:45 -06002819 part->Storage_Name = part->Storage_Name + " - " + gui_lookup("adopted_storage", "Adopted Storage");
2820 } else {
2821 part->Display_Name = gui_lookup(resource_name, default_value);
2822 part->Backup_Display_Name = part->Display_Name;
2823 if (part->Is_Storage)
2824 part->Storage_Name = gui_lookup(storage_resource_name, storage_default_value);
2825 }
Ethan Yonker74db1572015-10-28 12:44:49 -05002826 }
2827}
2828
Ethan Yonker01f4e032017-02-03 15:30:52 -06002829void TWPartitionManager::Translate_Partition(const char* path, const char* resource_name, const char* default_value, const char* storage_resource_name, const char* storage_default_value, const char* backup_name, const char* backup_default) {
2830 TWPartition* part = PartitionManager.Find_Partition_By_Path(path);
2831 if (part) {
2832 if (part->Is_Adopted_Storage) {
2833 part->Backup_Display_Name = part->Display_Name + " - " + gui_lookup(backup_name, backup_default);
2834 part->Display_Name = part->Display_Name + " - " + gui_lookup("data", "Data");
2835 part->Storage_Name = part->Storage_Name + " - " + gui_lookup("adopted_storage", "Adopted Storage");
2836 } else {
2837 part->Display_Name = gui_lookup(resource_name, default_value);
2838 part->Backup_Display_Name = gui_lookup(backup_name, backup_default);
2839 if (part->Is_Storage)
2840 part->Storage_Name = gui_lookup(storage_resource_name, storage_default_value);
2841 }
2842 }
2843}
2844
Ethan Yonker74db1572015-10-28 12:44:49 -05002845void TWPartitionManager::Translate_Partition_Display_Names() {
Ethan Yonker66a19492015-12-10 10:19:45 -06002846 LOGINFO("Translating partition display names\n");
Ethan Yonker74db1572015-10-28 12:44:49 -05002847 Translate_Partition("/system", "system", "System");
2848 Translate_Partition("/system_image", "system_image", "System Image");
2849 Translate_Partition("/vendor", "vendor", "Vendor");
2850 Translate_Partition("/vendor_image", "vendor_image", "Vendor Image");
2851 Translate_Partition("/cache", "cache", "Cache");
Ethan Yonker74db1572015-10-28 12:44:49 -05002852 Translate_Partition("/boot", "boot", "Boot");
2853 Translate_Partition("/recovery", "recovery", "Recovery");
2854 if (!datamedia) {
Ethan Yonker01f4e032017-02-03 15:30:52 -06002855 Translate_Partition("/data", "data", "Data", "internal", "Internal Storage");
Ethan Yonker74db1572015-10-28 12:44:49 -05002856 Translate_Partition("/sdcard", "sdcard", "SDCard", "sdcard", "SDCard");
2857 Translate_Partition("/internal_sd", "sdcard", "SDCard", "sdcard", "SDCard");
2858 Translate_Partition("/internal_sdcard", "sdcard", "SDCard", "sdcard", "SDCard");
2859 Translate_Partition("/emmc", "sdcard", "SDCard", "sdcard", "SDCard");
Ethan Yonker01f4e032017-02-03 15:30:52 -06002860 } else {
2861 Translate_Partition("/data", "data", "Data", "internal", "Internal Storage", "data_backup", "Data (excl. storage)");
Ethan Yonker74db1572015-10-28 12:44:49 -05002862 }
Ethan Yonker01f4e032017-02-03 15:30:52 -06002863 Translate_Partition("/external_sd", "microsd", "Micro SDCard", "microsd", "Micro SDCard", "data_backup", "Data (excl. storage)");
2864 Translate_Partition("/external_sdcard", "microsd", "Micro SDCard", "microsd", "Micro SDCard", "data_backup", "Data (excl. storage)");
Ethan Yonker74db1572015-10-28 12:44:49 -05002865 Translate_Partition("/usb-otg", "usbotg", "USB OTG", "usbotg", "USB OTG");
2866 Translate_Partition("/sd-ext", "sdext", "SD-EXT");
2867
2868 // Android secure is a special case
2869 TWPartition* part = PartitionManager.Find_Partition_By_Path("/and-sec");
2870 if (part)
2871 part->Backup_Display_Name = gui_lookup("android_secure", "Android Secure");
2872
Ethan Yonker6e8c27a2016-12-22 17:55:57 -06002873 std::vector<TWPartition*>::iterator sysfs;
2874 for (sysfs = Partitions.begin(); sysfs != Partitions.end(); sysfs++) {
2875 if (!(*sysfs)->Sysfs_Entry.empty()) {
2876 Translate_Partition((*sysfs)->Mount_Point.c_str(), "autostorage", "Storage", "autostorage", "Storage");
2877 }
2878 }
2879
Ethan Yonker74db1572015-10-28 12:44:49 -05002880 // This updates the text on all of the storage selection buttons in the GUI
2881 DataManager::SetBackupFolder();
2882}
Ethan Yonker66a19492015-12-10 10:19:45 -06002883
Ethan Yonker6e8c27a2016-12-22 17:55:57 -06002884bool TWPartitionManager::Decrypt_Adopted() {
Ethan Yonker66a19492015-12-10 10:19:45 -06002885#ifdef TW_INCLUDE_CRYPTO
Ethan Yonker6e8c27a2016-12-22 17:55:57 -06002886 bool ret = false;
Ethan Yonker66a19492015-12-10 10:19:45 -06002887 if (!Mount_By_Path("/data", false)) {
2888 LOGERR("Cannot decrypt adopted storage because /data will not mount\n");
Ethan Yonker6e8c27a2016-12-22 17:55:57 -06002889 return false;
Ethan Yonker66a19492015-12-10 10:19:45 -06002890 }
zhenyolka22be9c12021-11-08 19:05:30 +03002891
2892 // In Android 12 xml format changed. Previously it was human-readable format with xml tags
2893 // now it's ABX (Android Binary Xml). Sadly, rapidxml can't parse it, so check xml format firstly
2894 std::string path = "/data/system/storage.xml";
2895 if ((atoi(TWFunc::System_Property_Get("ro.build.version.sdk").c_str()) > 30) && TWFunc::Path_Exists(path))
Captain Throwback0c4e6b82021-11-19 19:23:15 -05002896 if(!TWFunc::Check_Xml_Format(path.c_str())) {
zhenyolka22be9c12021-11-08 19:05:30 +03002897 LOGINFO("Android 12+: storage.xml is in ABX format. Skipping adopted storage decryption\n");
2898 return false;
2899 }
2900
Ethan Yonker66a19492015-12-10 10:19:45 -06002901 LOGINFO("Decrypt adopted storage starting\n");
2902 char* xmlFile = PageManager::LoadFileToBuffer("/data/system/storage.xml", NULL);
2903 xml_document<> *doc = NULL;
2904 xml_node<>* volumes = NULL;
Ethan Yonker66a19492015-12-10 10:19:45 -06002905 string Primary_Storage_UUID = "";
2906 if (xmlFile != NULL) {
2907 LOGINFO("successfully loaded storage.xml\n");
2908 doc = new xml_document<>();
2909 doc->parse<0>(xmlFile);
2910 volumes = doc->first_node("volumes");
2911 if (volumes) {
2912 xml_attribute<>* psuuid = volumes->first_attribute("primaryStorageUuid");
2913 if (psuuid) {
2914 Primary_Storage_UUID = psuuid->value();
2915 }
2916 }
Ethan Yonker6e8c27a2016-12-22 17:55:57 -06002917 } else {
2918 LOGINFO("No /data/system/storage.xml for adopted storage\n");
2919 return false;
Ethan Yonker66a19492015-12-10 10:19:45 -06002920 }
2921 std::vector<TWPartition*>::iterator adopt;
2922 for (adopt = Partitions.begin(); adopt != Partitions.end(); adopt++) {
Peter Caic50044b2019-10-17 08:49:10 +08002923 if ((*adopt)->Removable && !(*adopt)->Is_Present && (*adopt)->Adopted_Mount_Delay > 0) {
2924 // On some devices, the external mmc driver takes some time
2925 // to recognize the card, in which case the "actual block device"
2926 // would not have been found yet. We wait the specified delay
2927 // and then try again.
2928 LOGINFO("Sleeping %d seconds for adopted storage.\n", (*adopt)->Adopted_Mount_Delay);
2929 sleep((*adopt)->Adopted_Mount_Delay);
2930 (*adopt)->Find_Actual_Block_Device();
2931 }
2932
Ethan Yonker66a19492015-12-10 10:19:45 -06002933 if ((*adopt)->Removable && (*adopt)->Is_Present) {
2934 if ((*adopt)->Decrypt_Adopted() == 0) {
Ethan Yonker6e8c27a2016-12-22 17:55:57 -06002935 ret = true;
Ethan Yonker66a19492015-12-10 10:19:45 -06002936 if (volumes) {
2937 xml_node<>* volume = volumes->first_node("volume");
2938 while (volume) {
2939 xml_attribute<>* guid = volume->first_attribute("partGuid");
2940 if (guid) {
2941 string GUID = (*adopt)->Adopted_GUID.c_str();
2942 GUID.insert(8, "-");
2943 GUID.insert(13, "-");
2944 GUID.insert(18, "-");
2945 GUID.insert(23, "-");
2946
2947 if (strcasecmp(GUID.c_str(), guid->value()) == 0) {
2948 xml_attribute<>* attr = volume->first_attribute("nickname");
nkk71ffb02bd2017-06-04 23:12:16 +03002949 if (attr && attr->value() && strlen(attr->value()) > 0) {
Ethan Yonker66a19492015-12-10 10:19:45 -06002950 (*adopt)->Storage_Name = attr->value();
2951 (*adopt)->Display_Name = (*adopt)->Storage_Name;
2952 (*adopt)->Backup_Display_Name = (*adopt)->Storage_Name;
2953 LOGINFO("storage name from storage.xml is '%s'\n", attr->value());
2954 }
2955 attr = volume->first_attribute("fsUuid");
2956 if (attr && !Primary_Storage_UUID.empty() && strcmp(Primary_Storage_UUID.c_str(), attr->value()) == 0) {
2957 TWPartition* Dat = Find_Partition_By_Path("/data");
2958 if (Dat) {
2959 LOGINFO("Internal storage is found on adopted storage '%s'\n", (*adopt)->Display_Name.c_str());
2960 LOGINFO("Changing '%s' to point to '%s'\n", Dat->Symlink_Mount_Point.c_str(), (*adopt)->Storage_Path.c_str());
2961 (*adopt)->Symlink_Mount_Point = Dat->Symlink_Mount_Point;
2962 Dat->Symlink_Mount_Point = "";
2963 // Toggle mounts to ensure that the symlink mount point (probably /sdcard) is mounted to the right location
2964 Dat->UnMount(false);
2965 Dat->Mount(false);
2966 (*adopt)->UnMount(false);
2967 (*adopt)->Mount(false);
Ethan Yonker66a19492015-12-10 10:19:45 -06002968 }
2969 }
2970 break;
2971 }
2972 }
2973 volume = volume->next_sibling("volume");
2974 }
2975 }
nkk71ffb02bd2017-06-04 23:12:16 +03002976 Update_System_Details();
2977 Output_Partition((*adopt));
Ethan Yonker66a19492015-12-10 10:19:45 -06002978 }
2979 }
2980 }
2981 if (xmlFile) {
2982 doc->clear();
2983 delete doc;
2984 free(xmlFile);
2985 }
Ethan Yonker6e8c27a2016-12-22 17:55:57 -06002986 return ret;
Ethan Yonker66a19492015-12-10 10:19:45 -06002987#else
2988 LOGINFO("Decrypt_Adopted: no crypto support\n");
Ethan Yonker6e8c27a2016-12-22 17:55:57 -06002989 return false;
Ethan Yonker66a19492015-12-10 10:19:45 -06002990#endif
2991}
Ethan Yonkerfcf3f242016-02-16 12:30:26 -06002992
2993void TWPartitionManager::Remove_Partition_By_Path(string Path) {
2994 std::vector<TWPartition*>::iterator iter;
2995 string Local_Path = TWFunc::Get_Root_Path(Path);
2996
2997 for (iter = Partitions.begin(); iter != Partitions.end(); iter++) {
2998 if ((*iter)->Mount_Point == Local_Path || (!(*iter)->Symlink_Mount_Point.empty() && (*iter)->Symlink_Mount_Point == Local_Path)) {
2999 LOGINFO("Found and erasing '%s' from partition list\n", Local_Path.c_str());
3000 Partitions.erase(iter);
3001 return;
3002 }
3003 }
3004}
Ethan Yonker1b190162016-12-05 15:25:19 -06003005
bigbiff6e2f3662021-07-31 19:02:26 -04003006void TWPartitionManager::Override_Active_Slot(const string& Slot) {
3007 LOGINFO("Overriding slot to '%s'\n", Slot.c_str());
3008 Active_Slot_Display = Slot;
3009 DataManager::SetValue("tw_active_slot", Slot);
nebrassy66c9fb42021-11-21 03:32:47 +01003010 PartitionManager.Update_System_Details();
bigbiff6e2f3662021-07-31 19:02:26 -04003011}
3012
Ethan Yonker1b190162016-12-05 15:25:19 -06003013void TWPartitionManager::Set_Active_Slot(const string& Slot) {
3014 if (Slot != "A" && Slot != "B") {
3015 LOGERR("Set_Active_Slot invalid slot '%s'\n", Slot.c_str());
3016 return;
3017 }
3018 if (Active_Slot_Display == Slot)
3019 return;
3020 LOGINFO("Setting active slot %s\n", Slot.c_str());
3021#ifdef AB_OTA_UPDATER
3022 if (!Active_Slot_Display.empty()) {
3023 const hw_module_t *hw_module;
3024 boot_control_module_t *module;
3025 int ret;
3026 ret = hw_get_module("bootctrl", &hw_module);
3027 if (ret != 0) {
3028 LOGERR("Error getting bootctrl module.\n");
3029 } else {
3030 module = (boot_control_module_t*) hw_module;
3031 module->init(module);
3032 int slot_number = 0;
3033 if (Slot == "B")
3034 slot_number = 1;
3035 if (module->setActiveBootSlot(module, slot_number))
3036 gui_msg(Msg(msg::kError, "unable_set_boot_slot=Error changing bootloader boot slot to {1}")(Slot));
3037 }
3038 DataManager::SetValue("tw_active_slot", Slot); // Doing this outside of this if block may result in a seg fault because the DataManager may not be ready yet
3039 }
3040#else
3041 LOGERR("Boot slot feature not present\n");
3042#endif
3043 Active_Slot_Display = Slot;
3044 if (Fstab_Processed())
3045 Update_System_Details();
3046}
3047string TWPartitionManager::Get_Active_Slot_Suffix() {
3048 if (Active_Slot_Display == "A")
3049 return "_a";
3050 return "_b";
3051}
3052string TWPartitionManager::Get_Active_Slot_Display() {
3053 return Active_Slot_Display;
3054}
Ethan Yonker6e8c27a2016-12-22 17:55:57 -06003055
Captain Throwback9d6feb52018-07-27 10:05:24 -04003056string TWPartitionManager::Get_Android_Root_Path() {
Chaosmasterf6e42ce2020-01-27 00:17:04 +01003057 if (property_get_bool("ro.twrp.sar", false))
dianlujitao58f1a632020-01-16 23:03:56 +08003058 return "/system_root";
3059 return "/system";
Captain Throwback9d6feb52018-07-27 10:05:24 -04003060}
3061
Ethan Yonker6e8c27a2016-12-22 17:55:57 -06003062void TWPartitionManager::Remove_Uevent_Devices(const string& Mount_Point) {
3063 std::vector<TWPartition*>::iterator iter;
3064
3065 for (iter = Partitions.begin(); iter != Partitions.end(); ) {
3066 if ((*iter)->Is_SubPartition && (*iter)->SubPartition_Of == Mount_Point) {
3067 TWPartition *part = *iter;
3068 LOGINFO("%s was removed by uevent data\n", (*iter)->Mount_Point.c_str());
3069 (*iter)->UnMount(false);
3070 rmdir((*iter)->Mount_Point.c_str());
3071 iter = Partitions.erase(iter);
3072 delete part;
3073 } else {
3074 iter++;
3075 }
3076 }
3077}
3078
3079void TWPartitionManager::Handle_Uevent(const Uevent_Block_Data& uevent_data) {
3080 std::vector<TWPartition*>::iterator iter;
3081
3082 for (iter = Partitions.begin(); iter != Partitions.end(); iter++) {
3083 if (!(*iter)->Sysfs_Entry.empty()) {
3084 string device;
3085 size_t wildcard = (*iter)->Sysfs_Entry.find("*");
3086 if (wildcard != string::npos) {
3087 device = (*iter)->Sysfs_Entry.substr(0, wildcard);
3088 } else {
3089 device = (*iter)->Sysfs_Entry;
3090 }
3091 if (device == uevent_data.sysfs_path.substr(0, device.size())) {
3092 // Found a match
3093 if (uevent_data.action == "add") {
3094 (*iter)->Primary_Block_Device = "/dev/block/" + uevent_data.block_device;
3095 (*iter)->Alternate_Block_Device = (*iter)->Primary_Block_Device;
3096 (*iter)->Is_Present = true;
3097 LOGINFO("Found a match '%s' '%s'\n", uevent_data.block_device.c_str(), device.c_str());
3098 if (!Decrypt_Adopted()) {
3099 LOGINFO("No adopted storage so finding actual block device\n");
3100 (*iter)->Find_Actual_Block_Device();
3101 }
3102 return;
3103 } else if (uevent_data.action == "remove") {
3104 (*iter)->Is_Present = false;
3105 (*iter)->Primary_Block_Device = "";
3106 (*iter)->Actual_Block_Device = "";
3107 Remove_Uevent_Devices((*iter)->Mount_Point);
3108 return;
3109 }
3110 }
3111 }
3112 }
3113 LOGINFO("Found no matching fstab entry for uevent device '%s' - %s\n", uevent_data.sysfs_path.c_str(), uevent_data.action.c_str());
3114}
3115
3116void TWPartitionManager::setup_uevent() {
3117 struct sockaddr_nl nls;
3118
3119 if (uevent_pfd.fd >= 0) {
3120 LOGINFO("uevent already set up\n");
3121 return;
3122 }
3123
3124 // Open hotplug event netlink socket
3125 memset(&nls,0,sizeof(struct sockaddr_nl));
3126 nls.nl_family = AF_NETLINK;
3127 nls.nl_pid = getpid();
3128 nls.nl_groups = -1;
3129 uevent_pfd.events = POLLIN;
3130 uevent_pfd.fd = socket(PF_NETLINK, SOCK_DGRAM, NETLINK_KOBJECT_UEVENT);
3131 if (uevent_pfd.fd==-1) {
3132 LOGERR("uevent not root\n");
3133 return;
3134 }
3135
3136 // Listen to netlink socket
3137 if (::bind(uevent_pfd.fd, (struct sockaddr *) &nls, sizeof(struct sockaddr_nl)) < 0) {
3138 LOGERR("Bind failed\n");
3139 return;
3140 }
3141 set_select_fd();
3142 Coldboot();
3143}
3144
3145Uevent_Block_Data TWPartitionManager::get_event_block_values(char *buf, int len) {
3146 Uevent_Block_Data ret;
3147 ret.subsystem = "";
3148 char *ptr = buf;
3149 const char *end = buf + len;
3150
3151 buf[len - 1] = '\0';
3152 while (ptr < end) {
3153 if (strncmp(ptr, "ACTION=", strlen("ACTION=")) == 0) {
3154 ptr += strlen("ACTION=");
3155 ret.action = ptr;
3156 } else if (strncmp(ptr, "SUBSYSTEM=", strlen("SUBSYSTEM=")) == 0) {
3157 ptr += strlen("SUBSYSTEM=");
3158 ret.subsystem = ptr;
3159 } else if (strncmp(ptr, "DEVTYPE=", strlen("DEVTYPE=")) == 0) {
3160 ptr += strlen("DEVTYPE=");
3161 ret.type = ptr;
3162 } else if (strncmp(ptr, "DEVPATH=", strlen("DEVPATH=")) == 0) {
3163 ptr += strlen("DEVPATH=");
3164 ret.sysfs_path += ptr;
3165 } else if (strncmp(ptr, "DEVNAME=", strlen("DEVNAME=")) == 0) {
3166 ptr += strlen("DEVNAME=");
3167 ret.block_device += ptr;
3168 } else if (strncmp(ptr, "MAJOR=", strlen("MAJOR=")) == 0) {
3169 ptr += strlen("MAJOR=");
3170 ret.major = atoi(ptr);
3171 } else if (strncmp(ptr, "MINOR=", strlen("MINOR=")) == 0) {
3172 ptr += strlen("MINOR=");
3173 ret.minor = atoi(ptr);
3174 }
3175 ptr += strlen(ptr) + 1;
3176 }
3177 return ret;
3178}
3179
3180void TWPartitionManager::read_uevent() {
3181 char buf[1024];
3182
3183 int len = recv(uevent_pfd.fd, buf, sizeof(buf), MSG_DONTWAIT);
3184 if (len == -1) {
Mauronofrio Matarrese9632f302019-08-04 17:02:41 +01003185 LOGINFO("recv error on uevent\n");
Ethan Yonker6e8c27a2016-12-22 17:55:57 -06003186 return;
3187 }
3188 /*int i = 0; // Print all uevent output for test /debug
3189 while (i<len) {
3190 printf("%s\n", buf+i);
3191 i += strlen(buf+i)+1;
3192 }*/
3193 Uevent_Block_Data uevent_data = get_event_block_values(buf, len);
3194 if (uevent_data.subsystem == "block" && uevent_data.type == "disk") {
3195 PartitionManager.Handle_Uevent(uevent_data);
3196 }
3197}
3198
3199void TWPartitionManager::close_uevent() {
3200 if (uevent_pfd.fd > 0)
3201 close(uevent_pfd.fd);
3202 uevent_pfd.fd = -1;
3203}
3204
3205void TWPartitionManager::Add_Partition(TWPartition* Part) {
3206 Partitions.push_back(Part);
3207}
3208
3209void TWPartitionManager::Coldboot_Scan(std::vector<string> *sysfs_entries, const string& Path, int depth) {
3210 string Real_Path = Path;
3211 char real_path[PATH_MAX];
3212 if (realpath(Path.c_str(), &real_path[0])) {
3213 string Real_Path = real_path;
3214 std::vector<string>::iterator iter;
3215 for (iter = sysfs_entries->begin(); iter != sysfs_entries->end(); iter++) {
3216 if (Real_Path.find((*iter)) != string::npos) {
3217 string Write_Path = Real_Path + "/uevent";
3218 if (TWFunc::Path_Exists(Write_Path)) {
3219 const char* write_val = "add\n";
3220 TWFunc::write_to_file(Write_Path, write_val);
3221 break;
3222 }
3223 }
3224 }
3225 }
3226
3227 DIR* d = opendir(Path.c_str());
3228 if (d != NULL) {
3229 struct dirent* de;
3230 while ((de = readdir(d)) != NULL) {
3231 if (de->d_name[0] == '.' || (de->d_type != DT_DIR && depth > 0))
3232 continue;
3233 if (strlen(de->d_name) >= 4 && (strncmp(de->d_name, "ram", 3) == 0 || strncmp(de->d_name, "loop", 4) == 0))
3234 continue;
3235
3236 string item = Path + "/";
3237 item.append(de->d_name);
3238 Coldboot_Scan(sysfs_entries, item, depth + 1);
3239 }
3240 closedir(d);
3241 }
3242}
3243
3244void TWPartitionManager::Coldboot() {
3245 std::vector<TWPartition*>::iterator iter;
3246 std::vector<string> sysfs_entries;
3247
3248 for (iter = Partitions.begin(); iter != Partitions.end(); iter++) {
3249 if (!(*iter)->Sysfs_Entry.empty()) {
3250 size_t wildcard_pos = (*iter)->Sysfs_Entry.find("*");
3251 if (wildcard_pos == string::npos)
3252 wildcard_pos = (*iter)->Sysfs_Entry.size();
3253 sysfs_entries.push_back((*iter)->Sysfs_Entry.substr(0, wildcard_pos));
3254 }
3255 }
3256
3257 if (sysfs_entries.size() > 0)
3258 Coldboot_Scan(&sysfs_entries, "/sys/block", 0);
3259}
Ethan Yonker53796e72019-01-11 22:49:52 -06003260
3261bool TWPartitionManager::Prepare_Empty_Folder(const std::string& Folder) {
3262 if (TWFunc::Path_Exists(Folder))
3263 TWFunc::removeDir(Folder, false);
3264 return TWFunc::Recursive_Mkdir(Folder);
3265}