blob: d4b2028ed8918075789f9ac25c8d803b9412c51e [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"
bigbiffce8f83c2015-12-12 18:30:21 -050055#include "adbbu/libtwadbbu.hpp"
Dees_Troy38bd7602012-09-14 13:33:53 -040056
bigbiff bigbiffc7eee6f2014-09-02 18:59:01 -040057#ifdef TW_HAS_MTP
bigbiff bigbiffaf32bb92018-12-18 18:39:53 -050058#ifdef TW_HAS_LEGACY_MTP
59#include "mtp/legacy/mtp_MtpServer.hpp"
60#include "mtp/legacy/twrpMtp.hpp"
61#include "mtp/legacy/MtpMessage.hpp"
62#else
63#include "mtp/ffs/mtp_MtpServer.hpp"
64#include "mtp/ffs/twrpMtp.hpp"
65#include "mtp/ffs/MtpMessage.hpp"
66#endif
bigbiff bigbiffc7eee6f2014-09-02 18:59:01 -040067#endif
68
Dees Troy6f6441d2014-01-23 02:07:03 +000069extern "C" {
70 #include "cutils/properties.h"
Ethan Yonker74db1572015-10-28 12:44:49 -050071 #include "gui/gui.h"
Dees Troy6f6441d2014-01-23 02:07:03 +000072}
73
Dees_Troy5bf43922012-09-07 16:07:55 -040074#ifdef TW_INCLUDE_CRYPTO
Noah Jacobson5a79f672019-04-28 00:10:07 -040075#include "crypto/fde/cryptfs.h"
76#include "gui/rapidxml.hpp"
77#include "gui/pages.hpp"
78#ifdef TW_INCLUDE_FBE
79#include "crypto/ext4crypt/Decrypt.h"
80#ifdef TW_INCLUDE_FBE_METADATA_DECRYPT
81#include "crypto/ext4crypt/MetadataCrypt.h"
82#endif
83#endif
84#ifdef TW_CRYPTO_USE_SYSTEM_VOLD
85#include "crypto/vold_decrypt/vold_decrypt.h"
86#endif
Dees_Troy5bf43922012-09-07 16:07:55 -040087#endif
Dees_Troy51a0e822012-09-05 15:24:24 -040088
Ethan Yonker1b190162016-12-05 15:25:19 -060089#ifdef AB_OTA_UPDATER
90#include <hardware/hardware.h>
91#include <hardware/boot_control.h>
92#endif
93
Ethan Yonker6277c792014-09-15 14:54:30 -050094extern bool datamedia;
Noah Jacobson5a79f672019-04-28 00:10:07 -040095std::vector<users_struct> Users_List;
Ethan Yonker6277c792014-09-15 14:54:30 -050096
bigbiff bigbiff34684ff2013-12-01 21:03:45 -050097TWPartitionManager::TWPartitionManager(void) {
bigbiff bigbiffc7eee6f2014-09-02 18:59:01 -040098 mtp_was_enabled = false;
Ethan Yonker726a0202014-12-16 20:01:38 -060099 mtp_write_fd = -1;
Ethan Yonker6e8c27a2016-12-22 17:55:57 -0600100 uevent_pfd.fd = -1;
bigbiff7abc5fe2015-01-17 16:53:12 -0500101 stop_backup.set_value(0);
Ethan Yonker1b190162016-12-05 15:25:19 -0600102#ifdef AB_OTA_UPDATER
103 char slot_suffix[PROPERTY_VALUE_MAX];
Ethan Yonkerfefe5912017-09-30 22:22:13 -0500104 property_get("ro.boot.slot_suffix", slot_suffix, "error");
105 if (strcmp(slot_suffix, "error") == 0)
106 property_get("ro.boot.slot", slot_suffix, "error");
Ethan Yonker1b190162016-12-05 15:25:19 -0600107 Active_Slot_Display = "";
Ethan Yonkerfefe5912017-09-30 22:22:13 -0500108 if (strcmp(slot_suffix, "_a") == 0 || strcmp(slot_suffix, "a") == 0)
Ethan Yonker1b190162016-12-05 15:25:19 -0600109 Set_Active_Slot("A");
110 else
111 Set_Active_Slot("B");
112#endif
bigbiff bigbiff34684ff2013-12-01 21:03:45 -0500113}
114
Captain Throwback07b8e052020-10-29 12:43:17 -0400115int TWPartitionManager::Set_FDE_Encrypt_Status(void) {
116 property_set("ro.crypto.state", "encrypted");
117 property_set("ro.crypto.type", "block");
118 // Sleep for a bit so that services can start if needed
119 sleep(1);
120 return 0;
121}
122
Chaosmasterf6e42ce2020-01-27 00:17:04 +0100123int TWPartitionManager::Process_Fstab(string Fstab_Filename, bool Display_Error, bool Sar_Detect) {
Dees_Troy5bf43922012-09-07 16:07:55 -0400124 FILE *fstabFile;
125 char fstab_line[MAX_FSTAB_LINE_LENGTH];
Dees Troy02a64532014-03-19 15:23:32 +0000126 TWPartition* settings_partition = NULL;
Matt Mowerbf4efa32014-04-14 23:25:26 -0500127 TWPartition* andsec_partition = NULL;
Ethan Yonker726a0202014-12-16 20:01:38 -0600128 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 -0600129 std::map<string, Flags_Map> twrp_flags;
130
131 fstabFile = fopen("/etc/twrp.flags", "rt");
132 if (fstabFile != NULL) {
133 LOGINFO("reading /etc/twrp.flags\n");
134 while (fgets(fstab_line, sizeof(fstab_line), fstabFile) != NULL) {
135 if (fstab_line[0] != '/')
136 continue;
137
138 size_t line_size = strlen(fstab_line);
139 if (fstab_line[line_size - 1] != '\n')
140 fstab_line[line_size] = '\n';
141 Flags_Map line_flags;
142 line_flags.Primary_Block_Device = "";
143 line_flags.Alternate_Block_Device = "";
144 line_flags.fstab_line = (char*)malloc(MAX_FSTAB_LINE_LENGTH);
145 if (!line_flags.fstab_line) {
146 LOGERR("malloc error on line_flags.fstab_line\n");
147 return false;
148 }
149 memcpy(line_flags.fstab_line, fstab_line, MAX_FSTAB_LINE_LENGTH);
150 bool found_separator = false;
151 char *fs_loc = NULL;
152 char *block_loc = NULL;
153 char *flags_loc = NULL;
154 size_t index, item_index = 0;
155 for (index = 0; index < line_size; index++) {
156 if (fstab_line[index] <= 32) {
157 fstab_line[index] = '\0';
158 found_separator = true;
159 } else if (found_separator) {
160 if (item_index == 0) {
161 fs_loc = fstab_line + index;
162 } else if (item_index == 1) {
163 block_loc = fstab_line + index;
164 } else if (item_index > 1) {
165 char *ptr = fstab_line + index;
166 if (*ptr == '/') {
167 line_flags.Alternate_Block_Device = ptr;
168 } else if (strlen(ptr) > strlen("flags=") && strncmp(ptr, "flags=", strlen("flags=")) == 0) {
169 flags_loc = ptr;
170 // Once we find the flags=, we're done scanning the line
171 break;
172 }
173 }
174 found_separator = false;
175 item_index++;
176 }
177 }
178 if (block_loc)
179 line_flags.Primary_Block_Device = block_loc;
180 if (fs_loc)
181 line_flags.File_System = fs_loc;
182 if (flags_loc)
183 line_flags.Flags = flags_loc;
184 string Mount_Point = fstab_line;
185 twrp_flags[Mount_Point] = line_flags;
186 memset(fstab_line, 0, sizeof(fstab_line));
187 }
188 fclose(fstabFile);
189 }
Dees_Troy5bf43922012-09-07 16:07:55 -0400190
191 fstabFile = fopen(Fstab_Filename.c_str(), "rt");
192 if (fstabFile == NULL) {
Dees_Troy2673cec2013-04-02 20:22:16 +0000193 LOGERR("Critical Error: Unable to open fstab at '%s'.\n", Fstab_Filename.c_str());
Dees_Troy5bf43922012-09-07 16:07:55 -0400194 return false;
Ethan Yonker6e8c27a2016-12-22 17:55:57 -0600195 } else
196 LOGINFO("Reading %s\n", Fstab_Filename.c_str());
Dees_Troy5bf43922012-09-07 16:07:55 -0400197
198 while (fgets(fstab_line, sizeof(fstab_line), fstabFile) != NULL) {
199 if (fstab_line[0] != '/')
200 continue;
201
Ethan Yonker6e8c27a2016-12-22 17:55:57 -0600202 if (strstr(fstab_line, "swap"))
203 continue; // Skip swap in recovery
204
205 size_t line_size = strlen(fstab_line);
206 if (fstab_line[line_size - 1] != '\n')
207 fstab_line[line_size] = '\n';
Dees_Troy2a923582012-09-20 12:13:34 -0400208
Matt Mower2b2dd152016-04-26 11:24:08 -0500209 TWPartition* partition = new TWPartition();
Chaosmasterf6e42ce2020-01-27 00:17:04 +0100210 if (partition->Process_Fstab_Line(fstab_line, Display_Error, &twrp_flags, Sar_Detect))
Ethan Yonkerc05c5982014-03-13 09:19:56 -0500211 Partitions.push_back(partition);
Matt Mower72c87ce2016-04-26 14:34:56 -0500212 else
Dees_Troy5bf43922012-09-07 16:07:55 -0400213 delete partition;
Matt Mower2b2dd152016-04-26 11:24:08 -0500214
215 memset(fstab_line, 0, sizeof(fstab_line));
Dees_Troy5bf43922012-09-07 16:07:55 -0400216 }
217 fclose(fstabFile);
Matt Mower72c87ce2016-04-26 14:34:56 -0500218
Ethan Yonker6e8c27a2016-12-22 17:55:57 -0600219 if (twrp_flags.size() > 0) {
220 LOGINFO("Processing remaining twrp.flags\n");
221 // Add any items from twrp.flags that did not exist in the recovery.fstab
222 for (std::map<string, Flags_Map>::iterator mapit=twrp_flags.begin(); mapit!=twrp_flags.end(); mapit++) {
223 if (Find_Partition_By_Path(mapit->first) == NULL) {
224 TWPartition* partition = new TWPartition();
Chaosmasterf6e42ce2020-01-27 00:17:04 +0100225 if (partition->Process_Fstab_Line(mapit->second.fstab_line, Display_Error, NULL, Sar_Detect))
Ethan Yonker6e8c27a2016-12-22 17:55:57 -0600226 Partitions.push_back(partition);
227 else
228 delete partition;
229 }
230 if (mapit->second.fstab_line)
231 free(mapit->second.fstab_line);
232 mapit->second.fstab_line = NULL;
233 }
234 }
235 LOGINFO("Done processing fstab files\n");
236
Matt Mower72c87ce2016-04-26 14:34:56 -0500237 std::vector<TWPartition*>::iterator iter;
238 for (iter = Partitions.begin(); iter != Partitions.end(); iter++) {
Chaosmasterf6e42ce2020-01-27 00:17:04 +0100239 if (Sar_Detect) {
240 if ((*iter)->Mount_Point == "/s")
241 return true;
242 else
243 continue;
244 }
245
Matt Mower72c87ce2016-04-26 14:34:56 -0500246 (*iter)->Partition_Post_Processing(Display_Error);
247
248 if ((*iter)->Is_Storage) {
249 ++storageid;
250 (*iter)->MTP_Storage_ID = storageid;
251 }
252
253 if (!settings_partition && (*iter)->Is_Settings_Storage && (*iter)->Is_Present)
254 settings_partition = (*iter);
255 else
256 (*iter)->Is_Settings_Storage = false;
257
258 if (!andsec_partition && (*iter)->Has_Android_Secure && (*iter)->Is_Present)
259 andsec_partition = (*iter);
260 else
261 (*iter)->Has_Android_Secure = false;
262 }
263
Ethan Yonker6277c792014-09-15 14:54:30 -0500264 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) {
265 // Attempt to automatically identify /data/media emulated storage devices
266 TWPartition* Dat = Find_Partition_By_Path("/data");
267 if (Dat) {
268 LOGINFO("Using automatic handling for /data/media emulated storage device.\n");
269 datamedia = true;
that9e0593e2014-10-08 00:01:24 +0200270 Dat->Setup_Data_Media();
Ethan Yonker6277c792014-09-15 14:54:30 -0500271 settings_partition = Dat;
Ethan Yonker726a0202014-12-16 20:01:38 -0600272 // Since /data was not considered a storage partition earlier, we still need to assign an MTP ID
273 ++storageid;
274 Dat->MTP_Storage_ID = storageid;
Ethan Yonker6277c792014-09-15 14:54:30 -0500275 }
276 }
Dees Troy02a64532014-03-19 15:23:32 +0000277 if (!settings_partition) {
Dees_Troya13d74f2013-03-24 08:54:55 -0500278 for (iter = Partitions.begin(); iter != Partitions.end(); iter++) {
279 if ((*iter)->Is_Storage) {
Dees Troy02a64532014-03-19 15:23:32 +0000280 settings_partition = (*iter);
Dees_Troya13d74f2013-03-24 08:54:55 -0500281 break;
282 }
283 }
Dees Troy02a64532014-03-19 15:23:32 +0000284 if (!settings_partition)
Dees_Troy2673cec2013-04-02 20:22:16 +0000285 LOGERR("Unable to locate storage partition for storing settings file.\n");
Dees_Troya13d74f2013-03-24 08:54:55 -0500286 }
Dees_Troy5bf43922012-09-07 16:07:55 -0400287 if (!Write_Fstab()) {
288 if (Display_Error)
Dees_Troy2673cec2013-04-02 20:22:16 +0000289 LOGERR("Error creating fstab\n");
Dees_Troy5bf43922012-09-07 16:07:55 -0400290 else
Dees_Troy2673cec2013-04-02 20:22:16 +0000291 LOGINFO("Error creating fstab\n");
Dees_Troy5bf43922012-09-07 16:07:55 -0400292 }
Matt Mowered71fa32014-04-16 13:21:47 -0500293
Matt Mowerbf4efa32014-04-14 23:25:26 -0500294 if (andsec_partition) {
295 Setup_Android_Secure_Location(andsec_partition);
Matt Mowered71fa32014-04-16 13:21:47 -0500296 } else if (settings_partition) {
Matt Mowerbf4efa32014-04-14 23:25:26 -0500297 Setup_Android_Secure_Location(settings_partition);
298 }
Matt Mowered71fa32014-04-16 13:21:47 -0500299 if (settings_partition) {
300 Setup_Settings_Storage_Partition(settings_partition);
301 }
Ethan Yonker253368a2014-11-25 15:00:52 -0600302#ifdef TW_INCLUDE_CRYPTO
Ethan Yonkercceebb82014-11-18 10:17:59 -0600303 TWPartition* Decrypt_Data = Find_Partition_By_Path("/data");
304 if (Decrypt_Data && Decrypt_Data->Is_Encrypted && !Decrypt_Data->Is_Decrypted) {
Ethan Yonker93382822018-11-01 15:25:31 -0500305 if (!Decrypt_Data->Key_Directory.empty() && Mount_By_Path(Decrypt_Data->Key_Directory, false)) {
306#ifdef TW_INCLUDE_FBE_METADATA_DECRYPT
307 if (e4crypt_mount_metadata_encrypted(Decrypt_Data->Mount_Point, false, Decrypt_Data->Key_Directory, Decrypt_Data->Actual_Block_Device, &Decrypt_Data->Decrypted_Block_Device)) {
308 LOGINFO("Successfully decrypted metadata encrypted data partition with new block device: '%s'\n", Decrypt_Data->Decrypted_Block_Device.c_str());
309 property_set("ro.crypto.state", "encrypted");
310 Decrypt_Data->Is_Decrypted = true; // Needed to make the mount function work correctly
311 int retry_count = 10;
312 while (!Decrypt_Data->Mount(false) && --retry_count)
313 usleep(500);
314 if (Decrypt_Data->Mount(false)) {
bigbiff bigbiff0be03b32019-08-27 20:50:31 -0400315 if (!Decrypt_Data->Decrypt_FBE_DE()) {
mauronofrio1db94322019-11-23 23:13:04 +0100316 char wrappedvalue[PROPERTY_VALUE_MAX];
317 property_get("fbe.data.wrappedkey", wrappedvalue, "");
318 std::string wrappedkeyvalue(wrappedvalue);
319 if (wrappedkeyvalue == "true") {
bigbiff bigbiff0be03b32019-08-27 20:50:31 -0400320 LOGERR("Unable to decrypt FBE device\n");
mauronofrio1db94322019-11-23 23:13:04 +0100321 } else {
322 LOGINFO("Trying wrapped key.\n");
323 property_set("fbe.data.wrappedkey", "true");
324 if (!Decrypt_Data->Decrypt_FBE_DE()) {
325 LOGERR("Unable to decrypt FBE device\n");
326 }
bigbiff bigbiff0be03b32019-08-27 20:50:31 -0400327 }
328 }
329
Ethan Yonker93382822018-11-01 15:25:31 -0500330 } else {
331 LOGINFO("Failed to mount data after metadata decrypt\n");
332 }
333 } else {
334 LOGINFO("Unable to decrypt metadata encryption\n");
335 }
336#else
337 LOGERR("Metadata FBE decrypt support not present in this TWRP\n");
338#endif
339 }
Ethan Yonkerbd7492d2016-12-07 13:55:01 -0600340 if (Decrypt_Data->Is_FBE) {
341 if (DataManager::GetIntValue(TW_CRYPTO_PWTYPE) == 0) {
342 if (Decrypt_Device("!") == 0) {
343 gui_msg("decrypt_success=Successfully decrypted with default password.");
344 DataManager::SetValue(TW_IS_ENCRYPTED, 0);
345 } else {
346 gui_err("unable_to_decrypt=Unable to decrypt with default password.");
347 }
Ethan Yonkercceebb82014-11-18 10:17:59 -0600348 }
349 } else {
Captain Throwback07b8e052020-10-29 12:43:17 -0400350 Set_FDE_Encrypt_Status();
Ethan Yonkerbd7492d2016-12-07 13:55:01 -0600351 int password_type = cryptfs_get_password_type();
352 if (password_type == CRYPT_TYPE_DEFAULT) {
353 LOGINFO("Device is encrypted with the default password, attempting to decrypt.\n");
354 if (Decrypt_Device("default_password") == 0) {
355 gui_msg("decrypt_success=Successfully decrypted with default password.");
356 DataManager::SetValue(TW_IS_ENCRYPTED, 0);
357 } else {
358 gui_err("unable_to_decrypt=Unable to decrypt with default password.");
359 }
360 } else {
361 DataManager::SetValue("TW_CRYPTO_TYPE", password_type);
Noah Jacobson5a79f672019-04-28 00:10:07 -0400362 DataManager::SetValue("tw_crypto_pwtype_0", password_type);
Ethan Yonkerbd7492d2016-12-07 13:55:01 -0600363 }
Ethan Yonkercceebb82014-11-18 10:17:59 -0600364 }
365 }
Noah Jacobson5a79f672019-04-28 00:10:07 -0400366 if (Decrypt_Data && (!Decrypt_Data->Is_Encrypted || Decrypt_Data->Is_Decrypted) &&
367 Decrypt_Data->Mount(false)) {
Ethan Yonker66a19492015-12-10 10:19:45 -0600368 Decrypt_Adopted();
369 }
Ethan Yonkercceebb82014-11-18 10:17:59 -0600370#endif
Dees_Troy51127312012-09-08 13:08:49 -0400371 Update_System_Details();
Dees_Troyd0384ef2012-10-12 12:15:42 -0400372 UnMount_Main_Partitions();
Ethan Yonker1b190162016-12-05 15:25:19 -0600373#ifdef AB_OTA_UPDATER
374 DataManager::SetValue("tw_active_slot", Get_Active_Slot_Display());
375#endif
Ethan Yonker6e8c27a2016-12-22 17:55:57 -0600376 setup_uevent();
Dees_Troy5bf43922012-09-07 16:07:55 -0400377 return true;
378}
379
380int TWPartitionManager::Write_Fstab(void) {
381 FILE *fp;
382 std::vector<TWPartition*>::iterator iter;
383 string Line;
384
385 fp = fopen("/etc/fstab", "w");
386 if (fp == NULL) {
Dees_Troy2673cec2013-04-02 20:22:16 +0000387 LOGINFO("Can not open /etc/fstab.\n");
Dees_Troy5bf43922012-09-07 16:07:55 -0400388 return false;
389 }
Dees_Troy63c8df72012-09-10 14:02:05 -0400390 for (iter = Partitions.begin(); iter != Partitions.end(); iter++) {
Dees_Troy51127312012-09-08 13:08:49 -0400391 if ((*iter)->Can_Be_Mounted) {
dianlujitao7d304c72016-01-02 12:15:50 +0800392 Line = (*iter)->Actual_Block_Device + " " + (*iter)->Mount_Point + " " + (*iter)->Current_File_System + " rw 0 0\n";
Dees_Troy5bf43922012-09-07 16:07:55 -0400393 fputs(Line.c_str(), fp);
Dees_Troy91862e62013-04-04 23:48:21 +0000394 }
395 // Handle subpartition tracking
396 if ((*iter)->Is_SubPartition) {
397 TWPartition* ParentPartition = Find_Partition_By_Path((*iter)->SubPartition_Of);
398 if (ParentPartition)
399 ParentPartition->Has_SubPartition = true;
400 else
401 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 -0400402 }
403 }
404 fclose(fp);
405 return true;
Dees_Troy51a0e822012-09-05 15:24:24 -0400406}
407
Ethan Yonkerc05c5982014-03-13 09:19:56 -0500408void TWPartitionManager::Setup_Settings_Storage_Partition(TWPartition* Part) {
Ethan Yonkerc05c5982014-03-13 09:19:56 -0500409 DataManager::SetValue("tw_settings_path", Part->Storage_Path);
410 DataManager::SetValue("tw_storage_path", Part->Storage_Path);
411 LOGINFO("Settings storage is '%s'\n", Part->Storage_Path.c_str());
412}
413
Matt Mowerbf4efa32014-04-14 23:25:26 -0500414void TWPartitionManager::Setup_Android_Secure_Location(TWPartition* Part) {
415 if (Part->Has_Android_Secure)
416 Part->Setup_AndSec();
Ethan Yonker6277c792014-09-15 14:54:30 -0500417 else if (!datamedia)
Matt Mowerbf4efa32014-04-14 23:25:26 -0500418 Part->Setup_AndSec();
Matt Mowerbf4efa32014-04-14 23:25:26 -0500419}
420
Dees_Troy8170a922012-09-18 15:40:25 -0400421void TWPartitionManager::Output_Partition_Logging(void) {
422 std::vector<TWPartition*>::iterator iter;
423
424 printf("\n\nPartition Logs:\n");
425 for (iter = Partitions.begin(); iter != Partitions.end(); iter++)
426 Output_Partition((*iter));
427}
428
429void TWPartitionManager::Output_Partition(TWPartition* Part) {
430 unsigned long long mb = 1048576;
431
Gary Peck004d48b2012-11-21 16:28:18 -0800432 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 -0400433 if (Part->Can_Be_Mounted) {
Gary Peck004d48b2012-11-21 16:28:18 -0800434 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 -0400435 }
Gary Peck004d48b2012-11-21 16:28:18 -0800436 printf("\n Flags: ");
Dees_Troya13d74f2013-03-24 08:54:55 -0500437 if (Part->Can_Be_Mounted)
438 printf("Can_Be_Mounted ");
Gary Peck004d48b2012-11-21 16:28:18 -0800439 if (Part->Can_Be_Wiped)
440 printf("Can_Be_Wiped ");
Hashcodedabfd492013-08-29 22:45:30 -0700441 if (Part->Use_Rm_Rf)
442 printf("Use_Rm_Rf ");
Dees_Troya13d74f2013-03-24 08:54:55 -0500443 if (Part->Can_Be_Backed_Up)
444 printf("Can_Be_Backed_Up ");
Gary Peck004d48b2012-11-21 16:28:18 -0800445 if (Part->Wipe_During_Factory_Reset)
446 printf("Wipe_During_Factory_Reset ");
447 if (Part->Wipe_Available_in_GUI)
448 printf("Wipe_Available_in_GUI ");
449 if (Part->Is_SubPartition)
450 printf("Is_SubPartition ");
451 if (Part->Has_SubPartition)
452 printf("Has_SubPartition ");
453 if (Part->Removable)
454 printf("Removable ");
455 if (Part->Is_Present)
456 printf("IsPresent ");
457 if (Part->Can_Be_Encrypted)
458 printf("Can_Be_Encrypted ");
459 if (Part->Is_Encrypted)
460 printf("Is_Encrypted ");
461 if (Part->Is_Decrypted)
462 printf("Is_Decrypted ");
463 if (Part->Has_Data_Media)
464 printf("Has_Data_Media ");
Dees_Troy83bd4832013-05-04 12:39:56 +0000465 if (Part->Can_Encrypt_Backup)
466 printf("Can_Encrypt_Backup ");
467 if (Part->Use_Userdata_Encryption)
468 printf("Use_Userdata_Encryption ");
Gary Peck004d48b2012-11-21 16:28:18 -0800469 if (Part->Has_Android_Secure)
470 printf("Has_Android_Secure ");
471 if (Part->Is_Storage)
472 printf("Is_Storage ");
Dees_Troya13d74f2013-03-24 08:54:55 -0500473 if (Part->Is_Settings_Storage)
474 printf("Is_Settings_Storage ");
Dees_Troy68cab492012-12-12 19:29:35 +0000475 if (Part->Ignore_Blkid)
476 printf("Ignore_Blkid ");
Dees_Troy16c2b312013-01-15 16:51:18 +0000477 if (Part->Retain_Layout_Version)
478 printf("Retain_Layout_Version ");
Ethan Yonker253368a2014-11-25 15:00:52 -0600479 if (Part->Mount_To_Decrypt)
480 printf("Mount_To_Decrypt ");
Ethan Yonker96af84a2015-01-05 14:58:36 -0600481 if (Part->Can_Flash_Img)
482 printf("Can_Flash_Img ");
Ethan Yonker66a19492015-12-10 10:19:45 -0600483 if (Part->Is_Adopted_Storage)
484 printf("Is_Adopted_Storage ");
Ethan Yonker1b190162016-12-05 15:25:19 -0600485 if (Part->SlotSelect)
486 printf("SlotSelect ");
Ethan Yonker6e8c27a2016-12-22 17:55:57 -0600487 if (Part->Mount_Read_Only)
488 printf("Mount_Read_Only ");
Gary Peck004d48b2012-11-21 16:28:18 -0800489 printf("\n");
490 if (!Part->SubPartition_Of.empty())
491 printf(" SubPartition_Of: %s\n", Part->SubPartition_Of.c_str());
492 if (!Part->Symlink_Path.empty())
493 printf(" Symlink_Path: %s\n", Part->Symlink_Path.c_str());
494 if (!Part->Symlink_Mount_Point.empty())
495 printf(" Symlink_Mount_Point: %s\n", Part->Symlink_Mount_Point.c_str());
496 if (!Part->Primary_Block_Device.empty())
497 printf(" Primary_Block_Device: %s\n", Part->Primary_Block_Device.c_str());
498 if (!Part->Alternate_Block_Device.empty())
499 printf(" Alternate_Block_Device: %s\n", Part->Alternate_Block_Device.c_str());
500 if (!Part->Decrypted_Block_Device.empty())
501 printf(" Decrypted_Block_Device: %s\n", Part->Decrypted_Block_Device.c_str());
dianlujitao4879b372018-12-03 18:45:47 +0800502 if (!Part->Crypto_Key_Location.empty())
Ethan Yonker253368a2014-11-25 15:00:52 -0600503 printf(" Crypto_Key_Location: %s\n", Part->Crypto_Key_Location.c_str());
Gary Peck004d48b2012-11-21 16:28:18 -0800504 if (Part->Length != 0)
505 printf(" Length: %i\n", Part->Length);
506 if (!Part->Display_Name.empty())
507 printf(" Display_Name: %s\n", Part->Display_Name.c_str());
Dees_Troya13d74f2013-03-24 08:54:55 -0500508 if (!Part->Storage_Name.empty())
509 printf(" Storage_Name: %s\n", Part->Storage_Name.c_str());
Gary Peck004d48b2012-11-21 16:28:18 -0800510 if (!Part->Backup_Path.empty())
511 printf(" Backup_Path: %s\n", Part->Backup_Path.c_str());
512 if (!Part->Backup_Name.empty())
513 printf(" Backup_Name: %s\n", Part->Backup_Name.c_str());
Dees_Troya13d74f2013-03-24 08:54:55 -0500514 if (!Part->Backup_Display_Name.empty())
515 printf(" Backup_Display_Name: %s\n", Part->Backup_Display_Name.c_str());
Gary Peck004d48b2012-11-21 16:28:18 -0800516 if (!Part->Backup_FileName.empty())
517 printf(" Backup_FileName: %s\n", Part->Backup_FileName.c_str());
518 if (!Part->Storage_Path.empty())
519 printf(" Storage_Path: %s\n", Part->Storage_Path.c_str());
520 if (!Part->Current_File_System.empty())
521 printf(" Current_File_System: %s\n", Part->Current_File_System.c_str());
522 if (!Part->Fstab_File_System.empty())
523 printf(" Fstab_File_System: %s\n", Part->Fstab_File_System.c_str());
524 if (Part->Format_Block_Size != 0)
Ethan Yonkerc798c9c2015-10-09 11:15:26 -0500525 printf(" Format_Block_Size: %lu\n", Part->Format_Block_Size);
Dees_Troy094207a2012-09-26 12:00:39 -0400526 if (!Part->MTD_Name.empty())
527 printf(" MTD_Name: %s\n", Part->MTD_Name.c_str());
Matt Mower029a82d2017-01-08 13:12:38 -0600528 printf(" Backup_Method: %s\n", Part->Backup_Method_By_Name().c_str());
Hashcode62bd9e02013-11-19 21:59:42 -0800529 if (Part->Mount_Flags || !Part->Mount_Options.empty())
Ethan Yonker6e8c27a2016-12-22 17:55:57 -0600530 printf(" Mount_Flags: %i, Mount_Options: %s\n", Part->Mount_Flags, Part->Mount_Options.c_str());
Ethan Yonker726a0202014-12-16 20:01:38 -0600531 if (Part->MTP_Storage_ID)
532 printf(" MTP_Storage_ID: %i\n", Part->MTP_Storage_ID);
Ethan Yonker93382822018-11-01 15:25:31 -0500533 if (!Part->Key_Directory.empty())
534 printf(" Metadata Key Directory: %s\n", Part->Key_Directory.c_str());
Ethan Yonker6277c792014-09-15 14:54:30 -0500535 printf("\n");
Dees_Troy8170a922012-09-18 15:40:25 -0400536}
537
Dees_Troy51a0e822012-09-05 15:24:24 -0400538int TWPartitionManager::Mount_By_Path(string Path, bool Display_Error) {
Dees_Troy5bf43922012-09-07 16:07:55 -0400539 std::vector<TWPartition*>::iterator iter;
540 int ret = false;
541 bool found = false;
Dees_Troy38bd7602012-09-14 13:33:53 -0400542 string Local_Path = TWFunc::Get_Root_Path(Path);
Dees_Troy5bf43922012-09-07 16:07:55 -0400543
Captain Throwbackd54e1da2020-03-04 16:49:51 -0500544 if (Local_Path == "/tmp" || Local_Path == "/" || Local_Path == "/etc")
Dees_Troy43d8b002012-09-17 16:00:01 -0400545 return true;
546
Dees_Troy5bf43922012-09-07 16:07:55 -0400547 // Iterate through all partitions
548 for (iter = Partitions.begin(); iter != Partitions.end(); iter++) {
Dees_Troy657c3092012-09-10 20:32:10 -0400549 if ((*iter)->Mount_Point == Local_Path || (!(*iter)->Symlink_Mount_Point.empty() && (*iter)->Symlink_Mount_Point == Local_Path)) {
Dees_Troy5bf43922012-09-07 16:07:55 -0400550 ret = (*iter)->Mount(Display_Error);
551 found = true;
Dees_Troy51127312012-09-08 13:08:49 -0400552 } else if ((*iter)->Is_SubPartition && (*iter)->SubPartition_Of == Local_Path) {
Dees_Troy5bf43922012-09-07 16:07:55 -0400553 (*iter)->Mount(Display_Error);
Dees_Troy51127312012-09-08 13:08:49 -0400554 }
Dees_Troy5bf43922012-09-07 16:07:55 -0400555 }
556 if (found) {
557 return ret;
558 } else if (Display_Error) {
Ethan Yonker74db1572015-10-28 12:44:49 -0500559 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 -0400560 } else {
Dees_Troy2673cec2013-04-02 20:22:16 +0000561 LOGINFO("Mount: Unable to find partition for path '%s'\n", Local_Path.c_str());
Dees_Troy5bf43922012-09-07 16:07:55 -0400562 }
563 return false;
Dees_Troy51a0e822012-09-05 15:24:24 -0400564}
565
Dees_Troy51a0e822012-09-05 15:24:24 -0400566int TWPartitionManager::UnMount_By_Path(string Path, bool Display_Error) {
Dees_Troy51127312012-09-08 13:08:49 -0400567 std::vector<TWPartition*>::iterator iter;
568 int ret = false;
569 bool found = false;
Dees_Troy38bd7602012-09-14 13:33:53 -0400570 string Local_Path = TWFunc::Get_Root_Path(Path);
Dees_Troy51127312012-09-08 13:08:49 -0400571
572 // Iterate through all partitions
573 for (iter = Partitions.begin(); iter != Partitions.end(); iter++) {
Dees_Troy657c3092012-09-10 20:32:10 -0400574 if ((*iter)->Mount_Point == Local_Path || (!(*iter)->Symlink_Mount_Point.empty() && (*iter)->Symlink_Mount_Point == Local_Path)) {
Dees_Troy51127312012-09-08 13:08:49 -0400575 ret = (*iter)->UnMount(Display_Error);
576 found = true;
577 } else if ((*iter)->Is_SubPartition && (*iter)->SubPartition_Of == Local_Path) {
578 (*iter)->UnMount(Display_Error);
579 }
580 }
581 if (found) {
582 return ret;
583 } else if (Display_Error) {
Ethan Yonker74db1572015-10-28 12:44:49 -0500584 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 -0400585 } else {
Dees_Troy2673cec2013-04-02 20:22:16 +0000586 LOGINFO("UnMount: Unable to find partition for path '%s'\n", Local_Path.c_str());
Dees_Troy51127312012-09-08 13:08:49 -0400587 }
588 return false;
Dees_Troy51a0e822012-09-05 15:24:24 -0400589}
590
Dees_Troy51a0e822012-09-05 15:24:24 -0400591int TWPartitionManager::Is_Mounted_By_Path(string Path) {
Dees_Troy51127312012-09-08 13:08:49 -0400592 TWPartition* Part = Find_Partition_By_Path(Path);
593
594 if (Part)
595 return Part->Is_Mounted();
596 else
Dees_Troy2673cec2013-04-02 20:22:16 +0000597 LOGINFO("Is_Mounted: Unable to find partition for path '%s'\n", Path.c_str());
Dees_Troy51127312012-09-08 13:08:49 -0400598 return false;
Dees_Troy51a0e822012-09-05 15:24:24 -0400599}
600
Dees_Troy5bf43922012-09-07 16:07:55 -0400601int TWPartitionManager::Mount_Current_Storage(bool Display_Error) {
Dees_Troy51127312012-09-08 13:08:49 -0400602 string current_storage_path = DataManager::GetCurrentStoragePath();
603
604 if (Mount_By_Path(current_storage_path, Display_Error)) {
605 TWPartition* FreeStorage = Find_Partition_By_Path(current_storage_path);
606 if (FreeStorage)
607 DataManager::SetValue(TW_STORAGE_FREE_SIZE, (int)(FreeStorage->Free / 1048576LLU));
608 return true;
609 }
610 return false;
Dees_Troy51a0e822012-09-05 15:24:24 -0400611}
612
Dees_Troy5bf43922012-09-07 16:07:55 -0400613int TWPartitionManager::Mount_Settings_Storage(bool Display_Error) {
614 return Mount_By_Path(DataManager::GetSettingsStoragePath(), Display_Error);
615}
616
Ethan Yonker6e8c27a2016-12-22 17:55:57 -0600617TWPartition* TWPartitionManager::Find_Partition_By_Path(const string& Path) {
Dees_Troy5bf43922012-09-07 16:07:55 -0400618 std::vector<TWPartition*>::iterator iter;
Dees_Troy38bd7602012-09-14 13:33:53 -0400619 string Local_Path = TWFunc::Get_Root_Path(Path);
Dees_Troy5bf43922012-09-07 16:07:55 -0400620
dianlujitaob76a73a2020-04-30 20:33:20 +0800621 if (Local_Path == "/system")
622 Local_Path = Get_Android_Root_Path();
Dees_Troy5bf43922012-09-07 16:07:55 -0400623 for (iter = Partitions.begin(); iter != Partitions.end(); iter++) {
Dees_Troy657c3092012-09-10 20:32:10 -0400624 if ((*iter)->Mount_Point == Local_Path || (!(*iter)->Symlink_Mount_Point.empty() && (*iter)->Symlink_Mount_Point == Local_Path))
Dees_Troy5bf43922012-09-07 16:07:55 -0400625 return (*iter);
626 }
Dees_Troy51a0e822012-09-05 15:24:24 -0400627 return NULL;
628}
629
Ethan Yonker6e8c27a2016-12-22 17:55:57 -0600630TWPartition* TWPartitionManager::Find_Partition_By_Block_Device(const string& Block_Device) {
631 std::vector<TWPartition*>::iterator iter;
632
633 for (iter = Partitions.begin(); iter != Partitions.end(); iter++) {
634 if ((*iter)->Primary_Block_Device == Block_Device || (!(*iter)->Actual_Block_Device.empty() && (*iter)->Actual_Block_Device == Block_Device))
635 return (*iter);
636 }
637 return NULL;
638}
639
Ethan Yonker53796e72019-01-11 22:49:52 -0600640int TWPartitionManager::Check_Backup_Name(const std::string& Backup_Name, bool Display_Error, bool Must_Be_Unique) {
Dees_Troyc9ff7a32012-09-27 10:09:41 -0400641 // Check the backup name to ensure that it is the correct size and contains only valid characters
642 // and that a backup with that name doesn't already exist
643 char backup_name[MAX_BACKUP_NAME_LEN];
644 char backup_loc[255], tw_image_dir[255];
645 int copy_size;
646 int index, cur_char;
Ethan Yonker53796e72019-01-11 22:49:52 -0600647 string Backup_Loc;
Dees_Troyc9ff7a32012-09-27 10:09:41 -0400648
Dees_Troyc9ff7a32012-09-27 10:09:41 -0400649 copy_size = Backup_Name.size();
650 // Check size
651 if (copy_size > MAX_BACKUP_NAME_LEN) {
652 if (Display_Error)
Ethan Yonker74db1572015-10-28 12:44:49 -0500653 gui_err("backup_name_len=Backup name is too long.");
Dees_Troyc9ff7a32012-09-27 10:09:41 -0400654 return -2;
655 }
656
657 // Check each character
658 strncpy(backup_name, Backup_Name.c_str(), copy_size);
Dees_Troya13d74f2013-03-24 08:54:55 -0500659 if (copy_size == 1 && strncmp(backup_name, "0", 1) == 0)
Dees_Troyc9ff7a32012-09-27 10:09:41 -0400660 return 0; // A "0" (zero) means to use the current timestamp for the backup name
661 for (index=0; index<copy_size; index++) {
662 cur_char = (int)backup_name[index];
Matt Mowerfb1c4ff2014-04-16 13:43:36 -0500663 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 -0400664 // These are valid characters
665 // Numbers
666 // Upper case letters
667 // Lower case letters
668 // Space
669 // and -_.{}[]
670 } else {
671 if (Display_Error)
Ethan Yonker4adc33e2016-01-22 16:07:11 -0600672 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 -0400673 return -3;
674 }
675 }
676
Ethan Yonker53796e72019-01-11 22:49:52 -0600677 if (Must_Be_Unique) {
678 // Check to make sure that a backup with this name doesn't already exist
679 DataManager::GetValue(TW_BACKUPS_FOLDER_VAR, Backup_Loc);
680 strcpy(backup_loc, Backup_Loc.c_str());
681 sprintf(tw_image_dir,"%s/%s", backup_loc, Backup_Name.c_str());
682 if (TWFunc::Path_Exists(tw_image_dir)) {
683 if (Display_Error)
684 gui_err("backup_name_exists=A backup with that name already exists!");
bigbiffce8f83c2015-12-12 18:30:21 -0500685
Ethan Yonker53796e72019-01-11 22:49:52 -0600686 return -4;
687 }
688 // Backup is unique
Dees_Troyc9ff7a32012-09-27 10:09:41 -0400689 }
Ethan Yonker53796e72019-01-11 22:49:52 -0600690 // No problems found
Dees_Troyc9ff7a32012-09-27 10:09:41 -0400691 return 0;
692}
693
bigbiffce8f83c2015-12-12 18:30:21 -0500694bool TWPartitionManager::Backup_Partition(PartitionSettings *part_settings) {
Dees_Troy43d8b002012-09-17 16:00:01 -0400695 time_t start, stop;
Matt Mower23d8aae2017-01-06 14:30:33 -0600696 int use_compression;
bigbiffce8f83c2015-12-12 18:30:21 -0500697 string backup_log = part_settings->Backup_Folder + "/recovery.log";
Dees_Troy43d8b002012-09-17 16:00:01 -0400698
bigbiffce8f83c2015-12-12 18:30:21 -0500699 if (part_settings->Part == NULL)
Dees_Troy43d8b002012-09-17 16:00:01 -0400700 return true;
701
Dees_Troy093b7642012-09-21 15:59:38 -0400702 DataManager::GetValue(TW_USE_COMPRESSION_VAR, use_compression);
Dees_Troy093b7642012-09-21 15:59:38 -0400703
Tom Hite5a926722014-09-15 01:31:03 +0000704 TWFunc::SetPerformanceMode(true);
Dees_Troy43d8b002012-09-17 16:00:01 -0400705 time(&start);
706
bigbiffce8f83c2015-12-12 18:30:21 -0500707 if (part_settings->Part->Backup(part_settings, &tar_fork_pid)) {
Ethan Yonkercd00a8b2017-07-06 10:23:30 -0500708 sync();
709 sync();
bigbiff bigbiff56cf5642016-08-19 17:43:45 -0400710 string Full_Filename = part_settings->Backup_Folder + "/" + part_settings->Part->Backup_FileName;
Ethan Yonkercd00a8b2017-07-06 10:23:30 -0500711 if (!part_settings->adbbackup && part_settings->generate_digest) {
712 if (!twrpDigestDriver::Make_Digest(Full_Filename))
713 goto backup_error;
bigbiff bigbiff56cf5642016-08-19 17:43:45 -0400714 }
bigbiff bigbiff8fd4b092016-08-30 20:48:53 -0400715
bigbiffce8f83c2015-12-12 18:30:21 -0500716 if (part_settings->Part->Has_SubPartition) {
Dees_Troy8170a922012-09-18 15:40:25 -0400717 std::vector<TWPartition*>::iterator subpart;
bigbiff bigbiff8fd4b092016-08-30 20:48:53 -0400718 TWPartition *parentPart = part_settings->Part;
Dees_Troy8170a922012-09-18 15:40:25 -0400719
720 for (subpart = Partitions.begin(); subpart != Partitions.end(); subpart++) {
bigbiff bigbiff8fd4b092016-08-30 20:48:53 -0400721 if ((*subpart)->Can_Be_Backed_Up && (*subpart)->Is_SubPartition && (*subpart)->SubPartition_Of == parentPart->Mount_Point) {
Ethan Yonkerdcf2b672016-09-13 14:41:53 -0500722 part_settings->Part = *subpart;
bigbiffce8f83c2015-12-12 18:30:21 -0500723 if (!(*subpart)->Backup(part_settings, &tar_fork_pid)) {
Ethan Yonkercd00a8b2017-07-06 10:23:30 -0500724 goto backup_error;
Tom Hite5a926722014-09-15 01:31:03 +0000725 }
Dees_Troy2727b992013-08-14 20:09:30 +0000726 sync();
727 sync();
bigbiff bigbifff5955b12019-05-18 17:28:58 -0400728 string Full_Filename = part_settings->Backup_Folder + "/" + part_settings->Part->Backup_FileName;
bigbiff bigbiff56cf5642016-08-19 17:43:45 -0400729 if (!part_settings->adbbackup && part_settings->generate_digest) {
730 if (!twrpDigestDriver::Make_Digest(Full_Filename)) {
Ethan Yonkercd00a8b2017-07-06 10:23:30 -0500731 goto backup_error;
bigbiffce8f83c2015-12-12 18:30:21 -0500732 }
Tom Hite5a926722014-09-15 01:31:03 +0000733 }
Dees_Troy8170a922012-09-18 15:40:25 -0400734 }
735 }
736 }
bigbiff bigbiff56cf5642016-08-19 17:43:45 -0400737
Dees_Troy43d8b002012-09-17 16:00:01 -0400738 time(&stop);
that203bcc92015-05-09 17:27:33 +0200739 int backup_time = (int) difftime(stop, start);
Dees_Troy2673cec2013-04-02 20:22:16 +0000740 LOGINFO("Partition Backup time: %d\n", backup_time);
bigbiff bigbiff8fd4b092016-08-30 20:48:53 -0400741
bigbiffce8f83c2015-12-12 18:30:21 -0500742 if (part_settings->Part->Backup_Method == BM_FILES) {
743 part_settings->file_time += backup_time;
Dees_Troy43d8b002012-09-17 16:00:01 -0400744 } else {
bigbiffce8f83c2015-12-12 18:30:21 -0500745 part_settings->img_time += backup_time;
746
Dees_Troy43d8b002012-09-17 16:00:01 -0400747 }
Tom Hite5a926722014-09-15 01:31:03 +0000748
Matt Mower02899552016-12-30 18:13:51 -0600749 TWFunc::SetPerformanceMode(false);
Ethan Yonkercd00a8b2017-07-06 10:23:30 -0500750 return true;
Dees_Troy43d8b002012-09-17 16:00:01 -0400751 }
Ethan Yonkercd00a8b2017-07-06 10:23:30 -0500752backup_error:
753 Clean_Backup_Folder(part_settings->Backup_Folder);
754 TWFunc::copy_file("/tmp/recovery.log", backup_log, 0644);
755 tw_set_default_metadata(backup_log.c_str());
756 TWFunc::SetPerformanceMode(false);
757 return false;
bigbiff7abc5fe2015-01-17 16:53:12 -0500758}
759
bigbiffbf1d6722015-02-14 16:25:59 -0500760void TWPartitionManager::Clean_Backup_Folder(string Backup_Folder) {
761 DIR *d = opendir(Backup_Folder.c_str());
762 struct dirent *p;
763 int r;
bigbiff bigbiff56cf5642016-08-19 17:43:45 -0400764 vector<string> ext;
765
766 //extensions we should delete when cleaning
767 ext.push_back("win");
768 ext.push_back("md5");
769 ext.push_back("sha2");
770 ext.push_back("info");
bigbiffbf1d6722015-02-14 16:25:59 -0500771
Ethan Yonker74db1572015-10-28 12:44:49 -0500772 gui_msg("backup_clean=Backup Failed. Cleaning Backup Folder.");
bigbiffbf1d6722015-02-14 16:25:59 -0500773
774 if (d == NULL) {
Ethan Yonker74db1572015-10-28 12:44:49 -0500775 gui_msg(Msg(msg::kError, "error_opening_strerr=Error opening: '{1}' ({2})")(Backup_Folder)(strerror(errno)));
bigbiffbf1d6722015-02-14 16:25:59 -0500776 return;
777 }
778
Matt Mower2b18a532015-02-20 16:58:05 -0600779 while ((p = readdir(d))) {
bigbiffbf1d6722015-02-14 16:25:59 -0500780 if (!strcmp(p->d_name, ".") || !strcmp(p->d_name, ".."))
781 continue;
782
Ethan Yonkere080c1f2016-09-19 13:50:25 -0500783 string path = Backup_Folder + "/" + p->d_name;
bigbiffbf1d6722015-02-14 16:25:59 -0500784
785 size_t dot = path.find_last_of(".") + 1;
bigbiff bigbiff56cf5642016-08-19 17:43:45 -0400786 for (vector<string>::const_iterator i = ext.begin(); i != ext.end(); ++i) {
787 if (path.substr(dot) == *i) {
788 r = unlink(path.c_str());
789 if (r != 0)
790 LOGINFO("Unable to unlink '%s: %s'\n", path.c_str(), strerror(errno));
bigbiffbf1d6722015-02-14 16:25:59 -0500791 }
792 }
793 }
794 closedir(d);
795}
796
Ethan Yonker472f5062016-02-25 13:47:30 -0600797int TWPartitionManager::Check_Backup_Cancel() {
798 return stop_backup.get_value();
799}
800
bigbiff7abc5fe2015-01-17 16:53:12 -0500801int TWPartitionManager::Cancel_Backup() {
802 string Backup_Folder, Backup_Name, Full_Backup_Path;
803
804 stop_backup.set_value(1);
805
806 if (tar_fork_pid != 0) {
807 DataManager::GetValue(TW_BACKUP_NAME, Backup_Name);
808 DataManager::GetValue(TW_BACKUPS_FOLDER_VAR, Backup_Folder);
Ethan Yonkere080c1f2016-09-19 13:50:25 -0500809 Full_Backup_Path = Backup_Folder + "/" + Backup_Name;
bigbiff7abc5fe2015-01-17 16:53:12 -0500810 LOGINFO("Killing pid: %d\n", tar_fork_pid);
811 kill(tar_fork_pid, SIGUSR2);
812 while (kill(tar_fork_pid, 0) == 0) {
813 usleep(1000);
814 }
815 LOGINFO("Backup_Run stopped and returning false, backup cancelled.\n");
816 LOGINFO("Removing directory %s\n", Full_Backup_Path.c_str());
817 TWFunc::removeDir(Full_Backup_Path, false);
818 tar_fork_pid = 0;
819 }
820
821 return 0;
Dees_Troy43d8b002012-09-17 16:00:01 -0400822}
823
bigbiffce8f83c2015-12-12 18:30:21 -0500824int TWPartitionManager::Run_Backup(bool adbbackup) {
825 PartitionSettings part_settings;
bigbiff bigbiff56cf5642016-08-19 17:43:45 -0400826 int partition_count = 0, disable_free_space_check = 0, skip_digest = 0;
bigbiffce8f83c2015-12-12 18:30:21 -0500827 string Backup_Name, Backup_List, backup_path;
Matt Mower23d8aae2017-01-06 14:30:33 -0600828 unsigned long long total_bytes = 0, free_space = 0;
Dees_Troy43d8b002012-09-17 16:00:01 -0400829 TWPartition* storage = NULL;
Dees_Troy8170a922012-09-18 15:40:25 -0400830 std::vector<TWPartition*>::iterator subpart;
Dees_Troy43d8b002012-09-17 16:00:01 -0400831 struct tm *t;
Matt Mower23d8aae2017-01-06 14:30:33 -0600832 time_t seconds, total_start, total_stop;
Dees_Troya13d74f2013-03-24 08:54:55 -0500833 size_t start_pos = 0, end_pos = 0;
bigbiff7abc5fe2015-01-17 16:53:12 -0500834 stop_backup.set_value(0);
Dees_Troy43d8b002012-09-17 16:00:01 -0400835 seconds = time(0);
Matt Mowerfb1c4ff2014-04-16 13:43:36 -0500836 t = localtime(&seconds);
Dees_Troy43d8b002012-09-17 16:00:01 -0400837
bigbiffce8f83c2015-12-12 18:30:21 -0500838 part_settings.img_bytes_remaining = 0;
839 part_settings.file_bytes_remaining = 0;
840 part_settings.img_time = 0;
841 part_settings.file_time = 0;
842 part_settings.img_bytes = 0;
843 part_settings.file_bytes = 0;
844 part_settings.PM_Method = PM_BACKUP;
845
bigbiffce8f83c2015-12-12 18:30:21 -0500846 part_settings.adbbackup = adbbackup;
Dees_Troy43d8b002012-09-17 16:00:01 -0400847 time(&total_start);
848
849 Update_System_Details();
850
851 if (!Mount_Current_Storage(true))
852 return false;
853
bigbiff bigbiff56cf5642016-08-19 17:43:45 -0400854 DataManager::GetValue(TW_SKIP_DIGEST_GENERATE_VAR, skip_digest);
855 if (skip_digest == 0)
856 part_settings.generate_digest = true;
Dees_Troyc5865ab2012-09-24 15:08:04 -0400857 else
bigbiff bigbiff56cf5642016-08-19 17:43:45 -0400858 part_settings.generate_digest = false;
Dees_Troy4a2a1262012-09-18 09:33:47 -0400859
bigbiffce8f83c2015-12-12 18:30:21 -0500860 DataManager::GetValue(TW_BACKUPS_FOLDER_VAR, part_settings.Backup_Folder);
Ethan Yonkerdcf2b672016-09-13 14:41:53 -0500861 DataManager::GetValue(TW_BACKUP_NAME, Backup_Name);
862 if (Backup_Name == gui_lookup("curr_date", "(Current Date)")) {
863 Backup_Name = TWFunc::Get_Current_Date();
864 } else if (Backup_Name == gui_lookup("auto_generate", "(Auto Generate)") || Backup_Name == "0" || Backup_Name.empty()) {
Dees Troyb21cc642013-09-10 17:36:41 +0000865 TWFunc::Auto_Generate_Backup_Name();
Ethan Yonkerdcf2b672016-09-13 14:41:53 -0500866 DataManager::GetValue(TW_BACKUP_NAME, Backup_Name);
Dees_Troy43d8b002012-09-17 16:00:01 -0400867 }
bigbiffce8f83c2015-12-12 18:30:21 -0500868
Ethan Yonkerdcf2b672016-09-13 14:41:53 -0500869 LOGINFO("Backup Name is: '%s'\n", Backup_Name.c_str());
Ethan Yonkere080c1f2016-09-19 13:50:25 -0500870 part_settings.Backup_Folder = part_settings.Backup_Folder + "/" + Backup_Name;
bigbiffce8f83c2015-12-12 18:30:21 -0500871
Ethan Yonkere080c1f2016-09-19 13:50:25 -0500872 LOGINFO("Backup_Folder is: '%s'\n", part_settings.Backup_Folder.c_str());
Dees_Troy43d8b002012-09-17 16:00:01 -0400873
Dees_Troy2673cec2013-04-02 20:22:16 +0000874 LOGINFO("Calculating backup details...\n");
Dees_Troya13d74f2013-03-24 08:54:55 -0500875 DataManager::GetValue("tw_backup_list", Backup_List);
876 if (!Backup_List.empty()) {
877 end_pos = Backup_List.find(";", start_pos);
878 while (end_pos != string::npos && start_pos < Backup_List.size()) {
879 backup_path = Backup_List.substr(start_pos, end_pos - start_pos);
bigbiffce8f83c2015-12-12 18:30:21 -0500880 part_settings.Part = Find_Partition_By_Path(backup_path);
881 if (part_settings.Part != NULL) {
Dees_Troya13d74f2013-03-24 08:54:55 -0500882 partition_count++;
bigbiffce8f83c2015-12-12 18:30:21 -0500883 if (part_settings.Part->Backup_Method == BM_FILES)
884 part_settings.file_bytes += part_settings.Part->Backup_Size;
Dees_Troya13d74f2013-03-24 08:54:55 -0500885 else
bigbiffce8f83c2015-12-12 18:30:21 -0500886 part_settings.img_bytes += part_settings.Part->Backup_Size;
887 if (part_settings.Part->Has_SubPartition) {
Dees_Troya13d74f2013-03-24 08:54:55 -0500888 std::vector<TWPartition*>::iterator subpart;
889
890 for (subpart = Partitions.begin(); subpart != Partitions.end(); subpart++) {
bigbiffce8f83c2015-12-12 18:30:21 -0500891 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 -0500892 partition_count++;
bigbiffce8f83c2015-12-12 18:30:21 -0500893 if ((*subpart)->Backup_Method == BM_FILES)
894 part_settings.file_bytes += (*subpart)->Backup_Size;
Dees_Troya13d74f2013-03-24 08:54:55 -0500895 else
bigbiffce8f83c2015-12-12 18:30:21 -0500896 part_settings.img_bytes += (*subpart)->Backup_Size;
Dees_Troya13d74f2013-03-24 08:54:55 -0500897 }
898 }
Dees_Troy8170a922012-09-18 15:40:25 -0400899 }
Dees_Troya13d74f2013-03-24 08:54:55 -0500900 } else {
Ethan Yonker74db1572015-10-28 12:44:49 -0500901 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 -0400902 }
Dees_Troya13d74f2013-03-24 08:54:55 -0500903 start_pos = end_pos + 1;
904 end_pos = Backup_List.find(";", start_pos);
Dees_Troy43d8b002012-09-17 16:00:01 -0400905 }
906 }
Dees_Troy43d8b002012-09-17 16:00:01 -0400907
908 if (partition_count == 0) {
Ethan Yonker74db1572015-10-28 12:44:49 -0500909 gui_msg("no_partition_selected=No partitions selected for backup.");
Dees_Troy43d8b002012-09-17 16:00:01 -0400910 return false;
911 }
bigbiffce8f83c2015-12-12 18:30:21 -0500912 if (adbbackup) {
913 if (twadbbu::Write_ADB_Stream_Header(partition_count) == false) {
914 return false;
915 }
916 }
917 total_bytes = part_settings.file_bytes + part_settings.img_bytes;
Ethan Yonker472f5062016-02-25 13:47:30 -0600918 ProgressTracking progress(total_bytes);
bigbiffce8f83c2015-12-12 18:30:21 -0500919 part_settings.progress = &progress;
920
Ethan Yonker74db1572015-10-28 12:44:49 -0500921 gui_msg(Msg("total_partitions_backup= * Total number of partitions to back up: {1}")(partition_count));
922 gui_msg(Msg("total_backup_size= * Total size of all data: {1}MB")(total_bytes / 1024 / 1024));
Dees_Troy43d8b002012-09-17 16:00:01 -0400923 storage = Find_Partition_By_Path(DataManager::GetCurrentStoragePath());
924 if (storage != NULL) {
925 free_space = storage->Free;
Ethan Yonker74db1572015-10-28 12:44:49 -0500926 gui_msg(Msg("available_space= * Available space: {1}MB")(free_space / 1024 / 1024));
Dees_Troy43d8b002012-09-17 16:00:01 -0400927 } else {
Ethan Yonker74db1572015-10-28 12:44:49 -0500928 gui_err("unable_locate_storage=Unable to locate storage device.");
Dees_Troy43d8b002012-09-17 16:00:01 -0400929 return false;
930 }
bigbiffbf1d6722015-02-14 16:25:59 -0500931
Matt Mowerbfccfb82016-04-25 23:22:31 -0500932 DataManager::GetValue(TW_DISABLE_FREE_SPACE_VAR, disable_free_space_check);
bigbiffce8f83c2015-12-12 18:30:21 -0500933
934 if (adbbackup)
935 disable_free_space_check = true;
936
bigbiffbf1d6722015-02-14 16:25:59 -0500937 if (!disable_free_space_check) {
938 if (free_space - (32 * 1024 * 1024) < total_bytes) {
939 // We require an extra 32MB just in case
Ethan Yonker74db1572015-10-28 12:44:49 -0500940 gui_err("no_space=Not enough free space on storage.");
bigbiffbf1d6722015-02-14 16:25:59 -0500941 return false;
942 }
Dees_Troy43d8b002012-09-17 16:00:01 -0400943 }
bigbiffce8f83c2015-12-12 18:30:21 -0500944 part_settings.img_bytes_remaining = part_settings.img_bytes;
945 part_settings.file_bytes_remaining = part_settings.file_bytes;
Dees_Troy43d8b002012-09-17 16:00:01 -0400946
Ethan Yonker74db1572015-10-28 12:44:49 -0500947 gui_msg("backup_started=[BACKUP STARTED]");
bigbiff bigbiffcdd97c72019-03-29 19:12:33 -0400948
949 int is_decrypted = 0;
950 int is_encrypted = 0;
951
952 DataManager::GetValue(TW_IS_DECRYPTED, is_decrypted);
953 DataManager::GetValue(TW_IS_ENCRYPTED, is_encrypted);
954 if (!adbbackup || (!is_encrypted || (is_encrypted && is_decrypted))) {
955 gui_msg(Msg("backup_folder= * Backup Folder: {1}")(part_settings.Backup_Folder));
956 if (!TWFunc::Recursive_Mkdir(part_settings.Backup_Folder)) {
957 gui_err("fail_backup_folder=Failed to make backup folder.");
958 return false;
959 }
Dees_Troyd4b22b02013-01-18 17:17:58 +0000960 }
961
Dees_Troy2673cec2013-04-02 20:22:16 +0000962 DataManager::SetProgress(0.0);
Dees_Troy093b7642012-09-21 15:59:38 -0400963
Dees_Troya13d74f2013-03-24 08:54:55 -0500964 start_pos = 0;
965 end_pos = Backup_List.find(";", start_pos);
966 while (end_pos != string::npos && start_pos < Backup_List.size()) {
bigbiff7abc5fe2015-01-17 16:53:12 -0500967 if (stop_backup.get_value() != 0)
968 return -1;
Dees_Troya13d74f2013-03-24 08:54:55 -0500969 backup_path = Backup_List.substr(start_pos, end_pos - start_pos);
bigbiffce8f83c2015-12-12 18:30:21 -0500970 part_settings.Part = Find_Partition_By_Path(backup_path);
971 if (part_settings.Part != NULL) {
972 if (!Backup_Partition(&part_settings))
Dees_Troya13d74f2013-03-24 08:54:55 -0500973 return false;
974 } else {
Ethan Yonker74db1572015-10-28 12:44:49 -0500975 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 -0500976 }
977 start_pos = end_pos + 1;
978 end_pos = Backup_List.find(";", start_pos);
979 }
Dees_Troy43d8b002012-09-17 16:00:01 -0400980
981 // Average BPS
bigbiffce8f83c2015-12-12 18:30:21 -0500982 if (part_settings.img_time == 0)
983 part_settings.img_time = 1;
984 if (part_settings.file_time == 0)
985 part_settings.file_time = 1;
986 int img_bps = (int)part_settings.img_bytes / (int)part_settings.img_time;
987 unsigned long long file_bps = part_settings.file_bytes / (int)part_settings.file_time;
Dees_Troy43d8b002012-09-17 16:00:01 -0400988
bigbiffce8f83c2015-12-12 18:30:21 -0500989 if (part_settings.file_bytes != 0)
Ethan Yonker472f5062016-02-25 13:47:30 -0600990 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 -0500991 if (part_settings.img_bytes != 0)
Ethan Yonker472f5062016-02-25 13:47:30 -0600992 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 -0400993
994 time(&total_stop);
995 int total_time = (int) difftime(total_stop, total_start);
bigbiffce8f83c2015-12-12 18:30:21 -0500996
997 uint64_t actual_backup_size;
Ethan Yonker3fdcda42016-11-30 12:29:37 -0600998 if (!adbbackup) {
999 TWExclude twe;
1000 actual_backup_size = twe.Get_Folder_Size(part_settings.Backup_Folder);
1001 } else
bigbiffce8f83c2015-12-12 18:30:21 -05001002 actual_backup_size = part_settings.file_bytes + part_settings.img_bytes;
Matt Mowerfb1c4ff2014-04-16 13:43:36 -05001003 actual_backup_size /= (1024LLU * 1024LLU);
Dees_Troy43d8b002012-09-17 16:00:01 -04001004
bigbiffce8f83c2015-12-12 18:30:21 -05001005 int prev_img_bps = 0, use_compression = 0;
1006 unsigned long long prev_file_bps = 0;
Matt Mower173cdb92016-12-31 02:49:19 -06001007 DataManager::GetValue(TW_BACKUP_AVG_IMG_RATE, prev_img_bps);
Dees_Troy093b7642012-09-21 15:59:38 -04001008 img_bps += (prev_img_bps * 4);
Matt Mowerfb1c4ff2014-04-16 13:43:36 -05001009 img_bps /= 5;
Dees_Troy093b7642012-09-21 15:59:38 -04001010
Matt Mowerfb1c4ff2014-04-16 13:43:36 -05001011 DataManager::GetValue(TW_USE_COMPRESSION_VAR, use_compression);
Dees_Troy093b7642012-09-21 15:59:38 -04001012 if (use_compression)
1013 DataManager::GetValue(TW_BACKUP_AVG_FILE_COMP_RATE, prev_file_bps);
Matt Mowerfb1c4ff2014-04-16 13:43:36 -05001014 else
Dees_Troy093b7642012-09-21 15:59:38 -04001015 DataManager::GetValue(TW_BACKUP_AVG_FILE_RATE, prev_file_bps);
1016 file_bps += (prev_file_bps * 4);
Matt Mowerfb1c4ff2014-04-16 13:43:36 -05001017 file_bps /= 5;
Dees_Troy093b7642012-09-21 15:59:38 -04001018
Matt Mowerfb1c4ff2014-04-16 13:43:36 -05001019 DataManager::SetValue(TW_BACKUP_AVG_IMG_RATE, img_bps);
Dees_Troy093b7642012-09-21 15:59:38 -04001020 if (use_compression)
1021 DataManager::SetValue(TW_BACKUP_AVG_FILE_COMP_RATE, file_bps);
1022 else
1023 DataManager::SetValue(TW_BACKUP_AVG_FILE_RATE, file_bps);
1024
Ethan Yonker74db1572015-10-28 12:44:49 -05001025 gui_msg(Msg("total_backed_size=[{1} MB TOTAL BACKED UP]")(actual_backup_size));
Dees_Troy43d8b002012-09-17 16:00:01 -04001026 Update_System_Details();
Dees_Troyd0384ef2012-10-12 12:15:42 -04001027 UnMount_Main_Partitions();
Ethan Yonker56db1c42015-12-20 22:49:00 -06001028 gui_msg(Msg(msg::kHighlight, "backup_completed=[BACKUP COMPLETED IN {1} SECONDS]")(total_time)); // the end
Ethan Yonkere080c1f2016-09-19 13:50:25 -05001029 string backup_log = part_settings.Backup_Folder + "/recovery.log";
Dees_Troy3f5c4e82013-02-01 15:16:59 +00001030 TWFunc::copy_file("/tmp/recovery.log", backup_log, 0644);
Ethan Yonker4b94cfd2014-12-11 10:00:45 -06001031 tw_set_default_metadata(backup_log.c_str());
bigbiffce8f83c2015-12-12 18:30:21 -05001032
1033 if (part_settings.adbbackup) {
1034 if (twadbbu::Write_ADB_Stream_Trailer() == false) {
1035 return false;
1036 }
1037 }
1038 part_settings.adbbackup = false;
1039 DataManager::SetValue("tw_enable_adb_backup", 0);
1040
Dees_Troy3f5c4e82013-02-01 15:16:59 +00001041 return true;
Dees_Troy51a0e822012-09-05 15:24:24 -04001042}
1043
bigbiffce8f83c2015-12-12 18:30:21 -05001044bool TWPartitionManager::Restore_Partition(PartitionSettings *part_settings) {
Dees_Troy4a2a1262012-09-18 09:33:47 -04001045 time_t Start, Stop;
bigbiffce8f83c2015-12-12 18:30:21 -05001046
bigbiff bigbiffb5ecaad2017-03-20 18:53:53 -04001047 if (part_settings->adbbackup) {
bigbiff bigbiff19fb79c2016-09-05 21:04:51 -04001048 std::string partName = part_settings->Part->Backup_Name + "." + part_settings->Part->Current_File_System + ".win";
1049 LOGINFO("setting backup name: %s\n", partName.c_str());
bigbiff bigbiffb5ecaad2017-03-20 18:53:53 -04001050 part_settings->Part->Set_Backup_FileName(part_settings->Part->Backup_Name + "." + part_settings->Part->Current_File_System + ".win");
1051 }
1052
Tom Hite5a926722014-09-15 01:31:03 +00001053 TWFunc::SetPerformanceMode(true);
bigbiffce8f83c2015-12-12 18:30:21 -05001054
Dees_Troy4a2a1262012-09-18 09:33:47 -04001055 time(&Start);
Ethan Yonker472f5062016-02-25 13:47:30 -06001056
bigbiffce8f83c2015-12-12 18:30:21 -05001057 if (!part_settings->Part->Restore(part_settings)) {
Tom Hite5a926722014-09-15 01:31:03 +00001058 TWFunc::SetPerformanceMode(false);
Dees_Troy4a2a1262012-09-18 09:33:47 -04001059 return false;
Tom Hite5a926722014-09-15 01:31:03 +00001060 }
bigbiff bigbiff19fb79c2016-09-05 21:04:51 -04001061 if (part_settings->Part->Has_SubPartition && !part_settings->adbbackup) {
Dees_Troy8170a922012-09-18 15:40:25 -04001062 std::vector<TWPartition*>::iterator subpart;
bigbiff bigbiff8fd4b092016-08-30 20:48:53 -04001063 TWPartition *parentPart = part_settings->Part;
Dees_Troy8170a922012-09-18 15:40:25 -04001064
1065 for (subpart = Partitions.begin(); subpart != Partitions.end(); subpart++) {
bigbiff bigbiff8fd4b092016-08-30 20:48:53 -04001066 part_settings->Part = *subpart;
1067 if ((*subpart)->Is_SubPartition && (*subpart)->SubPartition_Of == parentPart->Mount_Point) {
1068 part_settings->Part = (*subpart);
bigbiff bigbiff19fb79c2016-09-05 21:04:51 -04001069 part_settings->Part->Set_Backup_FileName(part_settings->Part->Backup_Name + "." + part_settings->Part->Current_File_System + ".win");
bigbiffce8f83c2015-12-12 18:30:21 -05001070 if (!(*subpart)->Restore(part_settings)) {
Tom Hite5a926722014-09-15 01:31:03 +00001071 TWFunc::SetPerformanceMode(false);
Dees_Troy8170a922012-09-18 15:40:25 -04001072 return false;
Tom Hite5a926722014-09-15 01:31:03 +00001073 }
Dees_Troy8170a922012-09-18 15:40:25 -04001074 }
1075 }
1076 }
Dees_Troy4a2a1262012-09-18 09:33:47 -04001077 time(&Stop);
Tom Hite5a926722014-09-15 01:31:03 +00001078 TWFunc::SetPerformanceMode(false);
bigbiffce8f83c2015-12-12 18:30:21 -05001079 gui_msg(Msg("restore_part_done=[{1} done ({2} seconds)]")(part_settings->Part->Backup_Display_Name)((int)difftime(Stop, Start)));
1080
Dees_Troy4a2a1262012-09-18 09:33:47 -04001081 return true;
1082}
1083
Ethan Yonker472f5062016-02-25 13:47:30 -06001084int TWPartitionManager::Run_Restore(const string& Restore_Name) {
bigbiffce8f83c2015-12-12 18:30:21 -05001085 PartitionSettings part_settings;
bigbiff bigbiff56cf5642016-08-19 17:43:45 -04001086 int check_digest;
bigbiffce8f83c2015-12-12 18:30:21 -05001087
Dees_Troy4a2a1262012-09-18 09:33:47 -04001088 time_t rStart, rStop;
1089 time(&rStart);
Dees_Troya13d74f2013-03-24 08:54:55 -05001090 string Restore_List, restore_path;
1091 size_t start_pos = 0, end_pos;
bigbiffce8f83c2015-12-12 18:30:21 -05001092
Ethan Yonkerdcf2b672016-09-13 14:41:53 -05001093 part_settings.Backup_Folder = Restore_Name;
bigbiffce8f83c2015-12-12 18:30:21 -05001094 part_settings.Part = NULL;
1095 part_settings.partition_count = 0;
1096 part_settings.total_restore_size = 0;
1097 part_settings.adbbackup = false;
1098 part_settings.PM_Method = PM_RESTORE;
Dees_Troy43d8b002012-09-17 16:00:01 -04001099
Ethan Yonker74db1572015-10-28 12:44:49 -05001100 gui_msg("restore_started=[RESTORE STARTED]");
1101 gui_msg(Msg("restore_folder=Restore folder: '{1}'")(Restore_Name));
Dees_Troy43d8b002012-09-17 16:00:01 -04001102
Dees_Troy4a2a1262012-09-18 09:33:47 -04001103 if (!Mount_Current_Storage(true))
1104 return false;
1105
bigbiff bigbiff56cf5642016-08-19 17:43:45 -04001106 DataManager::GetValue(TW_SKIP_DIGEST_CHECK_VAR, check_digest);
1107 if (check_digest > 0) {
1108 // Check Digest files first before restoring to ensure that all of them match before starting a restore
1109 TWFunc::GUI_Operation_Text(TW_VERIFY_DIGEST_TEXT, gui_parse_text("{@verifying_digest}"));
1110 gui_msg("verifying_digest=Verifying Digest");
Dees_Troya13d74f2013-03-24 08:54:55 -05001111 } else {
bigbiff bigbiff56cf5642016-08-19 17:43:45 -04001112 gui_msg("skip_digest=Skipping Digest check based on user setting.");
Dees_Troya13d74f2013-03-24 08:54:55 -05001113 }
Ethan Yonker74db1572015-10-28 12:44:49 -05001114 gui_msg("calc_restore=Calculating restore details...");
Dees_Troya13d74f2013-03-24 08:54:55 -05001115 DataManager::GetValue("tw_restore_selected", Restore_List);
bigbiffce8f83c2015-12-12 18:30:21 -05001116
Dees_Troya13d74f2013-03-24 08:54:55 -05001117 if (!Restore_List.empty()) {
1118 end_pos = Restore_List.find(";", start_pos);
1119 while (end_pos != string::npos && start_pos < Restore_List.size()) {
1120 restore_path = Restore_List.substr(start_pos, end_pos - start_pos);
bigbiffce8f83c2015-12-12 18:30:21 -05001121 part_settings.Part = Find_Partition_By_Path(restore_path);
1122 if (part_settings.Part != NULL) {
bigbiffce8f83c2015-12-12 18:30:21 -05001123 if (part_settings.Part->Mount_Read_Only) {
1124 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 -05001125 return false;
1126 }
bigbiffce8f83c2015-12-12 18:30:21 -05001127
bigbiff bigbiff56cf5642016-08-19 17:43:45 -04001128 string Full_Filename = part_settings.Backup_Folder + "/" + part_settings.Part->Backup_FileName;
1129
1130 if (check_digest > 0 && !twrpDigestDriver::Check_Digest(Full_Filename))
Dees_Troya13d74f2013-03-24 08:54:55 -05001131 return false;
bigbiffce8f83c2015-12-12 18:30:21 -05001132 part_settings.partition_count++;
1133 part_settings.total_restore_size += part_settings.Part->Get_Restore_Size(&part_settings);
1134 if (part_settings.Part->Has_SubPartition) {
bigbiff bigbiff8fd4b092016-08-30 20:48:53 -04001135 TWPartition *parentPart = part_settings.Part;
Dees_Troya13d74f2013-03-24 08:54:55 -05001136 std::vector<TWPartition*>::iterator subpart;
1137
1138 for (subpart = Partitions.begin(); subpart != Partitions.end(); subpart++) {
bigbiff bigbiff8fd4b092016-08-30 20:48:53 -04001139 part_settings.Part = *subpart;
1140 if ((*subpart)->Is_SubPartition && (*subpart)->SubPartition_Of == parentPart->Mount_Point) {
bigbiff bigbiff56cf5642016-08-19 17:43:45 -04001141 if (check_digest > 0 && !twrpDigestDriver::Check_Digest(Full_Filename))
Dees_Troya13d74f2013-03-24 08:54:55 -05001142 return false;
bigbiffce8f83c2015-12-12 18:30:21 -05001143 part_settings.total_restore_size += (*subpart)->Get_Restore_Size(&part_settings);
Dees_Troya13d74f2013-03-24 08:54:55 -05001144 }
1145 }
1146 }
1147 } else {
Ethan Yonker74db1572015-10-28 12:44:49 -05001148 gui_msg(Msg(msg::kError, "restore_unable_locate=Unable to locate '{1}' partition for restoring.")(restore_path));
Dees_Troya13d74f2013-03-24 08:54:55 -05001149 }
1150 start_pos = end_pos + 1;
1151 end_pos = Restore_List.find(";", start_pos);
Dees_Troy4a2a1262012-09-18 09:33:47 -04001152 }
Dees_Troy4a2a1262012-09-18 09:33:47 -04001153 }
Dees_Troy4a2a1262012-09-18 09:33:47 -04001154
bigbiffce8f83c2015-12-12 18:30:21 -05001155 if (part_settings.partition_count == 0) {
Ethan Yonker74db1572015-10-28 12:44:49 -05001156 gui_err("no_part_restore=No partitions selected for restore.");
Dees_Troy4a2a1262012-09-18 09:33:47 -04001157 return false;
1158 }
1159
bigbiffce8f83c2015-12-12 18:30:21 -05001160 gui_msg(Msg("restore_part_count=Restoring {1} partitions...")(part_settings.partition_count));
1161 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 +00001162 DataManager::SetProgress(0.0);
bigbiffce8f83c2015-12-12 18:30:21 -05001163 ProgressTracking progress(part_settings.total_restore_size);
1164 part_settings.progress = &progress;
Ethan Yonker1b7a31b2014-07-03 15:09:22 -05001165
Dees_Troya13d74f2013-03-24 08:54:55 -05001166 start_pos = 0;
1167 if (!Restore_List.empty()) {
1168 end_pos = Restore_List.find(";", start_pos);
1169 while (end_pos != string::npos && start_pos < Restore_List.size()) {
1170 restore_path = Restore_List.substr(start_pos, end_pos - start_pos);
bigbiffce8f83c2015-12-12 18:30:21 -05001171
1172 part_settings.Part = Find_Partition_By_Path(restore_path);
1173 if (part_settings.Part != NULL) {
1174 part_settings.partition_count++;
bigbiffce8f83c2015-12-12 18:30:21 -05001175 if (!Restore_Partition(&part_settings))
Dees_Troya13d74f2013-03-24 08:54:55 -05001176 return false;
1177 } else {
Ethan Yonker74db1572015-10-28 12:44:49 -05001178 gui_msg(Msg(msg::kError, "restore_unable_locate=Unable to locate '{1}' partition for restoring.")(restore_path));
Dees_Troya13d74f2013-03-24 08:54:55 -05001179 }
1180 start_pos = end_pos + 1;
1181 end_pos = Restore_List.find(";", start_pos);
1182 }
1183 }
Ethan Yonker74db1572015-10-28 12:44:49 -05001184 TWFunc::GUI_Operation_Text(TW_UPDATE_SYSTEM_DETAILS_TEXT, gui_parse_text("{@updating_system_details}"));
Captain Throwback9d6feb52018-07-27 10:05:24 -04001185 UnMount_By_Path(Get_Android_Root_Path(), false);
Dees_Troy43d8b002012-09-17 16:00:01 -04001186 Update_System_Details();
Dees_Troyd0384ef2012-10-12 12:15:42 -04001187 UnMount_Main_Partitions();
Dees_Troy4a2a1262012-09-18 09:33:47 -04001188 time(&rStop);
Matt Mower3c366972015-12-25 19:28:31 -06001189 gui_msg(Msg(msg::kHighlight, "restore_completed=[RESTORE COMPLETED IN {1} SECONDS]")((int)difftime(rStop,rStart)));
Ethan Yonker1b7a31b2014-07-03 15:09:22 -05001190 DataManager::SetValue("tw_file_progress", "");
bigbiffce8f83c2015-12-12 18:30:21 -05001191
Dees_Troy63c8df72012-09-10 14:02:05 -04001192 return true;
Dees_Troy51a0e822012-09-05 15:24:24 -04001193}
1194
1195void TWPartitionManager::Set_Restore_Files(string Restore_Name) {
Dees_Troy63c8df72012-09-10 14:02:05 -04001196 // Start with the default values
Dees_Troya13d74f2013-03-24 08:54:55 -05001197 string Restore_List;
Dees_Troy83bd4832013-05-04 12:39:56 +00001198 bool get_date = true, check_encryption = true;
bigbiff bigbiff19fb79c2016-09-05 21:04:51 -04001199 bool adbbackup = false;
Dees_Troy83bd4832013-05-04 12:39:56 +00001200
1201 DataManager::SetValue("tw_restore_encrypted", 0);
bigbiff bigbiff19fb79c2016-09-05 21:04:51 -04001202 if (twadbbu::Check_ADB_Backup_File(Restore_Name)) {
1203 vector<string> adb_files;
1204 adb_files = twadbbu::Get_ADB_Backup_Files(Restore_Name);
1205 for (unsigned int i = 0; i < adb_files.size(); ++i) {
1206 string adb_restore_file = adb_files.at(i);
1207 std::size_t pos = adb_restore_file.find_first_of(".");
1208 std::string path = "/" + adb_restore_file.substr(0, pos);
1209 Restore_List = path + ";";
1210 TWPartition* Part = Find_Partition_By_Path(path);
1211 Part->Backup_FileName = TWFunc::Get_Filename(adb_restore_file);
1212 adbbackup = true;
1213 }
1214 DataManager::SetValue("tw_enable_adb_backup", 1);
Dees_Troy63c8df72012-09-10 14:02:05 -04001215 }
bigbiff bigbiff19fb79c2016-09-05 21:04:51 -04001216 else {
1217 DIR* d;
1218 d = opendir(Restore_Name.c_str());
1219 if (d == NULL)
Dees_Troy63c8df72012-09-10 14:02:05 -04001220 {
bigbiff bigbiff19fb79c2016-09-05 21:04:51 -04001221 gui_msg(Msg(msg::kError, "error_opening_strerr=Error opening: '{1}' ({2})")(Restore_Name)(strerror(errno)));
1222 return;
Dees_Troy63c8df72012-09-10 14:02:05 -04001223 }
bigbiff bigbiff19fb79c2016-09-05 21:04:51 -04001224
1225 struct dirent* de;
1226 while ((de = readdir(d)) != NULL)
Dees_Troy63c8df72012-09-10 14:02:05 -04001227 {
bigbiff bigbiff19fb79c2016-09-05 21:04:51 -04001228 // Strip off three components
1229 char str[256];
1230 char* label;
1231 char* fstype = NULL;
1232 char* extn = NULL;
1233 char* ptr;
Dees_Troy63c8df72012-09-10 14:02:05 -04001234
bigbiff bigbiff19fb79c2016-09-05 21:04:51 -04001235 strcpy(str, de->d_name);
1236 if (strlen(str) <= 2)
1237 continue;
Dees_Troy83bd4832013-05-04 12:39:56 +00001238
bigbiff bigbiff19fb79c2016-09-05 21:04:51 -04001239 if (get_date) {
1240 char file_path[255];
1241 struct stat st;
1242
1243 strcpy(file_path, Restore_Name.c_str());
1244 strcat(file_path, "/");
1245 strcat(file_path, str);
1246 stat(file_path, &st);
1247 string backup_date = ctime((const time_t*)(&st.st_mtime));
1248 DataManager::SetValue(TW_RESTORE_FILE_DATE, backup_date);
1249 get_date = false;
Dees_Troy83bd4832013-05-04 12:39:56 +00001250 }
Dees_Troy63c8df72012-09-10 14:02:05 -04001251
bigbiff bigbiff19fb79c2016-09-05 21:04:51 -04001252 label = str;
1253 ptr = label;
1254 while (*ptr && *ptr != '.') ptr++;
1255 if (*ptr == '.')
1256 {
1257 *ptr = 0x00;
1258 ptr++;
1259 fstype = ptr;
1260 }
1261 while (*ptr && *ptr != '.') ptr++;
1262 if (*ptr == '.')
1263 {
1264 *ptr = 0x00;
1265 ptr++;
1266 extn = ptr;
1267 }
Dees_Troy63c8df72012-09-10 14:02:05 -04001268
bigbiff bigbiff19fb79c2016-09-05 21:04:51 -04001269 if (fstype == NULL || extn == NULL || strcmp(fstype, "log") == 0) continue;
1270 int extnlength = strlen(extn);
1271 if (extnlength != 3 && extnlength != 6) continue;
1272 if (extnlength >= 3 && strncmp(extn, "win", 3) != 0) continue;
1273 //if (extnlength == 6 && strncmp(extn, "win000", 6) != 0) continue;
Dees_Troy63c8df72012-09-10 14:02:05 -04001274
bigbiff bigbiff19fb79c2016-09-05 21:04:51 -04001275 if (check_encryption) {
1276 string filename = Restore_Name + "/";
1277 filename += de->d_name;
1278 if (TWFunc::Get_File_Type(filename) == 2) {
1279 LOGINFO("'%s' is encrypted\n", filename.c_str());
1280 DataManager::SetValue("tw_restore_encrypted", 1);
1281 }
1282 }
1283 if (extnlength == 6 && strncmp(extn, "win000", 6) != 0) continue;
1284
1285 TWPartition* Part = Find_Partition_By_Path(label);
1286 if (Part == NULL)
1287 {
1288 gui_msg(Msg(msg::kError, "unable_locate_part_backup_name=Unable to locate partition by backup name: '{1}'")(label));
1289 continue;
1290 }
1291
1292 Part->Backup_FileName = de->d_name;
1293 if (strlen(extn) > 3) {
1294 Part->Backup_FileName.resize(Part->Backup_FileName.size() - strlen(extn) + 3);
1295 }
1296
dianlujitaob76a73a2020-04-30 20:33:20 +08001297 if (!Part->Is_SubPartition) {
1298 if (Part->Backup_Path == Get_Android_Root_Path())
1299 Restore_List += "/system;";
1300 else
1301 Restore_List += Part->Backup_Path + ";";
1302 }
bigbiff bigbiff19fb79c2016-09-05 21:04:51 -04001303 }
1304 closedir(d);
Dees_Troy63c8df72012-09-10 14:02:05 -04001305 }
bigbiff bigbiff19fb79c2016-09-05 21:04:51 -04001306
1307 if (adbbackup) {
1308 Restore_List = "ADB_Backup;";
1309 adbbackup = false;
1310 }
Dees_Troy63c8df72012-09-10 14:02:05 -04001311
Dees_Troya13d74f2013-03-24 08:54:55 -05001312 // Set the final value
1313 DataManager::SetValue("tw_restore_list", Restore_List);
1314 DataManager::SetValue("tw_restore_selected", Restore_List);
Dees_Troy51a0e822012-09-05 15:24:24 -04001315 return;
1316}
1317
1318int TWPartitionManager::Wipe_By_Path(string Path) {
Dees_Troy63c8df72012-09-10 14:02:05 -04001319 std::vector<TWPartition*>::iterator iter;
Mohd Faraz77a31912020-04-21 18:56:44 +05301320 std::vector < TWPartition * >::iterator iter1;
Dees_Troy63c8df72012-09-10 14:02:05 -04001321 int ret = false;
1322 bool found = false;
Dees_Troy38bd7602012-09-14 13:33:53 -04001323 string Local_Path = TWFunc::Get_Root_Path(Path);
Dees_Troy63c8df72012-09-10 14:02:05 -04001324
dianlujitaob76a73a2020-04-30 20:33:20 +08001325 if (Local_Path == "/system")
1326 Local_Path = Get_Android_Root_Path();
Dees_Troy63c8df72012-09-10 14:02:05 -04001327 // Iterate through all partitions
1328 for (iter = Partitions.begin(); iter != Partitions.end(); iter++) {
Dees_Troy657c3092012-09-10 20:32:10 -04001329 if ((*iter)->Mount_Point == Local_Path || (!(*iter)->Symlink_Mount_Point.empty() && (*iter)->Symlink_Mount_Point == Local_Path)) {
Mohd Faraz77a31912020-04-21 18:56:44 +05301330 // iterate through all partitions since some legacy devices uses other partitions as vendor causes issues while wiping
1331 (*iter)->Find_Actual_Block_Device();
1332 for (iter1 = Partitions.begin (); iter1 != Partitions.end (); iter1++)
1333 {
1334 (*iter1)->Find_Actual_Block_Device();
1335 if ((*iter)->Actual_Block_Device == (*iter1)->Actual_Block_Device && (*iter)->Mount_Point != (*iter1)->Mount_Point)
1336 (*iter1)->UnMount(false);
1337 }
Dees_Troye58d5262012-09-21 12:27:57 -04001338 if (Path == "/and-sec")
1339 ret = (*iter)->Wipe_AndSec();
1340 else
1341 ret = (*iter)->Wipe();
Dees_Troy63c8df72012-09-10 14:02:05 -04001342 found = true;
1343 } else if ((*iter)->Is_SubPartition && (*iter)->SubPartition_Of == Local_Path) {
1344 (*iter)->Wipe();
1345 }
1346 }
1347 if (found) {
1348 return ret;
1349 } else
Ethan Yonker74db1572015-10-28 12:44:49 -05001350 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 -04001351 return false;
Dees_Troy51a0e822012-09-05 15:24:24 -04001352}
1353
Ethan Yonker87c7bac2014-05-25 21:41:08 -05001354int TWPartitionManager::Wipe_By_Path(string Path, string New_File_System) {
1355 std::vector<TWPartition*>::iterator iter;
1356 int ret = false;
1357 bool found = false;
1358 string Local_Path = TWFunc::Get_Root_Path(Path);
1359
1360 // Iterate through all partitions
1361 for (iter = Partitions.begin(); iter != Partitions.end(); iter++) {
1362 if ((*iter)->Mount_Point == Local_Path || (!(*iter)->Symlink_Mount_Point.empty() && (*iter)->Symlink_Mount_Point == Local_Path)) {
1363 if (Path == "/and-sec")
1364 ret = (*iter)->Wipe_AndSec();
1365 else
1366 ret = (*iter)->Wipe(New_File_System);
1367 found = true;
1368 } else if ((*iter)->Is_SubPartition && (*iter)->SubPartition_Of == Local_Path) {
1369 (*iter)->Wipe(New_File_System);
1370 }
1371 }
1372 if (found) {
1373 return ret;
1374 } else
Ethan Yonker74db1572015-10-28 12:44:49 -05001375 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 -05001376 return false;
1377}
1378
Dees_Troy51a0e822012-09-05 15:24:24 -04001379int TWPartitionManager::Factory_Reset(void) {
Dees_Troy63c8df72012-09-10 14:02:05 -04001380 std::vector<TWPartition*>::iterator iter;
1381 int ret = true;
1382
1383 for (iter = Partitions.begin(); iter != Partitions.end(); iter++) {
Dees_Troy38bd7602012-09-14 13:33:53 -04001384 if ((*iter)->Wipe_During_Factory_Reset && (*iter)->Is_Present) {
Ethan Yonker89583ef2015-08-26 09:01:59 -05001385#ifdef TW_OEM_BUILD
1386 if ((*iter)->Mount_Point == "/data") {
1387 if (!(*iter)->Wipe_Encryption())
1388 ret = false;
1389 } else {
1390#endif
1391 if (!(*iter)->Wipe())
1392 ret = false;
1393#ifdef TW_OEM_BUILD
1394 }
1395#endif
Dees_Troy094207a2012-09-26 12:00:39 -04001396 } else if ((*iter)->Has_Android_Secure) {
1397 if (!(*iter)->Wipe_AndSec())
1398 ret = false;
Dees_Troy63c8df72012-09-10 14:02:05 -04001399 }
1400 }
Ethan Yonker9fa76ba2016-06-30 14:05:43 -05001401 TWFunc::check_and_run_script("/sbin/factoryreset.sh", "Factory Reset Script");
Dees_Troy63c8df72012-09-10 14:02:05 -04001402 return ret;
Dees_Troy51a0e822012-09-05 15:24:24 -04001403}
1404
Dees_Troy38bd7602012-09-14 13:33:53 -04001405int TWPartitionManager::Wipe_Dalvik_Cache(void) {
1406 struct stat st;
bigbiff bigbiff9c754052013-01-09 09:09:08 -05001407 vector <string> dir;
Dees_Troy38bd7602012-09-14 13:33:53 -04001408
1409 if (!Mount_By_Path("/data", true))
1410 return false;
1411
bigbiff bigbiff9c754052013-01-09 09:09:08 -05001412 dir.push_back("/data/dalvik-cache");
bigbiff bigbiff19874f12019-01-08 20:06:57 -05001413
bigbiff349ea552020-06-19 16:07:38 -04001414 std::string cacheDir = TWFunc::get_log_dir();
1415 if (cacheDir == CACHE_LOGS_DIR) {
1416 if (!PartitionManager.Mount_By_Path(CACHE_LOGS_DIR, false)) {
1417 LOGINFO("Unable to mount %s for wiping cache.\n", CACHE_LOGS_DIR);
bigbiff bigbiff19874f12019-01-08 20:06:57 -05001418 }
1419 dir.push_back(cacheDir + "dalvik-cache");
1420 dir.push_back(cacheDir + "/dc");
bigbiff bigbiff9c754052013-01-09 09:09:08 -05001421 }
Ethan Yonkerff2b7882016-12-10 09:04:41 -06001422
Dees_Troy38bd7602012-09-14 13:33:53 -04001423 TWPartition* sdext = Find_Partition_By_Path("/sd-ext");
Vojtech Bocekfafb0c52013-07-25 22:53:02 +02001424 if (sdext && sdext->Is_Present && sdext->Mount(false))
1425 {
1426 if (stat("/sd-ext/dalvik-cache", &st) == 0)
1427 {
Ethan Yonkerff2b7882016-12-10 09:04:41 -06001428 dir.push_back("/sd-ext/dalvik-cache");
1429 }
1430 }
1431
bigbiff349ea552020-06-19 16:07:38 -04001432 if (cacheDir == CACHE_LOGS_DIR) {
bigbiff bigbiff19874f12019-01-08 20:06:57 -05001433 gui_msg("wiping_cache_dalvik=Wiping Dalvik Cache Directories...");
1434 } else {
1435 gui_msg("wiping_dalvik=Wiping Dalvik Directory...");
1436 }
Ethan Yonkerff2b7882016-12-10 09:04:41 -06001437 for (unsigned i = 0; i < dir.size(); ++i) {
1438 if (stat(dir.at(i).c_str(), &st) == 0) {
1439 TWFunc::removeDir(dir.at(i), false);
1440 gui_msg(Msg("cleaned=Cleaned: {1}...")(dir.at(i)));
bigbiff bigbiff9c754052013-01-09 09:09:08 -05001441 }
Vojtech Bocekfafb0c52013-07-25 22:53:02 +02001442 }
bigbiff bigbiff19874f12019-01-08 20:06:57 -05001443
bigbiff349ea552020-06-19 16:07:38 -04001444 if (cacheDir == CACHE_LOGS_DIR) {
bigbiff bigbiff19874f12019-01-08 20:06:57 -05001445 gui_msg("cache_dalvik_done=-- Dalvik Cache Directories Wipe Complete!");
1446 } else {
1447 gui_msg("dalvik_done=-- Dalvik Directory Wipe Complete!");
1448 }
1449
Dees_Troy38bd7602012-09-14 13:33:53 -04001450 return true;
1451}
1452
1453int TWPartitionManager::Wipe_Rotate_Data(void) {
1454 if (!Mount_By_Path("/data", true))
1455 return false;
1456
bigbiff bigbiff9c754052013-01-09 09:09:08 -05001457 unlink("/data/misc/akmd*");
1458 unlink("/data/misc/rild*");
Dees_Troy2673cec2013-04-02 20:22:16 +00001459 gui_print("Rotation data wiped.\n");
Dees_Troy38bd7602012-09-14 13:33:53 -04001460 return true;
1461}
1462
1463int TWPartitionManager::Wipe_Battery_Stats(void) {
1464 struct stat st;
1465
1466 if (!Mount_By_Path("/data", true))
1467 return false;
1468
1469 if (0 != stat("/data/system/batterystats.bin", &st)) {
Dees_Troy2673cec2013-04-02 20:22:16 +00001470 gui_print("No Battery Stats Found. No Need To Wipe.\n");
Dees_Troy38bd7602012-09-14 13:33:53 -04001471 } else {
1472 remove("/data/system/batterystats.bin");
Dees_Troy2673cec2013-04-02 20:22:16 +00001473 gui_print("Cleared battery stats.\n");
Dees_Troy38bd7602012-09-14 13:33:53 -04001474 }
1475 return true;
1476}
1477
Dees_Troy2ff5a8d2012-09-26 14:53:02 -04001478int TWPartitionManager::Wipe_Android_Secure(void) {
1479 std::vector<TWPartition*>::iterator iter;
1480 int ret = false;
1481 bool found = false;
1482
1483 // Iterate through all partitions
1484 for (iter = Partitions.begin(); iter != Partitions.end(); iter++) {
1485 if ((*iter)->Has_Android_Secure) {
1486 ret = (*iter)->Wipe_AndSec();
1487 found = true;
1488 }
1489 }
1490 if (found) {
1491 return ret;
1492 } else {
Ethan Yonker74db1572015-10-28 12:44:49 -05001493 gui_err("no_andsec=No android secure partitions found.");
Dees_Troy2ff5a8d2012-09-26 14:53:02 -04001494 }
1495 return false;
1496}
1497
Dees_Troy38bd7602012-09-14 13:33:53 -04001498int TWPartitionManager::Format_Data(void) {
1499 TWPartition* dat = Find_Partition_By_Path("/data");
1500
1501 if (dat != NULL) {
Dees_Troy38bd7602012-09-14 13:33:53 -04001502 return dat->Wipe_Encryption();
1503 } else {
Matt Mower3c366972015-12-25 19:28:31 -06001504 gui_msg(Msg(msg::kError, "unable_to_locate=Unable to locate {1}.")("/data"));
Dees_Troy38bd7602012-09-14 13:33:53 -04001505 return false;
1506 }
1507 return false;
1508}
1509
1510int TWPartitionManager::Wipe_Media_From_Data(void) {
1511 TWPartition* dat = Find_Partition_By_Path("/data");
1512
1513 if (dat != NULL) {
1514 if (!dat->Has_Data_Media) {
Dees_Troy2673cec2013-04-02 20:22:16 +00001515 LOGERR("This device does not have /data/media\n");
Dees_Troy38bd7602012-09-14 13:33:53 -04001516 return false;
1517 }
1518 if (!dat->Mount(true))
1519 return false;
1520
Ethan Yonker74db1572015-10-28 12:44:49 -05001521 gui_msg("wiping_datamedia=Wiping internal storage -- /data/media...");
Ethan Yonker726a0202014-12-16 20:01:38 -06001522 Remove_MTP_Storage(dat->MTP_Storage_ID);
bigbiff bigbiff9c754052013-01-09 09:09:08 -05001523 TWFunc::removeDir("/data/media", false);
xiaolu9416f4f2015-06-04 08:22:23 +08001524 dat->Recreate_Media_Folder();
Ethan Yonker726a0202014-12-16 20:01:38 -06001525 Add_MTP_Storage(dat->MTP_Storage_ID);
Dees_Troy38bd7602012-09-14 13:33:53 -04001526 return true;
1527 } else {
Matt Mower3c366972015-12-25 19:28:31 -06001528 gui_msg(Msg(msg::kError, "unable_to_locate=Unable to locate {1}.")("/data"));
Dees_Troy38bd7602012-09-14 13:33:53 -04001529 return false;
1530 }
1531 return false;
1532}
1533
Ethan Yonker87c7bac2014-05-25 21:41:08 -05001534int TWPartitionManager::Repair_By_Path(string Path, bool Display_Error) {
1535 std::vector<TWPartition*>::iterator iter;
1536 int ret = false;
1537 bool found = false;
1538 string Local_Path = TWFunc::Get_Root_Path(Path);
1539
1540 if (Local_Path == "/tmp" || Local_Path == "/")
1541 return true;
1542
1543 // Iterate through all partitions
1544 for (iter = Partitions.begin(); iter != Partitions.end(); iter++) {
1545 if ((*iter)->Mount_Point == Local_Path || (!(*iter)->Symlink_Mount_Point.empty() && (*iter)->Symlink_Mount_Point == Local_Path)) {
1546 ret = (*iter)->Repair();
1547 found = true;
1548 } else if ((*iter)->Is_SubPartition && (*iter)->SubPartition_Of == Local_Path) {
1549 (*iter)->Repair();
1550 }
1551 }
1552 if (found) {
1553 return ret;
1554 } else if (Display_Error) {
Ethan Yonker74db1572015-10-28 12:44:49 -05001555 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 -05001556 } else {
1557 LOGINFO("Repair: Unable to find partition for path '%s'\n", Local_Path.c_str());
1558 }
1559 return false;
1560}
1561
Ethan Yonkera2719152015-05-28 09:44:41 -05001562int TWPartitionManager::Resize_By_Path(string Path, bool Display_Error) {
1563 std::vector<TWPartition*>::iterator iter;
1564 int ret = false;
1565 bool found = false;
1566 string Local_Path = TWFunc::Get_Root_Path(Path);
1567
1568 if (Local_Path == "/tmp" || Local_Path == "/")
1569 return true;
1570
1571 // Iterate through all partitions
1572 for (iter = Partitions.begin(); iter != Partitions.end(); iter++) {
1573 if ((*iter)->Mount_Point == Local_Path || (!(*iter)->Symlink_Mount_Point.empty() && (*iter)->Symlink_Mount_Point == Local_Path)) {
1574 ret = (*iter)->Resize();
1575 found = true;
1576 } else if ((*iter)->Is_SubPartition && (*iter)->SubPartition_Of == Local_Path) {
1577 (*iter)->Resize();
1578 }
1579 }
1580 if (found) {
1581 return ret;
1582 } else if (Display_Error) {
Ethan Yonker74db1572015-10-28 12:44:49 -05001583 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 -05001584 } else {
1585 LOGINFO("Resize: Unable to find partition for path '%s'\n", Local_Path.c_str());
1586 }
1587 return false;
1588}
1589
Dees_Troy51a0e822012-09-05 15:24:24 -04001590void TWPartitionManager::Update_System_Details(void) {
Dees_Troy5bf43922012-09-07 16:07:55 -04001591 std::vector<TWPartition*>::iterator iter;
Dees_Troy51127312012-09-08 13:08:49 -04001592 int data_size = 0;
Dees_Troy5bf43922012-09-07 16:07:55 -04001593
Ethan Yonker74db1572015-10-28 12:44:49 -05001594 gui_msg("update_part_details=Updating partition details...");
Dees_Troy5bf43922012-09-07 16:07:55 -04001595 for (iter = Partitions.begin(); iter != Partitions.end(); iter++) {
Ethan Yonker1b190162016-12-05 15:25:19 -06001596 (*iter)->Update_Size(true);
Dees_Troy51127312012-09-08 13:08:49 -04001597 if ((*iter)->Can_Be_Mounted) {
Captain Throwback9d6feb52018-07-27 10:05:24 -04001598 if ((*iter)->Mount_Point == Get_Android_Root_Path()) {
Dees_Troy51127312012-09-08 13:08:49 -04001599 int backup_display_size = (int)((*iter)->Backup_Size / 1048576LLU);
1600 DataManager::SetValue(TW_BACKUP_SYSTEM_SIZE, backup_display_size);
Ethan Yonker76bbd3a2019-05-10 10:50:04 -05001601 TWFunc::Is_TWRP_App_In_System();
Dees_Troy51127312012-09-08 13:08:49 -04001602 } else if ((*iter)->Mount_Point == "/data" || (*iter)->Mount_Point == "/datadata") {
1603 data_size += (int)((*iter)->Backup_Size / 1048576LLU);
1604 } else if ((*iter)->Mount_Point == "/cache") {
1605 int backup_display_size = (int)((*iter)->Backup_Size / 1048576LLU);
1606 DataManager::SetValue(TW_BACKUP_CACHE_SIZE, backup_display_size);
1607 } else if ((*iter)->Mount_Point == "/sd-ext") {
1608 int backup_display_size = (int)((*iter)->Backup_Size / 1048576LLU);
1609 DataManager::SetValue(TW_BACKUP_SDEXT_SIZE, backup_display_size);
1610 if ((*iter)->Backup_Size == 0) {
1611 DataManager::SetValue(TW_HAS_SDEXT_PARTITION, 0);
1612 DataManager::SetValue(TW_BACKUP_SDEXT_VAR, 0);
1613 } else
1614 DataManager::SetValue(TW_HAS_SDEXT_PARTITION, 1);
Dees_Troye58d5262012-09-21 12:27:57 -04001615 } else if ((*iter)->Has_Android_Secure) {
Dees_Troy8170a922012-09-18 15:40:25 -04001616 int backup_display_size = (int)((*iter)->Backup_Size / 1048576LLU);
Dees_Troye58d5262012-09-21 12:27:57 -04001617 DataManager::SetValue(TW_BACKUP_ANDSEC_SIZE, backup_display_size);
Dees_Troy8170a922012-09-18 15:40:25 -04001618 if ((*iter)->Backup_Size == 0) {
1619 DataManager::SetValue(TW_HAS_ANDROID_SECURE, 0);
1620 DataManager::SetValue(TW_BACKUP_ANDSEC_VAR, 0);
1621 } else
1622 DataManager::SetValue(TW_HAS_ANDROID_SECURE, 1);
Dees_Troy2c50e182012-09-26 20:05:28 -04001623 } else if ((*iter)->Mount_Point == "/boot") {
1624 int backup_display_size = (int)((*iter)->Backup_Size / 1048576LLU);
1625 DataManager::SetValue(TW_BACKUP_BOOT_SIZE, backup_display_size);
1626 if ((*iter)->Backup_Size == 0) {
1627 DataManager::SetValue("tw_has_boot_partition", 0);
1628 DataManager::SetValue(TW_BACKUP_BOOT_VAR, 0);
1629 } else
1630 DataManager::SetValue("tw_has_boot_partition", 1);
Dees_Troy51127312012-09-08 13:08:49 -04001631 }
Dees_Troyaa9cc402012-10-13 12:14:05 -04001632 } else {
1633 // Handle unmountable partitions in case we reset defaults
1634 if ((*iter)->Mount_Point == "/boot") {
1635 int backup_display_size = (int)((*iter)->Backup_Size / 1048576LLU);
1636 DataManager::SetValue(TW_BACKUP_BOOT_SIZE, backup_display_size);
1637 if ((*iter)->Backup_Size == 0) {
1638 DataManager::SetValue(TW_HAS_BOOT_PARTITION, 0);
1639 DataManager::SetValue(TW_BACKUP_BOOT_VAR, 0);
1640 } else
1641 DataManager::SetValue(TW_HAS_BOOT_PARTITION, 1);
1642 } else if ((*iter)->Mount_Point == "/recovery") {
1643 int backup_display_size = (int)((*iter)->Backup_Size / 1048576LLU);
1644 DataManager::SetValue(TW_BACKUP_RECOVERY_SIZE, backup_display_size);
1645 if ((*iter)->Backup_Size == 0) {
1646 DataManager::SetValue(TW_HAS_RECOVERY_PARTITION, 0);
1647 DataManager::SetValue(TW_BACKUP_RECOVERY_VAR, 0);
1648 } else
1649 DataManager::SetValue(TW_HAS_RECOVERY_PARTITION, 1);
Gary Peck82599a82012-11-21 16:23:12 -08001650 } else if ((*iter)->Mount_Point == "/data") {
1651 data_size += (int)((*iter)->Backup_Size / 1048576LLU);
Dees_Troyaa9cc402012-10-13 12:14:05 -04001652 }
Dees_Troy51127312012-09-08 13:08:49 -04001653 }
Dees_Troy5bf43922012-09-07 16:07:55 -04001654 }
Ethan Yonker74db1572015-10-28 12:44:49 -05001655 gui_msg("update_part_details_done=...done");
Dees_Troy51127312012-09-08 13:08:49 -04001656 DataManager::SetValue(TW_BACKUP_DATA_SIZE, data_size);
1657 string current_storage_path = DataManager::GetCurrentStoragePath();
1658 TWPartition* FreeStorage = Find_Partition_By_Path(current_storage_path);
Dees_Troy8170a922012-09-18 15:40:25 -04001659 if (FreeStorage != NULL) {
1660 // Attempt to mount storage
1661 if (!FreeStorage->Mount(false)) {
Matt Mower2d50cad2015-12-03 22:26:55 -06001662 gui_msg(Msg(msg::kError, "unable_to_mount_storage=Unable to mount storage"));
1663 DataManager::SetValue(TW_STORAGE_FREE_SIZE, 0);
Dees_Troy8170a922012-09-18 15:40:25 -04001664 } else {
1665 DataManager::SetValue(TW_STORAGE_FREE_SIZE, (int)(FreeStorage->Free / 1048576LLU));
1666 }
1667 } else {
Dees_Troy2673cec2013-04-02 20:22:16 +00001668 LOGINFO("Unable to find storage partition '%s'.\n", current_storage_path.c_str());
Dees_Troy8170a922012-09-18 15:40:25 -04001669 }
Dees_Troy5bf43922012-09-07 16:07:55 -04001670 if (!Write_Fstab())
Dees_Troy2673cec2013-04-02 20:22:16 +00001671 LOGERR("Error creating fstab\n");
Dees_Troy51a0e822012-09-05 15:24:24 -04001672 return;
1673}
1674
Ethan Yonkerbd7492d2016-12-07 13:55:01 -06001675void TWPartitionManager::Post_Decrypt(const string& Block_Device) {
1676 TWPartition* dat = Find_Partition_By_Path("/data");
1677 if (dat != NULL) {
1678 DataManager::SetValue(TW_IS_DECRYPTED, 1);
1679 dat->Is_Decrypted = true;
1680 if (!Block_Device.empty()) {
1681 dat->Decrypted_Block_Device = Block_Device;
1682 gui_msg(Msg("decrypt_success_dev=Data successfully decrypted, new block device: '{1}'")(Block_Device));
1683 } else {
1684 gui_msg("decrypt_success_nodev=Data successfully decrypted");
1685 }
Noah Jacobson5a79f672019-04-28 00:10:07 -04001686 property_set("twrp.decrypt.done", "true");
Ethan Yonkerbd7492d2016-12-07 13:55:01 -06001687 dat->Setup_File_System(false);
Noah Jacobson5a79f672019-04-28 00:10:07 -04001688 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 -06001689
Noah Jacobson5a79f672019-04-28 00:10:07 -04001690 sleep(1); // Sleep for a bit so that the device will be ready
Ethan Yonkerbd7492d2016-12-07 13:55:01 -06001691 if (dat->Has_Data_Media && dat->Mount(false) && TWFunc::Path_Exists("/data/media/0")) {
1692 dat->Storage_Path = "/data/media/0";
1693 dat->Symlink_Path = dat->Storage_Path;
1694 DataManager::SetValue("tw_storage_path", "/data/media/0");
1695 DataManager::SetValue("tw_settings_path", "/data/media/0");
1696 dat->UnMount(false);
Ethan Yonkerbd7492d2016-12-07 13:55:01 -06001697 }
1698 Update_System_Details();
nkk71ffb02bd2017-06-04 23:12:16 +03001699 Output_Partition(dat);
Ethan Yonkerbd7492d2016-12-07 13:55:01 -06001700 UnMount_Main_Partitions();
1701 } else
1702 LOGERR("Unable to locate data partition.\n");
1703}
1704
Noah Jacobson5a79f672019-04-28 00:10:07 -04001705void TWPartitionManager::Parse_Users() {
1706#ifdef TW_INCLUDE_FBE
1707 char user_check_result[PROPERTY_VALUE_MAX];
1708 for (int userId = 0; userId <= 9999; userId++) {
1709 string prop = "twrp.user." + to_string(userId) + ".decrypt";
1710 property_get(prop.c_str(), user_check_result, "-1");
1711 if (strcmp(user_check_result, "-1") != 0) {
1712 if (userId < 0 || userId > 9999) {
1713 LOGINFO("Incorrect user id %d\n", userId);
1714 continue;
1715 }
1716 struct users_struct user;
1717 user.userId = to_string(userId);
1718
1719 // Attempt to get name of user. Fallback to user ID if this fails.
1720 char* userFile = PageManager::LoadFileToBuffer("/data/system/users/" + to_string(userId) + ".xml", NULL);
1721 if (userFile == NULL)
1722 user.userName = to_string(userId);
1723 else {
1724 xml_document<> *userXml = new xml_document<>();
1725 userXml->parse<0>(userFile);
1726 xml_node<>* userNode = userXml->first_node("user");
1727 if (userNode == nullptr) {
1728 user.userName = to_string(userId);
1729 } else {
1730 xml_node<>* nameNode = userNode->first_node("name");
1731 if (nameNode == nullptr)
1732 user.userName = to_string(userId);
1733 else {
1734 string userName = nameNode->value();
1735 user.userName = userName + " (" + to_string(userId) + ")";
1736 }
1737 }
1738 }
1739
1740 string filename;
1741 user.type = Get_Password_Type(userId, filename);
1742
1743 user.isDecrypted = false;
1744 if (strcmp(user_check_result, "1") == 0)
1745 user.isDecrypted = true;
1746 Users_List.push_back(user);
1747 }
1748 }
1749 Check_Users_Decryption_Status();
1750#endif
1751}
1752
1753std::vector<users_struct>* TWPartitionManager::Get_Users_List() {
1754 return &Users_List;
1755}
1756
1757void TWPartitionManager::Mark_User_Decrypted(int userID) {
1758#ifdef TW_INCLUDE_FBE
1759 std::vector<users_struct>::iterator iter;
1760 for (iter = Users_List.begin(); iter != Users_List.end(); iter++) {
1761 if (atoi((*iter).userId.c_str()) == userID) {
1762 (*iter).isDecrypted = true;
1763 string user_prop_decrypted = "twrp.user." + to_string(userID) + ".decrypt";
1764 property_set(user_prop_decrypted.c_str(), "1");
1765 break;
1766 }
1767 }
1768 Check_Users_Decryption_Status();
1769#endif
1770}
1771
1772void TWPartitionManager::Check_Users_Decryption_Status() {
1773#ifdef TW_INCLUDE_FBE
1774 int all_is_decrypted = 1;
1775 std::vector<users_struct>::iterator iter;
1776 for (iter = Users_List.begin(); iter != Users_List.end(); iter++) {
1777 if (!(*iter).isDecrypted) {
Noah Jacobsonbf0b0fb2020-06-05 12:47:20 -04001778 LOGINFO("User %s is not decrypted.\n", (*iter).userId.c_str());
Noah Jacobson5a79f672019-04-28 00:10:07 -04001779 all_is_decrypted = 0;
1780 break;
1781 }
1782 }
1783 if (all_is_decrypted == 1) {
Noah Jacobsonbf0b0fb2020-06-05 12:47:20 -04001784 LOGINFO("All found users are decrypted.\n");
Noah Jacobson5a79f672019-04-28 00:10:07 -04001785 DataManager::SetValue("tw_all_users_decrypted", "1");
1786 property_set("twrp.all.users.decrypted", "true");
1787 } else
1788 DataManager::SetValue("tw_all_users_decrypted", "0");
1789#endif
1790}
1791
1792int TWPartitionManager::Decrypt_Device(string Password, int user_id) {
Dees_Troy5bf43922012-09-07 16:07:55 -04001793#ifdef TW_INCLUDE_CRYPTO
Ethan Yonkerddb63e22017-01-19 14:01:57 -06001794 char crypto_state[PROPERTY_VALUE_MAX], crypto_blkdev[PROPERTY_VALUE_MAX];
Ethan Yonker253368a2014-11-25 15:00:52 -06001795 std::vector<TWPartition*>::iterator iter;
Dees_Troy5bf43922012-09-07 16:07:55 -04001796
Ethan Yonker253368a2014-11-25 15:00:52 -06001797 // Mount any partitions that need to be mounted for decrypt
1798 for (iter = Partitions.begin(); iter != Partitions.end(); iter++) {
1799 if ((*iter)->Mount_To_Decrypt) {
1800 (*iter)->Mount(true);
1801 }
a39552696ff55ce2013-01-08 16:14:56 +00001802 }
oshmouna82a7542018-04-10 17:45:55 +02001803 property_set("twrp.mount_to_decrypt", "1");
a39552696ff55ce2013-01-08 16:14:56 +00001804
Ethan Yonkera1de1492015-11-04 11:58:27 -06001805 property_get("ro.crypto.state", crypto_state, "error");
1806 if (strcmp(crypto_state, "error") == 0) {
Captain Throwback07b8e052020-10-29 12:43:17 -04001807 Set_FDE_Encrypt_Status();
Ethan Yonkera1de1492015-11-04 11:58:27 -06001808 }
1809
Ethan Yonkerbd7492d2016-12-07 13:55:01 -06001810 if (DataManager::GetIntValue(TW_IS_FBE)) {
1811#ifdef TW_INCLUDE_FBE
1812 if (!Mount_By_Path("/data", true)) // /data has to be mounted for FBE
1813 return -1;
Noah Jacobson5a79f672019-04-28 00:10:07 -04001814
1815 bool user_need_decrypt = false;
1816 std::vector<users_struct>::iterator iter;
1817 for (iter = Users_List.begin(); iter != Users_List.end(); iter++) {
1818 if (atoi((*iter).userId.c_str()) == user_id && !(*iter).isDecrypted) {
1819 user_need_decrypt = true;
1820 }
1821 }
1822 if (!user_need_decrypt) {
1823 LOGINFO("User %d does not require decryption\n", user_id);
1824 return 0;
1825 }
1826
Ethan Yonkerbd7492d2016-12-07 13:55:01 -06001827 int retry_count = 10;
1828 while (!TWFunc::Path_Exists("/data/system/users/gatekeeper.password.key") && --retry_count)
Noah Jacobson5a79f672019-04-28 00:10:07 -04001829 usleep(2000); // A small sleep is needed after mounting /data to ensure reliable decrypt...maybe because of DE?
1830 gui_msg(Msg("decrypting_user_fbe=Attempting to decrypt FBE for user {1}...")(user_id));
Ethan Yonkerbd7492d2016-12-07 13:55:01 -06001831 if (Decrypt_User(user_id, Password)) {
Noah Jacobson5a79f672019-04-28 00:10:07 -04001832 gui_msg(Msg("decrypt_user_success_fbe=User {1} Decrypted Successfully")(user_id));
1833 Mark_User_Decrypted(user_id);
1834 if (user_id == 0) {
1835 // When decrypting user 0 also try all other users
1836 std::vector<users_struct>::iterator iter;
1837 for (iter = Users_List.begin(); iter != Users_List.end(); iter++) {
1838 if ((*iter).userId == "0" || (*iter).isDecrypted)
1839 continue;
1840
1841 int tmp_user_id = atoi((*iter).userId.c_str());
1842 gui_msg(Msg("decrypting_user_fbe=Attempting to decrypt FBE for user {1}...")(tmp_user_id));
1843 if (Decrypt_User(tmp_user_id, Password) ||
1844 (Password != "!" && Decrypt_User(tmp_user_id, "!"))) { // "!" means default password
1845 gui_msg(Msg("decrypt_user_success_fbe=User {1} Decrypted Successfully")(tmp_user_id));
1846 Mark_User_Decrypted(tmp_user_id);
1847 } else {
1848 gui_msg(Msg("decrypt_user_fail_fbe=Failed to decrypt user {1}")(tmp_user_id));
1849 }
1850 }
1851 Post_Decrypt("");
1852 }
1853
Ethan Yonkerbd7492d2016-12-07 13:55:01 -06001854 return 0;
Noah Jacobson5a79f672019-04-28 00:10:07 -04001855 } else {
1856 gui_msg(Msg(msg::kError, "decrypt_user_fail_fbe=Failed to decrypt user {1}")(user_id));
Ethan Yonkerbd7492d2016-12-07 13:55:01 -06001857 }
1858#else
1859 LOGERR("FBE support is not present\n");
1860#endif
1861 return -1;
1862 }
1863
Noah Jacobson5a79f672019-04-28 00:10:07 -04001864 char isdecrypteddata[PROPERTY_VALUE_MAX];
1865 property_get("twrp.decrypt.done", isdecrypteddata, "");
1866 if (strcmp(isdecrypteddata, "true") == 0) {
1867 LOGINFO("Data has no decryption required\n");
1868 return 0;
1869 }
1870
Ethan Yonkerddb63e22017-01-19 14:01:57 -06001871 int pwret = -1;
1872 pid_t pid = fork();
1873 if (pid < 0) {
1874 LOGERR("fork failed\n");
1875 return -1;
1876 } else if (pid == 0) {
1877 // Child process
1878 char cPassword[255];
1879 strcpy(cPassword, Password.c_str());
1880 int ret = cryptfs_check_passwd(cPassword);
1881 exit(ret);
1882 } else {
1883 // Parent
1884 int status;
1885 if (TWFunc::Wait_For_Child_Timeout(pid, &status, "Decrypt", 30))
1886 pwret = -1;
1887 else
1888 pwret = WEXITSTATUS(status) ? -1 : 0;
1889 }
a39552696ff55ce2013-01-08 16:14:56 +00001890
nkk7171c6c502017-01-05 23:55:05 +02001891#ifdef TW_CRYPTO_USE_SYSTEM_VOLD
1892 if (pwret != 0) {
1893 pwret = vold_decrypt(Password);
nkk717d1222a2017-11-06 17:27:21 +02001894 switch (pwret) {
1895 case VD_SUCCESS:
1896 break;
1897 case VD_ERR_MISSING_VDC:
1898 gui_msg(Msg(msg::kError, "decrypt_data_vold_os_missing=Missing files needed for vold decrypt: {1}")("/system/bin/vdc"));
1899 break;
1900 case VD_ERR_MISSING_VOLD:
1901 gui_msg(Msg(msg::kError, "decrypt_data_vold_os_missing=Missing files needed for vold decrypt: {1}")("/system/bin/vold"));
1902 break;
1903 }
nkk7171c6c502017-01-05 23:55:05 +02001904 }
1905#endif // TW_CRYPTO_USE_SYSTEM_VOLD
1906
Ethan Yonker253368a2014-11-25 15:00:52 -06001907 // Unmount any partitions that were needed for decrypt
1908 for (iter = Partitions.begin(); iter != Partitions.end(); iter++) {
1909 if ((*iter)->Mount_To_Decrypt) {
1910 (*iter)->UnMount(false);
1911 }
1912 }
oshmouna82a7542018-04-10 17:45:55 +02001913 property_set("twrp.mount_to_decrypt", "0");
Ethan Yonker253368a2014-11-25 15:00:52 -06001914
a39552696ff55ce2013-01-08 16:14:56 +00001915 if (pwret != 0) {
Ethan Yonker74db1572015-10-28 12:44:49 -05001916 gui_err("fail_decrypt=Failed to decrypt data.");
Dees_Troy5bf43922012-09-07 16:07:55 -04001917 return -1;
1918 }
a39552696ff55ce2013-01-08 16:14:56 +00001919
Dees_Troy5bf43922012-09-07 16:07:55 -04001920 property_get("ro.crypto.fs_crypto_blkdev", crypto_blkdev, "error");
1921 if (strcmp(crypto_blkdev, "error") == 0) {
Dees_Troy2673cec2013-04-02 20:22:16 +00001922 LOGERR("Error retrieving decrypted data block device.\n");
Dees_Troy5bf43922012-09-07 16:07:55 -04001923 } else {
Ethan Yonkerbd7492d2016-12-07 13:55:01 -06001924 Post_Decrypt(crypto_blkdev);
Dees_Troy5bf43922012-09-07 16:07:55 -04001925 }
1926 return 0;
1927#else
Ethan Yonker74db1572015-10-28 12:44:49 -05001928 gui_err("no_crypto_support=No crypto support was compiled into this build.");
Dees_Troy5bf43922012-09-07 16:07:55 -04001929 return -1;
1930#endif
Dees_Troy51a0e822012-09-05 15:24:24 -04001931 return 1;
Dees_Troy51127312012-09-08 13:08:49 -04001932}
1933
Ethan Yonkerb5fab762016-01-28 14:03:33 -06001934int TWPartitionManager::Fix_Contexts(void) {
Ethan Yonkerb5fab762016-01-28 14:03:33 -06001935 std::vector<TWPartition*>::iterator iter;
1936 for (iter = Partitions.begin(); iter != Partitions.end(); iter++) {
1937 if ((*iter)->Has_Data_Media) {
1938 if ((*iter)->Mount(true)) {
1939 if (fixContexts::fixDataMediaContexts((*iter)->Mount_Point) != 0)
1940 return -1;
1941 }
1942 }
1943 }
Dees_Troy1a650e62012-10-19 20:54:32 -04001944 UnMount_Main_Partitions();
Ethan Yonker74db1572015-10-28 12:44:49 -05001945 gui_msg("done=Done.");
Ethan Yonkerb5fab762016-01-28 14:03:33 -06001946 return 0;
bigbiff bigbiffa0f8a592012-10-09 21:01:03 -04001947}
1948
Ethan Yonker66a19492015-12-10 10:19:45 -06001949TWPartition* TWPartitionManager::Find_Next_Storage(string Path, bool Exclude_Data_Media) {
Ethan Yonker47360be2014-04-01 10:34:34 -05001950 std::vector<TWPartition*>::iterator iter = Partitions.begin();
1951
1952 if (!Path.empty()) {
1953 string Search_Path = TWFunc::Get_Root_Path(Path);
1954 for (; iter != Partitions.end(); iter++) {
Matt Mower9a561dd2016-02-22 21:25:51 -06001955 if ((*iter)->Mount_Point == Search_Path) {
Ethan Yonker47360be2014-04-01 10:34:34 -05001956 iter++;
1957 break;
1958 }
1959 }
1960 }
1961
1962 for (; iter != Partitions.end(); iter++) {
Ethan Yonker66a19492015-12-10 10:19:45 -06001963 if (Exclude_Data_Media && (*iter)->Has_Data_Media) {
1964 // do nothing, do not return this type of partition
1965 } else if ((*iter)->Is_Storage && (*iter)->Is_Present) {
Ethan Yonker47360be2014-04-01 10:34:34 -05001966 return (*iter);
1967 }
1968 }
1969
1970 return NULL;
1971}
1972
Dees_Troyd21618c2012-10-14 18:48:49 -04001973int TWPartitionManager::Open_Lun_File(string Partition_Path, string Lun_File) {
Dees_Troyd21618c2012-10-14 18:48:49 -04001974 TWPartition* Part = Find_Partition_By_Path(Partition_Path);
1975
1976 if (Part == NULL) {
Ethan Yonker74db1572015-10-28 12:44:49 -05001977 LOGINFO("Unable to locate '%s' for USB storage mode.", Partition_Path.c_str());
1978 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 -04001979 return false;
1980 }
Ethan Yonker47360be2014-04-01 10:34:34 -05001981 LOGINFO("USB mount '%s', '%s' > '%s'\n", Partition_Path.c_str(), Part->Actual_Block_Device.c_str(), Lun_File.c_str());
1982 if (!Part->UnMount(true) || !Part->Is_Present)
Dees_Troyd21618c2012-10-14 18:48:49 -04001983 return false;
1984
Ethan Yonker6e8c27a2016-12-22 17:55:57 -06001985 if (TWFunc::write_to_file(Lun_File, Part->Actual_Block_Device)) {
Dees_Troy2673cec2013-04-02 20:22:16 +00001986 LOGERR("Unable to write to ums lunfile '%s': (%s)\n", Lun_File.c_str(), strerror(errno));
Dees_Troyd21618c2012-10-14 18:48:49 -04001987 return false;
1988 }
Dees_Troyd21618c2012-10-14 18:48:49 -04001989 return true;
1990}
1991
Dees_Troy8170a922012-09-18 15:40:25 -04001992int TWPartitionManager::usb_storage_enable(void) {
Dees_Troy8170a922012-09-18 15:40:25 -04001993 char lun_file[255];
Dees_Troyd21618c2012-10-14 18:48:49 -04001994 bool has_multiple_lun = false;
Dees_Troy8170a922012-09-18 15:40:25 -04001995
Ethan Yonker47360be2014-04-01 10:34:34 -05001996 string Lun_File_str = CUSTOM_LUN_FILE;
1997 size_t found = Lun_File_str.find("%");
1998 if (found != string::npos) {
1999 sprintf(lun_file, CUSTOM_LUN_FILE, 1);
2000 if (TWFunc::Path_Exists(lun_file))
2001 has_multiple_lun = true;
2002 }
Ethan Yonker726a0202014-12-16 20:01:38 -06002003 mtp_was_enabled = TWFunc::Toggle_MTP(false); // Must disable MTP for USB Storage
Ethan Yonker47360be2014-04-01 10:34:34 -05002004 if (!has_multiple_lun) {
2005 LOGINFO("Device doesn't have multiple lun files, mount current storage\n");
2006 sprintf(lun_file, CUSTOM_LUN_FILE, 0);
2007 if (TWFunc::Get_Root_Path(DataManager::GetCurrentStoragePath()) == "/data") {
Ethan Yonker66a19492015-12-10 10:19:45 -06002008 TWPartition* Mount = Find_Next_Storage("", true);
Ethan Yonker47360be2014-04-01 10:34:34 -05002009 if (Mount) {
bigbiff bigbiffc7eee6f2014-09-02 18:59:01 -04002010 if (!Open_Lun_File(Mount->Mount_Point, lun_file)) {
2011 goto error_handle;
2012 }
Ethan Yonker47360be2014-04-01 10:34:34 -05002013 } else {
Ethan Yonker74db1572015-10-28 12:44:49 -05002014 gui_err("unable_locate_storage=Unable to locate storage device.");
bigbiff bigbiffc7eee6f2014-09-02 18:59:01 -04002015 goto error_handle;
Ethan Yonker47360be2014-04-01 10:34:34 -05002016 }
2017 } else if (!Open_Lun_File(DataManager::GetCurrentStoragePath(), lun_file)) {
bigbiff bigbiffc7eee6f2014-09-02 18:59:01 -04002018 goto error_handle;
Dees_Troy8170a922012-09-18 15:40:25 -04002019 }
Dees_Troy8170a922012-09-18 15:40:25 -04002020 } else {
Ethan Yonker47360be2014-04-01 10:34:34 -05002021 LOGINFO("Device has multiple lun files\n");
2022 TWPartition* Mount1;
2023 TWPartition* Mount2;
Dees_Troy8170a922012-09-18 15:40:25 -04002024 sprintf(lun_file, CUSTOM_LUN_FILE, 0);
Ethan Yonker66a19492015-12-10 10:19:45 -06002025 Mount1 = Find_Next_Storage("", true);
Ethan Yonker47360be2014-04-01 10:34:34 -05002026 if (Mount1) {
bigbiff bigbiffc7eee6f2014-09-02 18:59:01 -04002027 if (!Open_Lun_File(Mount1->Mount_Point, lun_file)) {
2028 goto error_handle;
2029 }
Matt Moweree717062014-04-26 01:46:46 -05002030 sprintf(lun_file, CUSTOM_LUN_FILE, 1);
Ethan Yonker66a19492015-12-10 10:19:45 -06002031 Mount2 = Find_Next_Storage(Mount1->Mount_Point, true);
Matt Mower1fdcdb72016-01-25 20:53:47 -06002032 if (Mount2 && Mount2->Mount_Point != Mount1->Mount_Point) {
Matt Moweree717062014-04-26 01:46:46 -05002033 Open_Lun_File(Mount2->Mount_Point, lun_file);
Ethan Yonker47360be2014-04-01 10:34:34 -05002034 }
2035 } else {
Ethan Yonker74db1572015-10-28 12:44:49 -05002036 gui_err("unable_locate_storage=Unable to locate storage device.");
bigbiff bigbiffc7eee6f2014-09-02 18:59:01 -04002037 goto error_handle;
Ethan Yonker47360be2014-04-01 10:34:34 -05002038 }
Dees_Troy8170a922012-09-18 15:40:25 -04002039 }
Matt Mowerb6ef4782014-11-06 02:24:36 -06002040 property_set("sys.storage.ums_enabled", "1");
HandyMenny37d42992014-10-26 22:15:59 +01002041 property_set("sys.usb.config", "mass_storage,adb");
Dees_Troy8170a922012-09-18 15:40:25 -04002042 return true;
bigbiff bigbiffc7eee6f2014-09-02 18:59:01 -04002043error_handle:
2044 if (mtp_was_enabled)
2045 if (!Enable_MTP())
2046 Disable_MTP();
2047 return false;
Dees_Troy8170a922012-09-18 15:40:25 -04002048}
2049
2050int TWPartitionManager::usb_storage_disable(void) {
Dees_Troy2673cec2013-04-02 20:22:16 +00002051 int index, ret;
2052 char lun_file[255], ch[2] = {0, 0};
2053 string str = ch;
Dees_Troy8170a922012-09-18 15:40:25 -04002054
2055 for (index=0; index<2; index++) {
2056 sprintf(lun_file, CUSTOM_LUN_FILE, index);
Ethan Yonker6e8c27a2016-12-22 17:55:57 -06002057 ret = TWFunc::write_to_file(lun_file, str);
Dees_Troy2673cec2013-04-02 20:22:16 +00002058 if (ret < 0) {
2059 break;
Dees_Troy8170a922012-09-18 15:40:25 -04002060 }
Dees_Troy8170a922012-09-18 15:40:25 -04002061 }
Dees_Troye58d5262012-09-21 12:27:57 -04002062 Mount_All_Storage();
2063 Update_System_Details();
Dees_Troycfd73ef2012-10-12 16:52:00 -04002064 UnMount_Main_Partitions();
Matt Mowerd9cb9062013-12-14 20:34:45 -06002065 property_set("sys.storage.ums_enabled", "0");
HandyMenny37d42992014-10-26 22:15:59 +01002066 property_set("sys.usb.config", "adb");
bigbiff bigbiffc7eee6f2014-09-02 18:59:01 -04002067 if (mtp_was_enabled)
2068 if (!Enable_MTP())
2069 Disable_MTP();
Dees_Troy2673cec2013-04-02 20:22:16 +00002070 if (ret < 0 && index == 0) {
2071 LOGERR("Unable to write to ums lunfile '%s'.", lun_file);
2072 return false;
2073 } else {
2074 return true;
2075 }
Dees_Troy8170a922012-09-18 15:40:25 -04002076 return true;
Dees_Troy812660f2012-09-20 09:55:17 -04002077}
2078
2079void TWPartitionManager::Mount_All_Storage(void) {
2080 std::vector<TWPartition*>::iterator iter;
2081
2082 for (iter = Partitions.begin(); iter != Partitions.end(); iter++) {
2083 if ((*iter)->Is_Storage)
2084 (*iter)->Mount(false);
2085 }
Dees_Troy2c50e182012-09-26 20:05:28 -04002086}
Dees_Troy9350b8d2012-09-27 12:38:38 -04002087
Dees_Troyd0384ef2012-10-12 12:15:42 -04002088void TWPartitionManager::UnMount_Main_Partitions(void) {
2089 // Unmounts system and data if data is not data/media
2090 // Also unmounts boot if boot is mountable
Dees_Troy2673cec2013-04-02 20:22:16 +00002091 LOGINFO("Unmounting main partitions...\n");
Dees_Troyd0384ef2012-10-12 12:15:42 -04002092
2093 TWPartition* Boot_Partition = Find_Partition_By_Path("/boot");
2094
Captain Throwback9d6feb52018-07-27 10:05:24 -04002095 UnMount_By_Path(Get_Android_Root_Path(), true);
Ethan Yonker6277c792014-09-15 14:54:30 -05002096 if (!datamedia)
2097 UnMount_By_Path("/data", true);
2098
Dees_Troyd0384ef2012-10-12 12:15:42 -04002099 if (Boot_Partition != NULL && Boot_Partition->Can_Be_Mounted)
2100 Boot_Partition->UnMount(true);
2101}
2102
Dees_Troy9350b8d2012-09-27 12:38:38 -04002103int TWPartitionManager::Partition_SDCard(void) {
Matt Mower23d8aae2017-01-06 14:30:33 -06002104 char temp[255];
Ethan Yonker483e9f42016-01-11 22:21:18 -06002105 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 -04002106 int ext, swap, total_size = 0, fat_size;
Dees_Troy9350b8d2012-09-27 12:38:38 -04002107
Ethan Yonker74db1572015-10-28 12:44:49 -05002108 gui_msg("start_partition_sd=Partitioning SD Card...");
Ethan Yonker483e9f42016-01-11 22:21:18 -06002109
2110 // Locate and validate device to partition
2111 TWPartition* SDCard = Find_Partition_By_Path(DataManager::GetCurrentStoragePath());
2112
Ethan Yonker66a19492015-12-10 10:19:45 -06002113 if (SDCard->Is_Adopted_Storage)
2114 SDCard->Revert_Adopted();
2115
Ethan Yonker1eff6cd2014-09-15 13:30:42 -05002116 if (SDCard == NULL || !SDCard->Removable || SDCard->Has_Data_Media) {
Ethan Yonker74db1572015-10-28 12:44:49 -05002117 gui_err("partition_sd_locate=Unable to locate device to partition.");
Dees_Troy9350b8d2012-09-27 12:38:38 -04002118 return false;
2119 }
Ethan Yonker483e9f42016-01-11 22:21:18 -06002120
2121 // Unmount everything
Dees_Troy9350b8d2012-09-27 12:38:38 -04002122 if (!SDCard->UnMount(true))
2123 return false;
2124 TWPartition* SDext = Find_Partition_By_Path("/sd-ext");
2125 if (SDext != NULL) {
2126 if (!SDext->UnMount(true))
2127 return false;
2128 }
Ethan Yonker483e9f42016-01-11 22:21:18 -06002129 char* swappath = getenv("SWAPPATH");
2130 if (swappath != NULL) {
2131 LOGINFO("Unmounting swap at '%s'\n", swappath);
2132 umount(swappath);
2133 }
Vojtech Bocek05534202013-09-11 08:11:56 +02002134
Ethan Yonker483e9f42016-01-11 22:21:18 -06002135 // Determine block device
2136 if (SDCard->Alternate_Block_Device.empty()) {
2137 SDCard->Find_Actual_Block_Device();
2138 Device = SDCard->Actual_Block_Device;
2139 // Just use the root block device
2140 Device.resize(strlen("/dev/block/mmcblkX"));
2141 } else {
2142 Device = SDCard->Alternate_Block_Device;
2143 }
Dees_Troy9350b8d2012-09-27 12:38:38 -04002144
2145 // Find the size of the block device:
Ethan Yonker483e9f42016-01-11 22:21:18 -06002146 total_size = (int)(TWFunc::IOCTL_Get_Block_Size(Device.c_str()) / (1048576));
Dees_Troy9350b8d2012-09-27 12:38:38 -04002147
2148 DataManager::GetValue("tw_sdext_size", ext);
2149 DataManager::GetValue("tw_swap_size", swap);
2150 DataManager::GetValue("tw_sdpart_file_system", ext_format);
2151 fat_size = total_size - ext - swap;
Ethan Yonker483e9f42016-01-11 22:21:18 -06002152 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);
2153
2154 // Determine partition sizes
2155 if (swap == 0 && ext == 0) {
2156 fat_str = "-0";
2157 } else {
2158 memset(temp, 0, sizeof(temp));
2159 sprintf(temp, "%i", fat_size);
2160 fat_str = temp;
2161 fat_str += "MB";
2162 }
2163 if (swap == 0) {
2164 ext_str = "-0";
2165 } else {
2166 memset(temp, 0, sizeof(temp));
2167 sprintf(temp, "%i", ext);
2168 ext_str = "+";
2169 ext_str += temp;
2170 ext_str += "MB";
2171 }
2172
Dees_Troy9350b8d2012-09-27 12:38:38 -04002173 if (ext + swap > total_size) {
Ethan Yonker74db1572015-10-28 12:44:49 -05002174 gui_err("ext_swap_size=EXT + Swap size is larger than sdcard size.");
Dees_Troy9350b8d2012-09-27 12:38:38 -04002175 return false;
2176 }
Ethan Yonker483e9f42016-01-11 22:21:18 -06002177
Ethan Yonker74db1572015-10-28 12:44:49 -05002178 gui_msg("remove_part_table=Removing partition table...");
Ethan Yonker483e9f42016-01-11 22:21:18 -06002179 Command = "sgdisk --zap-all " + Device;
Dees_Troy2673cec2013-04-02 20:22:16 +00002180 LOGINFO("Command is: '%s'\n", Command.c_str());
Vojtech Bocek05534202013-09-11 08:11:56 +02002181 if (TWFunc::Exec_Cmd(Command) != 0) {
Ethan Yonker74db1572015-10-28 12:44:49 -05002182 gui_err("unable_rm_part=Unable to remove partition table.");
Dees_Troy9350b8d2012-09-27 12:38:38 -04002183 Update_System_Details();
2184 return false;
2185 }
Ethan Yonker74db1572015-10-28 12:44:49 -05002186 gui_msg(Msg("create_part=Creating {1} partition...")("FAT32"));
Captain Throwback9643a802016-05-27 11:44:51 -04002187 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 +00002188 LOGINFO("Command is: '%s'\n", Command.c_str());
Vojtech Bocek05534202013-09-11 08:11:56 +02002189 if (TWFunc::Exec_Cmd(Command) != 0) {
Ethan Yonker74db1572015-10-28 12:44:49 -05002190 gui_msg(Msg(msg::kError, "unable_to_create_part=Unable to create {1} partition.")("FAT32"));
Dees_Troy9350b8d2012-09-27 12:38:38 -04002191 return false;
2192 }
2193 if (ext > 0) {
Ethan Yonker74db1572015-10-28 12:44:49 -05002194 gui_msg(Msg("create_part=Creating {1} partition...")("EXT"));
Ethan Yonker483e9f42016-01-11 22:21:18 -06002195 Command = "sgdisk --new=0:0:" + ext_str + " --change-name=0:\"Linux filesystem\" " + Device;
Dees_Troy2673cec2013-04-02 20:22:16 +00002196 LOGINFO("Command is: '%s'\n", Command.c_str());
Vojtech Bocek05534202013-09-11 08:11:56 +02002197 if (TWFunc::Exec_Cmd(Command) != 0) {
Ethan Yonker74db1572015-10-28 12:44:49 -05002198 gui_msg(Msg(msg::kError, "unable_to_create_part=Unable to create {1} partition.")("EXT"));
Dees_Troy9350b8d2012-09-27 12:38:38 -04002199 Update_System_Details();
2200 return false;
2201 }
2202 }
2203 if (swap > 0) {
Ethan Yonker74db1572015-10-28 12:44:49 -05002204 gui_msg(Msg("create_part=Creating {1} partition...")("swap"));
Ethan Yonker483e9f42016-01-11 22:21:18 -06002205 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 +00002206 LOGINFO("Command is: '%s'\n", Command.c_str());
Vojtech Bocek05534202013-09-11 08:11:56 +02002207 if (TWFunc::Exec_Cmd(Command) != 0) {
Ethan Yonker74db1572015-10-28 12:44:49 -05002208 gui_msg(Msg(msg::kError, "unable_to_create_part=Unable to create {1} partition.")("swap"));
Dees_Troy9350b8d2012-09-27 12:38:38 -04002209 Update_System_Details();
2210 return false;
2211 }
2212 }
Ethan Yonker483e9f42016-01-11 22:21:18 -06002213
2214 // Convert GPT to MBR
2215 Command = "sgdisk --gpttombr " + Device;
2216 if (TWFunc::Exec_Cmd(Command) != 0)
2217 LOGINFO("Failed to covert partition GPT to MBR\n");
2218
2219 // Tell the kernel to rescan the partition table
2220 int fd = open(Device.c_str(), O_RDONLY);
2221 ioctl(fd, BLKRRPART, 0);
2222 close(fd);
2223
2224 string format_device = Device;
2225 if (Device.substr(0, 17) == "/dev/block/mmcblk")
2226 format_device += "p";
2227
2228 // Format new partitions to proper file system
2229 if (fat_size > 0) {
2230 Command = "mkfs.fat " + format_device + "1";
2231 TWFunc::Exec_Cmd(Command);
2232 }
Dees_Troy9350b8d2012-09-27 12:38:38 -04002233 if (ext > 0) {
2234 if (SDext == NULL) {
Ethan Yonker483e9f42016-01-11 22:21:18 -06002235 Command = "mke2fs -t " + ext_format + " -m 0 " + format_device + "2";
2236 gui_msg(Msg("format_sdext_as=Formatting sd-ext as {1}...")(ext_format));
2237 LOGINFO("Formatting sd-ext after partitioning, command: '%s'\n", Command.c_str());
2238 TWFunc::Exec_Cmd(Command);
2239 } else {
2240 SDext->Wipe(ext_format);
Dees_Troy9350b8d2012-09-27 12:38:38 -04002241 }
Ethan Yonker483e9f42016-01-11 22:21:18 -06002242 }
2243 if (swap > 0) {
2244 Command = "mkswap " + format_device;
2245 if (ext > 0)
2246 Command += "3";
2247 else
2248 Command += "2";
Vojtech Bocek05534202013-09-11 08:11:56 +02002249 TWFunc::Exec_Cmd(Command);
Dees_Troy9350b8d2012-09-27 12:38:38 -04002250 }
2251
Ethan Yonker483e9f42016-01-11 22:21:18 -06002252 // recreate TWRP folder and rewrite settings - these will be gone after sdcard is partitioned
2253 if (SDCard->Mount(true)) {
2254 string TWRP_Folder = SDCard->Mount_Point + "/TWRP";
2255 mkdir(TWRP_Folder.c_str(), 0777);
2256 DataManager::Flush();
2257 }
2258
Dees_Troy9350b8d2012-09-27 12:38:38 -04002259 Update_System_Details();
Ethan Yonker74db1572015-10-28 12:44:49 -05002260 gui_msg("part_complete=Partitioning complete.");
Dees_Troy9350b8d2012-09-27 12:38:38 -04002261 return true;
bigbiff bigbiffa0f8a592012-10-09 21:01:03 -04002262}
Dees_Troya13d74f2013-03-24 08:54:55 -05002263
2264void TWPartitionManager::Get_Partition_List(string ListType, std::vector<PartitionList> *Partition_List) {
2265 std::vector<TWPartition*>::iterator iter;
2266 if (ListType == "mount") {
2267 for (iter = Partitions.begin(); iter != Partitions.end(); iter++) {
Ethan Yonker6e8c27a2016-12-22 17:55:57 -06002268 if ((*iter)->Can_Be_Mounted) {
Dees_Troya13d74f2013-03-24 08:54:55 -05002269 struct PartitionList part;
2270 part.Display_Name = (*iter)->Display_Name;
2271 part.Mount_Point = (*iter)->Mount_Point;
2272 part.selected = (*iter)->Is_Mounted();
2273 Partition_List->push_back(part);
2274 }
2275 }
2276 } else if (ListType == "storage") {
2277 char free_space[255];
2278 string Current_Storage = DataManager::GetCurrentStoragePath();
2279 for (iter = Partitions.begin(); iter != Partitions.end(); iter++) {
2280 if ((*iter)->Is_Storage) {
2281 struct PartitionList part;
2282 sprintf(free_space, "%llu", (*iter)->Free / 1024 / 1024);
2283 part.Display_Name = (*iter)->Storage_Name + " (";
2284 part.Display_Name += free_space;
2285 part.Display_Name += "MB)";
2286 part.Mount_Point = (*iter)->Storage_Path;
2287 if ((*iter)->Storage_Path == Current_Storage)
2288 part.selected = 1;
2289 else
2290 part.selected = 0;
2291 Partition_List->push_back(part);
2292 }
2293 }
2294 } else if (ListType == "backup") {
2295 char backup_size[255];
Dees_Troy9e0b71c2013-04-08 13:35:37 +00002296 unsigned long long Backup_Size;
Dees_Troya13d74f2013-03-24 08:54:55 -05002297 for (iter = Partitions.begin(); iter != Partitions.end(); iter++) {
Dees_Troy9e0b71c2013-04-08 13:35:37 +00002298 if ((*iter)->Can_Be_Backed_Up && !(*iter)->Is_SubPartition && (*iter)->Is_Present) {
Dees_Troya13d74f2013-03-24 08:54:55 -05002299 struct PartitionList part;
Dees_Troy9e0b71c2013-04-08 13:35:37 +00002300 Backup_Size = (*iter)->Backup_Size;
2301 if ((*iter)->Has_SubPartition) {
2302 std::vector<TWPartition*>::iterator subpart;
2303
2304 for (subpart = Partitions.begin(); subpart != Partitions.end(); subpart++) {
2305 if ((*subpart)->Is_SubPartition && (*subpart)->Can_Be_Backed_Up && (*subpart)->Is_Present && (*subpart)->SubPartition_Of == (*iter)->Mount_Point)
2306 Backup_Size += (*subpart)->Backup_Size;
2307 }
2308 }
2309 sprintf(backup_size, "%llu", Backup_Size / 1024 / 1024);
Dees_Troya13d74f2013-03-24 08:54:55 -05002310 part.Display_Name = (*iter)->Backup_Display_Name + " (";
2311 part.Display_Name += backup_size;
2312 part.Display_Name += "MB)";
2313 part.Mount_Point = (*iter)->Backup_Path;
2314 part.selected = 0;
2315 Partition_List->push_back(part);
2316 }
2317 }
2318 } else if (ListType == "restore") {
2319 string Restore_List, restore_path;
2320 TWPartition* restore_part = NULL;
2321
2322 DataManager::GetValue("tw_restore_list", Restore_List);
2323 if (!Restore_List.empty()) {
2324 size_t start_pos = 0, end_pos = Restore_List.find(";", start_pos);
2325 while (end_pos != string::npos && start_pos < Restore_List.size()) {
2326 restore_path = Restore_List.substr(start_pos, end_pos - start_pos);
bigbiff bigbiff19fb79c2016-09-05 21:04:51 -04002327 struct PartitionList part;
2328 if (restore_path.compare("ADB_Backup") == 0) {
2329 part.Display_Name = "ADB Backup";
2330 part.Mount_Point = "ADB Backup";
2331 part.selected = 1;
2332 Partition_List->push_back(part);
2333 break;
2334 }
Dees_Troy59df9262013-06-19 14:53:57 -05002335 if ((restore_part = Find_Partition_By_Path(restore_path)) != NULL) {
Dees Troy4159aed2014-02-28 17:24:43 +00002336 if ((restore_part->Backup_Name == "recovery" && !restore_part->Can_Be_Backed_Up) || restore_part->Is_SubPartition) {
Dees_Troya13d74f2013-03-24 08:54:55 -05002337 // Don't allow restore of recovery (causes problems on some devices)
Dees_Troy59df9262013-06-19 14:53:57 -05002338 // Don't add subpartitions to the list of items
Dees_Troya13d74f2013-03-24 08:54:55 -05002339 } else {
Dees_Troya13d74f2013-03-24 08:54:55 -05002340 part.Display_Name = restore_part->Backup_Display_Name;
2341 part.Mount_Point = restore_part->Backup_Path;
2342 part.selected = 1;
2343 Partition_List->push_back(part);
2344 }
2345 } else {
Ethan Yonker74db1572015-10-28 12:44:49 -05002346 gui_msg(Msg(msg::kError, "restore_unable_locate=Unable to locate '{1}' partition for restoring.")(restore_path));
Dees_Troya13d74f2013-03-24 08:54:55 -05002347 }
2348 start_pos = end_pos + 1;
2349 end_pos = Restore_List.find(";", start_pos);
2350 }
2351 }
2352 } else if (ListType == "wipe") {
2353 struct PartitionList dalvik;
Ethan Yonker74db1572015-10-28 12:44:49 -05002354 dalvik.Display_Name = gui_parse_text("{@dalvik}");
Dees_Troya13d74f2013-03-24 08:54:55 -05002355 dalvik.Mount_Point = "DALVIK";
2356 dalvik.selected = 0;
2357 Partition_List->push_back(dalvik);
2358 for (iter = Partitions.begin(); iter != Partitions.end(); iter++) {
2359 if ((*iter)->Wipe_Available_in_GUI && !(*iter)->Is_SubPartition) {
2360 struct PartitionList part;
2361 part.Display_Name = (*iter)->Display_Name;
2362 part.Mount_Point = (*iter)->Mount_Point;
2363 part.selected = 0;
2364 Partition_List->push_back(part);
2365 }
2366 if ((*iter)->Has_Android_Secure) {
2367 struct PartitionList part;
2368 part.Display_Name = (*iter)->Backup_Display_Name;
2369 part.Mount_Point = (*iter)->Backup_Path;
2370 part.selected = 0;
2371 Partition_List->push_back(part);
2372 }
Dees_Troy74fb2e92013-04-15 14:35:47 +00002373 if ((*iter)->Has_Data_Media) {
2374 struct PartitionList datamedia;
2375 datamedia.Display_Name = (*iter)->Storage_Name;
2376 datamedia.Mount_Point = "INTERNAL";
2377 datamedia.selected = 0;
2378 Partition_List->push_back(datamedia);
2379 }
Dees_Troya13d74f2013-03-24 08:54:55 -05002380 }
Ethan Yonker96af84a2015-01-05 14:58:36 -06002381 } else if (ListType == "flashimg") {
2382 for (iter = Partitions.begin(); iter != Partitions.end(); iter++) {
2383 if ((*iter)->Can_Flash_Img && (*iter)->Is_Present) {
2384 struct PartitionList part;
2385 part.Display_Name = (*iter)->Backup_Display_Name;
2386 part.Mount_Point = (*iter)->Backup_Path;
2387 part.selected = 0;
2388 Partition_List->push_back(part);
2389 }
2390 }
Ethan Yonker53796e72019-01-11 22:49:52 -06002391 if (DataManager::GetIntValue("tw_has_repack_tools") != 0 && DataManager::GetIntValue("tw_has_boot_slots") != 0) {
2392 TWPartition* boot = Find_Partition_By_Path("/boot");
2393 if (boot) {
2394 // Allow flashing kernels and ramdisks
2395 struct PartitionList repack_ramdisk;
2396 repack_ramdisk.Display_Name = gui_lookup("install_twrp_ramdisk", "Install Recovery Ramdisk");
2397 repack_ramdisk.Mount_Point = "/repack_ramdisk";
2398 repack_ramdisk.selected = 0;
2399 Partition_List->push_back(repack_ramdisk);
2400 /*struct PartitionList repack_kernel; For now let's leave repacking kernels under advanced only
2401 repack_kernel.Display_Name = gui_lookup("install_kernel", "Install Kernel");
2402 repack_kernel.Mount_Point = "/repack_kernel";
2403 repack_kernel.selected = 0;
2404 Partition_List->push_back(repack_kernel);*/
2405 }
2406 }
Dees_Troya13d74f2013-03-24 08:54:55 -05002407 } else {
Dees_Troy2673cec2013-04-02 20:22:16 +00002408 LOGERR("Unknown list type '%s' requested for TWPartitionManager::Get_Partition_List\n", ListType.c_str());
Dees_Troya13d74f2013-03-24 08:54:55 -05002409 }
2410}
2411
2412int TWPartitionManager::Fstab_Processed(void) {
2413 return Partitions.size();
2414}
Dees_Troyd93bda52013-07-03 19:55:19 +00002415
2416void TWPartitionManager::Output_Storage_Fstab(void) {
2417 std::vector<TWPartition*>::iterator iter;
2418 char storage_partition[255];
bigbiff bigbiffe4bdb152019-03-23 18:33:17 -04002419 std::string Temp;
bigbiff349ea552020-06-19 16:07:38 -04002420 std::string cacheDir = TWFunc::get_log_dir();
bigbiff bigbiffe4bdb152019-03-23 18:33:17 -04002421
2422 if (cacheDir.empty()) {
2423 LOGINFO("Unable to find cache directory\n");
2424 return;
2425 }
bigbiff bigbiff19874f12019-01-08 20:06:57 -05002426
bigbiff349ea552020-06-19 16:07:38 -04002427 std::string storageFstab = TWFunc::get_log_dir() + "recovery/storage.fstab";
bigbiff bigbiff19874f12019-01-08 20:06:57 -05002428 FILE *fp = fopen(storageFstab.c_str(), "w");
Dees_Troyd93bda52013-07-03 19:55:19 +00002429
2430 if (fp == NULL) {
bigbiff bigbiff19874f12019-01-08 20:06:57 -05002431 gui_msg(Msg(msg::kError, "unable_to_open=Unable to open '{1}'.")(storageFstab));
Dees_Troyd93bda52013-07-03 19:55:19 +00002432 return;
2433 }
2434
2435 // Iterate through all partitions
2436 for (iter = Partitions.begin(); iter != Partitions.end(); iter++) {
2437 if ((*iter)->Is_Storage) {
2438 Temp = (*iter)->Storage_Path + ";" + (*iter)->Storage_Name + ";\n";
2439 strcpy(storage_partition, Temp.c_str());
2440 fwrite(storage_partition, sizeof(storage_partition[0]), strlen(storage_partition) / sizeof(storage_partition[0]), fp);
2441 }
2442 }
2443 fclose(fp);
Vojtech Bocekfafb0c52013-07-25 22:53:02 +02002444}
Vojtech Bocek93cb1ef2014-05-12 15:41:52 +02002445
2446TWPartition *TWPartitionManager::Get_Default_Storage_Partition()
2447{
2448 TWPartition *res = NULL;
2449 for (std::vector<TWPartition*>::iterator iter = Partitions.begin(); iter != Partitions.end(); ++iter) {
Matt Mowera8a89d12016-12-30 18:10:37 -06002450 if (!(*iter)->Is_Storage)
Vojtech Bocek93cb1ef2014-05-12 15:41:52 +02002451 continue;
2452
Matt Mowera8a89d12016-12-30 18:10:37 -06002453 if ((*iter)->Is_Settings_Storage)
Vojtech Bocek93cb1ef2014-05-12 15:41:52 +02002454 return *iter;
2455
Matt Mowera8a89d12016-12-30 18:10:37 -06002456 if (!res)
Vojtech Bocek93cb1ef2014-05-12 15:41:52 +02002457 res = *iter;
2458 }
2459 return res;
2460}
bigbiff bigbiffc7eee6f2014-09-02 18:59:01 -04002461
2462bool TWPartitionManager::Enable_MTP(void) {
2463#ifdef TW_HAS_MTP
Ethan Yonker8dfa7772014-09-04 21:48:41 -05002464 if (mtppid) {
Ethan Yonker74db1572015-10-28 12:44:49 -05002465 gui_err("mtp_already_enabled=MTP already enabled");
bigbiff bigbiffc7eee6f2014-09-02 18:59:01 -04002466 return true;
2467 }
Ethan Yonker726a0202014-12-16 20:01:38 -06002468
2469 int mtppipe[2];
2470
2471 if (pipe(mtppipe) < 0) {
2472 LOGERR("Error creating MTP pipe\n");
2473 return false;
2474 }
2475
Ethan Yonkerdf7abac2014-12-29 10:48:17 -06002476 char old_value[PROPERTY_VALUE_MAX];
Matt Mowere07f0102017-02-23 17:40:00 -06002477 property_get("sys.usb.config", old_value, "");
2478 if (strcmp(old_value, "mtp,adb") != 0) {
Ethan Yonkerdf7abac2014-12-29 10:48:17 -06002479 char vendor[PROPERTY_VALUE_MAX];
2480 char product[PROPERTY_VALUE_MAX];
2481 property_set("sys.usb.config", "none");
2482 property_get("usb.vendor", vendor, "18D1");
2483 property_get("usb.product.mtpadb", product, "4EE2");
2484 string vendorstr = vendor;
2485 string productstr = product;
Ethan Yonker6e8c27a2016-12-22 17:55:57 -06002486 TWFunc::write_to_file("/sys/class/android_usb/android0/idVendor", vendorstr);
2487 TWFunc::write_to_file("/sys/class/android_usb/android0/idProduct", productstr);
Ethan Yonkerdf7abac2014-12-29 10:48:17 -06002488 property_set("sys.usb.config", "mtp,adb");
2489 }
Matt Mower653a1702017-02-16 10:38:52 -06002490 /* To enable MTP debug, use the twrp command line feature:
Ethan Yonker6d154c42014-09-03 14:19:43 -05002491 * twrp set tw_mtp_debug 1
2492 */
2493 twrpMtp *mtp = new twrpMtp(DataManager::GetIntValue("tw_mtp_debug"));
Ethan Yonker1b039202015-01-30 10:08:48 -06002494 mtppid = mtp->forkserver(mtppipe);
2495 if (mtppid) {
2496 close(mtppipe[0]); // Host closes read side
2497 mtp_write_fd = mtppipe[1];
2498 DataManager::SetValue("tw_mtp_enabled", 1);
2499 Add_All_MTP_Storage();
2500 return true;
Ethan Yonker726a0202014-12-16 20:01:38 -06002501 } else {
2502 close(mtppipe[0]);
2503 close(mtppipe[1]);
Ethan Yonker74db1572015-10-28 12:44:49 -05002504 gui_err("mtp_fail=Failed to enable MTP");
Ethan Yonker1b039202015-01-30 10:08:48 -06002505 return false;
bigbiff bigbiffc7eee6f2014-09-02 18:59:01 -04002506 }
bigbiff bigbiffc7eee6f2014-09-02 18:59:01 -04002507#else
Ethan Yonker74db1572015-10-28 12:44:49 -05002508 gui_err("no_mtp=MTP support not included");
bigbiff bigbiffc7eee6f2014-09-02 18:59:01 -04002509#endif
2510 DataManager::SetValue("tw_mtp_enabled", 0);
2511 return false;
2512}
2513
Ethan Yonker1b039202015-01-30 10:08:48 -06002514void TWPartitionManager::Add_All_MTP_Storage(void) {
2515#ifdef TW_HAS_MTP
2516 std::vector<TWPartition*>::iterator iter;
2517
2518 if (!mtppid)
2519 return; // MTP is not enabled
2520
2521 for (iter = Partitions.begin(); iter != Partitions.end(); iter++) {
2522 if ((*iter)->Is_Storage && (*iter)->Is_Present && (*iter)->Mount(false))
2523 Add_Remove_MTP_Storage((*iter), MTP_MESSAGE_ADD_STORAGE);
2524 }
2525#else
2526 return;
2527#endif
2528}
2529
bigbiff bigbiffc7eee6f2014-09-02 18:59:01 -04002530bool TWPartitionManager::Disable_MTP(void) {
Ethan Yonkerdf7abac2014-12-29 10:48:17 -06002531 char old_value[PROPERTY_VALUE_MAX];
bigbiff bigbiffaf32bb92018-12-18 18:39:53 -05002532 property_set("sys.usb.ffs.mtp.ready", "0");
Matt Mowere07f0102017-02-23 17:40:00 -06002533 property_get("sys.usb.config", old_value, "");
Ethan Yonkerdf7abac2014-12-29 10:48:17 -06002534 if (strcmp(old_value, "adb") != 0) {
2535 char vendor[PROPERTY_VALUE_MAX];
2536 char product[PROPERTY_VALUE_MAX];
2537 property_set("sys.usb.config", "none");
2538 property_get("usb.vendor", vendor, "18D1");
Matt Mowere07f0102017-02-23 17:40:00 -06002539 property_get("usb.product.adb", product, "D001");
Ethan Yonkerdf7abac2014-12-29 10:48:17 -06002540 string vendorstr = vendor;
2541 string productstr = product;
Ethan Yonker6e8c27a2016-12-22 17:55:57 -06002542 TWFunc::write_to_file("/sys/class/android_usb/android0/idVendor", vendorstr);
2543 TWFunc::write_to_file("/sys/class/android_usb/android0/idProduct", productstr);
Ethan Yonkerdf7abac2014-12-29 10:48:17 -06002544 usleep(2000);
2545 }
bigbiff bigbiffc7eee6f2014-09-02 18:59:01 -04002546#ifdef TW_HAS_MTP
Ethan Yonker8dfa7772014-09-04 21:48:41 -05002547 if (mtppid) {
Ethan Yonker8613dc02014-09-11 09:28:20 -05002548 LOGINFO("Disabling MTP\n");
2549 int status;
2550 kill(mtppid, SIGKILL);
Ethan Yonker8dfa7772014-09-04 21:48:41 -05002551 mtppid = 0;
Ethan Yonker8613dc02014-09-11 09:28:20 -05002552 // We don't care about the exit value, but this prevents a zombie process
2553 waitpid(mtppid, &status, 0);
Ethan Yonker726a0202014-12-16 20:01:38 -06002554 close(mtp_write_fd);
2555 mtp_write_fd = -1;
bigbiff bigbiffc7eee6f2014-09-02 18:59:01 -04002556 }
Ethan Yonkerdf7abac2014-12-29 10:48:17 -06002557#endif
bigbiff bigbiffc7eee6f2014-09-02 18:59:01 -04002558 property_set("sys.usb.config", "adb");
Ethan Yonkerdf7abac2014-12-29 10:48:17 -06002559#ifdef TW_HAS_MTP
bigbiff bigbiffc7eee6f2014-09-02 18:59:01 -04002560 DataManager::SetValue("tw_mtp_enabled", 0);
2561 return true;
bigbiff bigbiffc7eee6f2014-09-02 18:59:01 -04002562#endif
Ethan Yonkerdf7abac2014-12-29 10:48:17 -06002563 return false;
bigbiff bigbiffc7eee6f2014-09-02 18:59:01 -04002564}
Ethan Yonker726a0202014-12-16 20:01:38 -06002565
2566TWPartition* TWPartitionManager::Find_Partition_By_MTP_Storage_ID(unsigned int Storage_ID) {
2567 std::vector<TWPartition*>::iterator iter;
2568
2569 for (iter = Partitions.begin(); iter != Partitions.end(); iter++) {
2570 if ((*iter)->MTP_Storage_ID == Storage_ID)
2571 return (*iter);
2572 }
2573 return NULL;
2574}
2575
2576bool TWPartitionManager::Add_Remove_MTP_Storage(TWPartition* Part, int message_type) {
2577#ifdef TW_HAS_MTP
2578 struct mtpmsg mtp_message;
2579
2580 if (!mtppid)
2581 return false; // MTP is disabled
2582
2583 if (mtp_write_fd < 0) {
Ethan Yonkerd9ff3c52015-01-21 21:51:20 -06002584 LOGINFO("MTP: mtp_write_fd is not set\n");
Ethan Yonker726a0202014-12-16 20:01:38 -06002585 return false;
2586 }
2587
2588 if (Part) {
Ethan Yonker4bfabab2014-12-29 09:15:37 -06002589 if (Part->MTP_Storage_ID == 0)
2590 return false;
Ethan Yonker726a0202014-12-16 20:01:38 -06002591 if (message_type == MTP_MESSAGE_REMOVE_STORAGE) {
2592 mtp_message.message_type = MTP_MESSAGE_REMOVE_STORAGE; // Remove
2593 LOGINFO("sending message to remove %i\n", Part->MTP_Storage_ID);
2594 mtp_message.storage_id = Part->MTP_Storage_ID;
2595 if (write(mtp_write_fd, &mtp_message, sizeof(mtp_message)) <= 0) {
Ethan Yonkerd9ff3c52015-01-21 21:51:20 -06002596 LOGINFO("error sending message to remove storage %i\n", Part->MTP_Storage_ID);
Ethan Yonker726a0202014-12-16 20:01:38 -06002597 return false;
2598 } else {
2599 LOGINFO("Message sent, remove storage ID: %i\n", Part->MTP_Storage_ID);
2600 return true;
2601 }
2602 } else if (message_type == MTP_MESSAGE_ADD_STORAGE && Part->Is_Mounted()) {
2603 mtp_message.message_type = MTP_MESSAGE_ADD_STORAGE; // Add
2604 mtp_message.storage_id = Part->MTP_Storage_ID;
Ethan Yonker6e8c27a2016-12-22 17:55:57 -06002605 if (Part->Storage_Path.size() >= sizeof(mtp_message.path)) {
2606 LOGERR("Storage path '%s' too large for mtpmsg\n", Part->Storage_Path.c_str());
2607 return false;
2608 }
2609 strcpy(mtp_message.path, Part->Storage_Path.c_str());
2610 if (Part->Storage_Name.size() >= sizeof(mtp_message.display)) {
2611 LOGERR("Storage name '%s' too large for mtpmsg\n", Part->Storage_Name.c_str());
2612 return false;
2613 }
2614 strcpy(mtp_message.display, Part->Storage_Name.c_str());
Ethan Yonker726a0202014-12-16 20:01:38 -06002615 mtp_message.maxFileSize = Part->Get_Max_FileSize();
Ethan Yonker1b039202015-01-30 10:08:48 -06002616 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 -06002617 if (write(mtp_write_fd, &mtp_message, sizeof(mtp_message)) <= 0) {
Ethan Yonkerd9ff3c52015-01-21 21:51:20 -06002618 LOGINFO("error sending message to add storage %i\n", Part->MTP_Storage_ID);
Ethan Yonker726a0202014-12-16 20:01:38 -06002619 return false;
2620 } else {
Ethan Yonker6e8c27a2016-12-22 17:55:57 -06002621 LOGINFO("Message sent, add storage ID: %i '%s'\n", Part->MTP_Storage_ID, mtp_message.path);
Ethan Yonker726a0202014-12-16 20:01:38 -06002622 return true;
2623 }
2624 } else {
2625 LOGERR("Unknown MTP message type: %i\n", message_type);
2626 }
2627 } else {
2628 // This hopefully never happens as the error handling should
2629 // occur in the calling function.
Ethan Yonkerd9ff3c52015-01-21 21:51:20 -06002630 LOGINFO("TWPartitionManager::Add_Remove_MTP_Storage NULL partition given\n");
Ethan Yonker726a0202014-12-16 20:01:38 -06002631 }
2632 return true;
2633#else
Ethan Yonker74db1572015-10-28 12:44:49 -05002634 gui_err("no_mtp=MTP support not included");
Ethan Yonker726a0202014-12-16 20:01:38 -06002635 DataManager::SetValue("tw_mtp_enabled", 0);
2636 return false;
2637#endif
2638}
2639
2640bool TWPartitionManager::Add_MTP_Storage(string Mount_Point) {
2641#ifdef TW_HAS_MTP
2642 TWPartition* Part = PartitionManager.Find_Partition_By_Path(Mount_Point);
2643 if (Part) {
2644 return PartitionManager.Add_Remove_MTP_Storage(Part, MTP_MESSAGE_ADD_STORAGE);
2645 } else {
Ethan Yonkerd9ff3c52015-01-21 21:51:20 -06002646 LOGINFO("TWFunc::Add_MTP_Storage unable to locate partition for '%s'\n", Mount_Point.c_str());
Ethan Yonker726a0202014-12-16 20:01:38 -06002647 }
2648#endif
2649 return false;
2650}
2651
2652bool TWPartitionManager::Add_MTP_Storage(unsigned int Storage_ID) {
2653#ifdef TW_HAS_MTP
2654 TWPartition* Part = PartitionManager.Find_Partition_By_MTP_Storage_ID(Storage_ID);
2655 if (Part) {
2656 return PartitionManager.Add_Remove_MTP_Storage(Part, MTP_MESSAGE_ADD_STORAGE);
2657 } else {
Ethan Yonkerd9ff3c52015-01-21 21:51:20 -06002658 LOGINFO("TWFunc::Add_MTP_Storage unable to locate partition for %i\n", Storage_ID);
Ethan Yonker726a0202014-12-16 20:01:38 -06002659 }
2660#endif
2661 return false;
2662}
2663
2664bool TWPartitionManager::Remove_MTP_Storage(string Mount_Point) {
2665#ifdef TW_HAS_MTP
2666 TWPartition* Part = PartitionManager.Find_Partition_By_Path(Mount_Point);
2667 if (Part) {
2668 return PartitionManager.Add_Remove_MTP_Storage(Part, MTP_MESSAGE_REMOVE_STORAGE);
2669 } else {
Ethan Yonkerd9ff3c52015-01-21 21:51:20 -06002670 LOGINFO("TWFunc::Remove_MTP_Storage unable to locate partition for '%s'\n", Mount_Point.c_str());
Ethan Yonker726a0202014-12-16 20:01:38 -06002671 }
2672#endif
2673 return false;
2674}
2675
2676bool TWPartitionManager::Remove_MTP_Storage(unsigned int Storage_ID) {
2677#ifdef TW_HAS_MTP
2678 TWPartition* Part = PartitionManager.Find_Partition_By_MTP_Storage_ID(Storage_ID);
2679 if (Part) {
2680 return PartitionManager.Add_Remove_MTP_Storage(Part, MTP_MESSAGE_REMOVE_STORAGE);
2681 } else {
Ethan Yonkerd9ff3c52015-01-21 21:51:20 -06002682 LOGINFO("TWFunc::Remove_MTP_Storage unable to locate partition for %i\n", Storage_ID);
Ethan Yonker726a0202014-12-16 20:01:38 -06002683 }
2684#endif
2685 return false;
2686}
Ethan Yonker96af84a2015-01-05 14:58:36 -06002687
Ethan Yonkere080c1f2016-09-19 13:50:25 -05002688bool TWPartitionManager::Flash_Image(string& path, string& filename) {
Matt Mower23d8aae2017-01-06 14:30:33 -06002689 int partition_count = 0;
Ethan Yonker96af84a2015-01-05 14:58:36 -06002690 TWPartition* flash_part = NULL;
bigbiffce8f83c2015-12-12 18:30:21 -05002691 string Flash_List, flash_path, full_filename;
Ethan Yonker96af84a2015-01-05 14:58:36 -06002692 size_t start_pos = 0, end_pos = 0;
2693
Ethan Yonkere080c1f2016-09-19 13:50:25 -05002694 full_filename = path + "/" + filename;
Ethan Yonker96af84a2015-01-05 14:58:36 -06002695
bigbiffce8f83c2015-12-12 18:30:21 -05002696 gui_msg("image_flash_start=[IMAGE FLASH STARTED]");
2697 gui_msg(Msg("img_to_flash=Image to flash: '{1}'")(full_filename));
2698
2699 if (!TWFunc::Path_Exists(full_filename)) {
2700 if (!Mount_By_Path(full_filename, true)) {
Ethan Yonkerb78fbdf2016-01-15 16:46:35 -06002701 return false;
2702 }
bigbiffce8f83c2015-12-12 18:30:21 -05002703 if (!TWFunc::Path_Exists(full_filename)) {
2704 gui_msg(Msg(msg::kError, "unable_to_locate=Unable to locate {1}.")(full_filename));
Ethan Yonkerb78fbdf2016-01-15 16:46:35 -06002705 return false;
2706 }
2707 }
Ethan Yonker96af84a2015-01-05 14:58:36 -06002708
Ethan Yonker53796e72019-01-11 22:49:52 -06002709 DataManager::GetValue("tw_flash_partition", Flash_List);
2710 Repack_Type repack = REPLACE_NONE;
2711 if (Flash_List == "/repack_ramdisk;") {
2712 repack = REPLACE_RAMDISK;
2713 } else if (Flash_List == "/repack_kernel;") {
2714 repack = REPLACE_KERNEL;
2715 }
2716 if (repack != REPLACE_NONE) {
2717 Repack_Options_struct Repack_Options;
2718 Repack_Options.Type = repack;
2719 Repack_Options.Disable_Verity = false;
2720 Repack_Options.Disable_Force_Encrypt = false;
2721 Repack_Options.Backup_First = DataManager::GetIntValue("tw_repack_backup_first") != 0;
2722 return Repack_Images(full_filename, Repack_Options);
2723 }
Ethan Yonkere080c1f2016-09-19 13:50:25 -05002724 PartitionSettings part_settings;
2725 part_settings.Backup_Folder = path;
2726 unsigned long long total_bytes = TWFunc::Get_File_Size(full_filename);
2727 ProgressTracking progress(total_bytes);
2728 part_settings.progress = &progress;
2729 part_settings.adbbackup = false;
2730 part_settings.PM_Method = PM_RESTORE;
Ethan Yonker74db1572015-10-28 12:44:49 -05002731 gui_msg("calc_restore=Calculating restore details...");
Ethan Yonker96af84a2015-01-05 14:58:36 -06002732 if (!Flash_List.empty()) {
2733 end_pos = Flash_List.find(";", start_pos);
2734 while (end_pos != string::npos && start_pos < Flash_List.size()) {
2735 flash_path = Flash_List.substr(start_pos, end_pos - start_pos);
2736 flash_part = Find_Partition_By_Path(flash_path);
2737 if (flash_part != NULL) {
2738 partition_count++;
2739 if (partition_count > 1) {
Ethan Yonker74db1572015-10-28 12:44:49 -05002740 gui_err("too_many_flash=Too many partitions selected for flashing.");
Ethan Yonker96af84a2015-01-05 14:58:36 -06002741 return false;
2742 }
2743 } else {
Ethan Yonker74db1572015-10-28 12:44:49 -05002744 gui_msg(Msg(msg::kError, "flash_unable_locate=Unable to locate '{1}' partition for flashing.")(flash_path));
Ethan Yonker96af84a2015-01-05 14:58:36 -06002745 return false;
2746 }
2747 start_pos = end_pos + 1;
2748 end_pos = Flash_List.find(";", start_pos);
2749 }
2750 }
2751
2752 if (partition_count == 0) {
Ethan Yonker74db1572015-10-28 12:44:49 -05002753 gui_err("no_part_flash=No partitions selected for flashing.");
Ethan Yonker96af84a2015-01-05 14:58:36 -06002754 return false;
2755 }
2756
2757 DataManager::SetProgress(0.0);
2758 if (flash_part) {
Ethan Yonkere080c1f2016-09-19 13:50:25 -05002759 flash_part->Backup_FileName = filename;
2760 if (!flash_part->Flash_Image(&part_settings))
Ethan Yonker96af84a2015-01-05 14:58:36 -06002761 return false;
2762 } else {
Ethan Yonker74db1572015-10-28 12:44:49 -05002763 gui_err("invalid_flash=Invalid flash partition specified.");
Ethan Yonker96af84a2015-01-05 14:58:36 -06002764 return false;
2765 }
Ethan Yonker74db1572015-10-28 12:44:49 -05002766 gui_highlight("flash_done=IMAGE FLASH COMPLETED]");
Ethan Yonker96af84a2015-01-05 14:58:36 -06002767 return true;
2768}
Ethan Yonker74db1572015-10-28 12:44:49 -05002769
2770void TWPartitionManager::Translate_Partition(const char* path, const char* resource_name, const char* default_value) {
2771 TWPartition* part = PartitionManager.Find_Partition_By_Path(path);
2772 if (part) {
Ethan Yonker66a19492015-12-10 10:19:45 -06002773 if (part->Is_Adopted_Storage) {
2774 part->Display_Name = part->Display_Name + " - " + gui_lookup("data", "Data");
2775 part->Backup_Display_Name = part->Display_Name;
2776 part->Storage_Name = part->Storage_Name + " - " + gui_lookup("adopted_storage", "Adopted Storage");
2777 } else {
2778 part->Display_Name = gui_lookup(resource_name, default_value);
2779 part->Backup_Display_Name = part->Display_Name;
2780 }
Ethan Yonker74db1572015-10-28 12:44:49 -05002781 }
2782}
2783
2784void TWPartitionManager::Translate_Partition(const char* path, const char* resource_name, const char* default_value, const char* storage_resource_name, const char* storage_default_value) {
2785 TWPartition* part = PartitionManager.Find_Partition_By_Path(path);
2786 if (part) {
Ethan Yonker66a19492015-12-10 10:19:45 -06002787 if (part->Is_Adopted_Storage) {
Ethan Yonker01f4e032017-02-03 15:30:52 -06002788 part->Backup_Display_Name = part->Display_Name + " - " + gui_lookup("data_backup", "Data (excl. storage)");
Ethan Yonker66a19492015-12-10 10:19:45 -06002789 part->Display_Name = part->Display_Name + " - " + gui_lookup("data", "Data");
Ethan Yonker66a19492015-12-10 10:19:45 -06002790 part->Storage_Name = part->Storage_Name + " - " + gui_lookup("adopted_storage", "Adopted Storage");
2791 } else {
2792 part->Display_Name = gui_lookup(resource_name, default_value);
2793 part->Backup_Display_Name = part->Display_Name;
2794 if (part->Is_Storage)
2795 part->Storage_Name = gui_lookup(storage_resource_name, storage_default_value);
2796 }
Ethan Yonker74db1572015-10-28 12:44:49 -05002797 }
2798}
2799
Ethan Yonker01f4e032017-02-03 15:30:52 -06002800void 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) {
2801 TWPartition* part = PartitionManager.Find_Partition_By_Path(path);
2802 if (part) {
2803 if (part->Is_Adopted_Storage) {
2804 part->Backup_Display_Name = part->Display_Name + " - " + gui_lookup(backup_name, backup_default);
2805 part->Display_Name = part->Display_Name + " - " + gui_lookup("data", "Data");
2806 part->Storage_Name = part->Storage_Name + " - " + gui_lookup("adopted_storage", "Adopted Storage");
2807 } else {
2808 part->Display_Name = gui_lookup(resource_name, default_value);
2809 part->Backup_Display_Name = gui_lookup(backup_name, backup_default);
2810 if (part->Is_Storage)
2811 part->Storage_Name = gui_lookup(storage_resource_name, storage_default_value);
2812 }
2813 }
2814}
2815
Ethan Yonker74db1572015-10-28 12:44:49 -05002816void TWPartitionManager::Translate_Partition_Display_Names() {
Ethan Yonker66a19492015-12-10 10:19:45 -06002817 LOGINFO("Translating partition display names\n");
Ethan Yonker74db1572015-10-28 12:44:49 -05002818 Translate_Partition("/system", "system", "System");
2819 Translate_Partition("/system_image", "system_image", "System Image");
2820 Translate_Partition("/vendor", "vendor", "Vendor");
2821 Translate_Partition("/vendor_image", "vendor_image", "Vendor Image");
2822 Translate_Partition("/cache", "cache", "Cache");
Ethan Yonker74db1572015-10-28 12:44:49 -05002823 Translate_Partition("/boot", "boot", "Boot");
2824 Translate_Partition("/recovery", "recovery", "Recovery");
2825 if (!datamedia) {
Ethan Yonker01f4e032017-02-03 15:30:52 -06002826 Translate_Partition("/data", "data", "Data", "internal", "Internal Storage");
Ethan Yonker74db1572015-10-28 12:44:49 -05002827 Translate_Partition("/sdcard", "sdcard", "SDCard", "sdcard", "SDCard");
2828 Translate_Partition("/internal_sd", "sdcard", "SDCard", "sdcard", "SDCard");
2829 Translate_Partition("/internal_sdcard", "sdcard", "SDCard", "sdcard", "SDCard");
2830 Translate_Partition("/emmc", "sdcard", "SDCard", "sdcard", "SDCard");
Ethan Yonker01f4e032017-02-03 15:30:52 -06002831 } else {
2832 Translate_Partition("/data", "data", "Data", "internal", "Internal Storage", "data_backup", "Data (excl. storage)");
Ethan Yonker74db1572015-10-28 12:44:49 -05002833 }
Ethan Yonker01f4e032017-02-03 15:30:52 -06002834 Translate_Partition("/external_sd", "microsd", "Micro SDCard", "microsd", "Micro SDCard", "data_backup", "Data (excl. storage)");
2835 Translate_Partition("/external_sdcard", "microsd", "Micro SDCard", "microsd", "Micro SDCard", "data_backup", "Data (excl. storage)");
Ethan Yonker74db1572015-10-28 12:44:49 -05002836 Translate_Partition("/usb-otg", "usbotg", "USB OTG", "usbotg", "USB OTG");
2837 Translate_Partition("/sd-ext", "sdext", "SD-EXT");
2838
2839 // Android secure is a special case
2840 TWPartition* part = PartitionManager.Find_Partition_By_Path("/and-sec");
2841 if (part)
2842 part->Backup_Display_Name = gui_lookup("android_secure", "Android Secure");
2843
Ethan Yonker6e8c27a2016-12-22 17:55:57 -06002844 std::vector<TWPartition*>::iterator sysfs;
2845 for (sysfs = Partitions.begin(); sysfs != Partitions.end(); sysfs++) {
2846 if (!(*sysfs)->Sysfs_Entry.empty()) {
2847 Translate_Partition((*sysfs)->Mount_Point.c_str(), "autostorage", "Storage", "autostorage", "Storage");
2848 }
2849 }
2850
Ethan Yonker74db1572015-10-28 12:44:49 -05002851 // This updates the text on all of the storage selection buttons in the GUI
2852 DataManager::SetBackupFolder();
2853}
Ethan Yonker66a19492015-12-10 10:19:45 -06002854
Ethan Yonker6e8c27a2016-12-22 17:55:57 -06002855bool TWPartitionManager::Decrypt_Adopted() {
Ethan Yonker66a19492015-12-10 10:19:45 -06002856#ifdef TW_INCLUDE_CRYPTO
Ethan Yonker6e8c27a2016-12-22 17:55:57 -06002857 bool ret = false;
Ethan Yonker66a19492015-12-10 10:19:45 -06002858 if (!Mount_By_Path("/data", false)) {
2859 LOGERR("Cannot decrypt adopted storage because /data will not mount\n");
Ethan Yonker6e8c27a2016-12-22 17:55:57 -06002860 return false;
Ethan Yonker66a19492015-12-10 10:19:45 -06002861 }
2862 LOGINFO("Decrypt adopted storage starting\n");
2863 char* xmlFile = PageManager::LoadFileToBuffer("/data/system/storage.xml", NULL);
2864 xml_document<> *doc = NULL;
2865 xml_node<>* volumes = NULL;
Ethan Yonker66a19492015-12-10 10:19:45 -06002866 string Primary_Storage_UUID = "";
2867 if (xmlFile != NULL) {
2868 LOGINFO("successfully loaded storage.xml\n");
2869 doc = new xml_document<>();
2870 doc->parse<0>(xmlFile);
2871 volumes = doc->first_node("volumes");
2872 if (volumes) {
2873 xml_attribute<>* psuuid = volumes->first_attribute("primaryStorageUuid");
2874 if (psuuid) {
2875 Primary_Storage_UUID = psuuid->value();
2876 }
2877 }
Ethan Yonker6e8c27a2016-12-22 17:55:57 -06002878 } else {
2879 LOGINFO("No /data/system/storage.xml for adopted storage\n");
2880 return false;
Ethan Yonker66a19492015-12-10 10:19:45 -06002881 }
2882 std::vector<TWPartition*>::iterator adopt;
2883 for (adopt = Partitions.begin(); adopt != Partitions.end(); adopt++) {
2884 if ((*adopt)->Removable && (*adopt)->Is_Present) {
2885 if ((*adopt)->Decrypt_Adopted() == 0) {
Ethan Yonker6e8c27a2016-12-22 17:55:57 -06002886 ret = true;
Ethan Yonker66a19492015-12-10 10:19:45 -06002887 if (volumes) {
2888 xml_node<>* volume = volumes->first_node("volume");
2889 while (volume) {
2890 xml_attribute<>* guid = volume->first_attribute("partGuid");
2891 if (guid) {
2892 string GUID = (*adopt)->Adopted_GUID.c_str();
2893 GUID.insert(8, "-");
2894 GUID.insert(13, "-");
2895 GUID.insert(18, "-");
2896 GUID.insert(23, "-");
2897
2898 if (strcasecmp(GUID.c_str(), guid->value()) == 0) {
2899 xml_attribute<>* attr = volume->first_attribute("nickname");
nkk71ffb02bd2017-06-04 23:12:16 +03002900 if (attr && attr->value() && strlen(attr->value()) > 0) {
Ethan Yonker66a19492015-12-10 10:19:45 -06002901 (*adopt)->Storage_Name = attr->value();
2902 (*adopt)->Display_Name = (*adopt)->Storage_Name;
2903 (*adopt)->Backup_Display_Name = (*adopt)->Storage_Name;
2904 LOGINFO("storage name from storage.xml is '%s'\n", attr->value());
2905 }
2906 attr = volume->first_attribute("fsUuid");
2907 if (attr && !Primary_Storage_UUID.empty() && strcmp(Primary_Storage_UUID.c_str(), attr->value()) == 0) {
2908 TWPartition* Dat = Find_Partition_By_Path("/data");
2909 if (Dat) {
2910 LOGINFO("Internal storage is found on adopted storage '%s'\n", (*adopt)->Display_Name.c_str());
2911 LOGINFO("Changing '%s' to point to '%s'\n", Dat->Symlink_Mount_Point.c_str(), (*adopt)->Storage_Path.c_str());
2912 (*adopt)->Symlink_Mount_Point = Dat->Symlink_Mount_Point;
2913 Dat->Symlink_Mount_Point = "";
2914 // Toggle mounts to ensure that the symlink mount point (probably /sdcard) is mounted to the right location
2915 Dat->UnMount(false);
2916 Dat->Mount(false);
2917 (*adopt)->UnMount(false);
2918 (*adopt)->Mount(false);
Ethan Yonker66a19492015-12-10 10:19:45 -06002919 }
2920 }
2921 break;
2922 }
2923 }
2924 volume = volume->next_sibling("volume");
2925 }
2926 }
nkk71ffb02bd2017-06-04 23:12:16 +03002927 Update_System_Details();
2928 Output_Partition((*adopt));
Ethan Yonker66a19492015-12-10 10:19:45 -06002929 }
2930 }
2931 }
2932 if (xmlFile) {
2933 doc->clear();
2934 delete doc;
2935 free(xmlFile);
2936 }
Ethan Yonker6e8c27a2016-12-22 17:55:57 -06002937 return ret;
Ethan Yonker66a19492015-12-10 10:19:45 -06002938#else
2939 LOGINFO("Decrypt_Adopted: no crypto support\n");
Ethan Yonker6e8c27a2016-12-22 17:55:57 -06002940 return false;
Ethan Yonker66a19492015-12-10 10:19:45 -06002941#endif
2942}
Ethan Yonkerfcf3f242016-02-16 12:30:26 -06002943
2944void TWPartitionManager::Remove_Partition_By_Path(string Path) {
2945 std::vector<TWPartition*>::iterator iter;
2946 string Local_Path = TWFunc::Get_Root_Path(Path);
2947
2948 for (iter = Partitions.begin(); iter != Partitions.end(); iter++) {
2949 if ((*iter)->Mount_Point == Local_Path || (!(*iter)->Symlink_Mount_Point.empty() && (*iter)->Symlink_Mount_Point == Local_Path)) {
2950 LOGINFO("Found and erasing '%s' from partition list\n", Local_Path.c_str());
2951 Partitions.erase(iter);
2952 return;
2953 }
2954 }
2955}
Ethan Yonker1b190162016-12-05 15:25:19 -06002956
2957void TWPartitionManager::Set_Active_Slot(const string& Slot) {
2958 if (Slot != "A" && Slot != "B") {
2959 LOGERR("Set_Active_Slot invalid slot '%s'\n", Slot.c_str());
2960 return;
2961 }
2962 if (Active_Slot_Display == Slot)
2963 return;
2964 LOGINFO("Setting active slot %s\n", Slot.c_str());
2965#ifdef AB_OTA_UPDATER
2966 if (!Active_Slot_Display.empty()) {
2967 const hw_module_t *hw_module;
2968 boot_control_module_t *module;
2969 int ret;
2970 ret = hw_get_module("bootctrl", &hw_module);
2971 if (ret != 0) {
2972 LOGERR("Error getting bootctrl module.\n");
2973 } else {
2974 module = (boot_control_module_t*) hw_module;
2975 module->init(module);
2976 int slot_number = 0;
2977 if (Slot == "B")
2978 slot_number = 1;
2979 if (module->setActiveBootSlot(module, slot_number))
2980 gui_msg(Msg(msg::kError, "unable_set_boot_slot=Error changing bootloader boot slot to {1}")(Slot));
2981 }
2982 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
2983 }
2984#else
2985 LOGERR("Boot slot feature not present\n");
2986#endif
2987 Active_Slot_Display = Slot;
2988 if (Fstab_Processed())
2989 Update_System_Details();
2990}
2991string TWPartitionManager::Get_Active_Slot_Suffix() {
2992 if (Active_Slot_Display == "A")
2993 return "_a";
2994 return "_b";
2995}
2996string TWPartitionManager::Get_Active_Slot_Display() {
2997 return Active_Slot_Display;
2998}
Ethan Yonker6e8c27a2016-12-22 17:55:57 -06002999
Captain Throwback9d6feb52018-07-27 10:05:24 -04003000string TWPartitionManager::Get_Android_Root_Path() {
Chaosmasterf6e42ce2020-01-27 00:17:04 +01003001 if (property_get_bool("ro.twrp.sar", false))
dianlujitao58f1a632020-01-16 23:03:56 +08003002 return "/system_root";
3003 return "/system";
Captain Throwback9d6feb52018-07-27 10:05:24 -04003004}
3005
Ethan Yonker6e8c27a2016-12-22 17:55:57 -06003006void TWPartitionManager::Remove_Uevent_Devices(const string& Mount_Point) {
3007 std::vector<TWPartition*>::iterator iter;
3008
3009 for (iter = Partitions.begin(); iter != Partitions.end(); ) {
3010 if ((*iter)->Is_SubPartition && (*iter)->SubPartition_Of == Mount_Point) {
3011 TWPartition *part = *iter;
3012 LOGINFO("%s was removed by uevent data\n", (*iter)->Mount_Point.c_str());
3013 (*iter)->UnMount(false);
3014 rmdir((*iter)->Mount_Point.c_str());
3015 iter = Partitions.erase(iter);
3016 delete part;
3017 } else {
3018 iter++;
3019 }
3020 }
3021}
3022
3023void TWPartitionManager::Handle_Uevent(const Uevent_Block_Data& uevent_data) {
3024 std::vector<TWPartition*>::iterator iter;
3025
3026 for (iter = Partitions.begin(); iter != Partitions.end(); iter++) {
3027 if (!(*iter)->Sysfs_Entry.empty()) {
3028 string device;
3029 size_t wildcard = (*iter)->Sysfs_Entry.find("*");
3030 if (wildcard != string::npos) {
3031 device = (*iter)->Sysfs_Entry.substr(0, wildcard);
3032 } else {
3033 device = (*iter)->Sysfs_Entry;
3034 }
3035 if (device == uevent_data.sysfs_path.substr(0, device.size())) {
3036 // Found a match
3037 if (uevent_data.action == "add") {
3038 (*iter)->Primary_Block_Device = "/dev/block/" + uevent_data.block_device;
3039 (*iter)->Alternate_Block_Device = (*iter)->Primary_Block_Device;
3040 (*iter)->Is_Present = true;
3041 LOGINFO("Found a match '%s' '%s'\n", uevent_data.block_device.c_str(), device.c_str());
3042 if (!Decrypt_Adopted()) {
3043 LOGINFO("No adopted storage so finding actual block device\n");
3044 (*iter)->Find_Actual_Block_Device();
3045 }
3046 return;
3047 } else if (uevent_data.action == "remove") {
3048 (*iter)->Is_Present = false;
3049 (*iter)->Primary_Block_Device = "";
3050 (*iter)->Actual_Block_Device = "";
3051 Remove_Uevent_Devices((*iter)->Mount_Point);
3052 return;
3053 }
3054 }
3055 }
3056 }
3057 LOGINFO("Found no matching fstab entry for uevent device '%s' - %s\n", uevent_data.sysfs_path.c_str(), uevent_data.action.c_str());
3058}
3059
3060void TWPartitionManager::setup_uevent() {
3061 struct sockaddr_nl nls;
3062
3063 if (uevent_pfd.fd >= 0) {
3064 LOGINFO("uevent already set up\n");
3065 return;
3066 }
3067
3068 // Open hotplug event netlink socket
3069 memset(&nls,0,sizeof(struct sockaddr_nl));
3070 nls.nl_family = AF_NETLINK;
3071 nls.nl_pid = getpid();
3072 nls.nl_groups = -1;
3073 uevent_pfd.events = POLLIN;
3074 uevent_pfd.fd = socket(PF_NETLINK, SOCK_DGRAM, NETLINK_KOBJECT_UEVENT);
3075 if (uevent_pfd.fd==-1) {
3076 LOGERR("uevent not root\n");
3077 return;
3078 }
3079
3080 // Listen to netlink socket
3081 if (::bind(uevent_pfd.fd, (struct sockaddr *) &nls, sizeof(struct sockaddr_nl)) < 0) {
3082 LOGERR("Bind failed\n");
3083 return;
3084 }
3085 set_select_fd();
3086 Coldboot();
3087}
3088
3089Uevent_Block_Data TWPartitionManager::get_event_block_values(char *buf, int len) {
3090 Uevent_Block_Data ret;
3091 ret.subsystem = "";
3092 char *ptr = buf;
3093 const char *end = buf + len;
3094
3095 buf[len - 1] = '\0';
3096 while (ptr < end) {
3097 if (strncmp(ptr, "ACTION=", strlen("ACTION=")) == 0) {
3098 ptr += strlen("ACTION=");
3099 ret.action = ptr;
3100 } else if (strncmp(ptr, "SUBSYSTEM=", strlen("SUBSYSTEM=")) == 0) {
3101 ptr += strlen("SUBSYSTEM=");
3102 ret.subsystem = ptr;
3103 } else if (strncmp(ptr, "DEVTYPE=", strlen("DEVTYPE=")) == 0) {
3104 ptr += strlen("DEVTYPE=");
3105 ret.type = ptr;
3106 } else if (strncmp(ptr, "DEVPATH=", strlen("DEVPATH=")) == 0) {
3107 ptr += strlen("DEVPATH=");
3108 ret.sysfs_path += ptr;
3109 } else if (strncmp(ptr, "DEVNAME=", strlen("DEVNAME=")) == 0) {
3110 ptr += strlen("DEVNAME=");
3111 ret.block_device += ptr;
3112 } else if (strncmp(ptr, "MAJOR=", strlen("MAJOR=")) == 0) {
3113 ptr += strlen("MAJOR=");
3114 ret.major = atoi(ptr);
3115 } else if (strncmp(ptr, "MINOR=", strlen("MINOR=")) == 0) {
3116 ptr += strlen("MINOR=");
3117 ret.minor = atoi(ptr);
3118 }
3119 ptr += strlen(ptr) + 1;
3120 }
3121 return ret;
3122}
3123
3124void TWPartitionManager::read_uevent() {
3125 char buf[1024];
3126
3127 int len = recv(uevent_pfd.fd, buf, sizeof(buf), MSG_DONTWAIT);
3128 if (len == -1) {
Mauronofrio Matarrese9632f302019-08-04 17:02:41 +01003129 LOGINFO("recv error on uevent\n");
Ethan Yonker6e8c27a2016-12-22 17:55:57 -06003130 return;
3131 }
3132 /*int i = 0; // Print all uevent output for test /debug
3133 while (i<len) {
3134 printf("%s\n", buf+i);
3135 i += strlen(buf+i)+1;
3136 }*/
3137 Uevent_Block_Data uevent_data = get_event_block_values(buf, len);
3138 if (uevent_data.subsystem == "block" && uevent_data.type == "disk") {
3139 PartitionManager.Handle_Uevent(uevent_data);
3140 }
3141}
3142
3143void TWPartitionManager::close_uevent() {
3144 if (uevent_pfd.fd > 0)
3145 close(uevent_pfd.fd);
3146 uevent_pfd.fd = -1;
3147}
3148
3149void TWPartitionManager::Add_Partition(TWPartition* Part) {
3150 Partitions.push_back(Part);
3151}
3152
3153void TWPartitionManager::Coldboot_Scan(std::vector<string> *sysfs_entries, const string& Path, int depth) {
3154 string Real_Path = Path;
3155 char real_path[PATH_MAX];
3156 if (realpath(Path.c_str(), &real_path[0])) {
3157 string Real_Path = real_path;
3158 std::vector<string>::iterator iter;
3159 for (iter = sysfs_entries->begin(); iter != sysfs_entries->end(); iter++) {
3160 if (Real_Path.find((*iter)) != string::npos) {
3161 string Write_Path = Real_Path + "/uevent";
3162 if (TWFunc::Path_Exists(Write_Path)) {
3163 const char* write_val = "add\n";
3164 TWFunc::write_to_file(Write_Path, write_val);
3165 break;
3166 }
3167 }
3168 }
3169 }
3170
3171 DIR* d = opendir(Path.c_str());
3172 if (d != NULL) {
3173 struct dirent* de;
3174 while ((de = readdir(d)) != NULL) {
3175 if (de->d_name[0] == '.' || (de->d_type != DT_DIR && depth > 0))
3176 continue;
3177 if (strlen(de->d_name) >= 4 && (strncmp(de->d_name, "ram", 3) == 0 || strncmp(de->d_name, "loop", 4) == 0))
3178 continue;
3179
3180 string item = Path + "/";
3181 item.append(de->d_name);
3182 Coldboot_Scan(sysfs_entries, item, depth + 1);
3183 }
3184 closedir(d);
3185 }
3186}
3187
3188void TWPartitionManager::Coldboot() {
3189 std::vector<TWPartition*>::iterator iter;
3190 std::vector<string> sysfs_entries;
3191
3192 for (iter = Partitions.begin(); iter != Partitions.end(); iter++) {
3193 if (!(*iter)->Sysfs_Entry.empty()) {
3194 size_t wildcard_pos = (*iter)->Sysfs_Entry.find("*");
3195 if (wildcard_pos == string::npos)
3196 wildcard_pos = (*iter)->Sysfs_Entry.size();
3197 sysfs_entries.push_back((*iter)->Sysfs_Entry.substr(0, wildcard_pos));
3198 }
3199 }
3200
3201 if (sysfs_entries.size() > 0)
3202 Coldboot_Scan(&sysfs_entries, "/sys/block", 0);
3203}
Ethan Yonker53796e72019-01-11 22:49:52 -06003204
3205bool TWPartitionManager::Prepare_Empty_Folder(const std::string& Folder) {
3206 if (TWFunc::Path_Exists(Folder))
3207 TWFunc::removeDir(Folder, false);
3208 return TWFunc::Recursive_Mkdir(Folder);
3209}
3210
3211bool TWPartitionManager::Prepare_Repack(TWPartition* Part, const std::string& Temp_Folder_Destination, const bool Create_Backup, const std::string& Backup_Name) {
3212 if (!Part) {
3213 LOGERR("Partition was null!\n");
3214 return false;
3215 }
3216 if (!Prepare_Empty_Folder(Temp_Folder_Destination))
3217 return false;
3218 std::string target_image = Temp_Folder_Destination + "boot.img";
3219 PartitionSettings part_settings;
3220 part_settings.Part = Part;
3221 if (Create_Backup) {
3222 if (Check_Backup_Name(Backup_Name, true, false) != 0)
3223 return false;
3224 DataManager::GetValue(TW_BACKUPS_FOLDER_VAR, part_settings.Backup_Folder);
3225 part_settings.Backup_Folder = part_settings.Backup_Folder + "/" + TWFunc::Get_Current_Date() + " " + Backup_Name + "/";
3226 if (!TWFunc::Recursive_Mkdir(part_settings.Backup_Folder))
3227 return false;
3228 } else
3229 part_settings.Backup_Folder = Temp_Folder_Destination;
3230 part_settings.adbbackup = false;
3231 part_settings.generate_digest = false;
3232 part_settings.generate_md5 = false;
3233 part_settings.PM_Method = PM_BACKUP;
3234 part_settings.progress = NULL;
3235 pid_t not_a_pid = 0;
3236 if (!Part->Backup(&part_settings, &not_a_pid))
3237 return false;
3238 std::string backed_up_image = part_settings.Backup_Folder;
3239 backed_up_image += Part->Backup_FileName;
3240 target_image = Temp_Folder_Destination + "boot.img";
3241 if (Create_Backup) {
3242 std::string source = part_settings.Backup_Folder + Part->Backup_FileName;
3243 if (TWFunc::copy_file(source, target_image, 0644) != 0) {
3244 LOGERR("Failed to copy backup file '%s' to temp folder target '%s'\n", source.c_str(), target_image.c_str());
3245 return false;
3246 }
3247 } else {
3248 if (rename(backed_up_image.c_str(), target_image.c_str()) != 0) {
3249 LOGERR("Failed to rename '%s' to '%s'\n", backed_up_image.c_str(), target_image.c_str());
3250 return false;
3251 }
3252 }
3253 return Prepare_Repack(target_image, Temp_Folder_Destination, false, false);
3254}
3255
3256bool TWPartitionManager::Prepare_Repack(const std::string& Source_Path, const std::string& Temp_Folder_Destination, const bool Copy_Source, const bool Create_Destination) {
3257 if (Create_Destination) {
3258 if (!Prepare_Empty_Folder(Temp_Folder_Destination))
3259 return false;
3260 }
3261 if (Copy_Source) {
3262 std::string destination = Temp_Folder_Destination + "/boot.img";
3263 if (TWFunc::copy_file(Source_Path, destination, 0644))
3264 return false;
3265 }
Mohd Faraz5738e762020-05-10 04:18:30 +05303266 std::string command = "cd " + Temp_Folder_Destination + " && /sbin/magiskboot unpack -h '" + Source_Path +"'";
Ethan Yonker53796e72019-01-11 22:49:52 -06003267 if (TWFunc::Exec_Cmd(command) != 0) {
3268 LOGINFO("Error unpacking %s!\n", Source_Path.c_str());
3269 gui_msg(Msg(msg::kError, "unpack_error=Error unpacking image."));
3270 return false;
3271 }
3272 return true;
3273}
3274
3275bool TWPartitionManager::Repack_Images(const std::string& Target_Image, const struct Repack_Options_struct& Repack_Options) {
3276 if (!TWFunc::Path_Exists("/sbin/magiskboot")) {
3277 LOGERR("Image repacking tool not present in this TWRP build!");
3278 return false;
3279 }
3280 DataManager::SetProgress(0);
3281 TWPartition* part = PartitionManager.Find_Partition_By_Path("/boot");
3282 if (part)
3283 gui_msg(Msg("unpacking_image=Unpacking {1}...")(part->Display_Name));
3284 else {
3285 gui_msg(Msg(msg::kError, "unable_to_locate=Unable to locate {1}.")("/boot"));
3286 return false;
3287 }
3288 if (!PartitionManager.Prepare_Repack(part, REPACK_ORIG_DIR, Repack_Options.Backup_First, gui_lookup("repack", "Repack")))
3289 return false;
3290 DataManager::SetProgress(.25);
3291 gui_msg(Msg("unpacking_image=Unpacking {1}...")(Target_Image));
3292 if (!PartitionManager.Prepare_Repack(Target_Image, REPACK_NEW_DIR, true))
3293 return false;
3294 DataManager::SetProgress(.5);
3295 gui_msg(Msg("repacking_image=Repacking {1}...")(part->Display_Name));
3296 std::string path = REPACK_NEW_DIR;
3297 if (Repack_Options.Type == REPLACE_KERNEL) {
3298 // When we replace the kernel, what we really do is copy the boot partition ramdisk into the new image's folder
3299 if (TWFunc::copy_file(REPACK_ORIG_DIR "ramdisk.cpio", REPACK_NEW_DIR "ramdisk.cpio", 0644)) {
3300 LOGERR("Failed to copy ramdisk\n");
3301 return false;
3302 }
3303 } else if (Repack_Options.Type == REPLACE_RAMDISK) {
3304 // Repack the ramdisk
3305 if (TWFunc::copy_file(REPACK_NEW_DIR "ramdisk.cpio", REPACK_ORIG_DIR "ramdisk.cpio", 0644)) {
3306 LOGERR("Failed to copy ramdisk\n");
3307 return false;
3308 }
3309 path = REPACK_ORIG_DIR;
3310 } else {
3311 LOGERR("Invalid repacking options specified\n");
3312 return false;
3313 }
3314 if (Repack_Options.Disable_Verity)
3315 LOGERR("Disabling verity is not implemented yet\n");
3316 if (Repack_Options.Disable_Force_Encrypt)
3317 LOGERR("Disabling force encrypt is not implemented yet\n");
Mohd Faraz5738e762020-05-10 04:18:30 +05303318 std::string command = "cd " + path + " && /sbin/magiskboot repack " + path + "boot.img";
Ethan Yonker53796e72019-01-11 22:49:52 -06003319 if (TWFunc::Exec_Cmd(command) != 0) {
3320 gui_msg(Msg(msg::kError, "repack_error=Error repacking image."));
3321 return false;
3322 }
3323 DataManager::SetProgress(.75);
3324 std::string file = "new-boot.img";
3325 DataManager::SetValue("tw_flash_partition", "/boot;");
3326 if (!PartitionManager.Flash_Image(path, file)) {
3327 LOGINFO("Error flashing new image\n");
3328 return false;
3329 }
3330 DataManager::SetProgress(1);
3331 TWFunc::removeDir(REPACK_ORIG_DIR, false);
Ethan Yonker9f5dd312019-05-15 15:17:36 -05003332 if (part->SlotSelect && Repack_Options.Type == REPLACE_RAMDISK) {
3333 LOGINFO("Switching slots to flash ramdisk to both partitions\n");
3334 string Current_Slot = Get_Active_Slot_Display();
3335 if (Current_Slot == "A")
3336 Set_Active_Slot("B");
3337 else
3338 Set_Active_Slot("A");
3339 DataManager::SetProgress(.25);
3340 if (!PartitionManager.Prepare_Repack(part, REPACK_ORIG_DIR, Repack_Options.Backup_First, gui_lookup("repack", "Repack")))
3341 return false;
3342 if (TWFunc::copy_file(REPACK_NEW_DIR "ramdisk.cpio", REPACK_ORIG_DIR "ramdisk.cpio", 0644)) {
3343 LOGERR("Failed to copy ramdisk\n");
3344 return false;
3345 }
3346 path = REPACK_ORIG_DIR;
Mohd Faraz5738e762020-05-10 04:18:30 +05303347 command = "cd " + path + " && /sbin/magiskboot repack " + path + "boot.img";
Ethan Yonker9f5dd312019-05-15 15:17:36 -05003348 if (TWFunc::Exec_Cmd(command) != 0) {
3349 gui_msg(Msg(msg::kError, "repack_error=Error repacking image."));
3350 return false;
3351 }
3352 DataManager::SetProgress(.75);
3353 std::string file = "new-boot.img";
3354 DataManager::SetValue("tw_flash_partition", "/boot;");
3355 if (!PartitionManager.Flash_Image(path, file)) {
3356 LOGINFO("Error flashing new image\n");
3357 return false;
3358 }
3359 DataManager::SetProgress(1);
3360 TWFunc::removeDir(REPACK_ORIG_DIR, false);
3361 Set_Active_Slot(Current_Slot);
3362 }
Ethan Yonker53796e72019-01-11 22:49:52 -06003363 TWFunc::removeDir(REPACK_NEW_DIR, false);
3364 return true;
3365}