blob: ae4c70a81d2cc8bb1c65cd13538c6655fa084408 [file] [log] [blame]
Dees Troy3be70a82013-10-22 14:25:12 +00001/*
bigbiffee7b7ff2020-03-23 15:08:27 -04002 Copyright 2014 to 2020 TeamWin
Dees Troy3be70a82013-10-22 14:25:12 +00003 This file is part of TWRP/TeamWin Recovery Project.
4
5 TWRP is free software: you can redistribute it and/or modify
6 it under the terms of the GNU General Public License as published by
7 the Free Software Foundation, either version 3 of the License, or
8 (at your option) any later version.
9
10 TWRP is distributed in the hope that it will be useful,
11 but WITHOUT ANY WARRANTY; without even the implied warranty of
12 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 GNU General Public License for more details.
14
15 You should have received a copy of the GNU General Public License
16 along with TWRP. If not, see <http://www.gnu.org/licenses/>.
17*/
Dees_Troy51a0e822012-09-05 15:24:24 -040018
19#include <stdio.h>
20#include <stdlib.h>
21#include <string.h>
22#include <sys/stat.h>
23#include <sys/vfs.h>
24#include <unistd.h>
Ethan Yonker6e8c27a2016-12-22 17:55:57 -060025#include <map>
Dees_Troy5bf43922012-09-07 16:07:55 -040026#include <vector>
Dees_Troy63c8df72012-09-10 14:02:05 -040027#include <dirent.h>
28#include <time.h>
Dees_Troy8170a922012-09-18 15:40:25 -040029#include <errno.h>
30#include <fcntl.h>
bigbiffce8f83c2015-12-12 18:30:21 -050031#include <zlib.h>
bigbiff bigbiff9c754052013-01-09 09:09:08 -050032#include <iostream>
33#include <iomanip>
Ethan Yonker8613dc02014-09-11 09:28:20 -050034#include <sys/wait.h>
Ethan Yonker483e9f42016-01-11 22:21:18 -060035#include <linux/fs.h>
36#include <sys/mount.h>
Ethan Yonker6e8c27a2016-12-22 17:55:57 -060037
bigbiffee7b7ff2020-03-23 15:08:27 -040038
Ethan Yonker6e8c27a2016-12-22 17:55:57 -060039#include <sys/poll.h>
40#include <sys/socket.h>
41#include <linux/types.h>
42#include <linux/netlink.h>
bigbiffee7b7ff2020-03-23 15:08:27 -040043#include <android-base/chrono_utils.h>
44#include <android-base/file.h>
45#include <android-base/logging.h>
bigbiff7ba75002020-04-11 20:47:09 -040046#include <android-base/properties.h>
bigbiffee7b7ff2020-03-23 15:08:27 -040047#include <android-base/strings.h>
48#include <fstab/fstab.h>
49#include <fs_avb/fs_avb.h>
50#include <fs_mgr.h>
51#include <fs_mgr_dm_linear.h>
52#include <fs_mgr_overlayfs.h>
53#include <libgsi/libgsi.h>
54#include <liblp/liblp.h>
Ethan Yonker6e8c27a2016-12-22 17:55:57 -060055
Dees_Troy51a0e822012-09-05 15:24:24 -040056#include "variables.h"
Dees_Troy2673cec2013-04-02 20:22:16 +000057#include "twcommon.h"
Dees_Troy51a0e822012-09-05 15:24:24 -040058#include "partitions.hpp"
Dees_Troy5bf43922012-09-07 16:07:55 -040059#include "data.hpp"
Dees_Troy38bd7602012-09-14 13:33:53 -040060#include "twrp-functions.hpp"
Ethan Yonkerb5fab762016-01-28 14:03:33 -060061#include "fixContexts.hpp"
Ethan Yonker3fdcda42016-11-30 12:29:37 -060062#include "exclude.hpp"
Ethan Yonker4b94cfd2014-12-11 10:00:45 -060063#include "set_metadata.h"
bigbiff7abc5fe2015-01-17 16:53:12 -050064#include "tw_atomic.hpp"
Ethan Yonker74db1572015-10-28 12:44:49 -050065#include "gui/gui.hpp"
Ethan Yonker472f5062016-02-25 13:47:30 -060066#include "progresstracking.hpp"
bigbiff bigbiff56cf5642016-08-19 17:43:45 -040067#include "twrpDigestDriver.hpp"
bigbiffce8f83c2015-12-12 18:30:21 -050068#include "adbbu/libtwadbbu.hpp"
Dees_Troy38bd7602012-09-14 13:33:53 -040069
bigbiff bigbiffc7eee6f2014-09-02 18:59:01 -040070#ifdef TW_HAS_MTP
bigbiff bigbiffaf32bb92018-12-18 18:39:53 -050071#ifdef TW_HAS_LEGACY_MTP
72#include "mtp/legacy/mtp_MtpServer.hpp"
73#include "mtp/legacy/twrpMtp.hpp"
74#include "mtp/legacy/MtpMessage.hpp"
75#else
76#include "mtp/ffs/mtp_MtpServer.hpp"
77#include "mtp/ffs/twrpMtp.hpp"
78#include "mtp/ffs/MtpMessage.hpp"
79#endif
bigbiff bigbiffc7eee6f2014-09-02 18:59:01 -040080#endif
81
Dees Troy6f6441d2014-01-23 02:07:03 +000082extern "C" {
83 #include "cutils/properties.h"
Ethan Yonker74db1572015-10-28 12:44:49 -050084 #include "gui/gui.h"
Dees Troy6f6441d2014-01-23 02:07:03 +000085}
86
Dees_Troy5bf43922012-09-07 16:07:55 -040087#ifdef TW_INCLUDE_CRYPTO
bigbiff7ba75002020-04-11 20:47:09 -040088#include "crypto/fde/cryptfs.h"
89#include "gui/rapidxml.hpp"
90#include "gui/pages.hpp"
91#ifdef TW_INCLUDE_FBE
92#include "crypto/ext4crypt/Decrypt.h"
93#ifdef TW_INCLUDE_FBE_METADATA_DECRYPT
94 #ifdef USE_FSCRYPT
95 #include "crypto/fscrypt/MetadataCrypt.h"
96 #else
97 #include "crypto/ext4crypt/MetadataCrypt.h"
bigbiffadc599e2020-05-28 19:36:30 +000098 #endif
bigbiff7ba75002020-04-11 20:47:09 -040099#endif
100#endif
101#ifdef TW_CRYPTO_USE_SYSTEM_VOLD
102#include "crypto/vold_decrypt/vold_decrypt.h"
103#endif
Dees_Troy5bf43922012-09-07 16:07:55 -0400104#endif
Dees_Troy51a0e822012-09-05 15:24:24 -0400105
Ethan Yonker1b190162016-12-05 15:25:19 -0600106#ifdef AB_OTA_UPDATER
107#include <hardware/hardware.h>
108#include <hardware/boot_control.h>
109#endif
110
bigbiffee7b7ff2020-03-23 15:08:27 -0400111using android::fs_mgr::Fstab;
112using android::fs_mgr::FstabEntry;
Ethan Yonker6277c792014-09-15 14:54:30 -0500113
bigbiffee7b7ff2020-03-23 15:08:27 -0400114extern bool datamedia;
115
bigbiff bigbiff34684ff2013-12-01 21:03:45 -0500116TWPartitionManager::TWPartitionManager(void) {
bigbiff bigbiffc7eee6f2014-09-02 18:59:01 -0400117 mtp_was_enabled = false;
Ethan Yonker726a0202014-12-16 20:01:38 -0600118 mtp_write_fd = -1;
Ethan Yonker6e8c27a2016-12-22 17:55:57 -0600119 uevent_pfd.fd = -1;
bigbiff7abc5fe2015-01-17 16:53:12 -0500120 stop_backup.set_value(0);
Ethan Yonker1b190162016-12-05 15:25:19 -0600121#ifdef AB_OTA_UPDATER
122 char slot_suffix[PROPERTY_VALUE_MAX];
Ethan Yonkerfefe5912017-09-30 22:22:13 -0500123 property_get("ro.boot.slot_suffix", slot_suffix, "error");
124 if (strcmp(slot_suffix, "error") == 0)
125 property_get("ro.boot.slot", slot_suffix, "error");
Ethan Yonker1b190162016-12-05 15:25:19 -0600126 Active_Slot_Display = "";
Ethan Yonkerfefe5912017-09-30 22:22:13 -0500127 if (strcmp(slot_suffix, "_a") == 0 || strcmp(slot_suffix, "a") == 0)
Ethan Yonker1b190162016-12-05 15:25:19 -0600128 Set_Active_Slot("A");
129 else
130 Set_Active_Slot("B");
131#endif
bigbiff bigbiff34684ff2013-12-01 21:03:45 -0500132}
133
Chaosmasterf6e42ce2020-01-27 00:17:04 +0100134int TWPartitionManager::Process_Fstab(string Fstab_Filename, bool Display_Error, bool Sar_Detect) {
Dees_Troy5bf43922012-09-07 16:07:55 -0400135 FILE *fstabFile;
136 char fstab_line[MAX_FSTAB_LINE_LENGTH];
Dees Troy02a64532014-03-19 15:23:32 +0000137 TWPartition* settings_partition = NULL;
Matt Mowerbf4efa32014-04-14 23:25:26 -0500138 TWPartition* andsec_partition = NULL;
Ethan Yonker726a0202014-12-16 20:01:38 -0600139 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 -0600140 std::map<string, Flags_Map> twrp_flags;
141
142 fstabFile = fopen("/etc/twrp.flags", "rt");
143 if (fstabFile != NULL) {
144 LOGINFO("reading /etc/twrp.flags\n");
145 while (fgets(fstab_line, sizeof(fstab_line), fstabFile) != NULL) {
146 if (fstab_line[0] != '/')
147 continue;
148
149 size_t line_size = strlen(fstab_line);
150 if (fstab_line[line_size - 1] != '\n')
151 fstab_line[line_size] = '\n';
152 Flags_Map line_flags;
153 line_flags.Primary_Block_Device = "";
154 line_flags.Alternate_Block_Device = "";
155 line_flags.fstab_line = (char*)malloc(MAX_FSTAB_LINE_LENGTH);
156 if (!line_flags.fstab_line) {
157 LOGERR("malloc error on line_flags.fstab_line\n");
158 return false;
159 }
160 memcpy(line_flags.fstab_line, fstab_line, MAX_FSTAB_LINE_LENGTH);
161 bool found_separator = false;
162 char *fs_loc = NULL;
163 char *block_loc = NULL;
164 char *flags_loc = NULL;
165 size_t index, item_index = 0;
166 for (index = 0; index < line_size; index++) {
167 if (fstab_line[index] <= 32) {
168 fstab_line[index] = '\0';
169 found_separator = true;
170 } else if (found_separator) {
171 if (item_index == 0) {
172 fs_loc = fstab_line + index;
173 } else if (item_index == 1) {
174 block_loc = fstab_line + index;
175 } else if (item_index > 1) {
176 char *ptr = fstab_line + index;
177 if (*ptr == '/') {
178 line_flags.Alternate_Block_Device = ptr;
179 } else if (strlen(ptr) > strlen("flags=") && strncmp(ptr, "flags=", strlen("flags=")) == 0) {
180 flags_loc = ptr;
181 // Once we find the flags=, we're done scanning the line
182 break;
183 }
184 }
185 found_separator = false;
186 item_index++;
187 }
188 }
189 if (block_loc)
190 line_flags.Primary_Block_Device = block_loc;
191 if (fs_loc)
192 line_flags.File_System = fs_loc;
193 if (flags_loc)
194 line_flags.Flags = flags_loc;
195 string Mount_Point = fstab_line;
196 twrp_flags[Mount_Point] = line_flags;
197 memset(fstab_line, 0, sizeof(fstab_line));
198 }
199 fclose(fstabFile);
200 }
Dees_Troy5bf43922012-09-07 16:07:55 -0400201
202 fstabFile = fopen(Fstab_Filename.c_str(), "rt");
203 if (fstabFile == NULL) {
Dees_Troy2673cec2013-04-02 20:22:16 +0000204 LOGERR("Critical Error: Unable to open fstab at '%s'.\n", Fstab_Filename.c_str());
Dees_Troy5bf43922012-09-07 16:07:55 -0400205 return false;
Ethan Yonker6e8c27a2016-12-22 17:55:57 -0600206 } else
207 LOGINFO("Reading %s\n", Fstab_Filename.c_str());
Dees_Troy5bf43922012-09-07 16:07:55 -0400208
209 while (fgets(fstab_line, sizeof(fstab_line), fstabFile) != NULL) {
bigbiffee7b7ff2020-03-23 15:08:27 -0400210 bool isSuper = Is_Super_Partition(fstab_line);
211
212 if (!isSuper && fstab_line[0] != '/')
Dees_Troy5bf43922012-09-07 16:07:55 -0400213 continue;
214
Ethan Yonker6e8c27a2016-12-22 17:55:57 -0600215 if (strstr(fstab_line, "swap"))
216 continue; // Skip swap in recovery
217
218 size_t line_size = strlen(fstab_line);
219 if (fstab_line[line_size - 1] != '\n')
220 fstab_line[line_size] = '\n';
Dees_Troy2a923582012-09-20 12:13:34 -0400221
Matt Mower2b2dd152016-04-26 11:24:08 -0500222 TWPartition* partition = new TWPartition();
Chaosmasterf6e42ce2020-01-27 00:17:04 +0100223 if (partition->Process_Fstab_Line(fstab_line, Display_Error, &twrp_flags, Sar_Detect))
Ethan Yonkerc05c5982014-03-13 09:19:56 -0500224 Partitions.push_back(partition);
Matt Mower72c87ce2016-04-26 14:34:56 -0500225 else
Dees_Troy5bf43922012-09-07 16:07:55 -0400226 delete partition;
Matt Mower2b2dd152016-04-26 11:24:08 -0500227
228 memset(fstab_line, 0, sizeof(fstab_line));
Dees_Troy5bf43922012-09-07 16:07:55 -0400229 }
230 fclose(fstabFile);
Matt Mower72c87ce2016-04-26 14:34:56 -0500231
Ethan Yonker6e8c27a2016-12-22 17:55:57 -0600232 if (twrp_flags.size() > 0) {
233 LOGINFO("Processing remaining twrp.flags\n");
234 // Add any items from twrp.flags that did not exist in the recovery.fstab
235 for (std::map<string, Flags_Map>::iterator mapit=twrp_flags.begin(); mapit!=twrp_flags.end(); mapit++) {
236 if (Find_Partition_By_Path(mapit->first) == NULL) {
237 TWPartition* partition = new TWPartition();
Chaosmasterf6e42ce2020-01-27 00:17:04 +0100238 if (partition->Process_Fstab_Line(mapit->second.fstab_line, Display_Error, NULL, Sar_Detect))
Ethan Yonker6e8c27a2016-12-22 17:55:57 -0600239 Partitions.push_back(partition);
240 else
241 delete partition;
242 }
243 if (mapit->second.fstab_line)
244 free(mapit->second.fstab_line);
245 mapit->second.fstab_line = NULL;
246 }
247 }
248 LOGINFO("Done processing fstab files\n");
249
Matt Mower72c87ce2016-04-26 14:34:56 -0500250 std::vector<TWPartition*>::iterator iter;
251 for (iter = Partitions.begin(); iter != Partitions.end(); iter++) {
Chaosmasterf6e42ce2020-01-27 00:17:04 +0100252 if (Sar_Detect) {
253 if ((*iter)->Mount_Point == "/s")
254 return true;
255 else
256 continue;
257 }
258
Matt Mower72c87ce2016-04-26 14:34:56 -0500259 (*iter)->Partition_Post_Processing(Display_Error);
260
261 if ((*iter)->Is_Storage) {
262 ++storageid;
263 (*iter)->MTP_Storage_ID = storageid;
264 }
265
266 if (!settings_partition && (*iter)->Is_Settings_Storage && (*iter)->Is_Present)
267 settings_partition = (*iter);
268 else
269 (*iter)->Is_Settings_Storage = false;
270
271 if (!andsec_partition && (*iter)->Has_Android_Secure && (*iter)->Is_Present)
272 andsec_partition = (*iter);
273 else
274 (*iter)->Has_Android_Secure = false;
275 }
276
Ethan Yonker6277c792014-09-15 14:54:30 -0500277 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) {
278 // Attempt to automatically identify /data/media emulated storage devices
279 TWPartition* Dat = Find_Partition_By_Path("/data");
280 if (Dat) {
281 LOGINFO("Using automatic handling for /data/media emulated storage device.\n");
282 datamedia = true;
that9e0593e2014-10-08 00:01:24 +0200283 Dat->Setup_Data_Media();
Ethan Yonker6277c792014-09-15 14:54:30 -0500284 settings_partition = Dat;
Ethan Yonker726a0202014-12-16 20:01:38 -0600285 // Since /data was not considered a storage partition earlier, we still need to assign an MTP ID
286 ++storageid;
287 Dat->MTP_Storage_ID = storageid;
Ethan Yonker6277c792014-09-15 14:54:30 -0500288 }
289 }
Dees Troy02a64532014-03-19 15:23:32 +0000290 if (!settings_partition) {
Dees_Troya13d74f2013-03-24 08:54:55 -0500291 for (iter = Partitions.begin(); iter != Partitions.end(); iter++) {
292 if ((*iter)->Is_Storage) {
Dees Troy02a64532014-03-19 15:23:32 +0000293 settings_partition = (*iter);
Dees_Troya13d74f2013-03-24 08:54:55 -0500294 break;
295 }
296 }
Dees Troy02a64532014-03-19 15:23:32 +0000297 if (!settings_partition)
Dees_Troy2673cec2013-04-02 20:22:16 +0000298 LOGERR("Unable to locate storage partition for storing settings file.\n");
Dees_Troya13d74f2013-03-24 08:54:55 -0500299 }
Dees_Troy5bf43922012-09-07 16:07:55 -0400300 if (!Write_Fstab()) {
301 if (Display_Error)
Dees_Troy2673cec2013-04-02 20:22:16 +0000302 LOGERR("Error creating fstab\n");
Dees_Troy5bf43922012-09-07 16:07:55 -0400303 else
Dees_Troy2673cec2013-04-02 20:22:16 +0000304 LOGINFO("Error creating fstab\n");
Dees_Troy5bf43922012-09-07 16:07:55 -0400305 }
Matt Mowered71fa32014-04-16 13:21:47 -0500306
Matt Mowerbf4efa32014-04-14 23:25:26 -0500307 if (andsec_partition) {
308 Setup_Android_Secure_Location(andsec_partition);
Matt Mowered71fa32014-04-16 13:21:47 -0500309 } else if (settings_partition) {
Matt Mowerbf4efa32014-04-14 23:25:26 -0500310 Setup_Android_Secure_Location(settings_partition);
311 }
Matt Mowered71fa32014-04-16 13:21:47 -0500312 if (settings_partition) {
313 Setup_Settings_Storage_Partition(settings_partition);
314 }
bigbiff7ba75002020-04-11 20:47:09 -0400315
316 Update_System_Details();
317 UnMount_Main_Partitions();
318#ifdef AB_OTA_UPDATER
319 DataManager::SetValue("tw_active_slot", Get_Active_Slot_Display());
320#endif
321 setup_uevent();
322 return true;
323}
324
325int TWPartitionManager::Write_Fstab(void) {
326 FILE *fp;
327 std::vector<TWPartition*>::iterator iter;
328 string Line;
329
330 fp = fopen("/etc/fstab", "w");
331 if (fp == NULL) {
332 LOGINFO("Can not open /etc/fstab.\n");
333 return false;
334 }
335 for (iter = Partitions.begin(); iter != Partitions.end(); iter++) {
336 if ((*iter)->Can_Be_Mounted) {
337 Line = (*iter)->Actual_Block_Device + " " + (*iter)->Mount_Point + " " + (*iter)->Current_File_System + " rw 0 0\n";
338 fputs(Line.c_str(), fp);
339 }
340 // Handle subpartition tracking
341 if ((*iter)->Is_SubPartition) {
342 TWPartition* ParentPartition = Find_Partition_By_Path((*iter)->SubPartition_Of);
343 if (ParentPartition)
344 ParentPartition->Has_SubPartition = true;
345 else
346 LOGERR("Unable to locate parent partition '%s' of '%s'\n", (*iter)->SubPartition_Of.c_str(), (*iter)->Mount_Point.c_str());
347 }
348 }
349 fclose(fp);
350 return true;
351}
352
353void TWPartitionManager::Decrypt_Data() {
354 #ifdef TW_INCLUDE_CRYPTO
Ethan Yonkercceebb82014-11-18 10:17:59 -0600355 TWPartition* Decrypt_Data = Find_Partition_By_Path("/data");
356 if (Decrypt_Data && Decrypt_Data->Is_Encrypted && !Decrypt_Data->Is_Decrypted) {
Ethan Yonker93382822018-11-01 15:25:31 -0500357 if (!Decrypt_Data->Key_Directory.empty() && Mount_By_Path(Decrypt_Data->Key_Directory, false)) {
358#ifdef TW_INCLUDE_FBE_METADATA_DECRYPT
bigbiff7ba75002020-04-11 20:47:09 -0400359#ifdef USE_FSCRYPT
360 if (fscrypt_mount_metadata_encrypted(Decrypt_Data->Actual_Block_Device, Decrypt_Data->Mount_Point, false)) {
361 std::string crypto_blkdev = android::base::GetProperty("ro.crypto.fs_crypto_blkdev", "error");
362 LOGINFO("Successfully decrypted metadata encrypted data partition with new block device: '%s'\n", crypto_blkdev.c_str());
363#else
Ethan Yonker93382822018-11-01 15:25:31 -0500364 if (e4crypt_mount_metadata_encrypted(Decrypt_Data->Mount_Point, false, Decrypt_Data->Key_Directory, Decrypt_Data->Actual_Block_Device, &Decrypt_Data->Decrypted_Block_Device)) {
bigbiff7ba75002020-04-11 20:47:09 -0400365 LOGINFO("Successfully decrypted metadata encrypted data partition with new block device: '%s'\n",
366 Decrypt_Data->Decrypted_Block_Device.c_str());
367#endif
Ethan Yonker93382822018-11-01 15:25:31 -0500368 property_set("ro.crypto.state", "encrypted");
369 Decrypt_Data->Is_Decrypted = true; // Needed to make the mount function work correctly
370 int retry_count = 10;
371 while (!Decrypt_Data->Mount(false) && --retry_count)
372 usleep(500);
373 if (Decrypt_Data->Mount(false)) {
bigbiff bigbiff0be03b32019-08-27 20:50:31 -0400374 if (!Decrypt_Data->Decrypt_FBE_DE()) {
mauronofriofc79aa62019-11-23 23:13:04 +0100375 char wrappedvalue[PROPERTY_VALUE_MAX];
376 property_get("fbe.data.wrappedkey", wrappedvalue, "");
377 std::string wrappedkeyvalue(wrappedvalue);
378 if (wrappedkeyvalue == "true") {
bigbiff bigbiff0be03b32019-08-27 20:50:31 -0400379 LOGERR("Unable to decrypt FBE device\n");
mauronofriofc79aa62019-11-23 23:13:04 +0100380 } else {
381 LOGINFO("Trying wrapped key.\n");
382 property_set("fbe.data.wrappedkey", "true");
383 if (!Decrypt_Data->Decrypt_FBE_DE()) {
384 LOGERR("Unable to decrypt FBE device\n");
385 }
bigbiff bigbiff0be03b32019-08-27 20:50:31 -0400386 }
387 }
388
Ethan Yonker93382822018-11-01 15:25:31 -0500389 } else {
390 LOGINFO("Failed to mount data after metadata decrypt\n");
391 }
392 } else {
393 LOGINFO("Unable to decrypt metadata encryption\n");
394 }
395#else
396 LOGERR("Metadata FBE decrypt support not present in this TWRP\n");
397#endif
398 }
Ethan Yonkerbd7492d2016-12-07 13:55:01 -0600399 if (Decrypt_Data->Is_FBE) {
400 if (DataManager::GetIntValue(TW_CRYPTO_PWTYPE) == 0) {
401 if (Decrypt_Device("!") == 0) {
402 gui_msg("decrypt_success=Successfully decrypted with default password.");
403 DataManager::SetValue(TW_IS_ENCRYPTED, 0);
404 } else {
405 gui_err("unable_to_decrypt=Unable to decrypt with default password.");
406 }
Ethan Yonkercceebb82014-11-18 10:17:59 -0600407 }
408 } else {
Ethan Yonkerbd7492d2016-12-07 13:55:01 -0600409 int password_type = cryptfs_get_password_type();
410 if (password_type == CRYPT_TYPE_DEFAULT) {
411 LOGINFO("Device is encrypted with the default password, attempting to decrypt.\n");
412 if (Decrypt_Device("default_password") == 0) {
413 gui_msg("decrypt_success=Successfully decrypted with default password.");
414 DataManager::SetValue(TW_IS_ENCRYPTED, 0);
415 } else {
416 gui_err("unable_to_decrypt=Unable to decrypt with default password.");
417 }
418 } else {
419 DataManager::SetValue("TW_CRYPTO_TYPE", password_type);
420 }
Ethan Yonkercceebb82014-11-18 10:17:59 -0600421 }
422 }
bigbiffadc599e2020-05-28 19:36:30 +0000423 if (Decrypt_Data && (!Decrypt_Data->Is_Encrypted || Decrypt_Data->Is_Decrypted) && Decrypt_Data->Mount(false)) {
Ethan Yonker66a19492015-12-10 10:19:45 -0600424 Decrypt_Adopted();
425 }
Ethan Yonkercceebb82014-11-18 10:17:59 -0600426#endif
Dees_Troy51a0e822012-09-05 15:24:24 -0400427}
428
Ethan Yonkerc05c5982014-03-13 09:19:56 -0500429void TWPartitionManager::Setup_Settings_Storage_Partition(TWPartition* Part) {
Ethan Yonkerc05c5982014-03-13 09:19:56 -0500430 DataManager::SetValue("tw_settings_path", Part->Storage_Path);
431 DataManager::SetValue("tw_storage_path", Part->Storage_Path);
432 LOGINFO("Settings storage is '%s'\n", Part->Storage_Path.c_str());
433}
434
Matt Mowerbf4efa32014-04-14 23:25:26 -0500435void TWPartitionManager::Setup_Android_Secure_Location(TWPartition* Part) {
436 if (Part->Has_Android_Secure)
437 Part->Setup_AndSec();
Ethan Yonker6277c792014-09-15 14:54:30 -0500438 else if (!datamedia)
Matt Mowerbf4efa32014-04-14 23:25:26 -0500439 Part->Setup_AndSec();
Matt Mowerbf4efa32014-04-14 23:25:26 -0500440}
441
Dees_Troy8170a922012-09-18 15:40:25 -0400442void TWPartitionManager::Output_Partition_Logging(void) {
443 std::vector<TWPartition*>::iterator iter;
444
445 printf("\n\nPartition Logs:\n");
446 for (iter = Partitions.begin(); iter != Partitions.end(); iter++)
447 Output_Partition((*iter));
448}
449
450void TWPartitionManager::Output_Partition(TWPartition* Part) {
451 unsigned long long mb = 1048576;
452
Gary Peck004d48b2012-11-21 16:28:18 -0800453 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 -0400454 if (Part->Can_Be_Mounted) {
Gary Peck004d48b2012-11-21 16:28:18 -0800455 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 -0400456 }
Gary Peck004d48b2012-11-21 16:28:18 -0800457 printf("\n Flags: ");
Dees_Troya13d74f2013-03-24 08:54:55 -0500458 if (Part->Can_Be_Mounted)
459 printf("Can_Be_Mounted ");
Gary Peck004d48b2012-11-21 16:28:18 -0800460 if (Part->Can_Be_Wiped)
461 printf("Can_Be_Wiped ");
Hashcodedabfd492013-08-29 22:45:30 -0700462 if (Part->Use_Rm_Rf)
463 printf("Use_Rm_Rf ");
Dees_Troya13d74f2013-03-24 08:54:55 -0500464 if (Part->Can_Be_Backed_Up)
465 printf("Can_Be_Backed_Up ");
Gary Peck004d48b2012-11-21 16:28:18 -0800466 if (Part->Wipe_During_Factory_Reset)
467 printf("Wipe_During_Factory_Reset ");
468 if (Part->Wipe_Available_in_GUI)
469 printf("Wipe_Available_in_GUI ");
470 if (Part->Is_SubPartition)
471 printf("Is_SubPartition ");
472 if (Part->Has_SubPartition)
473 printf("Has_SubPartition ");
474 if (Part->Removable)
475 printf("Removable ");
476 if (Part->Is_Present)
477 printf("IsPresent ");
478 if (Part->Can_Be_Encrypted)
479 printf("Can_Be_Encrypted ");
480 if (Part->Is_Encrypted)
481 printf("Is_Encrypted ");
482 if (Part->Is_Decrypted)
483 printf("Is_Decrypted ");
484 if (Part->Has_Data_Media)
485 printf("Has_Data_Media ");
Dees_Troy83bd4832013-05-04 12:39:56 +0000486 if (Part->Can_Encrypt_Backup)
487 printf("Can_Encrypt_Backup ");
488 if (Part->Use_Userdata_Encryption)
489 printf("Use_Userdata_Encryption ");
Gary Peck004d48b2012-11-21 16:28:18 -0800490 if (Part->Has_Android_Secure)
491 printf("Has_Android_Secure ");
492 if (Part->Is_Storage)
493 printf("Is_Storage ");
Dees_Troya13d74f2013-03-24 08:54:55 -0500494 if (Part->Is_Settings_Storage)
495 printf("Is_Settings_Storage ");
Dees_Troy68cab492012-12-12 19:29:35 +0000496 if (Part->Ignore_Blkid)
497 printf("Ignore_Blkid ");
Ethan Yonker253368a2014-11-25 15:00:52 -0600498 if (Part->Mount_To_Decrypt)
499 printf("Mount_To_Decrypt ");
Ethan Yonker96af84a2015-01-05 14:58:36 -0600500 if (Part->Can_Flash_Img)
501 printf("Can_Flash_Img ");
Ethan Yonker66a19492015-12-10 10:19:45 -0600502 if (Part->Is_Adopted_Storage)
503 printf("Is_Adopted_Storage ");
Ethan Yonker1b190162016-12-05 15:25:19 -0600504 if (Part->SlotSelect)
505 printf("SlotSelect ");
Ethan Yonker6e8c27a2016-12-22 17:55:57 -0600506 if (Part->Mount_Read_Only)
507 printf("Mount_Read_Only ");
Gary Peck004d48b2012-11-21 16:28:18 -0800508 printf("\n");
509 if (!Part->SubPartition_Of.empty())
510 printf(" SubPartition_Of: %s\n", Part->SubPartition_Of.c_str());
511 if (!Part->Symlink_Path.empty())
512 printf(" Symlink_Path: %s\n", Part->Symlink_Path.c_str());
513 if (!Part->Symlink_Mount_Point.empty())
514 printf(" Symlink_Mount_Point: %s\n", Part->Symlink_Mount_Point.c_str());
515 if (!Part->Primary_Block_Device.empty())
516 printf(" Primary_Block_Device: %s\n", Part->Primary_Block_Device.c_str());
517 if (!Part->Alternate_Block_Device.empty())
518 printf(" Alternate_Block_Device: %s\n", Part->Alternate_Block_Device.c_str());
519 if (!Part->Decrypted_Block_Device.empty())
520 printf(" Decrypted_Block_Device: %s\n", Part->Decrypted_Block_Device.c_str());
dianlujitao4879b372018-12-03 18:45:47 +0800521 if (!Part->Crypto_Key_Location.empty())
Ethan Yonker253368a2014-11-25 15:00:52 -0600522 printf(" Crypto_Key_Location: %s\n", Part->Crypto_Key_Location.c_str());
Gary Peck004d48b2012-11-21 16:28:18 -0800523 if (Part->Length != 0)
524 printf(" Length: %i\n", Part->Length);
525 if (!Part->Display_Name.empty())
526 printf(" Display_Name: %s\n", Part->Display_Name.c_str());
Dees_Troya13d74f2013-03-24 08:54:55 -0500527 if (!Part->Storage_Name.empty())
528 printf(" Storage_Name: %s\n", Part->Storage_Name.c_str());
Gary Peck004d48b2012-11-21 16:28:18 -0800529 if (!Part->Backup_Path.empty())
530 printf(" Backup_Path: %s\n", Part->Backup_Path.c_str());
531 if (!Part->Backup_Name.empty())
532 printf(" Backup_Name: %s\n", Part->Backup_Name.c_str());
Dees_Troya13d74f2013-03-24 08:54:55 -0500533 if (!Part->Backup_Display_Name.empty())
534 printf(" Backup_Display_Name: %s\n", Part->Backup_Display_Name.c_str());
Gary Peck004d48b2012-11-21 16:28:18 -0800535 if (!Part->Backup_FileName.empty())
536 printf(" Backup_FileName: %s\n", Part->Backup_FileName.c_str());
537 if (!Part->Storage_Path.empty())
538 printf(" Storage_Path: %s\n", Part->Storage_Path.c_str());
539 if (!Part->Current_File_System.empty())
540 printf(" Current_File_System: %s\n", Part->Current_File_System.c_str());
541 if (!Part->Fstab_File_System.empty())
542 printf(" Fstab_File_System: %s\n", Part->Fstab_File_System.c_str());
543 if (Part->Format_Block_Size != 0)
Ethan Yonkerc798c9c2015-10-09 11:15:26 -0500544 printf(" Format_Block_Size: %lu\n", Part->Format_Block_Size);
Dees_Troy094207a2012-09-26 12:00:39 -0400545 if (!Part->MTD_Name.empty())
546 printf(" MTD_Name: %s\n", Part->MTD_Name.c_str());
Matt Mower029a82d2017-01-08 13:12:38 -0600547 printf(" Backup_Method: %s\n", Part->Backup_Method_By_Name().c_str());
Hashcode62bd9e02013-11-19 21:59:42 -0800548 if (Part->Mount_Flags || !Part->Mount_Options.empty())
Ethan Yonker6e8c27a2016-12-22 17:55:57 -0600549 printf(" Mount_Flags: %i, Mount_Options: %s\n", Part->Mount_Flags, Part->Mount_Options.c_str());
Ethan Yonker726a0202014-12-16 20:01:38 -0600550 if (Part->MTP_Storage_ID)
551 printf(" MTP_Storage_ID: %i\n", Part->MTP_Storage_ID);
Ethan Yonker93382822018-11-01 15:25:31 -0500552 if (!Part->Key_Directory.empty())
553 printf(" Metadata Key Directory: %s\n", Part->Key_Directory.c_str());
Ethan Yonker6277c792014-09-15 14:54:30 -0500554 printf("\n");
Dees_Troy8170a922012-09-18 15:40:25 -0400555}
556
Dees_Troy51a0e822012-09-05 15:24:24 -0400557int TWPartitionManager::Mount_By_Path(string Path, bool Display_Error) {
Dees_Troy5bf43922012-09-07 16:07:55 -0400558 std::vector<TWPartition*>::iterator iter;
559 int ret = false;
560 bool found = false;
Dees_Troy38bd7602012-09-14 13:33:53 -0400561 string Local_Path = TWFunc::Get_Root_Path(Path);
Dees_Troy5bf43922012-09-07 16:07:55 -0400562
bigbiffd58ba182020-03-23 10:02:29 -0400563 if (Local_Path == "/tmp" || Local_Path == "/")
Dees_Troy43d8b002012-09-17 16:00:01 -0400564 return true;
565
Dees_Troy5bf43922012-09-07 16:07:55 -0400566 // Iterate through all partitions
567 for (iter = Partitions.begin(); iter != Partitions.end(); iter++) {
Dees_Troy657c3092012-09-10 20:32:10 -0400568 if ((*iter)->Mount_Point == Local_Path || (!(*iter)->Symlink_Mount_Point.empty() && (*iter)->Symlink_Mount_Point == Local_Path)) {
Dees_Troy5bf43922012-09-07 16:07:55 -0400569 ret = (*iter)->Mount(Display_Error);
570 found = true;
Dees_Troy51127312012-09-08 13:08:49 -0400571 } else if ((*iter)->Is_SubPartition && (*iter)->SubPartition_Of == Local_Path) {
Dees_Troy5bf43922012-09-07 16:07:55 -0400572 (*iter)->Mount(Display_Error);
Dees_Troy51127312012-09-08 13:08:49 -0400573 }
Dees_Troy5bf43922012-09-07 16:07:55 -0400574 }
575 if (found) {
576 return ret;
577 } else if (Display_Error) {
Ethan Yonker74db1572015-10-28 12:44:49 -0500578 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 -0400579 } else {
Dees_Troy2673cec2013-04-02 20:22:16 +0000580 LOGINFO("Mount: Unable to find partition for path '%s'\n", Local_Path.c_str());
Dees_Troy5bf43922012-09-07 16:07:55 -0400581 }
582 return false;
Dees_Troy51a0e822012-09-05 15:24:24 -0400583}
584
Dees_Troy51a0e822012-09-05 15:24:24 -0400585int TWPartitionManager::UnMount_By_Path(string Path, bool Display_Error) {
Dees_Troy51127312012-09-08 13:08:49 -0400586 std::vector<TWPartition*>::iterator iter;
587 int ret = false;
588 bool found = false;
Dees_Troy38bd7602012-09-14 13:33:53 -0400589 string Local_Path = TWFunc::Get_Root_Path(Path);
Dees_Troy51127312012-09-08 13:08:49 -0400590
591 // Iterate through all partitions
592 for (iter = Partitions.begin(); iter != Partitions.end(); iter++) {
Dees_Troy657c3092012-09-10 20:32:10 -0400593 if ((*iter)->Mount_Point == Local_Path || (!(*iter)->Symlink_Mount_Point.empty() && (*iter)->Symlink_Mount_Point == Local_Path)) {
Dees_Troy51127312012-09-08 13:08:49 -0400594 ret = (*iter)->UnMount(Display_Error);
595 found = true;
596 } else if ((*iter)->Is_SubPartition && (*iter)->SubPartition_Of == Local_Path) {
597 (*iter)->UnMount(Display_Error);
598 }
599 }
600 if (found) {
601 return ret;
602 } else if (Display_Error) {
Ethan Yonker74db1572015-10-28 12:44:49 -0500603 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 -0400604 } else {
Dees_Troy2673cec2013-04-02 20:22:16 +0000605 LOGINFO("UnMount: Unable to find partition for path '%s'\n", Local_Path.c_str());
Dees_Troy51127312012-09-08 13:08:49 -0400606 }
607 return false;
Dees_Troy51a0e822012-09-05 15:24:24 -0400608}
609
Dees_Troy51a0e822012-09-05 15:24:24 -0400610int TWPartitionManager::Is_Mounted_By_Path(string Path) {
Dees_Troy51127312012-09-08 13:08:49 -0400611 TWPartition* Part = Find_Partition_By_Path(Path);
612
613 if (Part)
614 return Part->Is_Mounted();
615 else
Dees_Troy2673cec2013-04-02 20:22:16 +0000616 LOGINFO("Is_Mounted: Unable to find partition for path '%s'\n", Path.c_str());
Dees_Troy51127312012-09-08 13:08:49 -0400617 return false;
Dees_Troy51a0e822012-09-05 15:24:24 -0400618}
619
Dees_Troy5bf43922012-09-07 16:07:55 -0400620int TWPartitionManager::Mount_Current_Storage(bool Display_Error) {
Dees_Troy51127312012-09-08 13:08:49 -0400621 string current_storage_path = DataManager::GetCurrentStoragePath();
622
623 if (Mount_By_Path(current_storage_path, Display_Error)) {
624 TWPartition* FreeStorage = Find_Partition_By_Path(current_storage_path);
625 if (FreeStorage)
626 DataManager::SetValue(TW_STORAGE_FREE_SIZE, (int)(FreeStorage->Free / 1048576LLU));
627 return true;
628 }
629 return false;
Dees_Troy51a0e822012-09-05 15:24:24 -0400630}
631
Dees_Troy5bf43922012-09-07 16:07:55 -0400632int TWPartitionManager::Mount_Settings_Storage(bool Display_Error) {
633 return Mount_By_Path(DataManager::GetSettingsStoragePath(), Display_Error);
634}
635
Ethan Yonker6e8c27a2016-12-22 17:55:57 -0600636TWPartition* TWPartitionManager::Find_Partition_By_Path(const string& Path) {
Dees_Troy5bf43922012-09-07 16:07:55 -0400637 std::vector<TWPartition*>::iterator iter;
Dees_Troy38bd7602012-09-14 13:33:53 -0400638 string Local_Path = TWFunc::Get_Root_Path(Path);
Dees_Troy5bf43922012-09-07 16:07:55 -0400639
dianlujitaob76a73a2020-04-30 20:33:20 +0800640 if (Local_Path == "/system")
641 Local_Path = Get_Android_Root_Path();
Dees_Troy5bf43922012-09-07 16:07:55 -0400642 for (iter = Partitions.begin(); iter != Partitions.end(); iter++) {
Dees_Troy657c3092012-09-10 20:32:10 -0400643 if ((*iter)->Mount_Point == Local_Path || (!(*iter)->Symlink_Mount_Point.empty() && (*iter)->Symlink_Mount_Point == Local_Path))
Dees_Troy5bf43922012-09-07 16:07:55 -0400644 return (*iter);
645 }
Dees_Troy51a0e822012-09-05 15:24:24 -0400646 return NULL;
647}
648
Ethan Yonker6e8c27a2016-12-22 17:55:57 -0600649TWPartition* TWPartitionManager::Find_Partition_By_Block_Device(const string& Block_Device) {
650 std::vector<TWPartition*>::iterator iter;
651
652 for (iter = Partitions.begin(); iter != Partitions.end(); iter++) {
653 if ((*iter)->Primary_Block_Device == Block_Device || (!(*iter)->Actual_Block_Device.empty() && (*iter)->Actual_Block_Device == Block_Device))
654 return (*iter);
655 }
656 return NULL;
657}
658
Ethan Yonker53796e72019-01-11 22:49:52 -0600659int TWPartitionManager::Check_Backup_Name(const std::string& Backup_Name, bool Display_Error, bool Must_Be_Unique) {
Dees_Troyc9ff7a32012-09-27 10:09:41 -0400660 // Check the backup name to ensure that it is the correct size and contains only valid characters
661 // and that a backup with that name doesn't already exist
662 char backup_name[MAX_BACKUP_NAME_LEN];
663 char backup_loc[255], tw_image_dir[255];
664 int copy_size;
665 int index, cur_char;
Ethan Yonker53796e72019-01-11 22:49:52 -0600666 string Backup_Loc;
Dees_Troyc9ff7a32012-09-27 10:09:41 -0400667
Dees_Troyc9ff7a32012-09-27 10:09:41 -0400668 copy_size = Backup_Name.size();
669 // Check size
670 if (copy_size > MAX_BACKUP_NAME_LEN) {
671 if (Display_Error)
Ethan Yonker74db1572015-10-28 12:44:49 -0500672 gui_err("backup_name_len=Backup name is too long.");
Dees_Troyc9ff7a32012-09-27 10:09:41 -0400673 return -2;
674 }
675
676 // Check each character
677 strncpy(backup_name, Backup_Name.c_str(), copy_size);
Dees_Troya13d74f2013-03-24 08:54:55 -0500678 if (copy_size == 1 && strncmp(backup_name, "0", 1) == 0)
Dees_Troyc9ff7a32012-09-27 10:09:41 -0400679 return 0; // A "0" (zero) means to use the current timestamp for the backup name
680 for (index=0; index<copy_size; index++) {
681 cur_char = (int)backup_name[index];
Matt Mowerfb1c4ff2014-04-16 13:43:36 -0500682 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 -0400683 // These are valid characters
684 // Numbers
685 // Upper case letters
686 // Lower case letters
687 // Space
688 // and -_.{}[]
689 } else {
690 if (Display_Error)
Ethan Yonker4adc33e2016-01-22 16:07:11 -0600691 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 -0400692 return -3;
693 }
694 }
695
Ethan Yonker53796e72019-01-11 22:49:52 -0600696 if (Must_Be_Unique) {
697 // Check to make sure that a backup with this name doesn't already exist
698 DataManager::GetValue(TW_BACKUPS_FOLDER_VAR, Backup_Loc);
699 strcpy(backup_loc, Backup_Loc.c_str());
700 sprintf(tw_image_dir,"%s/%s", backup_loc, Backup_Name.c_str());
701 if (TWFunc::Path_Exists(tw_image_dir)) {
702 if (Display_Error)
703 gui_err("backup_name_exists=A backup with that name already exists!");
bigbiffce8f83c2015-12-12 18:30:21 -0500704
Ethan Yonker53796e72019-01-11 22:49:52 -0600705 return -4;
706 }
707 // Backup is unique
Dees_Troyc9ff7a32012-09-27 10:09:41 -0400708 }
Ethan Yonker53796e72019-01-11 22:49:52 -0600709 // No problems found
Dees_Troyc9ff7a32012-09-27 10:09:41 -0400710 return 0;
711}
712
bigbiffce8f83c2015-12-12 18:30:21 -0500713bool TWPartitionManager::Backup_Partition(PartitionSettings *part_settings) {
Dees_Troy43d8b002012-09-17 16:00:01 -0400714 time_t start, stop;
Matt Mower23d8aae2017-01-06 14:30:33 -0600715 int use_compression;
bigbiffce8f83c2015-12-12 18:30:21 -0500716 string backup_log = part_settings->Backup_Folder + "/recovery.log";
Dees_Troy43d8b002012-09-17 16:00:01 -0400717
bigbiffce8f83c2015-12-12 18:30:21 -0500718 if (part_settings->Part == NULL)
Dees_Troy43d8b002012-09-17 16:00:01 -0400719 return true;
720
Dees_Troy093b7642012-09-21 15:59:38 -0400721 DataManager::GetValue(TW_USE_COMPRESSION_VAR, use_compression);
Dees_Troy093b7642012-09-21 15:59:38 -0400722
Tom Hite5a926722014-09-15 01:31:03 +0000723 TWFunc::SetPerformanceMode(true);
Dees_Troy43d8b002012-09-17 16:00:01 -0400724 time(&start);
725
bigbiffce8f83c2015-12-12 18:30:21 -0500726 if (part_settings->Part->Backup(part_settings, &tar_fork_pid)) {
Ethan Yonkercd00a8b2017-07-06 10:23:30 -0500727 sync();
728 sync();
bigbiff bigbiff56cf5642016-08-19 17:43:45 -0400729 string Full_Filename = part_settings->Backup_Folder + "/" + part_settings->Part->Backup_FileName;
Ethan Yonkercd00a8b2017-07-06 10:23:30 -0500730 if (!part_settings->adbbackup && part_settings->generate_digest) {
731 if (!twrpDigestDriver::Make_Digest(Full_Filename))
732 goto backup_error;
bigbiff bigbiff56cf5642016-08-19 17:43:45 -0400733 }
bigbiff bigbiff8fd4b092016-08-30 20:48:53 -0400734
bigbiffce8f83c2015-12-12 18:30:21 -0500735 if (part_settings->Part->Has_SubPartition) {
Dees_Troy8170a922012-09-18 15:40:25 -0400736 std::vector<TWPartition*>::iterator subpart;
bigbiff bigbiff8fd4b092016-08-30 20:48:53 -0400737 TWPartition *parentPart = part_settings->Part;
Dees_Troy8170a922012-09-18 15:40:25 -0400738
739 for (subpart = Partitions.begin(); subpart != Partitions.end(); subpart++) {
bigbiff bigbiff8fd4b092016-08-30 20:48:53 -0400740 if ((*subpart)->Can_Be_Backed_Up && (*subpart)->Is_SubPartition && (*subpart)->SubPartition_Of == parentPart->Mount_Point) {
Ethan Yonkerdcf2b672016-09-13 14:41:53 -0500741 part_settings->Part = *subpart;
bigbiffce8f83c2015-12-12 18:30:21 -0500742 if (!(*subpart)->Backup(part_settings, &tar_fork_pid)) {
Ethan Yonkercd00a8b2017-07-06 10:23:30 -0500743 goto backup_error;
Tom Hite5a926722014-09-15 01:31:03 +0000744 }
Dees_Troy2727b992013-08-14 20:09:30 +0000745 sync();
746 sync();
bigbiff bigbifff5955b12019-05-18 17:28:58 -0400747 string Full_Filename = part_settings->Backup_Folder + "/" + part_settings->Part->Backup_FileName;
bigbiff bigbiff56cf5642016-08-19 17:43:45 -0400748 if (!part_settings->adbbackup && part_settings->generate_digest) {
749 if (!twrpDigestDriver::Make_Digest(Full_Filename)) {
Ethan Yonkercd00a8b2017-07-06 10:23:30 -0500750 goto backup_error;
bigbiffce8f83c2015-12-12 18:30:21 -0500751 }
Tom Hite5a926722014-09-15 01:31:03 +0000752 }
Dees_Troy8170a922012-09-18 15:40:25 -0400753 }
754 }
755 }
bigbiff bigbiff56cf5642016-08-19 17:43:45 -0400756
Dees_Troy43d8b002012-09-17 16:00:01 -0400757 time(&stop);
that203bcc92015-05-09 17:27:33 +0200758 int backup_time = (int) difftime(stop, start);
Dees_Troy2673cec2013-04-02 20:22:16 +0000759 LOGINFO("Partition Backup time: %d\n", backup_time);
bigbiff bigbiff8fd4b092016-08-30 20:48:53 -0400760
bigbiffce8f83c2015-12-12 18:30:21 -0500761 if (part_settings->Part->Backup_Method == BM_FILES) {
762 part_settings->file_time += backup_time;
Dees_Troy43d8b002012-09-17 16:00:01 -0400763 } else {
bigbiffce8f83c2015-12-12 18:30:21 -0500764 part_settings->img_time += backup_time;
765
Dees_Troy43d8b002012-09-17 16:00:01 -0400766 }
Tom Hite5a926722014-09-15 01:31:03 +0000767
Matt Mower02899552016-12-30 18:13:51 -0600768 TWFunc::SetPerformanceMode(false);
Ethan Yonkercd00a8b2017-07-06 10:23:30 -0500769 return true;
Dees_Troy43d8b002012-09-17 16:00:01 -0400770 }
Ethan Yonkercd00a8b2017-07-06 10:23:30 -0500771backup_error:
772 Clean_Backup_Folder(part_settings->Backup_Folder);
773 TWFunc::copy_file("/tmp/recovery.log", backup_log, 0644);
774 tw_set_default_metadata(backup_log.c_str());
775 TWFunc::SetPerformanceMode(false);
776 return false;
bigbiff7abc5fe2015-01-17 16:53:12 -0500777}
778
bigbiffbf1d6722015-02-14 16:25:59 -0500779void TWPartitionManager::Clean_Backup_Folder(string Backup_Folder) {
780 DIR *d = opendir(Backup_Folder.c_str());
781 struct dirent *p;
782 int r;
bigbiff bigbiff56cf5642016-08-19 17:43:45 -0400783 vector<string> ext;
784
785 //extensions we should delete when cleaning
786 ext.push_back("win");
787 ext.push_back("md5");
788 ext.push_back("sha2");
789 ext.push_back("info");
bigbiffbf1d6722015-02-14 16:25:59 -0500790
Ethan Yonker74db1572015-10-28 12:44:49 -0500791 gui_msg("backup_clean=Backup Failed. Cleaning Backup Folder.");
bigbiffbf1d6722015-02-14 16:25:59 -0500792
793 if (d == NULL) {
Ethan Yonker74db1572015-10-28 12:44:49 -0500794 gui_msg(Msg(msg::kError, "error_opening_strerr=Error opening: '{1}' ({2})")(Backup_Folder)(strerror(errno)));
bigbiffbf1d6722015-02-14 16:25:59 -0500795 return;
796 }
797
Matt Mower2b18a532015-02-20 16:58:05 -0600798 while ((p = readdir(d))) {
bigbiffbf1d6722015-02-14 16:25:59 -0500799 if (!strcmp(p->d_name, ".") || !strcmp(p->d_name, ".."))
800 continue;
801
Ethan Yonkere080c1f2016-09-19 13:50:25 -0500802 string path = Backup_Folder + "/" + p->d_name;
bigbiffbf1d6722015-02-14 16:25:59 -0500803
804 size_t dot = path.find_last_of(".") + 1;
bigbiff bigbiff56cf5642016-08-19 17:43:45 -0400805 for (vector<string>::const_iterator i = ext.begin(); i != ext.end(); ++i) {
806 if (path.substr(dot) == *i) {
807 r = unlink(path.c_str());
808 if (r != 0)
809 LOGINFO("Unable to unlink '%s: %s'\n", path.c_str(), strerror(errno));
bigbiffbf1d6722015-02-14 16:25:59 -0500810 }
811 }
812 }
813 closedir(d);
814}
815
Ethan Yonker472f5062016-02-25 13:47:30 -0600816int TWPartitionManager::Check_Backup_Cancel() {
817 return stop_backup.get_value();
818}
819
bigbiff7abc5fe2015-01-17 16:53:12 -0500820int TWPartitionManager::Cancel_Backup() {
821 string Backup_Folder, Backup_Name, Full_Backup_Path;
822
823 stop_backup.set_value(1);
824
825 if (tar_fork_pid != 0) {
826 DataManager::GetValue(TW_BACKUP_NAME, Backup_Name);
827 DataManager::GetValue(TW_BACKUPS_FOLDER_VAR, Backup_Folder);
Ethan Yonkere080c1f2016-09-19 13:50:25 -0500828 Full_Backup_Path = Backup_Folder + "/" + Backup_Name;
bigbiff7abc5fe2015-01-17 16:53:12 -0500829 LOGINFO("Killing pid: %d\n", tar_fork_pid);
830 kill(tar_fork_pid, SIGUSR2);
831 while (kill(tar_fork_pid, 0) == 0) {
832 usleep(1000);
833 }
834 LOGINFO("Backup_Run stopped and returning false, backup cancelled.\n");
835 LOGINFO("Removing directory %s\n", Full_Backup_Path.c_str());
836 TWFunc::removeDir(Full_Backup_Path, false);
837 tar_fork_pid = 0;
838 }
839
840 return 0;
Dees_Troy43d8b002012-09-17 16:00:01 -0400841}
842
bigbiffce8f83c2015-12-12 18:30:21 -0500843int TWPartitionManager::Run_Backup(bool adbbackup) {
844 PartitionSettings part_settings;
bigbiff bigbiff56cf5642016-08-19 17:43:45 -0400845 int partition_count = 0, disable_free_space_check = 0, skip_digest = 0;
bigbiffce8f83c2015-12-12 18:30:21 -0500846 string Backup_Name, Backup_List, backup_path;
Matt Mower23d8aae2017-01-06 14:30:33 -0600847 unsigned long long total_bytes = 0, free_space = 0;
Dees_Troy43d8b002012-09-17 16:00:01 -0400848 TWPartition* storage = NULL;
849 struct tm *t;
Matt Mower23d8aae2017-01-06 14:30:33 -0600850 time_t seconds, total_start, total_stop;
Dees_Troya13d74f2013-03-24 08:54:55 -0500851 size_t start_pos = 0, end_pos = 0;
bigbiff7abc5fe2015-01-17 16:53:12 -0500852 stop_backup.set_value(0);
Dees_Troy43d8b002012-09-17 16:00:01 -0400853 seconds = time(0);
Matt Mowerfb1c4ff2014-04-16 13:43:36 -0500854 t = localtime(&seconds);
Dees_Troy43d8b002012-09-17 16:00:01 -0400855
bigbiffce8f83c2015-12-12 18:30:21 -0500856 part_settings.img_bytes_remaining = 0;
857 part_settings.file_bytes_remaining = 0;
858 part_settings.img_time = 0;
859 part_settings.file_time = 0;
860 part_settings.img_bytes = 0;
861 part_settings.file_bytes = 0;
862 part_settings.PM_Method = PM_BACKUP;
863
bigbiffce8f83c2015-12-12 18:30:21 -0500864 part_settings.adbbackup = adbbackup;
Dees_Troy43d8b002012-09-17 16:00:01 -0400865 time(&total_start);
866
867 Update_System_Details();
868
869 if (!Mount_Current_Storage(true))
870 return false;
871
bigbiff bigbiff56cf5642016-08-19 17:43:45 -0400872 DataManager::GetValue(TW_SKIP_DIGEST_GENERATE_VAR, skip_digest);
873 if (skip_digest == 0)
874 part_settings.generate_digest = true;
Dees_Troyc5865ab2012-09-24 15:08:04 -0400875 else
bigbiff bigbiff56cf5642016-08-19 17:43:45 -0400876 part_settings.generate_digest = false;
Dees_Troy4a2a1262012-09-18 09:33:47 -0400877
bigbiffce8f83c2015-12-12 18:30:21 -0500878 DataManager::GetValue(TW_BACKUPS_FOLDER_VAR, part_settings.Backup_Folder);
Ethan Yonkerdcf2b672016-09-13 14:41:53 -0500879 DataManager::GetValue(TW_BACKUP_NAME, Backup_Name);
880 if (Backup_Name == gui_lookup("curr_date", "(Current Date)")) {
881 Backup_Name = TWFunc::Get_Current_Date();
882 } else if (Backup_Name == gui_lookup("auto_generate", "(Auto Generate)") || Backup_Name == "0" || Backup_Name.empty()) {
Dees Troyb21cc642013-09-10 17:36:41 +0000883 TWFunc::Auto_Generate_Backup_Name();
Ethan Yonkerdcf2b672016-09-13 14:41:53 -0500884 DataManager::GetValue(TW_BACKUP_NAME, Backup_Name);
Dees_Troy43d8b002012-09-17 16:00:01 -0400885 }
bigbiffce8f83c2015-12-12 18:30:21 -0500886
Ethan Yonkerdcf2b672016-09-13 14:41:53 -0500887 LOGINFO("Backup Name is: '%s'\n", Backup_Name.c_str());
Ethan Yonkere080c1f2016-09-19 13:50:25 -0500888 part_settings.Backup_Folder = part_settings.Backup_Folder + "/" + Backup_Name;
bigbiffce8f83c2015-12-12 18:30:21 -0500889
Ethan Yonkere080c1f2016-09-19 13:50:25 -0500890 LOGINFO("Backup_Folder is: '%s'\n", part_settings.Backup_Folder.c_str());
Dees_Troy43d8b002012-09-17 16:00:01 -0400891
Dees_Troy2673cec2013-04-02 20:22:16 +0000892 LOGINFO("Calculating backup details...\n");
Dees_Troya13d74f2013-03-24 08:54:55 -0500893 DataManager::GetValue("tw_backup_list", Backup_List);
bigbiff7ba75002020-04-11 20:47:09 -0400894 LOGINFO("Backup_List: %s\n", Backup_List.c_str());
Dees_Troya13d74f2013-03-24 08:54:55 -0500895 if (!Backup_List.empty()) {
896 end_pos = Backup_List.find(";", start_pos);
897 while (end_pos != string::npos && start_pos < Backup_List.size()) {
898 backup_path = Backup_List.substr(start_pos, end_pos - start_pos);
bigbiff7ba75002020-04-11 20:47:09 -0400899 LOGINFO("backup_path: %s\n", backup_path.c_str());
bigbiffce8f83c2015-12-12 18:30:21 -0500900 part_settings.Part = Find_Partition_By_Path(backup_path);
901 if (part_settings.Part != NULL) {
Dees_Troya13d74f2013-03-24 08:54:55 -0500902 partition_count++;
bigbiffce8f83c2015-12-12 18:30:21 -0500903 if (part_settings.Part->Backup_Method == BM_FILES)
904 part_settings.file_bytes += part_settings.Part->Backup_Size;
Dees_Troya13d74f2013-03-24 08:54:55 -0500905 else
bigbiffce8f83c2015-12-12 18:30:21 -0500906 part_settings.img_bytes += part_settings.Part->Backup_Size;
907 if (part_settings.Part->Has_SubPartition) {
Dees_Troya13d74f2013-03-24 08:54:55 -0500908 std::vector<TWPartition*>::iterator subpart;
909
910 for (subpart = Partitions.begin(); subpart != Partitions.end(); subpart++) {
bigbiffce8f83c2015-12-12 18:30:21 -0500911 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 -0500912 partition_count++;
bigbiffce8f83c2015-12-12 18:30:21 -0500913 if ((*subpart)->Backup_Method == BM_FILES)
914 part_settings.file_bytes += (*subpart)->Backup_Size;
Dees_Troya13d74f2013-03-24 08:54:55 -0500915 else
bigbiffce8f83c2015-12-12 18:30:21 -0500916 part_settings.img_bytes += (*subpart)->Backup_Size;
Dees_Troya13d74f2013-03-24 08:54:55 -0500917 }
918 }
Dees_Troy8170a922012-09-18 15:40:25 -0400919 }
Dees_Troya13d74f2013-03-24 08:54:55 -0500920 } else {
Ethan Yonker74db1572015-10-28 12:44:49 -0500921 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 -0400922 }
Dees_Troya13d74f2013-03-24 08:54:55 -0500923 start_pos = end_pos + 1;
924 end_pos = Backup_List.find(";", start_pos);
Dees_Troy43d8b002012-09-17 16:00:01 -0400925 }
926 }
Dees_Troy43d8b002012-09-17 16:00:01 -0400927
928 if (partition_count == 0) {
Ethan Yonker74db1572015-10-28 12:44:49 -0500929 gui_msg("no_partition_selected=No partitions selected for backup.");
Dees_Troy43d8b002012-09-17 16:00:01 -0400930 return false;
931 }
bigbiffce8f83c2015-12-12 18:30:21 -0500932 if (adbbackup) {
933 if (twadbbu::Write_ADB_Stream_Header(partition_count) == false) {
934 return false;
935 }
936 }
937 total_bytes = part_settings.file_bytes + part_settings.img_bytes;
Ethan Yonker472f5062016-02-25 13:47:30 -0600938 ProgressTracking progress(total_bytes);
bigbiffce8f83c2015-12-12 18:30:21 -0500939 part_settings.progress = &progress;
940
Ethan Yonker74db1572015-10-28 12:44:49 -0500941 gui_msg(Msg("total_partitions_backup= * Total number of partitions to back up: {1}")(partition_count));
942 gui_msg(Msg("total_backup_size= * Total size of all data: {1}MB")(total_bytes / 1024 / 1024));
Dees_Troy43d8b002012-09-17 16:00:01 -0400943 storage = Find_Partition_By_Path(DataManager::GetCurrentStoragePath());
944 if (storage != NULL) {
945 free_space = storage->Free;
Ethan Yonker74db1572015-10-28 12:44:49 -0500946 gui_msg(Msg("available_space= * Available space: {1}MB")(free_space / 1024 / 1024));
Dees_Troy43d8b002012-09-17 16:00:01 -0400947 } else {
Ethan Yonker74db1572015-10-28 12:44:49 -0500948 gui_err("unable_locate_storage=Unable to locate storage device.");
Dees_Troy43d8b002012-09-17 16:00:01 -0400949 return false;
950 }
bigbiffbf1d6722015-02-14 16:25:59 -0500951
Matt Mowerbfccfb82016-04-25 23:22:31 -0500952 DataManager::GetValue(TW_DISABLE_FREE_SPACE_VAR, disable_free_space_check);
bigbiffce8f83c2015-12-12 18:30:21 -0500953
954 if (adbbackup)
955 disable_free_space_check = true;
956
bigbiffbf1d6722015-02-14 16:25:59 -0500957 if (!disable_free_space_check) {
958 if (free_space - (32 * 1024 * 1024) < total_bytes) {
959 // We require an extra 32MB just in case
Ethan Yonker74db1572015-10-28 12:44:49 -0500960 gui_err("no_space=Not enough free space on storage.");
bigbiffbf1d6722015-02-14 16:25:59 -0500961 return false;
962 }
Dees_Troy43d8b002012-09-17 16:00:01 -0400963 }
bigbiffce8f83c2015-12-12 18:30:21 -0500964 part_settings.img_bytes_remaining = part_settings.img_bytes;
965 part_settings.file_bytes_remaining = part_settings.file_bytes;
Dees_Troy43d8b002012-09-17 16:00:01 -0400966
Ethan Yonker74db1572015-10-28 12:44:49 -0500967 gui_msg("backup_started=[BACKUP STARTED]");
bigbiff bigbiffcdd97c72019-03-29 19:12:33 -0400968
969 int is_decrypted = 0;
970 int is_encrypted = 0;
971
972 DataManager::GetValue(TW_IS_DECRYPTED, is_decrypted);
973 DataManager::GetValue(TW_IS_ENCRYPTED, is_encrypted);
974 if (!adbbackup || (!is_encrypted || (is_encrypted && is_decrypted))) {
975 gui_msg(Msg("backup_folder= * Backup Folder: {1}")(part_settings.Backup_Folder));
976 if (!TWFunc::Recursive_Mkdir(part_settings.Backup_Folder)) {
977 gui_err("fail_backup_folder=Failed to make backup folder.");
978 return false;
979 }
Dees_Troyd4b22b02013-01-18 17:17:58 +0000980 }
981
Dees_Troy2673cec2013-04-02 20:22:16 +0000982 DataManager::SetProgress(0.0);
Dees_Troy093b7642012-09-21 15:59:38 -0400983
Dees_Troya13d74f2013-03-24 08:54:55 -0500984 start_pos = 0;
985 end_pos = Backup_List.find(";", start_pos);
986 while (end_pos != string::npos && start_pos < Backup_List.size()) {
bigbiff7abc5fe2015-01-17 16:53:12 -0500987 if (stop_backup.get_value() != 0)
988 return -1;
Dees_Troya13d74f2013-03-24 08:54:55 -0500989 backup_path = Backup_List.substr(start_pos, end_pos - start_pos);
bigbiffce8f83c2015-12-12 18:30:21 -0500990 part_settings.Part = Find_Partition_By_Path(backup_path);
991 if (part_settings.Part != NULL) {
992 if (!Backup_Partition(&part_settings))
Dees_Troya13d74f2013-03-24 08:54:55 -0500993 return false;
994 } else {
Ethan Yonker74db1572015-10-28 12:44:49 -0500995 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 -0500996 }
997 start_pos = end_pos + 1;
998 end_pos = Backup_List.find(";", start_pos);
999 }
Dees_Troy43d8b002012-09-17 16:00:01 -04001000
1001 // Average BPS
bigbiffce8f83c2015-12-12 18:30:21 -05001002 if (part_settings.img_time == 0)
1003 part_settings.img_time = 1;
1004 if (part_settings.file_time == 0)
1005 part_settings.file_time = 1;
1006 int img_bps = (int)part_settings.img_bytes / (int)part_settings.img_time;
1007 unsigned long long file_bps = part_settings.file_bytes / (int)part_settings.file_time;
Dees_Troy43d8b002012-09-17 16:00:01 -04001008
bigbiffce8f83c2015-12-12 18:30:21 -05001009 if (part_settings.file_bytes != 0)
Ethan Yonker472f5062016-02-25 13:47:30 -06001010 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 -05001011 if (part_settings.img_bytes != 0)
Ethan Yonker472f5062016-02-25 13:47:30 -06001012 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 -04001013
1014 time(&total_stop);
1015 int total_time = (int) difftime(total_stop, total_start);
bigbiffce8f83c2015-12-12 18:30:21 -05001016
1017 uint64_t actual_backup_size;
Ethan Yonker3fdcda42016-11-30 12:29:37 -06001018 if (!adbbackup) {
1019 TWExclude twe;
1020 actual_backup_size = twe.Get_Folder_Size(part_settings.Backup_Folder);
1021 } else
bigbiffce8f83c2015-12-12 18:30:21 -05001022 actual_backup_size = part_settings.file_bytes + part_settings.img_bytes;
Matt Mowerfb1c4ff2014-04-16 13:43:36 -05001023 actual_backup_size /= (1024LLU * 1024LLU);
Dees_Troy43d8b002012-09-17 16:00:01 -04001024
bigbiffce8f83c2015-12-12 18:30:21 -05001025 int prev_img_bps = 0, use_compression = 0;
1026 unsigned long long prev_file_bps = 0;
Matt Mower173cdb92016-12-31 02:49:19 -06001027 DataManager::GetValue(TW_BACKUP_AVG_IMG_RATE, prev_img_bps);
Dees_Troy093b7642012-09-21 15:59:38 -04001028 img_bps += (prev_img_bps * 4);
Matt Mowerfb1c4ff2014-04-16 13:43:36 -05001029 img_bps /= 5;
Dees_Troy093b7642012-09-21 15:59:38 -04001030
Matt Mowerfb1c4ff2014-04-16 13:43:36 -05001031 DataManager::GetValue(TW_USE_COMPRESSION_VAR, use_compression);
Dees_Troy093b7642012-09-21 15:59:38 -04001032 if (use_compression)
1033 DataManager::GetValue(TW_BACKUP_AVG_FILE_COMP_RATE, prev_file_bps);
Matt Mowerfb1c4ff2014-04-16 13:43:36 -05001034 else
Dees_Troy093b7642012-09-21 15:59:38 -04001035 DataManager::GetValue(TW_BACKUP_AVG_FILE_RATE, prev_file_bps);
1036 file_bps += (prev_file_bps * 4);
Matt Mowerfb1c4ff2014-04-16 13:43:36 -05001037 file_bps /= 5;
Dees_Troy093b7642012-09-21 15:59:38 -04001038
Matt Mowerfb1c4ff2014-04-16 13:43:36 -05001039 DataManager::SetValue(TW_BACKUP_AVG_IMG_RATE, img_bps);
Dees_Troy093b7642012-09-21 15:59:38 -04001040 if (use_compression)
1041 DataManager::SetValue(TW_BACKUP_AVG_FILE_COMP_RATE, file_bps);
1042 else
1043 DataManager::SetValue(TW_BACKUP_AVG_FILE_RATE, file_bps);
1044
Ethan Yonker74db1572015-10-28 12:44:49 -05001045 gui_msg(Msg("total_backed_size=[{1} MB TOTAL BACKED UP]")(actual_backup_size));
Dees_Troy43d8b002012-09-17 16:00:01 -04001046 Update_System_Details();
Dees_Troyd0384ef2012-10-12 12:15:42 -04001047 UnMount_Main_Partitions();
Ethan Yonker56db1c42015-12-20 22:49:00 -06001048 gui_msg(Msg(msg::kHighlight, "backup_completed=[BACKUP COMPLETED IN {1} SECONDS]")(total_time)); // the end
Ethan Yonkere080c1f2016-09-19 13:50:25 -05001049 string backup_log = part_settings.Backup_Folder + "/recovery.log";
Dees_Troy3f5c4e82013-02-01 15:16:59 +00001050 TWFunc::copy_file("/tmp/recovery.log", backup_log, 0644);
Ethan Yonker4b94cfd2014-12-11 10:00:45 -06001051 tw_set_default_metadata(backup_log.c_str());
bigbiffce8f83c2015-12-12 18:30:21 -05001052
1053 if (part_settings.adbbackup) {
1054 if (twadbbu::Write_ADB_Stream_Trailer() == false) {
1055 return false;
1056 }
1057 }
1058 part_settings.adbbackup = false;
1059 DataManager::SetValue("tw_enable_adb_backup", 0);
1060
Dees_Troy3f5c4e82013-02-01 15:16:59 +00001061 return true;
Dees_Troy51a0e822012-09-05 15:24:24 -04001062}
1063
bigbiffce8f83c2015-12-12 18:30:21 -05001064bool TWPartitionManager::Restore_Partition(PartitionSettings *part_settings) {
Dees_Troy4a2a1262012-09-18 09:33:47 -04001065 time_t Start, Stop;
bigbiffce8f83c2015-12-12 18:30:21 -05001066
bigbiff bigbiffb5ecaad2017-03-20 18:53:53 -04001067 if (part_settings->adbbackup) {
bigbiff bigbiff19fb79c2016-09-05 21:04:51 -04001068 std::string partName = part_settings->Part->Backup_Name + "." + part_settings->Part->Current_File_System + ".win";
1069 LOGINFO("setting backup name: %s\n", partName.c_str());
bigbiff bigbiffb5ecaad2017-03-20 18:53:53 -04001070 part_settings->Part->Set_Backup_FileName(part_settings->Part->Backup_Name + "." + part_settings->Part->Current_File_System + ".win");
1071 }
1072
Tom Hite5a926722014-09-15 01:31:03 +00001073 TWFunc::SetPerformanceMode(true);
bigbiffce8f83c2015-12-12 18:30:21 -05001074
Dees_Troy4a2a1262012-09-18 09:33:47 -04001075 time(&Start);
Ethan Yonker472f5062016-02-25 13:47:30 -06001076
bigbiffce8f83c2015-12-12 18:30:21 -05001077 if (!part_settings->Part->Restore(part_settings)) {
Tom Hite5a926722014-09-15 01:31:03 +00001078 TWFunc::SetPerformanceMode(false);
Dees_Troy4a2a1262012-09-18 09:33:47 -04001079 return false;
Tom Hite5a926722014-09-15 01:31:03 +00001080 }
bigbiff bigbiff19fb79c2016-09-05 21:04:51 -04001081 if (part_settings->Part->Has_SubPartition && !part_settings->adbbackup) {
Dees_Troy8170a922012-09-18 15:40:25 -04001082 std::vector<TWPartition*>::iterator subpart;
bigbiff bigbiff8fd4b092016-08-30 20:48:53 -04001083 TWPartition *parentPart = part_settings->Part;
Dees_Troy8170a922012-09-18 15:40:25 -04001084
1085 for (subpart = Partitions.begin(); subpart != Partitions.end(); subpart++) {
bigbiff bigbiff8fd4b092016-08-30 20:48:53 -04001086 part_settings->Part = *subpart;
1087 if ((*subpart)->Is_SubPartition && (*subpart)->SubPartition_Of == parentPart->Mount_Point) {
1088 part_settings->Part = (*subpart);
bigbiff bigbiff19fb79c2016-09-05 21:04:51 -04001089 part_settings->Part->Set_Backup_FileName(part_settings->Part->Backup_Name + "." + part_settings->Part->Current_File_System + ".win");
bigbiffce8f83c2015-12-12 18:30:21 -05001090 if (!(*subpart)->Restore(part_settings)) {
Tom Hite5a926722014-09-15 01:31:03 +00001091 TWFunc::SetPerformanceMode(false);
Dees_Troy8170a922012-09-18 15:40:25 -04001092 return false;
Tom Hite5a926722014-09-15 01:31:03 +00001093 }
Dees_Troy8170a922012-09-18 15:40:25 -04001094 }
1095 }
1096 }
Dees_Troy4a2a1262012-09-18 09:33:47 -04001097 time(&Stop);
Tom Hite5a926722014-09-15 01:31:03 +00001098 TWFunc::SetPerformanceMode(false);
bigbiffce8f83c2015-12-12 18:30:21 -05001099 gui_msg(Msg("restore_part_done=[{1} done ({2} seconds)]")(part_settings->Part->Backup_Display_Name)((int)difftime(Stop, Start)));
1100
Dees_Troy4a2a1262012-09-18 09:33:47 -04001101 return true;
1102}
1103
Ethan Yonker472f5062016-02-25 13:47:30 -06001104int TWPartitionManager::Run_Restore(const string& Restore_Name) {
bigbiffce8f83c2015-12-12 18:30:21 -05001105 PartitionSettings part_settings;
bigbiff bigbiff56cf5642016-08-19 17:43:45 -04001106 int check_digest;
bigbiffce8f83c2015-12-12 18:30:21 -05001107
Dees_Troy4a2a1262012-09-18 09:33:47 -04001108 time_t rStart, rStop;
1109 time(&rStart);
Dees_Troya13d74f2013-03-24 08:54:55 -05001110 string Restore_List, restore_path;
1111 size_t start_pos = 0, end_pos;
bigbiffce8f83c2015-12-12 18:30:21 -05001112
Ethan Yonkerdcf2b672016-09-13 14:41:53 -05001113 part_settings.Backup_Folder = Restore_Name;
bigbiffce8f83c2015-12-12 18:30:21 -05001114 part_settings.Part = NULL;
1115 part_settings.partition_count = 0;
1116 part_settings.total_restore_size = 0;
1117 part_settings.adbbackup = false;
1118 part_settings.PM_Method = PM_RESTORE;
Dees_Troy43d8b002012-09-17 16:00:01 -04001119
Ethan Yonker74db1572015-10-28 12:44:49 -05001120 gui_msg("restore_started=[RESTORE STARTED]");
1121 gui_msg(Msg("restore_folder=Restore folder: '{1}'")(Restore_Name));
Dees_Troy43d8b002012-09-17 16:00:01 -04001122
Dees_Troy4a2a1262012-09-18 09:33:47 -04001123 if (!Mount_Current_Storage(true))
1124 return false;
1125
bigbiff bigbiff56cf5642016-08-19 17:43:45 -04001126 DataManager::GetValue(TW_SKIP_DIGEST_CHECK_VAR, check_digest);
1127 if (check_digest > 0) {
1128 // Check Digest files first before restoring to ensure that all of them match before starting a restore
1129 TWFunc::GUI_Operation_Text(TW_VERIFY_DIGEST_TEXT, gui_parse_text("{@verifying_digest}"));
1130 gui_msg("verifying_digest=Verifying Digest");
Dees_Troya13d74f2013-03-24 08:54:55 -05001131 } else {
bigbiff bigbiff56cf5642016-08-19 17:43:45 -04001132 gui_msg("skip_digest=Skipping Digest check based on user setting.");
Dees_Troya13d74f2013-03-24 08:54:55 -05001133 }
Ethan Yonker74db1572015-10-28 12:44:49 -05001134 gui_msg("calc_restore=Calculating restore details...");
Dees_Troya13d74f2013-03-24 08:54:55 -05001135 DataManager::GetValue("tw_restore_selected", Restore_List);
bigbiffce8f83c2015-12-12 18:30:21 -05001136
Dees_Troya13d74f2013-03-24 08:54:55 -05001137 if (!Restore_List.empty()) {
1138 end_pos = Restore_List.find(";", start_pos);
1139 while (end_pos != string::npos && start_pos < Restore_List.size()) {
1140 restore_path = Restore_List.substr(start_pos, end_pos - start_pos);
bigbiffce8f83c2015-12-12 18:30:21 -05001141 part_settings.Part = Find_Partition_By_Path(restore_path);
1142 if (part_settings.Part != NULL) {
bigbiffce8f83c2015-12-12 18:30:21 -05001143 if (part_settings.Part->Mount_Read_Only) {
1144 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 -05001145 return false;
1146 }
bigbiffce8f83c2015-12-12 18:30:21 -05001147
bigbiff bigbiff56cf5642016-08-19 17:43:45 -04001148 string Full_Filename = part_settings.Backup_Folder + "/" + part_settings.Part->Backup_FileName;
1149
1150 if (check_digest > 0 && !twrpDigestDriver::Check_Digest(Full_Filename))
Dees_Troya13d74f2013-03-24 08:54:55 -05001151 return false;
bigbiffce8f83c2015-12-12 18:30:21 -05001152 part_settings.partition_count++;
1153 part_settings.total_restore_size += part_settings.Part->Get_Restore_Size(&part_settings);
1154 if (part_settings.Part->Has_SubPartition) {
bigbiff bigbiff8fd4b092016-08-30 20:48:53 -04001155 TWPartition *parentPart = part_settings.Part;
Dees_Troya13d74f2013-03-24 08:54:55 -05001156 std::vector<TWPartition*>::iterator subpart;
1157
1158 for (subpart = Partitions.begin(); subpart != Partitions.end(); subpart++) {
bigbiff bigbiff8fd4b092016-08-30 20:48:53 -04001159 part_settings.Part = *subpart;
1160 if ((*subpart)->Is_SubPartition && (*subpart)->SubPartition_Of == parentPart->Mount_Point) {
bigbiff bigbiff56cf5642016-08-19 17:43:45 -04001161 if (check_digest > 0 && !twrpDigestDriver::Check_Digest(Full_Filename))
Dees_Troya13d74f2013-03-24 08:54:55 -05001162 return false;
bigbiffce8f83c2015-12-12 18:30:21 -05001163 part_settings.total_restore_size += (*subpart)->Get_Restore_Size(&part_settings);
Dees_Troya13d74f2013-03-24 08:54:55 -05001164 }
1165 }
1166 }
1167 } else {
Ethan Yonker74db1572015-10-28 12:44:49 -05001168 gui_msg(Msg(msg::kError, "restore_unable_locate=Unable to locate '{1}' partition for restoring.")(restore_path));
Dees_Troya13d74f2013-03-24 08:54:55 -05001169 }
1170 start_pos = end_pos + 1;
1171 end_pos = Restore_List.find(";", start_pos);
Dees_Troy4a2a1262012-09-18 09:33:47 -04001172 }
Dees_Troy4a2a1262012-09-18 09:33:47 -04001173 }
Dees_Troy4a2a1262012-09-18 09:33:47 -04001174
bigbiffce8f83c2015-12-12 18:30:21 -05001175 if (part_settings.partition_count == 0) {
Ethan Yonker74db1572015-10-28 12:44:49 -05001176 gui_err("no_part_restore=No partitions selected for restore.");
Dees_Troy4a2a1262012-09-18 09:33:47 -04001177 return false;
1178 }
1179
bigbiffce8f83c2015-12-12 18:30:21 -05001180 gui_msg(Msg("restore_part_count=Restoring {1} partitions...")(part_settings.partition_count));
1181 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 +00001182 DataManager::SetProgress(0.0);
bigbiffce8f83c2015-12-12 18:30:21 -05001183 ProgressTracking progress(part_settings.total_restore_size);
1184 part_settings.progress = &progress;
Ethan Yonker1b7a31b2014-07-03 15:09:22 -05001185
Dees_Troya13d74f2013-03-24 08:54:55 -05001186 start_pos = 0;
1187 if (!Restore_List.empty()) {
1188 end_pos = Restore_List.find(";", start_pos);
1189 while (end_pos != string::npos && start_pos < Restore_List.size()) {
1190 restore_path = Restore_List.substr(start_pos, end_pos - start_pos);
bigbiffce8f83c2015-12-12 18:30:21 -05001191
1192 part_settings.Part = Find_Partition_By_Path(restore_path);
1193 if (part_settings.Part != NULL) {
1194 part_settings.partition_count++;
bigbiffce8f83c2015-12-12 18:30:21 -05001195 if (!Restore_Partition(&part_settings))
Dees_Troya13d74f2013-03-24 08:54:55 -05001196 return false;
1197 } else {
Ethan Yonker74db1572015-10-28 12:44:49 -05001198 gui_msg(Msg(msg::kError, "restore_unable_locate=Unable to locate '{1}' partition for restoring.")(restore_path));
Dees_Troya13d74f2013-03-24 08:54:55 -05001199 }
1200 start_pos = end_pos + 1;
1201 end_pos = Restore_List.find(";", start_pos);
1202 }
1203 }
Ethan Yonker74db1572015-10-28 12:44:49 -05001204 TWFunc::GUI_Operation_Text(TW_UPDATE_SYSTEM_DETAILS_TEXT, gui_parse_text("{@updating_system_details}"));
Captain Throwback9d6feb52018-07-27 10:05:24 -04001205 UnMount_By_Path(Get_Android_Root_Path(), false);
Dees_Troy43d8b002012-09-17 16:00:01 -04001206 Update_System_Details();
Dees_Troyd0384ef2012-10-12 12:15:42 -04001207 UnMount_Main_Partitions();
Dees_Troy4a2a1262012-09-18 09:33:47 -04001208 time(&rStop);
Matt Mower3c366972015-12-25 19:28:31 -06001209 gui_msg(Msg(msg::kHighlight, "restore_completed=[RESTORE COMPLETED IN {1} SECONDS]")((int)difftime(rStop,rStart)));
Ethan Yonker1b7a31b2014-07-03 15:09:22 -05001210 DataManager::SetValue("tw_file_progress", "");
bigbiffce8f83c2015-12-12 18:30:21 -05001211
Dees_Troy63c8df72012-09-10 14:02:05 -04001212 return true;
Dees_Troy51a0e822012-09-05 15:24:24 -04001213}
1214
1215void TWPartitionManager::Set_Restore_Files(string Restore_Name) {
Dees_Troy63c8df72012-09-10 14:02:05 -04001216 // Start with the default values
Dees_Troya13d74f2013-03-24 08:54:55 -05001217 string Restore_List;
Dees_Troy83bd4832013-05-04 12:39:56 +00001218 bool get_date = true, check_encryption = true;
bigbiff bigbiff19fb79c2016-09-05 21:04:51 -04001219 bool adbbackup = false;
Dees_Troy83bd4832013-05-04 12:39:56 +00001220
1221 DataManager::SetValue("tw_restore_encrypted", 0);
bigbiff bigbiff19fb79c2016-09-05 21:04:51 -04001222 if (twadbbu::Check_ADB_Backup_File(Restore_Name)) {
1223 vector<string> adb_files;
1224 adb_files = twadbbu::Get_ADB_Backup_Files(Restore_Name);
1225 for (unsigned int i = 0; i < adb_files.size(); ++i) {
1226 string adb_restore_file = adb_files.at(i);
1227 std::size_t pos = adb_restore_file.find_first_of(".");
1228 std::string path = "/" + adb_restore_file.substr(0, pos);
1229 Restore_List = path + ";";
1230 TWPartition* Part = Find_Partition_By_Path(path);
1231 Part->Backup_FileName = TWFunc::Get_Filename(adb_restore_file);
1232 adbbackup = true;
1233 }
1234 DataManager::SetValue("tw_enable_adb_backup", 1);
Dees_Troy63c8df72012-09-10 14:02:05 -04001235 }
bigbiff bigbiff19fb79c2016-09-05 21:04:51 -04001236 else {
1237 DIR* d;
1238 d = opendir(Restore_Name.c_str());
1239 if (d == NULL)
Dees_Troy63c8df72012-09-10 14:02:05 -04001240 {
bigbiff bigbiff19fb79c2016-09-05 21:04:51 -04001241 gui_msg(Msg(msg::kError, "error_opening_strerr=Error opening: '{1}' ({2})")(Restore_Name)(strerror(errno)));
1242 return;
Dees_Troy63c8df72012-09-10 14:02:05 -04001243 }
bigbiff bigbiff19fb79c2016-09-05 21:04:51 -04001244
1245 struct dirent* de;
1246 while ((de = readdir(d)) != NULL)
Dees_Troy63c8df72012-09-10 14:02:05 -04001247 {
bigbiff bigbiff19fb79c2016-09-05 21:04:51 -04001248 // Strip off three components
1249 char str[256];
1250 char* label;
1251 char* fstype = NULL;
1252 char* extn = NULL;
1253 char* ptr;
Dees_Troy63c8df72012-09-10 14:02:05 -04001254
bigbiff bigbiff19fb79c2016-09-05 21:04:51 -04001255 strcpy(str, de->d_name);
1256 if (strlen(str) <= 2)
1257 continue;
Dees_Troy83bd4832013-05-04 12:39:56 +00001258
bigbiff bigbiff19fb79c2016-09-05 21:04:51 -04001259 if (get_date) {
1260 char file_path[255];
1261 struct stat st;
1262
1263 strcpy(file_path, Restore_Name.c_str());
1264 strcat(file_path, "/");
1265 strcat(file_path, str);
1266 stat(file_path, &st);
1267 string backup_date = ctime((const time_t*)(&st.st_mtime));
1268 DataManager::SetValue(TW_RESTORE_FILE_DATE, backup_date);
1269 get_date = false;
Dees_Troy83bd4832013-05-04 12:39:56 +00001270 }
Dees_Troy63c8df72012-09-10 14:02:05 -04001271
bigbiff bigbiff19fb79c2016-09-05 21:04:51 -04001272 label = str;
1273 ptr = label;
1274 while (*ptr && *ptr != '.') ptr++;
1275 if (*ptr == '.')
1276 {
1277 *ptr = 0x00;
1278 ptr++;
1279 fstype = ptr;
1280 }
1281 while (*ptr && *ptr != '.') ptr++;
1282 if (*ptr == '.')
1283 {
1284 *ptr = 0x00;
1285 ptr++;
1286 extn = ptr;
1287 }
Dees_Troy63c8df72012-09-10 14:02:05 -04001288
bigbiff bigbiff19fb79c2016-09-05 21:04:51 -04001289 if (fstype == NULL || extn == NULL || strcmp(fstype, "log") == 0) continue;
1290 int extnlength = strlen(extn);
1291 if (extnlength != 3 && extnlength != 6) continue;
1292 if (extnlength >= 3 && strncmp(extn, "win", 3) != 0) continue;
1293 //if (extnlength == 6 && strncmp(extn, "win000", 6) != 0) continue;
Dees_Troy63c8df72012-09-10 14:02:05 -04001294
bigbiff bigbiff19fb79c2016-09-05 21:04:51 -04001295 if (check_encryption) {
1296 string filename = Restore_Name + "/";
1297 filename += de->d_name;
1298 if (TWFunc::Get_File_Type(filename) == 2) {
1299 LOGINFO("'%s' is encrypted\n", filename.c_str());
1300 DataManager::SetValue("tw_restore_encrypted", 1);
1301 }
1302 }
1303 if (extnlength == 6 && strncmp(extn, "win000", 6) != 0) continue;
1304
1305 TWPartition* Part = Find_Partition_By_Path(label);
1306 if (Part == NULL)
1307 {
1308 gui_msg(Msg(msg::kError, "unable_locate_part_backup_name=Unable to locate partition by backup name: '{1}'")(label));
1309 continue;
1310 }
1311
1312 Part->Backup_FileName = de->d_name;
1313 if (strlen(extn) > 3) {
1314 Part->Backup_FileName.resize(Part->Backup_FileName.size() - strlen(extn) + 3);
1315 }
1316
dianlujitaob76a73a2020-04-30 20:33:20 +08001317 if (!Part->Is_SubPartition) {
1318 if (Part->Backup_Path == Get_Android_Root_Path())
1319 Restore_List += "/system;";
1320 else
1321 Restore_List += Part->Backup_Path + ";";
1322 }
bigbiff bigbiff19fb79c2016-09-05 21:04:51 -04001323 }
1324 closedir(d);
Dees_Troy63c8df72012-09-10 14:02:05 -04001325 }
bigbiff bigbiff19fb79c2016-09-05 21:04:51 -04001326
1327 if (adbbackup) {
1328 Restore_List = "ADB_Backup;";
1329 adbbackup = false;
1330 }
Dees_Troy63c8df72012-09-10 14:02:05 -04001331
Dees_Troya13d74f2013-03-24 08:54:55 -05001332 // Set the final value
1333 DataManager::SetValue("tw_restore_list", Restore_List);
1334 DataManager::SetValue("tw_restore_selected", Restore_List);
Dees_Troy51a0e822012-09-05 15:24:24 -04001335 return;
1336}
1337
1338int TWPartitionManager::Wipe_By_Path(string Path) {
Dees_Troy63c8df72012-09-10 14:02:05 -04001339 std::vector<TWPartition*>::iterator iter;
Mohd Farazfdd49bb2020-04-21 18:56:44 +05301340 std::vector < TWPartition * >::iterator iter1;
Dees_Troy63c8df72012-09-10 14:02:05 -04001341 int ret = false;
1342 bool found = false;
Dees_Troy38bd7602012-09-14 13:33:53 -04001343 string Local_Path = TWFunc::Get_Root_Path(Path);
Dees_Troy63c8df72012-09-10 14:02:05 -04001344
dianlujitaob76a73a2020-04-30 20:33:20 +08001345 if (Local_Path == "/system")
1346 Local_Path = Get_Android_Root_Path();
Dees_Troy63c8df72012-09-10 14:02:05 -04001347 // Iterate through all partitions
1348 for (iter = Partitions.begin(); iter != Partitions.end(); iter++) {
Dees_Troy657c3092012-09-10 20:32:10 -04001349 if ((*iter)->Mount_Point == Local_Path || (!(*iter)->Symlink_Mount_Point.empty() && (*iter)->Symlink_Mount_Point == Local_Path)) {
Mohd Farazfdd49bb2020-04-21 18:56:44 +05301350 // iterate through all partitions since some legacy devices uses other partitions as vendor causes issues while wiping
1351 (*iter)->Find_Actual_Block_Device();
1352 for (iter1 = Partitions.begin (); iter1 != Partitions.end (); iter1++)
1353 {
1354 (*iter1)->Find_Actual_Block_Device();
1355 if ((*iter)->Actual_Block_Device == (*iter1)->Actual_Block_Device && (*iter)->Mount_Point != (*iter1)->Mount_Point)
1356 (*iter1)->UnMount(false);
1357 }
Dees_Troye58d5262012-09-21 12:27:57 -04001358 if (Path == "/and-sec")
1359 ret = (*iter)->Wipe_AndSec();
1360 else
1361 ret = (*iter)->Wipe();
Dees_Troy63c8df72012-09-10 14:02:05 -04001362 found = true;
1363 } else if ((*iter)->Is_SubPartition && (*iter)->SubPartition_Of == Local_Path) {
1364 (*iter)->Wipe();
1365 }
1366 }
1367 if (found) {
1368 return ret;
1369 } else
Ethan Yonker74db1572015-10-28 12:44:49 -05001370 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 -04001371 return false;
Dees_Troy51a0e822012-09-05 15:24:24 -04001372}
1373
Ethan Yonker87c7bac2014-05-25 21:41:08 -05001374int TWPartitionManager::Wipe_By_Path(string Path, string New_File_System) {
1375 std::vector<TWPartition*>::iterator iter;
1376 int ret = false;
1377 bool found = false;
1378 string Local_Path = TWFunc::Get_Root_Path(Path);
1379
1380 // Iterate through all partitions
1381 for (iter = Partitions.begin(); iter != Partitions.end(); iter++) {
1382 if ((*iter)->Mount_Point == Local_Path || (!(*iter)->Symlink_Mount_Point.empty() && (*iter)->Symlink_Mount_Point == Local_Path)) {
1383 if (Path == "/and-sec")
1384 ret = (*iter)->Wipe_AndSec();
1385 else
1386 ret = (*iter)->Wipe(New_File_System);
1387 found = true;
1388 } else if ((*iter)->Is_SubPartition && (*iter)->SubPartition_Of == Local_Path) {
1389 (*iter)->Wipe(New_File_System);
1390 }
1391 }
1392 if (found) {
1393 return ret;
1394 } else
Ethan Yonker74db1572015-10-28 12:44:49 -05001395 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 -05001396 return false;
1397}
1398
Dees_Troy51a0e822012-09-05 15:24:24 -04001399int TWPartitionManager::Factory_Reset(void) {
Dees_Troy63c8df72012-09-10 14:02:05 -04001400 std::vector<TWPartition*>::iterator iter;
1401 int ret = true;
1402
1403 for (iter = Partitions.begin(); iter != Partitions.end(); iter++) {
Dees_Troy38bd7602012-09-14 13:33:53 -04001404 if ((*iter)->Wipe_During_Factory_Reset && (*iter)->Is_Present) {
Ethan Yonker89583ef2015-08-26 09:01:59 -05001405#ifdef TW_OEM_BUILD
1406 if ((*iter)->Mount_Point == "/data") {
1407 if (!(*iter)->Wipe_Encryption())
1408 ret = false;
1409 } else {
1410#endif
1411 if (!(*iter)->Wipe())
1412 ret = false;
1413#ifdef TW_OEM_BUILD
1414 }
1415#endif
Dees_Troy094207a2012-09-26 12:00:39 -04001416 } else if ((*iter)->Has_Android_Secure) {
1417 if (!(*iter)->Wipe_AndSec())
1418 ret = false;
Dees_Troy63c8df72012-09-10 14:02:05 -04001419 }
1420 }
Ethan Yonker9fa76ba2016-06-30 14:05:43 -05001421 TWFunc::check_and_run_script("/sbin/factoryreset.sh", "Factory Reset Script");
Dees_Troy63c8df72012-09-10 14:02:05 -04001422 return ret;
Dees_Troy51a0e822012-09-05 15:24:24 -04001423}
1424
Dees_Troy38bd7602012-09-14 13:33:53 -04001425int TWPartitionManager::Wipe_Dalvik_Cache(void) {
1426 struct stat st;
bigbiff bigbiff9c754052013-01-09 09:09:08 -05001427 vector <string> dir;
Dees_Troy38bd7602012-09-14 13:33:53 -04001428
1429 if (!Mount_By_Path("/data", true))
1430 return false;
1431
bigbiff bigbiff9c754052013-01-09 09:09:08 -05001432 dir.push_back("/data/dalvik-cache");
bigbiff bigbiff19874f12019-01-08 20:06:57 -05001433
1434 std::string cacheDir = TWFunc::get_cache_dir();
1435 if (cacheDir == NON_AB_CACHE_DIR) {
1436 if (!PartitionManager.Mount_By_Path(NON_AB_CACHE_DIR, false)) {
1437 LOGINFO("Unable to mount %s for wiping cache.\n", NON_AB_CACHE_DIR);
1438 }
1439 dir.push_back(cacheDir + "dalvik-cache");
1440 dir.push_back(cacheDir + "/dc");
bigbiff bigbiff9c754052013-01-09 09:09:08 -05001441 }
Ethan Yonkerff2b7882016-12-10 09:04:41 -06001442
Dees_Troy38bd7602012-09-14 13:33:53 -04001443 TWPartition* sdext = Find_Partition_By_Path("/sd-ext");
Vojtech Bocekfafb0c52013-07-25 22:53:02 +02001444 if (sdext && sdext->Is_Present && sdext->Mount(false))
1445 {
1446 if (stat("/sd-ext/dalvik-cache", &st) == 0)
1447 {
Ethan Yonkerff2b7882016-12-10 09:04:41 -06001448 dir.push_back("/sd-ext/dalvik-cache");
1449 }
1450 }
1451
bigbiff bigbiff19874f12019-01-08 20:06:57 -05001452 if (cacheDir == NON_AB_CACHE_DIR) {
1453 gui_msg("wiping_cache_dalvik=Wiping Dalvik Cache Directories...");
1454 } else {
1455 gui_msg("wiping_dalvik=Wiping Dalvik Directory...");
1456 }
Ethan Yonkerff2b7882016-12-10 09:04:41 -06001457 for (unsigned i = 0; i < dir.size(); ++i) {
1458 if (stat(dir.at(i).c_str(), &st) == 0) {
1459 TWFunc::removeDir(dir.at(i), false);
1460 gui_msg(Msg("cleaned=Cleaned: {1}...")(dir.at(i)));
bigbiff bigbiff9c754052013-01-09 09:09:08 -05001461 }
Vojtech Bocekfafb0c52013-07-25 22:53:02 +02001462 }
bigbiff bigbiff19874f12019-01-08 20:06:57 -05001463
1464 if (cacheDir == NON_AB_CACHE_DIR) {
1465 gui_msg("cache_dalvik_done=-- Dalvik Cache Directories Wipe Complete!");
1466 } else {
1467 gui_msg("dalvik_done=-- Dalvik Directory Wipe Complete!");
1468 }
1469
Dees_Troy38bd7602012-09-14 13:33:53 -04001470 return true;
1471}
1472
1473int TWPartitionManager::Wipe_Rotate_Data(void) {
1474 if (!Mount_By_Path("/data", true))
1475 return false;
1476
bigbiff bigbiff9c754052013-01-09 09:09:08 -05001477 unlink("/data/misc/akmd*");
1478 unlink("/data/misc/rild*");
Dees_Troy2673cec2013-04-02 20:22:16 +00001479 gui_print("Rotation data wiped.\n");
Dees_Troy38bd7602012-09-14 13:33:53 -04001480 return true;
1481}
1482
1483int TWPartitionManager::Wipe_Battery_Stats(void) {
1484 struct stat st;
1485
1486 if (!Mount_By_Path("/data", true))
1487 return false;
1488
1489 if (0 != stat("/data/system/batterystats.bin", &st)) {
Dees_Troy2673cec2013-04-02 20:22:16 +00001490 gui_print("No Battery Stats Found. No Need To Wipe.\n");
Dees_Troy38bd7602012-09-14 13:33:53 -04001491 } else {
1492 remove("/data/system/batterystats.bin");
Dees_Troy2673cec2013-04-02 20:22:16 +00001493 gui_print("Cleared battery stats.\n");
Dees_Troy38bd7602012-09-14 13:33:53 -04001494 }
1495 return true;
1496}
1497
Dees_Troy2ff5a8d2012-09-26 14:53:02 -04001498int TWPartitionManager::Wipe_Android_Secure(void) {
1499 std::vector<TWPartition*>::iterator iter;
1500 int ret = false;
1501 bool found = false;
1502
1503 // Iterate through all partitions
1504 for (iter = Partitions.begin(); iter != Partitions.end(); iter++) {
1505 if ((*iter)->Has_Android_Secure) {
1506 ret = (*iter)->Wipe_AndSec();
1507 found = true;
1508 }
1509 }
1510 if (found) {
1511 return ret;
1512 } else {
Ethan Yonker74db1572015-10-28 12:44:49 -05001513 gui_err("no_andsec=No android secure partitions found.");
Dees_Troy2ff5a8d2012-09-26 14:53:02 -04001514 }
1515 return false;
1516}
1517
Dees_Troy38bd7602012-09-14 13:33:53 -04001518int TWPartitionManager::Format_Data(void) {
1519 TWPartition* dat = Find_Partition_By_Path("/data");
1520
1521 if (dat != NULL) {
Dees_Troy38bd7602012-09-14 13:33:53 -04001522 return dat->Wipe_Encryption();
1523 } else {
Matt Mower3c366972015-12-25 19:28:31 -06001524 gui_msg(Msg(msg::kError, "unable_to_locate=Unable to locate {1}.")("/data"));
Dees_Troy38bd7602012-09-14 13:33:53 -04001525 return false;
1526 }
1527 return false;
1528}
1529
1530int TWPartitionManager::Wipe_Media_From_Data(void) {
1531 TWPartition* dat = Find_Partition_By_Path("/data");
1532
1533 if (dat != NULL) {
1534 if (!dat->Has_Data_Media) {
Dees_Troy2673cec2013-04-02 20:22:16 +00001535 LOGERR("This device does not have /data/media\n");
Dees_Troy38bd7602012-09-14 13:33:53 -04001536 return false;
1537 }
1538 if (!dat->Mount(true))
1539 return false;
1540
Ethan Yonker74db1572015-10-28 12:44:49 -05001541 gui_msg("wiping_datamedia=Wiping internal storage -- /data/media...");
Ethan Yonker726a0202014-12-16 20:01:38 -06001542 Remove_MTP_Storage(dat->MTP_Storage_ID);
bigbiff bigbiff9c754052013-01-09 09:09:08 -05001543 TWFunc::removeDir("/data/media", false);
xiaolu9416f4f2015-06-04 08:22:23 +08001544 dat->Recreate_Media_Folder();
Ethan Yonker726a0202014-12-16 20:01:38 -06001545 Add_MTP_Storage(dat->MTP_Storage_ID);
Dees_Troy38bd7602012-09-14 13:33:53 -04001546 return true;
1547 } else {
Matt Mower3c366972015-12-25 19:28:31 -06001548 gui_msg(Msg(msg::kError, "unable_to_locate=Unable to locate {1}.")("/data"));
Dees_Troy38bd7602012-09-14 13:33:53 -04001549 return false;
1550 }
1551 return false;
1552}
1553
Ethan Yonker87c7bac2014-05-25 21:41:08 -05001554int TWPartitionManager::Repair_By_Path(string Path, bool Display_Error) {
1555 std::vector<TWPartition*>::iterator iter;
1556 int ret = false;
1557 bool found = false;
1558 string Local_Path = TWFunc::Get_Root_Path(Path);
1559
1560 if (Local_Path == "/tmp" || Local_Path == "/")
1561 return true;
1562
1563 // Iterate through all partitions
1564 for (iter = Partitions.begin(); iter != Partitions.end(); iter++) {
1565 if ((*iter)->Mount_Point == Local_Path || (!(*iter)->Symlink_Mount_Point.empty() && (*iter)->Symlink_Mount_Point == Local_Path)) {
1566 ret = (*iter)->Repair();
1567 found = true;
1568 } else if ((*iter)->Is_SubPartition && (*iter)->SubPartition_Of == Local_Path) {
1569 (*iter)->Repair();
1570 }
1571 }
1572 if (found) {
1573 return ret;
1574 } else if (Display_Error) {
Ethan Yonker74db1572015-10-28 12:44:49 -05001575 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 -05001576 } else {
1577 LOGINFO("Repair: Unable to find partition for path '%s'\n", Local_Path.c_str());
1578 }
1579 return false;
1580}
1581
Ethan Yonkera2719152015-05-28 09:44:41 -05001582int TWPartitionManager::Resize_By_Path(string Path, bool Display_Error) {
1583 std::vector<TWPartition*>::iterator iter;
1584 int ret = false;
1585 bool found = false;
1586 string Local_Path = TWFunc::Get_Root_Path(Path);
1587
1588 if (Local_Path == "/tmp" || Local_Path == "/")
1589 return true;
1590
1591 // Iterate through all partitions
1592 for (iter = Partitions.begin(); iter != Partitions.end(); iter++) {
1593 if ((*iter)->Mount_Point == Local_Path || (!(*iter)->Symlink_Mount_Point.empty() && (*iter)->Symlink_Mount_Point == Local_Path)) {
1594 ret = (*iter)->Resize();
1595 found = true;
1596 } else if ((*iter)->Is_SubPartition && (*iter)->SubPartition_Of == Local_Path) {
1597 (*iter)->Resize();
1598 }
1599 }
1600 if (found) {
1601 return ret;
1602 } else if (Display_Error) {
Ethan Yonker74db1572015-10-28 12:44:49 -05001603 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 -05001604 } else {
1605 LOGINFO("Resize: Unable to find partition for path '%s'\n", Local_Path.c_str());
1606 }
1607 return false;
1608}
1609
Dees_Troy51a0e822012-09-05 15:24:24 -04001610void TWPartitionManager::Update_System_Details(void) {
Dees_Troy5bf43922012-09-07 16:07:55 -04001611 std::vector<TWPartition*>::iterator iter;
Dees_Troy51127312012-09-08 13:08:49 -04001612 int data_size = 0;
Dees_Troy5bf43922012-09-07 16:07:55 -04001613
Ethan Yonker74db1572015-10-28 12:44:49 -05001614 gui_msg("update_part_details=Updating partition details...");
Dees_Troy5bf43922012-09-07 16:07:55 -04001615 for (iter = Partitions.begin(); iter != Partitions.end(); iter++) {
Ethan Yonker1b190162016-12-05 15:25:19 -06001616 (*iter)->Update_Size(true);
Dees_Troy51127312012-09-08 13:08:49 -04001617 if ((*iter)->Can_Be_Mounted) {
Captain Throwback9d6feb52018-07-27 10:05:24 -04001618 if ((*iter)->Mount_Point == Get_Android_Root_Path()) {
Dees_Troy51127312012-09-08 13:08:49 -04001619 int backup_display_size = (int)((*iter)->Backup_Size / 1048576LLU);
1620 DataManager::SetValue(TW_BACKUP_SYSTEM_SIZE, backup_display_size);
Ethan Yonker76bbd3a2019-05-10 10:50:04 -05001621 TWFunc::Is_TWRP_App_In_System();
Dees_Troy51127312012-09-08 13:08:49 -04001622 } else if ((*iter)->Mount_Point == "/data" || (*iter)->Mount_Point == "/datadata") {
1623 data_size += (int)((*iter)->Backup_Size / 1048576LLU);
1624 } else if ((*iter)->Mount_Point == "/cache") {
1625 int backup_display_size = (int)((*iter)->Backup_Size / 1048576LLU);
1626 DataManager::SetValue(TW_BACKUP_CACHE_SIZE, backup_display_size);
1627 } else if ((*iter)->Mount_Point == "/sd-ext") {
1628 int backup_display_size = (int)((*iter)->Backup_Size / 1048576LLU);
1629 DataManager::SetValue(TW_BACKUP_SDEXT_SIZE, backup_display_size);
1630 if ((*iter)->Backup_Size == 0) {
1631 DataManager::SetValue(TW_HAS_SDEXT_PARTITION, 0);
1632 DataManager::SetValue(TW_BACKUP_SDEXT_VAR, 0);
1633 } else
1634 DataManager::SetValue(TW_HAS_SDEXT_PARTITION, 1);
Dees_Troye58d5262012-09-21 12:27:57 -04001635 } else if ((*iter)->Has_Android_Secure) {
Dees_Troy8170a922012-09-18 15:40:25 -04001636 int backup_display_size = (int)((*iter)->Backup_Size / 1048576LLU);
Dees_Troye58d5262012-09-21 12:27:57 -04001637 DataManager::SetValue(TW_BACKUP_ANDSEC_SIZE, backup_display_size);
Dees_Troy8170a922012-09-18 15:40:25 -04001638 if ((*iter)->Backup_Size == 0) {
1639 DataManager::SetValue(TW_HAS_ANDROID_SECURE, 0);
1640 DataManager::SetValue(TW_BACKUP_ANDSEC_VAR, 0);
1641 } else
1642 DataManager::SetValue(TW_HAS_ANDROID_SECURE, 1);
Dees_Troy2c50e182012-09-26 20:05:28 -04001643 } else if ((*iter)->Mount_Point == "/boot") {
1644 int backup_display_size = (int)((*iter)->Backup_Size / 1048576LLU);
1645 DataManager::SetValue(TW_BACKUP_BOOT_SIZE, backup_display_size);
1646 if ((*iter)->Backup_Size == 0) {
1647 DataManager::SetValue("tw_has_boot_partition", 0);
1648 DataManager::SetValue(TW_BACKUP_BOOT_VAR, 0);
1649 } else
1650 DataManager::SetValue("tw_has_boot_partition", 1);
Dees_Troy51127312012-09-08 13:08:49 -04001651 }
Dees_Troyaa9cc402012-10-13 12:14:05 -04001652 } else {
1653 // Handle unmountable partitions in case we reset defaults
1654 if ((*iter)->Mount_Point == "/boot") {
1655 int backup_display_size = (int)((*iter)->Backup_Size / 1048576LLU);
1656 DataManager::SetValue(TW_BACKUP_BOOT_SIZE, backup_display_size);
1657 if ((*iter)->Backup_Size == 0) {
1658 DataManager::SetValue(TW_HAS_BOOT_PARTITION, 0);
1659 DataManager::SetValue(TW_BACKUP_BOOT_VAR, 0);
1660 } else
1661 DataManager::SetValue(TW_HAS_BOOT_PARTITION, 1);
1662 } else if ((*iter)->Mount_Point == "/recovery") {
1663 int backup_display_size = (int)((*iter)->Backup_Size / 1048576LLU);
1664 DataManager::SetValue(TW_BACKUP_RECOVERY_SIZE, backup_display_size);
1665 if ((*iter)->Backup_Size == 0) {
1666 DataManager::SetValue(TW_HAS_RECOVERY_PARTITION, 0);
1667 DataManager::SetValue(TW_BACKUP_RECOVERY_VAR, 0);
1668 } else
1669 DataManager::SetValue(TW_HAS_RECOVERY_PARTITION, 1);
Gary Peck82599a82012-11-21 16:23:12 -08001670 } else if ((*iter)->Mount_Point == "/data") {
1671 data_size += (int)((*iter)->Backup_Size / 1048576LLU);
Dees_Troyaa9cc402012-10-13 12:14:05 -04001672 }
Dees_Troy51127312012-09-08 13:08:49 -04001673 }
Dees_Troy5bf43922012-09-07 16:07:55 -04001674 }
Ethan Yonker74db1572015-10-28 12:44:49 -05001675 gui_msg("update_part_details_done=...done");
Dees_Troy51127312012-09-08 13:08:49 -04001676 DataManager::SetValue(TW_BACKUP_DATA_SIZE, data_size);
1677 string current_storage_path = DataManager::GetCurrentStoragePath();
1678 TWPartition* FreeStorage = Find_Partition_By_Path(current_storage_path);
Dees_Troy8170a922012-09-18 15:40:25 -04001679 if (FreeStorage != NULL) {
1680 // Attempt to mount storage
bigbiff7ba75002020-04-11 20:47:09 -04001681 if (!TWFunc::Is_Mount_Wiped("/data")) {
1682 if (!FreeStorage->Mount(false)) {
1683 gui_msg(Msg(msg::kWarning, "unable_to_mount_storage=Unable to mount storage"));
1684 DataManager::SetValue(TW_STORAGE_FREE_SIZE, 0);
1685 } else {
1686 DataManager::SetValue(TW_STORAGE_FREE_SIZE, (int)(FreeStorage->Free / 1048576LLU));
1687 }
Dees_Troy8170a922012-09-18 15:40:25 -04001688 }
1689 } else {
Dees_Troy2673cec2013-04-02 20:22:16 +00001690 LOGINFO("Unable to find storage partition '%s'.\n", current_storage_path.c_str());
Dees_Troy8170a922012-09-18 15:40:25 -04001691 }
Dees_Troy5bf43922012-09-07 16:07:55 -04001692 if (!Write_Fstab())
Dees_Troy2673cec2013-04-02 20:22:16 +00001693 LOGERR("Error creating fstab\n");
Dees_Troy51a0e822012-09-05 15:24:24 -04001694 return;
1695}
1696
Ethan Yonkerbd7492d2016-12-07 13:55:01 -06001697void TWPartitionManager::Post_Decrypt(const string& Block_Device) {
1698 TWPartition* dat = Find_Partition_By_Path("/data");
bigbiff7ba75002020-04-11 20:47:09 -04001699#ifdef USE_FSCRYPT
1700 dat->Set_Block_Device("/dev/block/mapper/userdata");
1701#endif
Ethan Yonkerbd7492d2016-12-07 13:55:01 -06001702 if (dat != NULL) {
1703 DataManager::SetValue(TW_IS_DECRYPTED, 1);
1704 dat->Is_Decrypted = true;
1705 if (!Block_Device.empty()) {
1706 dat->Decrypted_Block_Device = Block_Device;
1707 gui_msg(Msg("decrypt_success_dev=Data successfully decrypted, new block device: '{1}'")(Block_Device));
1708 } else {
1709 gui_msg("decrypt_success_nodev=Data successfully decrypted");
1710 }
1711 dat->Setup_File_System(false);
bigbiffadc599e2020-05-28 19:36:30 +00001712 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 -06001713
bigbiffadc599e2020-05-28 19:36:30 +00001714 // Sleep for a bit so that the device will be ready
1715 sleep(1);
Ethan Yonkerbd7492d2016-12-07 13:55:01 -06001716 if (dat->Has_Data_Media && dat->Mount(false) && TWFunc::Path_Exists("/data/media/0")) {
1717 dat->Storage_Path = "/data/media/0";
1718 dat->Symlink_Path = dat->Storage_Path;
1719 DataManager::SetValue("tw_storage_path", "/data/media/0");
1720 DataManager::SetValue("tw_settings_path", "/data/media/0");
1721 dat->UnMount(false);
Ethan Yonkerbd7492d2016-12-07 13:55:01 -06001722 }
1723 Update_System_Details();
nkk71ffb02bd2017-06-04 23:12:16 +03001724 Output_Partition(dat);
Ethan Yonkerbd7492d2016-12-07 13:55:01 -06001725 UnMount_Main_Partitions();
1726 } else
1727 LOGERR("Unable to locate data partition.\n");
1728}
1729
bigbiffadc599e2020-05-28 19:36:30 +00001730int TWPartitionManager::Decrypt_Device(string Password) {
Dees_Troy5bf43922012-09-07 16:07:55 -04001731#ifdef TW_INCLUDE_CRYPTO
Ethan Yonkerddb63e22017-01-19 14:01:57 -06001732 char crypto_state[PROPERTY_VALUE_MAX], crypto_blkdev[PROPERTY_VALUE_MAX];
Ethan Yonker253368a2014-11-25 15:00:52 -06001733 std::vector<TWPartition*>::iterator iter;
Dees_Troy5bf43922012-09-07 16:07:55 -04001734
Ethan Yonker253368a2014-11-25 15:00:52 -06001735 // Mount any partitions that need to be mounted for decrypt
1736 for (iter = Partitions.begin(); iter != Partitions.end(); iter++) {
1737 if ((*iter)->Mount_To_Decrypt) {
1738 (*iter)->Mount(true);
1739 }
a39552696ff55ce2013-01-08 16:14:56 +00001740 }
oshmouna82a7542018-04-10 17:45:55 +02001741 property_set("twrp.mount_to_decrypt", "1");
a39552696ff55ce2013-01-08 16:14:56 +00001742
Ethan Yonkera1de1492015-11-04 11:58:27 -06001743 property_get("ro.crypto.state", crypto_state, "error");
1744 if (strcmp(crypto_state, "error") == 0) {
1745 property_set("ro.crypto.state", "encrypted");
1746 // Sleep for a bit so that services can start if needed
1747 sleep(1);
1748 }
1749
Ethan Yonkerbd7492d2016-12-07 13:55:01 -06001750 if (DataManager::GetIntValue(TW_IS_FBE)) {
1751#ifdef TW_INCLUDE_FBE
1752 if (!Mount_By_Path("/data", true)) // /data has to be mounted for FBE
1753 return -1;
1754 int retry_count = 10;
1755 while (!TWFunc::Path_Exists("/data/system/users/gatekeeper.password.key") && --retry_count)
bigbiffadc599e2020-05-28 19:36:30 +00001756 usleep(2000); // A small sleep is needed after mounting /data to ensure reliable decrypt... maybe because of DE?
1757 int user_id = DataManager::GetIntValue("tw_decrypt_user_id");
1758 LOGINFO("Decrypting FBE for user %i\n", user_id);
Ethan Yonkerbd7492d2016-12-07 13:55:01 -06001759 if (Decrypt_User(user_id, Password)) {
bigbiffadc599e2020-05-28 19:36:30 +00001760 Post_Decrypt("");
Ethan Yonkerbd7492d2016-12-07 13:55:01 -06001761 return 0;
1762 }
1763#else
1764 LOGERR("FBE support is not present\n");
1765#endif
1766 return -1;
1767 }
1768
Ethan Yonkerddb63e22017-01-19 14:01:57 -06001769 int pwret = -1;
1770 pid_t pid = fork();
1771 if (pid < 0) {
1772 LOGERR("fork failed\n");
1773 return -1;
1774 } else if (pid == 0) {
1775 // Child process
1776 char cPassword[255];
1777 strcpy(cPassword, Password.c_str());
1778 int ret = cryptfs_check_passwd(cPassword);
1779 exit(ret);
1780 } else {
1781 // Parent
1782 int status;
1783 if (TWFunc::Wait_For_Child_Timeout(pid, &status, "Decrypt", 30))
1784 pwret = -1;
1785 else
1786 pwret = WEXITSTATUS(status) ? -1 : 0;
1787 }
a39552696ff55ce2013-01-08 16:14:56 +00001788
nkk7171c6c502017-01-05 23:55:05 +02001789#ifdef TW_CRYPTO_USE_SYSTEM_VOLD
1790 if (pwret != 0) {
1791 pwret = vold_decrypt(Password);
nkk717d1222a2017-11-06 17:27:21 +02001792 switch (pwret) {
1793 case VD_SUCCESS:
1794 break;
1795 case VD_ERR_MISSING_VDC:
1796 gui_msg(Msg(msg::kError, "decrypt_data_vold_os_missing=Missing files needed for vold decrypt: {1}")("/system/bin/vdc"));
1797 break;
1798 case VD_ERR_MISSING_VOLD:
1799 gui_msg(Msg(msg::kError, "decrypt_data_vold_os_missing=Missing files needed for vold decrypt: {1}")("/system/bin/vold"));
1800 break;
1801 }
nkk7171c6c502017-01-05 23:55:05 +02001802 }
1803#endif // TW_CRYPTO_USE_SYSTEM_VOLD
1804
Ethan Yonker253368a2014-11-25 15:00:52 -06001805 // Unmount any partitions that were needed for decrypt
1806 for (iter = Partitions.begin(); iter != Partitions.end(); iter++) {
1807 if ((*iter)->Mount_To_Decrypt) {
1808 (*iter)->UnMount(false);
1809 }
1810 }
oshmouna82a7542018-04-10 17:45:55 +02001811 property_set("twrp.mount_to_decrypt", "0");
Ethan Yonker253368a2014-11-25 15:00:52 -06001812
a39552696ff55ce2013-01-08 16:14:56 +00001813 if (pwret != 0) {
Ethan Yonker74db1572015-10-28 12:44:49 -05001814 gui_err("fail_decrypt=Failed to decrypt data.");
Dees_Troy5bf43922012-09-07 16:07:55 -04001815 return -1;
1816 }
a39552696ff55ce2013-01-08 16:14:56 +00001817
Dees_Troy5bf43922012-09-07 16:07:55 -04001818 property_get("ro.crypto.fs_crypto_blkdev", crypto_blkdev, "error");
1819 if (strcmp(crypto_blkdev, "error") == 0) {
Dees_Troy2673cec2013-04-02 20:22:16 +00001820 LOGERR("Error retrieving decrypted data block device.\n");
Dees_Troy5bf43922012-09-07 16:07:55 -04001821 } else {
Ethan Yonkerbd7492d2016-12-07 13:55:01 -06001822 Post_Decrypt(crypto_blkdev);
Dees_Troy5bf43922012-09-07 16:07:55 -04001823 }
1824 return 0;
1825#else
Ethan Yonker74db1572015-10-28 12:44:49 -05001826 gui_err("no_crypto_support=No crypto support was compiled into this build.");
Dees_Troy5bf43922012-09-07 16:07:55 -04001827 return -1;
1828#endif
Dees_Troy51a0e822012-09-05 15:24:24 -04001829 return 1;
Dees_Troy51127312012-09-08 13:08:49 -04001830}
1831
Ethan Yonkerb5fab762016-01-28 14:03:33 -06001832int TWPartitionManager::Fix_Contexts(void) {
Ethan Yonkerb5fab762016-01-28 14:03:33 -06001833 std::vector<TWPartition*>::iterator iter;
1834 for (iter = Partitions.begin(); iter != Partitions.end(); iter++) {
1835 if ((*iter)->Has_Data_Media) {
1836 if ((*iter)->Mount(true)) {
1837 if (fixContexts::fixDataMediaContexts((*iter)->Mount_Point) != 0)
1838 return -1;
1839 }
1840 }
1841 }
Dees_Troy1a650e62012-10-19 20:54:32 -04001842 UnMount_Main_Partitions();
Ethan Yonker74db1572015-10-28 12:44:49 -05001843 gui_msg("done=Done.");
Ethan Yonkerb5fab762016-01-28 14:03:33 -06001844 return 0;
bigbiff bigbiffa0f8a592012-10-09 21:01:03 -04001845}
1846
Ethan Yonker66a19492015-12-10 10:19:45 -06001847TWPartition* TWPartitionManager::Find_Next_Storage(string Path, bool Exclude_Data_Media) {
Ethan Yonker47360be2014-04-01 10:34:34 -05001848 std::vector<TWPartition*>::iterator iter = Partitions.begin();
1849
1850 if (!Path.empty()) {
1851 string Search_Path = TWFunc::Get_Root_Path(Path);
1852 for (; iter != Partitions.end(); iter++) {
Matt Mower9a561dd2016-02-22 21:25:51 -06001853 if ((*iter)->Mount_Point == Search_Path) {
Ethan Yonker47360be2014-04-01 10:34:34 -05001854 iter++;
1855 break;
1856 }
1857 }
1858 }
1859
1860 for (; iter != Partitions.end(); iter++) {
Ethan Yonker66a19492015-12-10 10:19:45 -06001861 if (Exclude_Data_Media && (*iter)->Has_Data_Media) {
1862 // do nothing, do not return this type of partition
1863 } else if ((*iter)->Is_Storage && (*iter)->Is_Present) {
Ethan Yonker47360be2014-04-01 10:34:34 -05001864 return (*iter);
1865 }
1866 }
1867
1868 return NULL;
1869}
1870
Dees_Troyd21618c2012-10-14 18:48:49 -04001871int TWPartitionManager::Open_Lun_File(string Partition_Path, string Lun_File) {
Dees_Troyd21618c2012-10-14 18:48:49 -04001872 TWPartition* Part = Find_Partition_By_Path(Partition_Path);
1873
1874 if (Part == NULL) {
Ethan Yonker74db1572015-10-28 12:44:49 -05001875 LOGINFO("Unable to locate '%s' for USB storage mode.", Partition_Path.c_str());
1876 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 -04001877 return false;
1878 }
Ethan Yonker47360be2014-04-01 10:34:34 -05001879 LOGINFO("USB mount '%s', '%s' > '%s'\n", Partition_Path.c_str(), Part->Actual_Block_Device.c_str(), Lun_File.c_str());
1880 if (!Part->UnMount(true) || !Part->Is_Present)
Dees_Troyd21618c2012-10-14 18:48:49 -04001881 return false;
1882
Ethan Yonker6e8c27a2016-12-22 17:55:57 -06001883 if (TWFunc::write_to_file(Lun_File, Part->Actual_Block_Device)) {
Dees_Troy2673cec2013-04-02 20:22:16 +00001884 LOGERR("Unable to write to ums lunfile '%s': (%s)\n", Lun_File.c_str(), strerror(errno));
Dees_Troyd21618c2012-10-14 18:48:49 -04001885 return false;
1886 }
Dees_Troyd21618c2012-10-14 18:48:49 -04001887 return true;
1888}
1889
Dees_Troy8170a922012-09-18 15:40:25 -04001890int TWPartitionManager::usb_storage_enable(void) {
Dees_Troy8170a922012-09-18 15:40:25 -04001891 char lun_file[255];
Dees_Troyd21618c2012-10-14 18:48:49 -04001892 bool has_multiple_lun = false;
Dees_Troy8170a922012-09-18 15:40:25 -04001893
Ethan Yonker47360be2014-04-01 10:34:34 -05001894 string Lun_File_str = CUSTOM_LUN_FILE;
1895 size_t found = Lun_File_str.find("%");
1896 if (found != string::npos) {
1897 sprintf(lun_file, CUSTOM_LUN_FILE, 1);
1898 if (TWFunc::Path_Exists(lun_file))
1899 has_multiple_lun = true;
1900 }
Ethan Yonker726a0202014-12-16 20:01:38 -06001901 mtp_was_enabled = TWFunc::Toggle_MTP(false); // Must disable MTP for USB Storage
Ethan Yonker47360be2014-04-01 10:34:34 -05001902 if (!has_multiple_lun) {
1903 LOGINFO("Device doesn't have multiple lun files, mount current storage\n");
1904 sprintf(lun_file, CUSTOM_LUN_FILE, 0);
1905 if (TWFunc::Get_Root_Path(DataManager::GetCurrentStoragePath()) == "/data") {
Ethan Yonker66a19492015-12-10 10:19:45 -06001906 TWPartition* Mount = Find_Next_Storage("", true);
Ethan Yonker47360be2014-04-01 10:34:34 -05001907 if (Mount) {
bigbiff bigbiffc7eee6f2014-09-02 18:59:01 -04001908 if (!Open_Lun_File(Mount->Mount_Point, lun_file)) {
1909 goto error_handle;
1910 }
Ethan Yonker47360be2014-04-01 10:34:34 -05001911 } else {
Ethan Yonker74db1572015-10-28 12:44:49 -05001912 gui_err("unable_locate_storage=Unable to locate storage device.");
bigbiff bigbiffc7eee6f2014-09-02 18:59:01 -04001913 goto error_handle;
Ethan Yonker47360be2014-04-01 10:34:34 -05001914 }
1915 } else if (!Open_Lun_File(DataManager::GetCurrentStoragePath(), lun_file)) {
bigbiff bigbiffc7eee6f2014-09-02 18:59:01 -04001916 goto error_handle;
Dees_Troy8170a922012-09-18 15:40:25 -04001917 }
Dees_Troy8170a922012-09-18 15:40:25 -04001918 } else {
Ethan Yonker47360be2014-04-01 10:34:34 -05001919 LOGINFO("Device has multiple lun files\n");
1920 TWPartition* Mount1;
1921 TWPartition* Mount2;
Dees_Troy8170a922012-09-18 15:40:25 -04001922 sprintf(lun_file, CUSTOM_LUN_FILE, 0);
Ethan Yonker66a19492015-12-10 10:19:45 -06001923 Mount1 = Find_Next_Storage("", true);
Ethan Yonker47360be2014-04-01 10:34:34 -05001924 if (Mount1) {
bigbiff bigbiffc7eee6f2014-09-02 18:59:01 -04001925 if (!Open_Lun_File(Mount1->Mount_Point, lun_file)) {
1926 goto error_handle;
1927 }
Matt Moweree717062014-04-26 01:46:46 -05001928 sprintf(lun_file, CUSTOM_LUN_FILE, 1);
Ethan Yonker66a19492015-12-10 10:19:45 -06001929 Mount2 = Find_Next_Storage(Mount1->Mount_Point, true);
Matt Mower1fdcdb72016-01-25 20:53:47 -06001930 if (Mount2 && Mount2->Mount_Point != Mount1->Mount_Point) {
Matt Moweree717062014-04-26 01:46:46 -05001931 Open_Lun_File(Mount2->Mount_Point, lun_file);
Ethan Yonker47360be2014-04-01 10:34:34 -05001932 }
1933 } else {
Ethan Yonker74db1572015-10-28 12:44:49 -05001934 gui_err("unable_locate_storage=Unable to locate storage device.");
bigbiff bigbiffc7eee6f2014-09-02 18:59:01 -04001935 goto error_handle;
Ethan Yonker47360be2014-04-01 10:34:34 -05001936 }
Dees_Troy8170a922012-09-18 15:40:25 -04001937 }
Matt Mowerb6ef4782014-11-06 02:24:36 -06001938 property_set("sys.storage.ums_enabled", "1");
HandyMenny37d42992014-10-26 22:15:59 +01001939 property_set("sys.usb.config", "mass_storage,adb");
Dees_Troy8170a922012-09-18 15:40:25 -04001940 return true;
bigbiff bigbiffc7eee6f2014-09-02 18:59:01 -04001941error_handle:
1942 if (mtp_was_enabled)
1943 if (!Enable_MTP())
1944 Disable_MTP();
1945 return false;
Dees_Troy8170a922012-09-18 15:40:25 -04001946}
1947
1948int TWPartitionManager::usb_storage_disable(void) {
Dees_Troy2673cec2013-04-02 20:22:16 +00001949 int index, ret;
1950 char lun_file[255], ch[2] = {0, 0};
1951 string str = ch;
Dees_Troy8170a922012-09-18 15:40:25 -04001952
1953 for (index=0; index<2; index++) {
1954 sprintf(lun_file, CUSTOM_LUN_FILE, index);
Ethan Yonker6e8c27a2016-12-22 17:55:57 -06001955 ret = TWFunc::write_to_file(lun_file, str);
Dees_Troy2673cec2013-04-02 20:22:16 +00001956 if (ret < 0) {
1957 break;
Dees_Troy8170a922012-09-18 15:40:25 -04001958 }
Dees_Troy8170a922012-09-18 15:40:25 -04001959 }
Dees_Troye58d5262012-09-21 12:27:57 -04001960 Mount_All_Storage();
1961 Update_System_Details();
Dees_Troycfd73ef2012-10-12 16:52:00 -04001962 UnMount_Main_Partitions();
Matt Mowerd9cb9062013-12-14 20:34:45 -06001963 property_set("sys.storage.ums_enabled", "0");
HandyMenny37d42992014-10-26 22:15:59 +01001964 property_set("sys.usb.config", "adb");
bigbiff bigbiffc7eee6f2014-09-02 18:59:01 -04001965 if (mtp_was_enabled)
1966 if (!Enable_MTP())
1967 Disable_MTP();
Dees_Troy2673cec2013-04-02 20:22:16 +00001968 if (ret < 0 && index == 0) {
1969 LOGERR("Unable to write to ums lunfile '%s'.", lun_file);
1970 return false;
1971 } else {
1972 return true;
1973 }
Dees_Troy8170a922012-09-18 15:40:25 -04001974 return true;
Dees_Troy812660f2012-09-20 09:55:17 -04001975}
1976
1977void TWPartitionManager::Mount_All_Storage(void) {
1978 std::vector<TWPartition*>::iterator iter;
1979
1980 for (iter = Partitions.begin(); iter != Partitions.end(); iter++) {
1981 if ((*iter)->Is_Storage)
1982 (*iter)->Mount(false);
1983 }
Dees_Troy2c50e182012-09-26 20:05:28 -04001984}
Dees_Troy9350b8d2012-09-27 12:38:38 -04001985
Dees_Troyd0384ef2012-10-12 12:15:42 -04001986void TWPartitionManager::UnMount_Main_Partitions(void) {
1987 // Unmounts system and data if data is not data/media
1988 // Also unmounts boot if boot is mountable
Dees_Troy2673cec2013-04-02 20:22:16 +00001989 LOGINFO("Unmounting main partitions...\n");
Dees_Troyd0384ef2012-10-12 12:15:42 -04001990
1991 TWPartition* Boot_Partition = Find_Partition_By_Path("/boot");
1992
Captain Throwback9d6feb52018-07-27 10:05:24 -04001993 UnMount_By_Path(Get_Android_Root_Path(), true);
Ethan Yonker6277c792014-09-15 14:54:30 -05001994 if (!datamedia)
1995 UnMount_By_Path("/data", true);
1996
Dees_Troyd0384ef2012-10-12 12:15:42 -04001997 if (Boot_Partition != NULL && Boot_Partition->Can_Be_Mounted)
1998 Boot_Partition->UnMount(true);
1999}
2000
Dees_Troy9350b8d2012-09-27 12:38:38 -04002001int TWPartitionManager::Partition_SDCard(void) {
Matt Mower23d8aae2017-01-06 14:30:33 -06002002 char temp[255];
Ethan Yonker483e9f42016-01-11 22:21:18 -06002003 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 -04002004 int ext, swap, total_size = 0, fat_size;
Dees_Troy9350b8d2012-09-27 12:38:38 -04002005
Ethan Yonker74db1572015-10-28 12:44:49 -05002006 gui_msg("start_partition_sd=Partitioning SD Card...");
Ethan Yonker483e9f42016-01-11 22:21:18 -06002007
2008 // Locate and validate device to partition
2009 TWPartition* SDCard = Find_Partition_By_Path(DataManager::GetCurrentStoragePath());
2010
Ethan Yonker66a19492015-12-10 10:19:45 -06002011 if (SDCard->Is_Adopted_Storage)
2012 SDCard->Revert_Adopted();
2013
Ethan Yonker1eff6cd2014-09-15 13:30:42 -05002014 if (SDCard == NULL || !SDCard->Removable || SDCard->Has_Data_Media) {
Ethan Yonker74db1572015-10-28 12:44:49 -05002015 gui_err("partition_sd_locate=Unable to locate device to partition.");
Dees_Troy9350b8d2012-09-27 12:38:38 -04002016 return false;
2017 }
Ethan Yonker483e9f42016-01-11 22:21:18 -06002018
2019 // Unmount everything
Dees_Troy9350b8d2012-09-27 12:38:38 -04002020 if (!SDCard->UnMount(true))
2021 return false;
2022 TWPartition* SDext = Find_Partition_By_Path("/sd-ext");
2023 if (SDext != NULL) {
2024 if (!SDext->UnMount(true))
2025 return false;
2026 }
Ethan Yonker483e9f42016-01-11 22:21:18 -06002027 char* swappath = getenv("SWAPPATH");
2028 if (swappath != NULL) {
2029 LOGINFO("Unmounting swap at '%s'\n", swappath);
2030 umount(swappath);
2031 }
Vojtech Bocek05534202013-09-11 08:11:56 +02002032
Ethan Yonker483e9f42016-01-11 22:21:18 -06002033 // Determine block device
2034 if (SDCard->Alternate_Block_Device.empty()) {
2035 SDCard->Find_Actual_Block_Device();
2036 Device = SDCard->Actual_Block_Device;
2037 // Just use the root block device
2038 Device.resize(strlen("/dev/block/mmcblkX"));
2039 } else {
2040 Device = SDCard->Alternate_Block_Device;
2041 }
Dees_Troy9350b8d2012-09-27 12:38:38 -04002042
2043 // Find the size of the block device:
Ethan Yonker483e9f42016-01-11 22:21:18 -06002044 total_size = (int)(TWFunc::IOCTL_Get_Block_Size(Device.c_str()) / (1048576));
Dees_Troy9350b8d2012-09-27 12:38:38 -04002045
2046 DataManager::GetValue("tw_sdext_size", ext);
2047 DataManager::GetValue("tw_swap_size", swap);
2048 DataManager::GetValue("tw_sdpart_file_system", ext_format);
2049 fat_size = total_size - ext - swap;
Ethan Yonker483e9f42016-01-11 22:21:18 -06002050 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);
2051
2052 // Determine partition sizes
2053 if (swap == 0 && ext == 0) {
2054 fat_str = "-0";
2055 } else {
2056 memset(temp, 0, sizeof(temp));
2057 sprintf(temp, "%i", fat_size);
2058 fat_str = temp;
2059 fat_str += "MB";
2060 }
2061 if (swap == 0) {
2062 ext_str = "-0";
2063 } else {
2064 memset(temp, 0, sizeof(temp));
2065 sprintf(temp, "%i", ext);
2066 ext_str = "+";
2067 ext_str += temp;
2068 ext_str += "MB";
2069 }
2070
Dees_Troy9350b8d2012-09-27 12:38:38 -04002071 if (ext + swap > total_size) {
Ethan Yonker74db1572015-10-28 12:44:49 -05002072 gui_err("ext_swap_size=EXT + Swap size is larger than sdcard size.");
Dees_Troy9350b8d2012-09-27 12:38:38 -04002073 return false;
2074 }
Ethan Yonker483e9f42016-01-11 22:21:18 -06002075
Ethan Yonker74db1572015-10-28 12:44:49 -05002076 gui_msg("remove_part_table=Removing partition table...");
Ethan Yonker483e9f42016-01-11 22:21:18 -06002077 Command = "sgdisk --zap-all " + Device;
Dees_Troy2673cec2013-04-02 20:22:16 +00002078 LOGINFO("Command is: '%s'\n", Command.c_str());
Vojtech Bocek05534202013-09-11 08:11:56 +02002079 if (TWFunc::Exec_Cmd(Command) != 0) {
Ethan Yonker74db1572015-10-28 12:44:49 -05002080 gui_err("unable_rm_part=Unable to remove partition table.");
Dees_Troy9350b8d2012-09-27 12:38:38 -04002081 Update_System_Details();
2082 return false;
2083 }
Ethan Yonker74db1572015-10-28 12:44:49 -05002084 gui_msg(Msg("create_part=Creating {1} partition...")("FAT32"));
Captain Throwback9643a802016-05-27 11:44:51 -04002085 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 +00002086 LOGINFO("Command is: '%s'\n", Command.c_str());
Vojtech Bocek05534202013-09-11 08:11:56 +02002087 if (TWFunc::Exec_Cmd(Command) != 0) {
Ethan Yonker74db1572015-10-28 12:44:49 -05002088 gui_msg(Msg(msg::kError, "unable_to_create_part=Unable to create {1} partition.")("FAT32"));
Dees_Troy9350b8d2012-09-27 12:38:38 -04002089 return false;
2090 }
2091 if (ext > 0) {
Ethan Yonker74db1572015-10-28 12:44:49 -05002092 gui_msg(Msg("create_part=Creating {1} partition...")("EXT"));
Ethan Yonker483e9f42016-01-11 22:21:18 -06002093 Command = "sgdisk --new=0:0:" + ext_str + " --change-name=0:\"Linux filesystem\" " + Device;
Dees_Troy2673cec2013-04-02 20:22:16 +00002094 LOGINFO("Command is: '%s'\n", Command.c_str());
Vojtech Bocek05534202013-09-11 08:11:56 +02002095 if (TWFunc::Exec_Cmd(Command) != 0) {
Ethan Yonker74db1572015-10-28 12:44:49 -05002096 gui_msg(Msg(msg::kError, "unable_to_create_part=Unable to create {1} partition.")("EXT"));
Dees_Troy9350b8d2012-09-27 12:38:38 -04002097 Update_System_Details();
2098 return false;
2099 }
2100 }
2101 if (swap > 0) {
Ethan Yonker74db1572015-10-28 12:44:49 -05002102 gui_msg(Msg("create_part=Creating {1} partition...")("swap"));
Ethan Yonker483e9f42016-01-11 22:21:18 -06002103 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 +00002104 LOGINFO("Command is: '%s'\n", Command.c_str());
Vojtech Bocek05534202013-09-11 08:11:56 +02002105 if (TWFunc::Exec_Cmd(Command) != 0) {
Ethan Yonker74db1572015-10-28 12:44:49 -05002106 gui_msg(Msg(msg::kError, "unable_to_create_part=Unable to create {1} partition.")("swap"));
Dees_Troy9350b8d2012-09-27 12:38:38 -04002107 Update_System_Details();
2108 return false;
2109 }
2110 }
Ethan Yonker483e9f42016-01-11 22:21:18 -06002111
2112 // Convert GPT to MBR
2113 Command = "sgdisk --gpttombr " + Device;
2114 if (TWFunc::Exec_Cmd(Command) != 0)
2115 LOGINFO("Failed to covert partition GPT to MBR\n");
2116
2117 // Tell the kernel to rescan the partition table
2118 int fd = open(Device.c_str(), O_RDONLY);
2119 ioctl(fd, BLKRRPART, 0);
2120 close(fd);
2121
2122 string format_device = Device;
2123 if (Device.substr(0, 17) == "/dev/block/mmcblk")
2124 format_device += "p";
2125
2126 // Format new partitions to proper file system
2127 if (fat_size > 0) {
2128 Command = "mkfs.fat " + format_device + "1";
2129 TWFunc::Exec_Cmd(Command);
2130 }
Dees_Troy9350b8d2012-09-27 12:38:38 -04002131 if (ext > 0) {
2132 if (SDext == NULL) {
Ethan Yonker483e9f42016-01-11 22:21:18 -06002133 Command = "mke2fs -t " + ext_format + " -m 0 " + format_device + "2";
2134 gui_msg(Msg("format_sdext_as=Formatting sd-ext as {1}...")(ext_format));
2135 LOGINFO("Formatting sd-ext after partitioning, command: '%s'\n", Command.c_str());
2136 TWFunc::Exec_Cmd(Command);
2137 } else {
2138 SDext->Wipe(ext_format);
Dees_Troy9350b8d2012-09-27 12:38:38 -04002139 }
Ethan Yonker483e9f42016-01-11 22:21:18 -06002140 }
2141 if (swap > 0) {
2142 Command = "mkswap " + format_device;
2143 if (ext > 0)
2144 Command += "3";
2145 else
2146 Command += "2";
Vojtech Bocek05534202013-09-11 08:11:56 +02002147 TWFunc::Exec_Cmd(Command);
Dees_Troy9350b8d2012-09-27 12:38:38 -04002148 }
2149
Ethan Yonker483e9f42016-01-11 22:21:18 -06002150 // recreate TWRP folder and rewrite settings - these will be gone after sdcard is partitioned
2151 if (SDCard->Mount(true)) {
2152 string TWRP_Folder = SDCard->Mount_Point + "/TWRP";
2153 mkdir(TWRP_Folder.c_str(), 0777);
2154 DataManager::Flush();
2155 }
2156
Dees_Troy9350b8d2012-09-27 12:38:38 -04002157 Update_System_Details();
Ethan Yonker74db1572015-10-28 12:44:49 -05002158 gui_msg("part_complete=Partitioning complete.");
Dees_Troy9350b8d2012-09-27 12:38:38 -04002159 return true;
bigbiff bigbiffa0f8a592012-10-09 21:01:03 -04002160}
Dees_Troya13d74f2013-03-24 08:54:55 -05002161
2162void TWPartitionManager::Get_Partition_List(string ListType, std::vector<PartitionList> *Partition_List) {
2163 std::vector<TWPartition*>::iterator iter;
2164 if (ListType == "mount") {
2165 for (iter = Partitions.begin(); iter != Partitions.end(); iter++) {
Ethan Yonker6e8c27a2016-12-22 17:55:57 -06002166 if ((*iter)->Can_Be_Mounted) {
Dees_Troya13d74f2013-03-24 08:54:55 -05002167 struct PartitionList part;
2168 part.Display_Name = (*iter)->Display_Name;
2169 part.Mount_Point = (*iter)->Mount_Point;
2170 part.selected = (*iter)->Is_Mounted();
2171 Partition_List->push_back(part);
2172 }
2173 }
2174 } else if (ListType == "storage") {
2175 char free_space[255];
2176 string Current_Storage = DataManager::GetCurrentStoragePath();
2177 for (iter = Partitions.begin(); iter != Partitions.end(); iter++) {
2178 if ((*iter)->Is_Storage) {
2179 struct PartitionList part;
2180 sprintf(free_space, "%llu", (*iter)->Free / 1024 / 1024);
2181 part.Display_Name = (*iter)->Storage_Name + " (";
2182 part.Display_Name += free_space;
2183 part.Display_Name += "MB)";
2184 part.Mount_Point = (*iter)->Storage_Path;
2185 if ((*iter)->Storage_Path == Current_Storage)
2186 part.selected = 1;
2187 else
2188 part.selected = 0;
2189 Partition_List->push_back(part);
2190 }
2191 }
2192 } else if (ListType == "backup") {
2193 char backup_size[255];
Dees_Troy9e0b71c2013-04-08 13:35:37 +00002194 unsigned long long Backup_Size;
Dees_Troya13d74f2013-03-24 08:54:55 -05002195 for (iter = Partitions.begin(); iter != Partitions.end(); iter++) {
Dees_Troy9e0b71c2013-04-08 13:35:37 +00002196 if ((*iter)->Can_Be_Backed_Up && !(*iter)->Is_SubPartition && (*iter)->Is_Present) {
Dees_Troya13d74f2013-03-24 08:54:55 -05002197 struct PartitionList part;
Dees_Troy9e0b71c2013-04-08 13:35:37 +00002198 Backup_Size = (*iter)->Backup_Size;
2199 if ((*iter)->Has_SubPartition) {
2200 std::vector<TWPartition*>::iterator subpart;
2201
2202 for (subpart = Partitions.begin(); subpart != Partitions.end(); subpart++) {
2203 if ((*subpart)->Is_SubPartition && (*subpart)->Can_Be_Backed_Up && (*subpart)->Is_Present && (*subpart)->SubPartition_Of == (*iter)->Mount_Point)
2204 Backup_Size += (*subpart)->Backup_Size;
2205 }
2206 }
2207 sprintf(backup_size, "%llu", Backup_Size / 1024 / 1024);
Dees_Troya13d74f2013-03-24 08:54:55 -05002208 part.Display_Name = (*iter)->Backup_Display_Name + " (";
2209 part.Display_Name += backup_size;
2210 part.Display_Name += "MB)";
2211 part.Mount_Point = (*iter)->Backup_Path;
2212 part.selected = 0;
2213 Partition_List->push_back(part);
2214 }
2215 }
2216 } else if (ListType == "restore") {
2217 string Restore_List, restore_path;
2218 TWPartition* restore_part = NULL;
2219
2220 DataManager::GetValue("tw_restore_list", Restore_List);
2221 if (!Restore_List.empty()) {
2222 size_t start_pos = 0, end_pos = Restore_List.find(";", start_pos);
2223 while (end_pos != string::npos && start_pos < Restore_List.size()) {
2224 restore_path = Restore_List.substr(start_pos, end_pos - start_pos);
bigbiff bigbiff19fb79c2016-09-05 21:04:51 -04002225 struct PartitionList part;
2226 if (restore_path.compare("ADB_Backup") == 0) {
2227 part.Display_Name = "ADB Backup";
2228 part.Mount_Point = "ADB Backup";
2229 part.selected = 1;
2230 Partition_List->push_back(part);
2231 break;
2232 }
Dees_Troy59df9262013-06-19 14:53:57 -05002233 if ((restore_part = Find_Partition_By_Path(restore_path)) != NULL) {
Dees Troy4159aed2014-02-28 17:24:43 +00002234 if ((restore_part->Backup_Name == "recovery" && !restore_part->Can_Be_Backed_Up) || restore_part->Is_SubPartition) {
Dees_Troya13d74f2013-03-24 08:54:55 -05002235 // Don't allow restore of recovery (causes problems on some devices)
Dees_Troy59df9262013-06-19 14:53:57 -05002236 // Don't add subpartitions to the list of items
Dees_Troya13d74f2013-03-24 08:54:55 -05002237 } else {
Dees_Troya13d74f2013-03-24 08:54:55 -05002238 part.Display_Name = restore_part->Backup_Display_Name;
2239 part.Mount_Point = restore_part->Backup_Path;
2240 part.selected = 1;
2241 Partition_List->push_back(part);
2242 }
2243 } else {
Ethan Yonker74db1572015-10-28 12:44:49 -05002244 gui_msg(Msg(msg::kError, "restore_unable_locate=Unable to locate '{1}' partition for restoring.")(restore_path));
Dees_Troya13d74f2013-03-24 08:54:55 -05002245 }
2246 start_pos = end_pos + 1;
2247 end_pos = Restore_List.find(";", start_pos);
2248 }
2249 }
2250 } else if (ListType == "wipe") {
2251 struct PartitionList dalvik;
Ethan Yonker74db1572015-10-28 12:44:49 -05002252 dalvik.Display_Name = gui_parse_text("{@dalvik}");
Dees_Troya13d74f2013-03-24 08:54:55 -05002253 dalvik.Mount_Point = "DALVIK";
2254 dalvik.selected = 0;
2255 Partition_List->push_back(dalvik);
2256 for (iter = Partitions.begin(); iter != Partitions.end(); iter++) {
2257 if ((*iter)->Wipe_Available_in_GUI && !(*iter)->Is_SubPartition) {
2258 struct PartitionList part;
2259 part.Display_Name = (*iter)->Display_Name;
2260 part.Mount_Point = (*iter)->Mount_Point;
2261 part.selected = 0;
2262 Partition_List->push_back(part);
2263 }
2264 if ((*iter)->Has_Android_Secure) {
2265 struct PartitionList part;
2266 part.Display_Name = (*iter)->Backup_Display_Name;
2267 part.Mount_Point = (*iter)->Backup_Path;
2268 part.selected = 0;
2269 Partition_List->push_back(part);
2270 }
Dees_Troy74fb2e92013-04-15 14:35:47 +00002271 if ((*iter)->Has_Data_Media) {
2272 struct PartitionList datamedia;
2273 datamedia.Display_Name = (*iter)->Storage_Name;
2274 datamedia.Mount_Point = "INTERNAL";
2275 datamedia.selected = 0;
2276 Partition_List->push_back(datamedia);
2277 }
Dees_Troya13d74f2013-03-24 08:54:55 -05002278 }
Ethan Yonker96af84a2015-01-05 14:58:36 -06002279 } else if (ListType == "flashimg") {
2280 for (iter = Partitions.begin(); iter != Partitions.end(); iter++) {
2281 if ((*iter)->Can_Flash_Img && (*iter)->Is_Present) {
2282 struct PartitionList part;
2283 part.Display_Name = (*iter)->Backup_Display_Name;
2284 part.Mount_Point = (*iter)->Backup_Path;
2285 part.selected = 0;
2286 Partition_List->push_back(part);
2287 }
2288 }
Ethan Yonker53796e72019-01-11 22:49:52 -06002289 if (DataManager::GetIntValue("tw_has_repack_tools") != 0 && DataManager::GetIntValue("tw_has_boot_slots") != 0) {
2290 TWPartition* boot = Find_Partition_By_Path("/boot");
2291 if (boot) {
2292 // Allow flashing kernels and ramdisks
2293 struct PartitionList repack_ramdisk;
2294 repack_ramdisk.Display_Name = gui_lookup("install_twrp_ramdisk", "Install Recovery Ramdisk");
2295 repack_ramdisk.Mount_Point = "/repack_ramdisk";
2296 repack_ramdisk.selected = 0;
2297 Partition_List->push_back(repack_ramdisk);
2298 /*struct PartitionList repack_kernel; For now let's leave repacking kernels under advanced only
2299 repack_kernel.Display_Name = gui_lookup("install_kernel", "Install Kernel");
2300 repack_kernel.Mount_Point = "/repack_kernel";
2301 repack_kernel.selected = 0;
2302 Partition_List->push_back(repack_kernel);*/
2303 }
2304 }
Dees_Troya13d74f2013-03-24 08:54:55 -05002305 } else {
Dees_Troy2673cec2013-04-02 20:22:16 +00002306 LOGERR("Unknown list type '%s' requested for TWPartitionManager::Get_Partition_List\n", ListType.c_str());
Dees_Troya13d74f2013-03-24 08:54:55 -05002307 }
2308}
2309
2310int TWPartitionManager::Fstab_Processed(void) {
2311 return Partitions.size();
2312}
Dees_Troyd93bda52013-07-03 19:55:19 +00002313
2314void TWPartitionManager::Output_Storage_Fstab(void) {
2315 std::vector<TWPartition*>::iterator iter;
2316 char storage_partition[255];
bigbiff bigbiffe4bdb152019-03-23 18:33:17 -04002317 std::string Temp;
2318 std::string cacheDir = TWFunc::get_cache_dir();
2319
2320 if (cacheDir.empty()) {
2321 LOGINFO("Unable to find cache directory\n");
2322 return;
2323 }
bigbiff bigbiff19874f12019-01-08 20:06:57 -05002324
2325 std::string storageFstab = TWFunc::get_cache_dir() + "recovery/storage.fstab";
2326 FILE *fp = fopen(storageFstab.c_str(), "w");
Dees_Troyd93bda52013-07-03 19:55:19 +00002327
2328 if (fp == NULL) {
bigbiff bigbiff19874f12019-01-08 20:06:57 -05002329 gui_msg(Msg(msg::kError, "unable_to_open=Unable to open '{1}'.")(storageFstab));
Dees_Troyd93bda52013-07-03 19:55:19 +00002330 return;
2331 }
2332
2333 // Iterate through all partitions
2334 for (iter = Partitions.begin(); iter != Partitions.end(); iter++) {
2335 if ((*iter)->Is_Storage) {
2336 Temp = (*iter)->Storage_Path + ";" + (*iter)->Storage_Name + ";\n";
2337 strcpy(storage_partition, Temp.c_str());
2338 fwrite(storage_partition, sizeof(storage_partition[0]), strlen(storage_partition) / sizeof(storage_partition[0]), fp);
2339 }
2340 }
2341 fclose(fp);
Vojtech Bocekfafb0c52013-07-25 22:53:02 +02002342}
Vojtech Bocek93cb1ef2014-05-12 15:41:52 +02002343
2344TWPartition *TWPartitionManager::Get_Default_Storage_Partition()
2345{
2346 TWPartition *res = NULL;
2347 for (std::vector<TWPartition*>::iterator iter = Partitions.begin(); iter != Partitions.end(); ++iter) {
Matt Mowera8a89d12016-12-30 18:10:37 -06002348 if (!(*iter)->Is_Storage)
Vojtech Bocek93cb1ef2014-05-12 15:41:52 +02002349 continue;
2350
Matt Mowera8a89d12016-12-30 18:10:37 -06002351 if ((*iter)->Is_Settings_Storage)
Vojtech Bocek93cb1ef2014-05-12 15:41:52 +02002352 return *iter;
2353
Matt Mowera8a89d12016-12-30 18:10:37 -06002354 if (!res)
Vojtech Bocek93cb1ef2014-05-12 15:41:52 +02002355 res = *iter;
2356 }
2357 return res;
2358}
bigbiff bigbiffc7eee6f2014-09-02 18:59:01 -04002359
2360bool TWPartitionManager::Enable_MTP(void) {
2361#ifdef TW_HAS_MTP
Ethan Yonker8dfa7772014-09-04 21:48:41 -05002362 if (mtppid) {
Ethan Yonker74db1572015-10-28 12:44:49 -05002363 gui_err("mtp_already_enabled=MTP already enabled");
bigbiff bigbiffc7eee6f2014-09-02 18:59:01 -04002364 return true;
2365 }
Ethan Yonker726a0202014-12-16 20:01:38 -06002366
2367 int mtppipe[2];
2368
2369 if (pipe(mtppipe) < 0) {
2370 LOGERR("Error creating MTP pipe\n");
2371 return false;
2372 }
2373
Ethan Yonkerdf7abac2014-12-29 10:48:17 -06002374 char old_value[PROPERTY_VALUE_MAX];
Matt Mowere07f0102017-02-23 17:40:00 -06002375 property_get("sys.usb.config", old_value, "");
2376 if (strcmp(old_value, "mtp,adb") != 0) {
Ethan Yonkerdf7abac2014-12-29 10:48:17 -06002377 char vendor[PROPERTY_VALUE_MAX];
2378 char product[PROPERTY_VALUE_MAX];
2379 property_set("sys.usb.config", "none");
2380 property_get("usb.vendor", vendor, "18D1");
2381 property_get("usb.product.mtpadb", product, "4EE2");
2382 string vendorstr = vendor;
2383 string productstr = product;
Ethan Yonker6e8c27a2016-12-22 17:55:57 -06002384 TWFunc::write_to_file("/sys/class/android_usb/android0/idVendor", vendorstr);
2385 TWFunc::write_to_file("/sys/class/android_usb/android0/idProduct", productstr);
Ethan Yonkerdf7abac2014-12-29 10:48:17 -06002386 property_set("sys.usb.config", "mtp,adb");
2387 }
Matt Mower653a1702017-02-16 10:38:52 -06002388 /* To enable MTP debug, use the twrp command line feature:
Ethan Yonker6d154c42014-09-03 14:19:43 -05002389 * twrp set tw_mtp_debug 1
2390 */
2391 twrpMtp *mtp = new twrpMtp(DataManager::GetIntValue("tw_mtp_debug"));
Ethan Yonker1b039202015-01-30 10:08:48 -06002392 mtppid = mtp->forkserver(mtppipe);
2393 if (mtppid) {
2394 close(mtppipe[0]); // Host closes read side
2395 mtp_write_fd = mtppipe[1];
2396 DataManager::SetValue("tw_mtp_enabled", 1);
2397 Add_All_MTP_Storage();
2398 return true;
Ethan Yonker726a0202014-12-16 20:01:38 -06002399 } else {
2400 close(mtppipe[0]);
2401 close(mtppipe[1]);
Ethan Yonker74db1572015-10-28 12:44:49 -05002402 gui_err("mtp_fail=Failed to enable MTP");
Ethan Yonker1b039202015-01-30 10:08:48 -06002403 return false;
bigbiff bigbiffc7eee6f2014-09-02 18:59:01 -04002404 }
bigbiff bigbiffc7eee6f2014-09-02 18:59:01 -04002405#else
Ethan Yonker74db1572015-10-28 12:44:49 -05002406 gui_err("no_mtp=MTP support not included");
bigbiff bigbiffc7eee6f2014-09-02 18:59:01 -04002407#endif
2408 DataManager::SetValue("tw_mtp_enabled", 0);
2409 return false;
2410}
2411
Ethan Yonker1b039202015-01-30 10:08:48 -06002412void TWPartitionManager::Add_All_MTP_Storage(void) {
2413#ifdef TW_HAS_MTP
2414 std::vector<TWPartition*>::iterator iter;
2415
2416 if (!mtppid)
2417 return; // MTP is not enabled
2418
2419 for (iter = Partitions.begin(); iter != Partitions.end(); iter++) {
2420 if ((*iter)->Is_Storage && (*iter)->Is_Present && (*iter)->Mount(false))
2421 Add_Remove_MTP_Storage((*iter), MTP_MESSAGE_ADD_STORAGE);
2422 }
2423#else
2424 return;
2425#endif
2426}
2427
bigbiff bigbiffc7eee6f2014-09-02 18:59:01 -04002428bool TWPartitionManager::Disable_MTP(void) {
Ethan Yonkerdf7abac2014-12-29 10:48:17 -06002429 char old_value[PROPERTY_VALUE_MAX];
bigbiff bigbiffaf32bb92018-12-18 18:39:53 -05002430 property_set("sys.usb.ffs.mtp.ready", "0");
Matt Mowere07f0102017-02-23 17:40:00 -06002431 property_get("sys.usb.config", old_value, "");
Ethan Yonkerdf7abac2014-12-29 10:48:17 -06002432 if (strcmp(old_value, "adb") != 0) {
2433 char vendor[PROPERTY_VALUE_MAX];
2434 char product[PROPERTY_VALUE_MAX];
2435 property_set("sys.usb.config", "none");
2436 property_get("usb.vendor", vendor, "18D1");
Matt Mowere07f0102017-02-23 17:40:00 -06002437 property_get("usb.product.adb", product, "D001");
Ethan Yonkerdf7abac2014-12-29 10:48:17 -06002438 string vendorstr = vendor;
2439 string productstr = product;
Ethan Yonker6e8c27a2016-12-22 17:55:57 -06002440 TWFunc::write_to_file("/sys/class/android_usb/android0/idVendor", vendorstr);
2441 TWFunc::write_to_file("/sys/class/android_usb/android0/idProduct", productstr);
Ethan Yonkerdf7abac2014-12-29 10:48:17 -06002442 usleep(2000);
2443 }
bigbiff bigbiffc7eee6f2014-09-02 18:59:01 -04002444#ifdef TW_HAS_MTP
Ethan Yonker8dfa7772014-09-04 21:48:41 -05002445 if (mtppid) {
Ethan Yonker8613dc02014-09-11 09:28:20 -05002446 LOGINFO("Disabling MTP\n");
2447 int status;
2448 kill(mtppid, SIGKILL);
Ethan Yonker8dfa7772014-09-04 21:48:41 -05002449 mtppid = 0;
Ethan Yonker8613dc02014-09-11 09:28:20 -05002450 // We don't care about the exit value, but this prevents a zombie process
2451 waitpid(mtppid, &status, 0);
Ethan Yonker726a0202014-12-16 20:01:38 -06002452 close(mtp_write_fd);
2453 mtp_write_fd = -1;
bigbiff bigbiffc7eee6f2014-09-02 18:59:01 -04002454 }
Ethan Yonkerdf7abac2014-12-29 10:48:17 -06002455#endif
bigbiff bigbiffc7eee6f2014-09-02 18:59:01 -04002456 property_set("sys.usb.config", "adb");
Ethan Yonkerdf7abac2014-12-29 10:48:17 -06002457#ifdef TW_HAS_MTP
bigbiff bigbiffc7eee6f2014-09-02 18:59:01 -04002458 DataManager::SetValue("tw_mtp_enabled", 0);
2459 return true;
bigbiff bigbiffc7eee6f2014-09-02 18:59:01 -04002460#endif
Ethan Yonkerdf7abac2014-12-29 10:48:17 -06002461 return false;
bigbiff bigbiffc7eee6f2014-09-02 18:59:01 -04002462}
Ethan Yonker726a0202014-12-16 20:01:38 -06002463
2464TWPartition* TWPartitionManager::Find_Partition_By_MTP_Storage_ID(unsigned int Storage_ID) {
2465 std::vector<TWPartition*>::iterator iter;
2466
2467 for (iter = Partitions.begin(); iter != Partitions.end(); iter++) {
2468 if ((*iter)->MTP_Storage_ID == Storage_ID)
2469 return (*iter);
2470 }
2471 return NULL;
2472}
2473
2474bool TWPartitionManager::Add_Remove_MTP_Storage(TWPartition* Part, int message_type) {
2475#ifdef TW_HAS_MTP
2476 struct mtpmsg mtp_message;
2477
2478 if (!mtppid)
2479 return false; // MTP is disabled
2480
2481 if (mtp_write_fd < 0) {
Ethan Yonkerd9ff3c52015-01-21 21:51:20 -06002482 LOGINFO("MTP: mtp_write_fd is not set\n");
Ethan Yonker726a0202014-12-16 20:01:38 -06002483 return false;
2484 }
2485
2486 if (Part) {
Ethan Yonker4bfabab2014-12-29 09:15:37 -06002487 if (Part->MTP_Storage_ID == 0)
2488 return false;
Ethan Yonker726a0202014-12-16 20:01:38 -06002489 if (message_type == MTP_MESSAGE_REMOVE_STORAGE) {
2490 mtp_message.message_type = MTP_MESSAGE_REMOVE_STORAGE; // Remove
2491 LOGINFO("sending message to remove %i\n", Part->MTP_Storage_ID);
2492 mtp_message.storage_id = Part->MTP_Storage_ID;
2493 if (write(mtp_write_fd, &mtp_message, sizeof(mtp_message)) <= 0) {
Ethan Yonkerd9ff3c52015-01-21 21:51:20 -06002494 LOGINFO("error sending message to remove storage %i\n", Part->MTP_Storage_ID);
Ethan Yonker726a0202014-12-16 20:01:38 -06002495 return false;
2496 } else {
2497 LOGINFO("Message sent, remove storage ID: %i\n", Part->MTP_Storage_ID);
2498 return true;
2499 }
2500 } else if (message_type == MTP_MESSAGE_ADD_STORAGE && Part->Is_Mounted()) {
2501 mtp_message.message_type = MTP_MESSAGE_ADD_STORAGE; // Add
2502 mtp_message.storage_id = Part->MTP_Storage_ID;
Ethan Yonker6e8c27a2016-12-22 17:55:57 -06002503 if (Part->Storage_Path.size() >= sizeof(mtp_message.path)) {
2504 LOGERR("Storage path '%s' too large for mtpmsg\n", Part->Storage_Path.c_str());
2505 return false;
2506 }
2507 strcpy(mtp_message.path, Part->Storage_Path.c_str());
2508 if (Part->Storage_Name.size() >= sizeof(mtp_message.display)) {
2509 LOGERR("Storage name '%s' too large for mtpmsg\n", Part->Storage_Name.c_str());
2510 return false;
2511 }
2512 strcpy(mtp_message.display, Part->Storage_Name.c_str());
Ethan Yonker726a0202014-12-16 20:01:38 -06002513 mtp_message.maxFileSize = Part->Get_Max_FileSize();
Ethan Yonker1b039202015-01-30 10:08:48 -06002514 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 -06002515 if (write(mtp_write_fd, &mtp_message, sizeof(mtp_message)) <= 0) {
Ethan Yonkerd9ff3c52015-01-21 21:51:20 -06002516 LOGINFO("error sending message to add storage %i\n", Part->MTP_Storage_ID);
Ethan Yonker726a0202014-12-16 20:01:38 -06002517 return false;
2518 } else {
Ethan Yonker6e8c27a2016-12-22 17:55:57 -06002519 LOGINFO("Message sent, add storage ID: %i '%s'\n", Part->MTP_Storage_ID, mtp_message.path);
Ethan Yonker726a0202014-12-16 20:01:38 -06002520 return true;
2521 }
2522 } else {
2523 LOGERR("Unknown MTP message type: %i\n", message_type);
2524 }
2525 } else {
2526 // This hopefully never happens as the error handling should
2527 // occur in the calling function.
Ethan Yonkerd9ff3c52015-01-21 21:51:20 -06002528 LOGINFO("TWPartitionManager::Add_Remove_MTP_Storage NULL partition given\n");
Ethan Yonker726a0202014-12-16 20:01:38 -06002529 }
2530 return true;
2531#else
Ethan Yonker74db1572015-10-28 12:44:49 -05002532 gui_err("no_mtp=MTP support not included");
Ethan Yonker726a0202014-12-16 20:01:38 -06002533 DataManager::SetValue("tw_mtp_enabled", 0);
2534 return false;
2535#endif
2536}
2537
2538bool TWPartitionManager::Add_MTP_Storage(string Mount_Point) {
2539#ifdef TW_HAS_MTP
2540 TWPartition* Part = PartitionManager.Find_Partition_By_Path(Mount_Point);
2541 if (Part) {
2542 return PartitionManager.Add_Remove_MTP_Storage(Part, MTP_MESSAGE_ADD_STORAGE);
2543 } else {
Ethan Yonkerd9ff3c52015-01-21 21:51:20 -06002544 LOGINFO("TWFunc::Add_MTP_Storage unable to locate partition for '%s'\n", Mount_Point.c_str());
Ethan Yonker726a0202014-12-16 20:01:38 -06002545 }
2546#endif
2547 return false;
2548}
2549
2550bool TWPartitionManager::Add_MTP_Storage(unsigned int Storage_ID) {
2551#ifdef TW_HAS_MTP
2552 TWPartition* Part = PartitionManager.Find_Partition_By_MTP_Storage_ID(Storage_ID);
2553 if (Part) {
2554 return PartitionManager.Add_Remove_MTP_Storage(Part, MTP_MESSAGE_ADD_STORAGE);
2555 } else {
Ethan Yonkerd9ff3c52015-01-21 21:51:20 -06002556 LOGINFO("TWFunc::Add_MTP_Storage unable to locate partition for %i\n", Storage_ID);
Ethan Yonker726a0202014-12-16 20:01:38 -06002557 }
2558#endif
2559 return false;
2560}
2561
2562bool TWPartitionManager::Remove_MTP_Storage(string Mount_Point) {
2563#ifdef TW_HAS_MTP
2564 TWPartition* Part = PartitionManager.Find_Partition_By_Path(Mount_Point);
2565 if (Part) {
2566 return PartitionManager.Add_Remove_MTP_Storage(Part, MTP_MESSAGE_REMOVE_STORAGE);
2567 } else {
Ethan Yonkerd9ff3c52015-01-21 21:51:20 -06002568 LOGINFO("TWFunc::Remove_MTP_Storage unable to locate partition for '%s'\n", Mount_Point.c_str());
Ethan Yonker726a0202014-12-16 20:01:38 -06002569 }
2570#endif
2571 return false;
2572}
2573
2574bool TWPartitionManager::Remove_MTP_Storage(unsigned int Storage_ID) {
2575#ifdef TW_HAS_MTP
2576 TWPartition* Part = PartitionManager.Find_Partition_By_MTP_Storage_ID(Storage_ID);
2577 if (Part) {
2578 return PartitionManager.Add_Remove_MTP_Storage(Part, MTP_MESSAGE_REMOVE_STORAGE);
2579 } else {
Ethan Yonkerd9ff3c52015-01-21 21:51:20 -06002580 LOGINFO("TWFunc::Remove_MTP_Storage unable to locate partition for %i\n", Storage_ID);
Ethan Yonker726a0202014-12-16 20:01:38 -06002581 }
2582#endif
2583 return false;
2584}
Ethan Yonker96af84a2015-01-05 14:58:36 -06002585
Ethan Yonkere080c1f2016-09-19 13:50:25 -05002586bool TWPartitionManager::Flash_Image(string& path, string& filename) {
Matt Mower23d8aae2017-01-06 14:30:33 -06002587 int partition_count = 0;
Ethan Yonker96af84a2015-01-05 14:58:36 -06002588 TWPartition* flash_part = NULL;
bigbiffce8f83c2015-12-12 18:30:21 -05002589 string Flash_List, flash_path, full_filename;
Ethan Yonker96af84a2015-01-05 14:58:36 -06002590 size_t start_pos = 0, end_pos = 0;
2591
Ethan Yonkere080c1f2016-09-19 13:50:25 -05002592 full_filename = path + "/" + filename;
Ethan Yonker96af84a2015-01-05 14:58:36 -06002593
bigbiffce8f83c2015-12-12 18:30:21 -05002594 gui_msg("image_flash_start=[IMAGE FLASH STARTED]");
2595 gui_msg(Msg("img_to_flash=Image to flash: '{1}'")(full_filename));
2596
2597 if (!TWFunc::Path_Exists(full_filename)) {
2598 if (!Mount_By_Path(full_filename, true)) {
Ethan Yonkerb78fbdf2016-01-15 16:46:35 -06002599 return false;
2600 }
bigbiffce8f83c2015-12-12 18:30:21 -05002601 if (!TWFunc::Path_Exists(full_filename)) {
2602 gui_msg(Msg(msg::kError, "unable_to_locate=Unable to locate {1}.")(full_filename));
Ethan Yonkerb78fbdf2016-01-15 16:46:35 -06002603 return false;
2604 }
2605 }
Ethan Yonker96af84a2015-01-05 14:58:36 -06002606
Ethan Yonker53796e72019-01-11 22:49:52 -06002607 DataManager::GetValue("tw_flash_partition", Flash_List);
2608 Repack_Type repack = REPLACE_NONE;
2609 if (Flash_List == "/repack_ramdisk;") {
2610 repack = REPLACE_RAMDISK;
2611 } else if (Flash_List == "/repack_kernel;") {
2612 repack = REPLACE_KERNEL;
2613 }
2614 if (repack != REPLACE_NONE) {
2615 Repack_Options_struct Repack_Options;
2616 Repack_Options.Type = repack;
2617 Repack_Options.Disable_Verity = false;
2618 Repack_Options.Disable_Force_Encrypt = false;
2619 Repack_Options.Backup_First = DataManager::GetIntValue("tw_repack_backup_first") != 0;
2620 return Repack_Images(full_filename, Repack_Options);
2621 }
Ethan Yonkere080c1f2016-09-19 13:50:25 -05002622 PartitionSettings part_settings;
2623 part_settings.Backup_Folder = path;
2624 unsigned long long total_bytes = TWFunc::Get_File_Size(full_filename);
2625 ProgressTracking progress(total_bytes);
2626 part_settings.progress = &progress;
2627 part_settings.adbbackup = false;
2628 part_settings.PM_Method = PM_RESTORE;
Ethan Yonker74db1572015-10-28 12:44:49 -05002629 gui_msg("calc_restore=Calculating restore details...");
Ethan Yonker96af84a2015-01-05 14:58:36 -06002630 if (!Flash_List.empty()) {
2631 end_pos = Flash_List.find(";", start_pos);
2632 while (end_pos != string::npos && start_pos < Flash_List.size()) {
2633 flash_path = Flash_List.substr(start_pos, end_pos - start_pos);
2634 flash_part = Find_Partition_By_Path(flash_path);
2635 if (flash_part != NULL) {
2636 partition_count++;
2637 if (partition_count > 1) {
Ethan Yonker74db1572015-10-28 12:44:49 -05002638 gui_err("too_many_flash=Too many partitions selected for flashing.");
Ethan Yonker96af84a2015-01-05 14:58:36 -06002639 return false;
2640 }
2641 } else {
Ethan Yonker74db1572015-10-28 12:44:49 -05002642 gui_msg(Msg(msg::kError, "flash_unable_locate=Unable to locate '{1}' partition for flashing.")(flash_path));
Ethan Yonker96af84a2015-01-05 14:58:36 -06002643 return false;
2644 }
2645 start_pos = end_pos + 1;
2646 end_pos = Flash_List.find(";", start_pos);
2647 }
2648 }
2649
2650 if (partition_count == 0) {
Ethan Yonker74db1572015-10-28 12:44:49 -05002651 gui_err("no_part_flash=No partitions selected for flashing.");
Ethan Yonker96af84a2015-01-05 14:58:36 -06002652 return false;
2653 }
2654
2655 DataManager::SetProgress(0.0);
2656 if (flash_part) {
Ethan Yonkere080c1f2016-09-19 13:50:25 -05002657 flash_part->Backup_FileName = filename;
2658 if (!flash_part->Flash_Image(&part_settings))
Ethan Yonker96af84a2015-01-05 14:58:36 -06002659 return false;
2660 } else {
Ethan Yonker74db1572015-10-28 12:44:49 -05002661 gui_err("invalid_flash=Invalid flash partition specified.");
Ethan Yonker96af84a2015-01-05 14:58:36 -06002662 return false;
2663 }
Ethan Yonker74db1572015-10-28 12:44:49 -05002664 gui_highlight("flash_done=IMAGE FLASH COMPLETED]");
Ethan Yonker96af84a2015-01-05 14:58:36 -06002665 return true;
2666}
Ethan Yonker74db1572015-10-28 12:44:49 -05002667
2668void TWPartitionManager::Translate_Partition(const char* path, const char* resource_name, const char* default_value) {
2669 TWPartition* part = PartitionManager.Find_Partition_By_Path(path);
2670 if (part) {
Ethan Yonker66a19492015-12-10 10:19:45 -06002671 if (part->Is_Adopted_Storage) {
2672 part->Display_Name = part->Display_Name + " - " + gui_lookup("data", "Data");
2673 part->Backup_Display_Name = part->Display_Name;
2674 part->Storage_Name = part->Storage_Name + " - " + gui_lookup("adopted_storage", "Adopted Storage");
2675 } else {
2676 part->Display_Name = gui_lookup(resource_name, default_value);
2677 part->Backup_Display_Name = part->Display_Name;
2678 }
Ethan Yonker74db1572015-10-28 12:44:49 -05002679 }
2680}
2681
2682void TWPartitionManager::Translate_Partition(const char* path, const char* resource_name, const char* default_value, const char* storage_resource_name, const char* storage_default_value) {
2683 TWPartition* part = PartitionManager.Find_Partition_By_Path(path);
2684 if (part) {
Ethan Yonker66a19492015-12-10 10:19:45 -06002685 if (part->Is_Adopted_Storage) {
Ethan Yonker01f4e032017-02-03 15:30:52 -06002686 part->Backup_Display_Name = part->Display_Name + " - " + gui_lookup("data_backup", "Data (excl. storage)");
Ethan Yonker66a19492015-12-10 10:19:45 -06002687 part->Display_Name = part->Display_Name + " - " + gui_lookup("data", "Data");
Ethan Yonker66a19492015-12-10 10:19:45 -06002688 part->Storage_Name = part->Storage_Name + " - " + gui_lookup("adopted_storage", "Adopted Storage");
2689 } else {
2690 part->Display_Name = gui_lookup(resource_name, default_value);
2691 part->Backup_Display_Name = part->Display_Name;
2692 if (part->Is_Storage)
2693 part->Storage_Name = gui_lookup(storage_resource_name, storage_default_value);
2694 }
Ethan Yonker74db1572015-10-28 12:44:49 -05002695 }
2696}
2697
Ethan Yonker01f4e032017-02-03 15:30:52 -06002698void 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) {
2699 TWPartition* part = PartitionManager.Find_Partition_By_Path(path);
2700 if (part) {
2701 if (part->Is_Adopted_Storage) {
2702 part->Backup_Display_Name = part->Display_Name + " - " + gui_lookup(backup_name, backup_default);
2703 part->Display_Name = part->Display_Name + " - " + gui_lookup("data", "Data");
2704 part->Storage_Name = part->Storage_Name + " - " + gui_lookup("adopted_storage", "Adopted Storage");
2705 } else {
2706 part->Display_Name = gui_lookup(resource_name, default_value);
2707 part->Backup_Display_Name = gui_lookup(backup_name, backup_default);
2708 if (part->Is_Storage)
2709 part->Storage_Name = gui_lookup(storage_resource_name, storage_default_value);
2710 }
2711 }
2712}
2713
Ethan Yonker74db1572015-10-28 12:44:49 -05002714void TWPartitionManager::Translate_Partition_Display_Names() {
Ethan Yonker66a19492015-12-10 10:19:45 -06002715 LOGINFO("Translating partition display names\n");
Ethan Yonker74db1572015-10-28 12:44:49 -05002716 Translate_Partition("/system", "system", "System");
2717 Translate_Partition("/system_image", "system_image", "System Image");
2718 Translate_Partition("/vendor", "vendor", "Vendor");
2719 Translate_Partition("/vendor_image", "vendor_image", "Vendor Image");
2720 Translate_Partition("/cache", "cache", "Cache");
Ethan Yonker74db1572015-10-28 12:44:49 -05002721 Translate_Partition("/boot", "boot", "Boot");
2722 Translate_Partition("/recovery", "recovery", "Recovery");
2723 if (!datamedia) {
Ethan Yonker01f4e032017-02-03 15:30:52 -06002724 Translate_Partition("/data", "data", "Data", "internal", "Internal Storage");
Ethan Yonker74db1572015-10-28 12:44:49 -05002725 Translate_Partition("/sdcard", "sdcard", "SDCard", "sdcard", "SDCard");
2726 Translate_Partition("/internal_sd", "sdcard", "SDCard", "sdcard", "SDCard");
2727 Translate_Partition("/internal_sdcard", "sdcard", "SDCard", "sdcard", "SDCard");
2728 Translate_Partition("/emmc", "sdcard", "SDCard", "sdcard", "SDCard");
Ethan Yonker01f4e032017-02-03 15:30:52 -06002729 } else {
2730 Translate_Partition("/data", "data", "Data", "internal", "Internal Storage", "data_backup", "Data (excl. storage)");
Ethan Yonker74db1572015-10-28 12:44:49 -05002731 }
Ethan Yonker01f4e032017-02-03 15:30:52 -06002732 Translate_Partition("/external_sd", "microsd", "Micro SDCard", "microsd", "Micro SDCard", "data_backup", "Data (excl. storage)");
2733 Translate_Partition("/external_sdcard", "microsd", "Micro SDCard", "microsd", "Micro SDCard", "data_backup", "Data (excl. storage)");
Ethan Yonker74db1572015-10-28 12:44:49 -05002734 Translate_Partition("/usb-otg", "usbotg", "USB OTG", "usbotg", "USB OTG");
2735 Translate_Partition("/sd-ext", "sdext", "SD-EXT");
2736
2737 // Android secure is a special case
2738 TWPartition* part = PartitionManager.Find_Partition_By_Path("/and-sec");
2739 if (part)
2740 part->Backup_Display_Name = gui_lookup("android_secure", "Android Secure");
2741
Ethan Yonker6e8c27a2016-12-22 17:55:57 -06002742 std::vector<TWPartition*>::iterator sysfs;
2743 for (sysfs = Partitions.begin(); sysfs != Partitions.end(); sysfs++) {
2744 if (!(*sysfs)->Sysfs_Entry.empty()) {
2745 Translate_Partition((*sysfs)->Mount_Point.c_str(), "autostorage", "Storage", "autostorage", "Storage");
2746 }
2747 }
2748
Ethan Yonker74db1572015-10-28 12:44:49 -05002749 // This updates the text on all of the storage selection buttons in the GUI
2750 DataManager::SetBackupFolder();
2751}
Ethan Yonker66a19492015-12-10 10:19:45 -06002752
Ethan Yonker6e8c27a2016-12-22 17:55:57 -06002753bool TWPartitionManager::Decrypt_Adopted() {
Ethan Yonker66a19492015-12-10 10:19:45 -06002754#ifdef TW_INCLUDE_CRYPTO
Ethan Yonker6e8c27a2016-12-22 17:55:57 -06002755 bool ret = false;
Ethan Yonker66a19492015-12-10 10:19:45 -06002756 if (!Mount_By_Path("/data", false)) {
2757 LOGERR("Cannot decrypt adopted storage because /data will not mount\n");
Ethan Yonker6e8c27a2016-12-22 17:55:57 -06002758 return false;
Ethan Yonker66a19492015-12-10 10:19:45 -06002759 }
2760 LOGINFO("Decrypt adopted storage starting\n");
2761 char* xmlFile = PageManager::LoadFileToBuffer("/data/system/storage.xml", NULL);
2762 xml_document<> *doc = NULL;
2763 xml_node<>* volumes = NULL;
Ethan Yonker66a19492015-12-10 10:19:45 -06002764 string Primary_Storage_UUID = "";
2765 if (xmlFile != NULL) {
2766 LOGINFO("successfully loaded storage.xml\n");
2767 doc = new xml_document<>();
2768 doc->parse<0>(xmlFile);
2769 volumes = doc->first_node("volumes");
2770 if (volumes) {
2771 xml_attribute<>* psuuid = volumes->first_attribute("primaryStorageUuid");
2772 if (psuuid) {
2773 Primary_Storage_UUID = psuuid->value();
2774 }
2775 }
Ethan Yonker6e8c27a2016-12-22 17:55:57 -06002776 } else {
2777 LOGINFO("No /data/system/storage.xml for adopted storage\n");
2778 return false;
Ethan Yonker66a19492015-12-10 10:19:45 -06002779 }
2780 std::vector<TWPartition*>::iterator adopt;
2781 for (adopt = Partitions.begin(); adopt != Partitions.end(); adopt++) {
2782 if ((*adopt)->Removable && (*adopt)->Is_Present) {
2783 if ((*adopt)->Decrypt_Adopted() == 0) {
Ethan Yonker6e8c27a2016-12-22 17:55:57 -06002784 ret = true;
Ethan Yonker66a19492015-12-10 10:19:45 -06002785 if (volumes) {
2786 xml_node<>* volume = volumes->first_node("volume");
2787 while (volume) {
2788 xml_attribute<>* guid = volume->first_attribute("partGuid");
2789 if (guid) {
2790 string GUID = (*adopt)->Adopted_GUID.c_str();
2791 GUID.insert(8, "-");
2792 GUID.insert(13, "-");
2793 GUID.insert(18, "-");
2794 GUID.insert(23, "-");
2795
2796 if (strcasecmp(GUID.c_str(), guid->value()) == 0) {
2797 xml_attribute<>* attr = volume->first_attribute("nickname");
nkk71ffb02bd2017-06-04 23:12:16 +03002798 if (attr && attr->value() && strlen(attr->value()) > 0) {
Ethan Yonker66a19492015-12-10 10:19:45 -06002799 (*adopt)->Storage_Name = attr->value();
2800 (*adopt)->Display_Name = (*adopt)->Storage_Name;
2801 (*adopt)->Backup_Display_Name = (*adopt)->Storage_Name;
2802 LOGINFO("storage name from storage.xml is '%s'\n", attr->value());
2803 }
2804 attr = volume->first_attribute("fsUuid");
2805 if (attr && !Primary_Storage_UUID.empty() && strcmp(Primary_Storage_UUID.c_str(), attr->value()) == 0) {
2806 TWPartition* Dat = Find_Partition_By_Path("/data");
2807 if (Dat) {
2808 LOGINFO("Internal storage is found on adopted storage '%s'\n", (*adopt)->Display_Name.c_str());
2809 LOGINFO("Changing '%s' to point to '%s'\n", Dat->Symlink_Mount_Point.c_str(), (*adopt)->Storage_Path.c_str());
2810 (*adopt)->Symlink_Mount_Point = Dat->Symlink_Mount_Point;
2811 Dat->Symlink_Mount_Point = "";
2812 // Toggle mounts to ensure that the symlink mount point (probably /sdcard) is mounted to the right location
2813 Dat->UnMount(false);
2814 Dat->Mount(false);
2815 (*adopt)->UnMount(false);
2816 (*adopt)->Mount(false);
Ethan Yonker66a19492015-12-10 10:19:45 -06002817 }
2818 }
2819 break;
2820 }
2821 }
2822 volume = volume->next_sibling("volume");
2823 }
2824 }
nkk71ffb02bd2017-06-04 23:12:16 +03002825 Update_System_Details();
2826 Output_Partition((*adopt));
Ethan Yonker66a19492015-12-10 10:19:45 -06002827 }
2828 }
2829 }
2830 if (xmlFile) {
2831 doc->clear();
2832 delete doc;
2833 free(xmlFile);
2834 }
Ethan Yonker6e8c27a2016-12-22 17:55:57 -06002835 return ret;
Ethan Yonker66a19492015-12-10 10:19:45 -06002836#else
2837 LOGINFO("Decrypt_Adopted: no crypto support\n");
Ethan Yonker6e8c27a2016-12-22 17:55:57 -06002838 return false;
Ethan Yonker66a19492015-12-10 10:19:45 -06002839#endif
2840}
Ethan Yonkerfcf3f242016-02-16 12:30:26 -06002841
2842void TWPartitionManager::Remove_Partition_By_Path(string Path) {
2843 std::vector<TWPartition*>::iterator iter;
2844 string Local_Path = TWFunc::Get_Root_Path(Path);
2845
2846 for (iter = Partitions.begin(); iter != Partitions.end(); iter++) {
2847 if ((*iter)->Mount_Point == Local_Path || (!(*iter)->Symlink_Mount_Point.empty() && (*iter)->Symlink_Mount_Point == Local_Path)) {
2848 LOGINFO("Found and erasing '%s' from partition list\n", Local_Path.c_str());
2849 Partitions.erase(iter);
2850 return;
2851 }
2852 }
2853}
Ethan Yonker1b190162016-12-05 15:25:19 -06002854
2855void TWPartitionManager::Set_Active_Slot(const string& Slot) {
2856 if (Slot != "A" && Slot != "B") {
2857 LOGERR("Set_Active_Slot invalid slot '%s'\n", Slot.c_str());
2858 return;
2859 }
2860 if (Active_Slot_Display == Slot)
2861 return;
2862 LOGINFO("Setting active slot %s\n", Slot.c_str());
2863#ifdef AB_OTA_UPDATER
2864 if (!Active_Slot_Display.empty()) {
2865 const hw_module_t *hw_module;
2866 boot_control_module_t *module;
2867 int ret;
2868 ret = hw_get_module("bootctrl", &hw_module);
2869 if (ret != 0) {
2870 LOGERR("Error getting bootctrl module.\n");
2871 } else {
2872 module = (boot_control_module_t*) hw_module;
2873 module->init(module);
2874 int slot_number = 0;
2875 if (Slot == "B")
2876 slot_number = 1;
2877 if (module->setActiveBootSlot(module, slot_number))
2878 gui_msg(Msg(msg::kError, "unable_set_boot_slot=Error changing bootloader boot slot to {1}")(Slot));
2879 }
2880 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
2881 }
2882#else
2883 LOGERR("Boot slot feature not present\n");
2884#endif
2885 Active_Slot_Display = Slot;
2886 if (Fstab_Processed())
2887 Update_System_Details();
2888}
2889string TWPartitionManager::Get_Active_Slot_Suffix() {
2890 if (Active_Slot_Display == "A")
2891 return "_a";
2892 return "_b";
2893}
2894string TWPartitionManager::Get_Active_Slot_Display() {
2895 return Active_Slot_Display;
2896}
Ethan Yonker6e8c27a2016-12-22 17:55:57 -06002897
Captain Throwback9d6feb52018-07-27 10:05:24 -04002898string TWPartitionManager::Get_Android_Root_Path() {
Chaosmasterf6e42ce2020-01-27 00:17:04 +01002899 if (property_get_bool("ro.twrp.sar", false))
dianlujitao58f1a632020-01-16 23:03:56 +08002900 return "/system_root";
2901 return "/system";
Captain Throwback9d6feb52018-07-27 10:05:24 -04002902}
2903
Ethan Yonker6e8c27a2016-12-22 17:55:57 -06002904void TWPartitionManager::Remove_Uevent_Devices(const string& Mount_Point) {
2905 std::vector<TWPartition*>::iterator iter;
2906
2907 for (iter = Partitions.begin(); iter != Partitions.end(); ) {
2908 if ((*iter)->Is_SubPartition && (*iter)->SubPartition_Of == Mount_Point) {
2909 TWPartition *part = *iter;
2910 LOGINFO("%s was removed by uevent data\n", (*iter)->Mount_Point.c_str());
2911 (*iter)->UnMount(false);
2912 rmdir((*iter)->Mount_Point.c_str());
2913 iter = Partitions.erase(iter);
2914 delete part;
2915 } else {
2916 iter++;
2917 }
2918 }
2919}
2920
2921void TWPartitionManager::Handle_Uevent(const Uevent_Block_Data& uevent_data) {
2922 std::vector<TWPartition*>::iterator iter;
2923
2924 for (iter = Partitions.begin(); iter != Partitions.end(); iter++) {
2925 if (!(*iter)->Sysfs_Entry.empty()) {
2926 string device;
2927 size_t wildcard = (*iter)->Sysfs_Entry.find("*");
2928 if (wildcard != string::npos) {
2929 device = (*iter)->Sysfs_Entry.substr(0, wildcard);
2930 } else {
2931 device = (*iter)->Sysfs_Entry;
2932 }
2933 if (device == uevent_data.sysfs_path.substr(0, device.size())) {
2934 // Found a match
2935 if (uevent_data.action == "add") {
2936 (*iter)->Primary_Block_Device = "/dev/block/" + uevent_data.block_device;
2937 (*iter)->Alternate_Block_Device = (*iter)->Primary_Block_Device;
2938 (*iter)->Is_Present = true;
2939 LOGINFO("Found a match '%s' '%s'\n", uevent_data.block_device.c_str(), device.c_str());
2940 if (!Decrypt_Adopted()) {
2941 LOGINFO("No adopted storage so finding actual block device\n");
2942 (*iter)->Find_Actual_Block_Device();
2943 }
2944 return;
2945 } else if (uevent_data.action == "remove") {
2946 (*iter)->Is_Present = false;
2947 (*iter)->Primary_Block_Device = "";
2948 (*iter)->Actual_Block_Device = "";
2949 Remove_Uevent_Devices((*iter)->Mount_Point);
2950 return;
2951 }
2952 }
2953 }
2954 }
bigbiffee7b7ff2020-03-23 15:08:27 -04002955
2956 if (!PartitionManager.Get_Super_Status())
2957 LOGINFO("Found no matching fstab entry for uevent device '%s' - %s\n", uevent_data.sysfs_path.c_str(), uevent_data.action.c_str());
Ethan Yonker6e8c27a2016-12-22 17:55:57 -06002958}
2959
2960void TWPartitionManager::setup_uevent() {
2961 struct sockaddr_nl nls;
2962
2963 if (uevent_pfd.fd >= 0) {
2964 LOGINFO("uevent already set up\n");
2965 return;
2966 }
2967
2968 // Open hotplug event netlink socket
2969 memset(&nls,0,sizeof(struct sockaddr_nl));
2970 nls.nl_family = AF_NETLINK;
2971 nls.nl_pid = getpid();
2972 nls.nl_groups = -1;
2973 uevent_pfd.events = POLLIN;
2974 uevent_pfd.fd = socket(PF_NETLINK, SOCK_DGRAM, NETLINK_KOBJECT_UEVENT);
2975 if (uevent_pfd.fd==-1) {
2976 LOGERR("uevent not root\n");
2977 return;
2978 }
2979
2980 // Listen to netlink socket
2981 if (::bind(uevent_pfd.fd, (struct sockaddr *) &nls, sizeof(struct sockaddr_nl)) < 0) {
2982 LOGERR("Bind failed\n");
2983 return;
2984 }
2985 set_select_fd();
2986 Coldboot();
2987}
2988
2989Uevent_Block_Data TWPartitionManager::get_event_block_values(char *buf, int len) {
2990 Uevent_Block_Data ret;
2991 ret.subsystem = "";
2992 char *ptr = buf;
2993 const char *end = buf + len;
2994
2995 buf[len - 1] = '\0';
2996 while (ptr < end) {
2997 if (strncmp(ptr, "ACTION=", strlen("ACTION=")) == 0) {
2998 ptr += strlen("ACTION=");
2999 ret.action = ptr;
3000 } else if (strncmp(ptr, "SUBSYSTEM=", strlen("SUBSYSTEM=")) == 0) {
3001 ptr += strlen("SUBSYSTEM=");
3002 ret.subsystem = ptr;
3003 } else if (strncmp(ptr, "DEVTYPE=", strlen("DEVTYPE=")) == 0) {
3004 ptr += strlen("DEVTYPE=");
3005 ret.type = ptr;
3006 } else if (strncmp(ptr, "DEVPATH=", strlen("DEVPATH=")) == 0) {
3007 ptr += strlen("DEVPATH=");
3008 ret.sysfs_path += ptr;
3009 } else if (strncmp(ptr, "DEVNAME=", strlen("DEVNAME=")) == 0) {
3010 ptr += strlen("DEVNAME=");
3011 ret.block_device += ptr;
3012 } else if (strncmp(ptr, "MAJOR=", strlen("MAJOR=")) == 0) {
3013 ptr += strlen("MAJOR=");
3014 ret.major = atoi(ptr);
3015 } else if (strncmp(ptr, "MINOR=", strlen("MINOR=")) == 0) {
3016 ptr += strlen("MINOR=");
3017 ret.minor = atoi(ptr);
3018 }
3019 ptr += strlen(ptr) + 1;
3020 }
3021 return ret;
3022}
3023
3024void TWPartitionManager::read_uevent() {
3025 char buf[1024];
3026
3027 int len = recv(uevent_pfd.fd, buf, sizeof(buf), MSG_DONTWAIT);
3028 if (len == -1) {
bigbiffd58ba182020-03-23 10:02:29 -04003029 LOGERR("recv error on uevent\n");
Ethan Yonker6e8c27a2016-12-22 17:55:57 -06003030 return;
3031 }
3032 /*int i = 0; // Print all uevent output for test /debug
3033 while (i<len) {
3034 printf("%s\n", buf+i);
3035 i += strlen(buf+i)+1;
3036 }*/
3037 Uevent_Block_Data uevent_data = get_event_block_values(buf, len);
3038 if (uevent_data.subsystem == "block" && uevent_data.type == "disk") {
3039 PartitionManager.Handle_Uevent(uevent_data);
3040 }
3041}
3042
3043void TWPartitionManager::close_uevent() {
3044 if (uevent_pfd.fd > 0)
3045 close(uevent_pfd.fd);
3046 uevent_pfd.fd = -1;
3047}
3048
3049void TWPartitionManager::Add_Partition(TWPartition* Part) {
3050 Partitions.push_back(Part);
3051}
3052
3053void TWPartitionManager::Coldboot_Scan(std::vector<string> *sysfs_entries, const string& Path, int depth) {
3054 string Real_Path = Path;
3055 char real_path[PATH_MAX];
3056 if (realpath(Path.c_str(), &real_path[0])) {
3057 string Real_Path = real_path;
3058 std::vector<string>::iterator iter;
3059 for (iter = sysfs_entries->begin(); iter != sysfs_entries->end(); iter++) {
3060 if (Real_Path.find((*iter)) != string::npos) {
3061 string Write_Path = Real_Path + "/uevent";
3062 if (TWFunc::Path_Exists(Write_Path)) {
3063 const char* write_val = "add\n";
3064 TWFunc::write_to_file(Write_Path, write_val);
3065 break;
3066 }
3067 }
3068 }
3069 }
3070
3071 DIR* d = opendir(Path.c_str());
3072 if (d != NULL) {
3073 struct dirent* de;
3074 while ((de = readdir(d)) != NULL) {
3075 if (de->d_name[0] == '.' || (de->d_type != DT_DIR && depth > 0))
3076 continue;
3077 if (strlen(de->d_name) >= 4 && (strncmp(de->d_name, "ram", 3) == 0 || strncmp(de->d_name, "loop", 4) == 0))
3078 continue;
3079
3080 string item = Path + "/";
3081 item.append(de->d_name);
3082 Coldboot_Scan(sysfs_entries, item, depth + 1);
3083 }
3084 closedir(d);
3085 }
3086}
3087
3088void TWPartitionManager::Coldboot() {
3089 std::vector<TWPartition*>::iterator iter;
3090 std::vector<string> sysfs_entries;
3091
3092 for (iter = Partitions.begin(); iter != Partitions.end(); iter++) {
3093 if (!(*iter)->Sysfs_Entry.empty()) {
3094 size_t wildcard_pos = (*iter)->Sysfs_Entry.find("*");
3095 if (wildcard_pos == string::npos)
3096 wildcard_pos = (*iter)->Sysfs_Entry.size();
3097 sysfs_entries.push_back((*iter)->Sysfs_Entry.substr(0, wildcard_pos));
3098 }
3099 }
3100
3101 if (sysfs_entries.size() > 0)
3102 Coldboot_Scan(&sysfs_entries, "/sys/block", 0);
3103}
Ethan Yonker53796e72019-01-11 22:49:52 -06003104
3105bool TWPartitionManager::Prepare_Empty_Folder(const std::string& Folder) {
3106 if (TWFunc::Path_Exists(Folder))
3107 TWFunc::removeDir(Folder, false);
3108 return TWFunc::Recursive_Mkdir(Folder);
3109}
3110
3111bool TWPartitionManager::Prepare_Repack(TWPartition* Part, const std::string& Temp_Folder_Destination, const bool Create_Backup, const std::string& Backup_Name) {
3112 if (!Part) {
3113 LOGERR("Partition was null!\n");
3114 return false;
3115 }
3116 if (!Prepare_Empty_Folder(Temp_Folder_Destination))
3117 return false;
3118 std::string target_image = Temp_Folder_Destination + "boot.img";
3119 PartitionSettings part_settings;
3120 part_settings.Part = Part;
3121 if (Create_Backup) {
3122 if (Check_Backup_Name(Backup_Name, true, false) != 0)
3123 return false;
3124 DataManager::GetValue(TW_BACKUPS_FOLDER_VAR, part_settings.Backup_Folder);
3125 part_settings.Backup_Folder = part_settings.Backup_Folder + "/" + TWFunc::Get_Current_Date() + " " + Backup_Name + "/";
3126 if (!TWFunc::Recursive_Mkdir(part_settings.Backup_Folder))
3127 return false;
3128 } else
3129 part_settings.Backup_Folder = Temp_Folder_Destination;
3130 part_settings.adbbackup = false;
3131 part_settings.generate_digest = false;
3132 part_settings.generate_md5 = false;
3133 part_settings.PM_Method = PM_BACKUP;
3134 part_settings.progress = NULL;
3135 pid_t not_a_pid = 0;
3136 if (!Part->Backup(&part_settings, &not_a_pid))
3137 return false;
3138 std::string backed_up_image = part_settings.Backup_Folder;
3139 backed_up_image += Part->Backup_FileName;
3140 target_image = Temp_Folder_Destination + "boot.img";
3141 if (Create_Backup) {
3142 std::string source = part_settings.Backup_Folder + Part->Backup_FileName;
3143 if (TWFunc::copy_file(source, target_image, 0644) != 0) {
3144 LOGERR("Failed to copy backup file '%s' to temp folder target '%s'\n", source.c_str(), target_image.c_str());
3145 return false;
3146 }
3147 } else {
3148 if (rename(backed_up_image.c_str(), target_image.c_str()) != 0) {
3149 LOGERR("Failed to rename '%s' to '%s'\n", backed_up_image.c_str(), target_image.c_str());
3150 return false;
3151 }
3152 }
3153 return Prepare_Repack(target_image, Temp_Folder_Destination, false, false);
3154}
3155
3156bool TWPartitionManager::Prepare_Repack(const std::string& Source_Path, const std::string& Temp_Folder_Destination, const bool Copy_Source, const bool Create_Destination) {
3157 if (Create_Destination) {
3158 if (!Prepare_Empty_Folder(Temp_Folder_Destination))
3159 return false;
3160 }
3161 if (Copy_Source) {
3162 std::string destination = Temp_Folder_Destination + "/boot.img";
3163 if (TWFunc::copy_file(Source_Path, destination, 0644))
3164 return false;
3165 }
Mohd Farazb98b4f72020-05-10 04:18:30 +05303166 std::string command = "cd " + Temp_Folder_Destination + " && /sbin/magiskboot unpack -h '" + Source_Path +"'";
Ethan Yonker53796e72019-01-11 22:49:52 -06003167 if (TWFunc::Exec_Cmd(command) != 0) {
3168 LOGINFO("Error unpacking %s!\n", Source_Path.c_str());
3169 gui_msg(Msg(msg::kError, "unpack_error=Error unpacking image."));
3170 return false;
3171 }
3172 return true;
3173}
3174
3175bool TWPartitionManager::Repack_Images(const std::string& Target_Image, const struct Repack_Options_struct& Repack_Options) {
3176 if (!TWFunc::Path_Exists("/sbin/magiskboot")) {
3177 LOGERR("Image repacking tool not present in this TWRP build!");
3178 return false;
3179 }
3180 DataManager::SetProgress(0);
3181 TWPartition* part = PartitionManager.Find_Partition_By_Path("/boot");
3182 if (part)
3183 gui_msg(Msg("unpacking_image=Unpacking {1}...")(part->Display_Name));
3184 else {
3185 gui_msg(Msg(msg::kError, "unable_to_locate=Unable to locate {1}.")("/boot"));
3186 return false;
3187 }
3188 if (!PartitionManager.Prepare_Repack(part, REPACK_ORIG_DIR, Repack_Options.Backup_First, gui_lookup("repack", "Repack")))
3189 return false;
3190 DataManager::SetProgress(.25);
3191 gui_msg(Msg("unpacking_image=Unpacking {1}...")(Target_Image));
3192 if (!PartitionManager.Prepare_Repack(Target_Image, REPACK_NEW_DIR, true))
3193 return false;
3194 DataManager::SetProgress(.5);
3195 gui_msg(Msg("repacking_image=Repacking {1}...")(part->Display_Name));
3196 std::string path = REPACK_NEW_DIR;
3197 if (Repack_Options.Type == REPLACE_KERNEL) {
3198 // When we replace the kernel, what we really do is copy the boot partition ramdisk into the new image's folder
3199 if (TWFunc::copy_file(REPACK_ORIG_DIR "ramdisk.cpio", REPACK_NEW_DIR "ramdisk.cpio", 0644)) {
3200 LOGERR("Failed to copy ramdisk\n");
3201 return false;
3202 }
3203 } else if (Repack_Options.Type == REPLACE_RAMDISK) {
3204 // Repack the ramdisk
3205 if (TWFunc::copy_file(REPACK_NEW_DIR "ramdisk.cpio", REPACK_ORIG_DIR "ramdisk.cpio", 0644)) {
3206 LOGERR("Failed to copy ramdisk\n");
3207 return false;
3208 }
3209 path = REPACK_ORIG_DIR;
3210 } else {
3211 LOGERR("Invalid repacking options specified\n");
3212 return false;
3213 }
3214 if (Repack_Options.Disable_Verity)
3215 LOGERR("Disabling verity is not implemented yet\n");
3216 if (Repack_Options.Disable_Force_Encrypt)
3217 LOGERR("Disabling force encrypt is not implemented yet\n");
Mohd Farazb98b4f72020-05-10 04:18:30 +05303218 std::string command = "cd " + path + " && /sbin/magiskboot repack " + path + "boot.img";
Ethan Yonker53796e72019-01-11 22:49:52 -06003219 if (TWFunc::Exec_Cmd(command) != 0) {
3220 gui_msg(Msg(msg::kError, "repack_error=Error repacking image."));
3221 return false;
3222 }
3223 DataManager::SetProgress(.75);
3224 std::string file = "new-boot.img";
3225 DataManager::SetValue("tw_flash_partition", "/boot;");
3226 if (!PartitionManager.Flash_Image(path, file)) {
3227 LOGINFO("Error flashing new image\n");
3228 return false;
3229 }
3230 DataManager::SetProgress(1);
3231 TWFunc::removeDir(REPACK_ORIG_DIR, false);
Ethan Yonker9f5dd312019-05-15 15:17:36 -05003232 if (part->SlotSelect && Repack_Options.Type == REPLACE_RAMDISK) {
3233 LOGINFO("Switching slots to flash ramdisk to both partitions\n");
3234 string Current_Slot = Get_Active_Slot_Display();
3235 if (Current_Slot == "A")
3236 Set_Active_Slot("B");
3237 else
3238 Set_Active_Slot("A");
3239 DataManager::SetProgress(.25);
3240 if (!PartitionManager.Prepare_Repack(part, REPACK_ORIG_DIR, Repack_Options.Backup_First, gui_lookup("repack", "Repack")))
3241 return false;
3242 if (TWFunc::copy_file(REPACK_NEW_DIR "ramdisk.cpio", REPACK_ORIG_DIR "ramdisk.cpio", 0644)) {
3243 LOGERR("Failed to copy ramdisk\n");
3244 return false;
3245 }
3246 path = REPACK_ORIG_DIR;
Mohd Farazb98b4f72020-05-10 04:18:30 +05303247 command = "cd " + path + " && /sbin/magiskboot repack " + path + "boot.img";
Ethan Yonker9f5dd312019-05-15 15:17:36 -05003248 if (TWFunc::Exec_Cmd(command) != 0) {
3249 gui_msg(Msg(msg::kError, "repack_error=Error repacking image."));
3250 return false;
3251 }
3252 DataManager::SetProgress(.75);
3253 std::string file = "new-boot.img";
3254 DataManager::SetValue("tw_flash_partition", "/boot;");
3255 if (!PartitionManager.Flash_Image(path, file)) {
3256 LOGINFO("Error flashing new image\n");
3257 return false;
3258 }
3259 DataManager::SetProgress(1);
3260 TWFunc::removeDir(REPACK_ORIG_DIR, false);
3261 Set_Active_Slot(Current_Slot);
3262 }
Ethan Yonker53796e72019-01-11 22:49:52 -06003263 TWFunc::removeDir(REPACK_NEW_DIR, false);
3264 return true;
3265}
bigbiffee7b7ff2020-03-23 15:08:27 -04003266
3267bool TWPartitionManager::Prepare_Super_Volume(TWPartition* twrpPart) {
3268 Fstab fstab;
3269 std::string bare_partition_name;
3270
3271 if (twrpPart->Get_Mount_Point() == "/system_root")
3272 bare_partition_name = "system";
3273 else
3274 bare_partition_name = TWFunc::Remove_Beginning_Slash(twrpPart->Get_Mount_Point());
3275
3276 LOGINFO("Trying to prepare %s from super partition\n", bare_partition_name.c_str());
3277
3278 std::string blk_device_partition;
3279#ifdef AB_OTA_UPDATER
3280 blk_device_partition = bare_partition_name + PartitionManager.Get_Active_Slot_Suffix();
3281#else
3282 blk_device_partition = bare_partition_name;
3283#endif
3284
3285 FstabEntry fstabEntry = {
3286 .blk_device = blk_device_partition,
3287 .mount_point = twrpPart->Get_Mount_Point(),
3288 .fs_type = twrpPart->Current_File_System,
3289 .fs_mgr_flags.logical = twrpPart->Is_Super,
3290 };
3291
3292 fstab.emplace_back(fstabEntry);
3293 if (!fs_mgr_update_logical_partition(&fstabEntry)) {
3294 LOGERR("unable to update logical partition: %s\n", twrpPart->Get_Mount_Point().c_str());
3295 return false;
3296 }
3297
bigbiff32cbabe2020-04-12 19:16:19 -04003298 while (access(fstabEntry.blk_device.c_str(), F_OK) != 0) {
3299 usleep(100);
3300 }
3301
bigbiffee7b7ff2020-03-23 15:08:27 -04003302 twrpPart->Set_Block_Device(fstabEntry.blk_device);
3303 twrpPart->Update_Size(true);
3304 twrpPart->Change_Mount_Read_Only(true);
3305 twrpPart->Set_Can_Be_Backed_Up(false);
3306 twrpPart->Set_Can_Be_Wiped(false);
3307 return true;
3308}
3309
3310bool TWPartitionManager::Prepare_All_Super_Volumes() {
3311 bool status = true;
3312 std::vector<TWPartition*>::iterator iter;
3313
3314 for (iter = Partitions.begin(); iter != Partitions.end(); iter++) {
3315 if ((*iter)->Is_Super) {
3316 if (!Prepare_Super_Volume(*iter)) {
3317 status = false;
3318 }
3319 PartitionManager.Output_Partition(*iter);
3320 }
3321 }
3322 Update_System_Details();
3323 return status;
3324}
3325
3326bool TWPartitionManager::Is_Super_Partition(const char* fstab_line) {
3327 std::vector<std::string> super_partition_list = {"system", "vendor", "odm", "product", "system_ext"};
3328
3329 for (auto&& fstab_partition_check: super_partition_list) {
3330 if (strncmp(fstab_line, fstab_partition_check.c_str(), fstab_partition_check.size()) == 0) {
3331 DataManager::SetValue(TW_IS_SUPER, "1");
3332 return true;
3333 }
3334 }
3335 return false;
3336}
3337
3338std::string TWPartitionManager::Get_Super_Partition() {
3339 int slot_number = Get_Active_Slot_Display() == "A" ? 0 : 1;
3340 std::string super_device = fs_mgr_get_super_partition_name(slot_number);
3341 return "/dev/block/by-name/" + super_device;
3342}
3343
3344void TWPartitionManager::Setup_Super_Devices() {
3345 std::string superPart = Get_Super_Partition();
3346 android::fs_mgr::CreateLogicalPartitions(superPart);
bigbiff7ba75002020-04-11 20:47:09 -04003347}
3348
3349void TWPartitionManager::Setup_Super_Partition() {
bigbiffee7b7ff2020-03-23 15:08:27 -04003350 TWPartition* superPartition = new TWPartition();
bigbiff7ba75002020-04-11 20:47:09 -04003351 std::string superPart = Get_Super_Partition();
3352
3353 superPartition->Backup_Path = "/super";
3354 superPartition->Mount_Point = "/super";
bigbiffee7b7ff2020-03-23 15:08:27 -04003355 superPartition->Actual_Block_Device = superPart;
3356 superPartition->Alternate_Block_Device = superPart;
3357 superPartition->Backup_Display_Name = "super";
3358 superPartition->Can_Flash_Img = true;
bigbiffee7b7ff2020-03-23 15:08:27 -04003359 superPartition->Current_File_System = "emmc";
3360 superPartition->Can_Be_Backed_Up = true;
3361 superPartition->Is_Present = true;
3362 superPartition->Is_SubPartition = false;
bigbiff7ba75002020-04-11 20:47:09 -04003363 superPartition->Setup_Image();
bigbiffee7b7ff2020-03-23 15:08:27 -04003364 Add_Partition(superPartition);
3365 PartitionManager.Output_Partition(superPartition);
3366 Update_System_Details();
3367}
3368
3369bool TWPartitionManager::Get_Super_Status() {
3370 return access(Get_Super_Partition().c_str(), F_OK) == 0;
3371}