blob: b19742e0a95f18b9f600c2e8fe55e2585737f327 [file] [log] [blame]
Dees Troy3be70a82013-10-22 14:25:12 +00001/*
bigbiffee7b7ff2020-03-23 15:08:27 -04002 Copyright 2014 to 2020 TeamWin
Dees Troy3be70a82013-10-22 14:25:12 +00003 This file is part of TWRP/TeamWin Recovery Project.
4
5 TWRP is free software: you can redistribute it and/or modify
6 it under the terms of the GNU General Public License as published by
7 the Free Software Foundation, either version 3 of the License, or
8 (at your option) any later version.
9
10 TWRP is distributed in the hope that it will be useful,
11 but WITHOUT ANY WARRANTY; without even the implied warranty of
12 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 GNU General Public License for more details.
14
15 You should have received a copy of the GNU General Public License
16 along with TWRP. If not, see <http://www.gnu.org/licenses/>.
17*/
Dees_Troy51a0e822012-09-05 15:24:24 -040018
19#include <stdio.h>
20#include <stdlib.h>
21#include <string.h>
22#include <sys/stat.h>
23#include <sys/vfs.h>
24#include <unistd.h>
Ethan Yonker6e8c27a2016-12-22 17:55:57 -060025#include <map>
Dees_Troy5bf43922012-09-07 16:07:55 -040026#include <vector>
Dees_Troy63c8df72012-09-10 14:02:05 -040027#include <dirent.h>
28#include <time.h>
Dees_Troy8170a922012-09-18 15:40:25 -040029#include <errno.h>
30#include <fcntl.h>
bigbiff25d25b92020-06-19 16:07:38 -040031#include <grp.h>
32#include <pwd.h>
bigbiffce8f83c2015-12-12 18:30:21 -050033#include <zlib.h>
bigbiff bigbiff9c754052013-01-09 09:09:08 -050034#include <iostream>
35#include <iomanip>
Ethan Yonker8613dc02014-09-11 09:28:20 -050036#include <sys/wait.h>
Ethan Yonker483e9f42016-01-11 22:21:18 -060037#include <linux/fs.h>
38#include <sys/mount.h>
Ethan Yonker6e8c27a2016-12-22 17:55:57 -060039
bigbiffee7b7ff2020-03-23 15:08:27 -040040
Ethan Yonker6e8c27a2016-12-22 17:55:57 -060041#include <sys/poll.h>
42#include <sys/socket.h>
43#include <linux/types.h>
44#include <linux/netlink.h>
bigbiffee7b7ff2020-03-23 15:08:27 -040045#include <android-base/chrono_utils.h>
46#include <android-base/file.h>
47#include <android-base/logging.h>
bigbiff7ba75002020-04-11 20:47:09 -040048#include <android-base/properties.h>
bigbiffee7b7ff2020-03-23 15:08:27 -040049#include <android-base/strings.h>
50#include <fstab/fstab.h>
51#include <fs_avb/fs_avb.h>
52#include <fs_mgr.h>
53#include <fs_mgr_dm_linear.h>
54#include <fs_mgr_overlayfs.h>
55#include <libgsi/libgsi.h>
56#include <liblp/liblp.h>
Ethan Yonker6e8c27a2016-12-22 17:55:57 -060057
Dees_Troy51a0e822012-09-05 15:24:24 -040058#include "variables.h"
Dees_Troy2673cec2013-04-02 20:22:16 +000059#include "twcommon.h"
Dees_Troy51a0e822012-09-05 15:24:24 -040060#include "partitions.hpp"
Dees_Troy5bf43922012-09-07 16:07:55 -040061#include "data.hpp"
Dees_Troy38bd7602012-09-14 13:33:53 -040062#include "twrp-functions.hpp"
Ethan Yonkerb5fab762016-01-28 14:03:33 -060063#include "fixContexts.hpp"
Ethan Yonker3fdcda42016-11-30 12:29:37 -060064#include "exclude.hpp"
Ethan Yonker4b94cfd2014-12-11 10:00:45 -060065#include "set_metadata.h"
bigbiff7abc5fe2015-01-17 16:53:12 -050066#include "tw_atomic.hpp"
Ethan Yonker74db1572015-10-28 12:44:49 -050067#include "gui/gui.hpp"
Ethan Yonker472f5062016-02-25 13:47:30 -060068#include "progresstracking.hpp"
bigbiff bigbiff56cf5642016-08-19 17:43:45 -040069#include "twrpDigestDriver.hpp"
bigbiffad58e1b2020-07-06 20:24:34 -040070#include "twrpRepacker.hpp"
bigbiffce8f83c2015-12-12 18:30:21 -050071#include "adbbu/libtwadbbu.hpp"
Dees_Troy38bd7602012-09-14 13:33:53 -040072
bigbiff bigbiffc7eee6f2014-09-02 18:59:01 -040073#ifdef TW_HAS_MTP
bigbiff bigbiffaf32bb92018-12-18 18:39:53 -050074#ifdef TW_HAS_LEGACY_MTP
75#include "mtp/legacy/mtp_MtpServer.hpp"
76#include "mtp/legacy/twrpMtp.hpp"
77#include "mtp/legacy/MtpMessage.hpp"
78#else
79#include "mtp/ffs/mtp_MtpServer.hpp"
80#include "mtp/ffs/twrpMtp.hpp"
81#include "mtp/ffs/MtpMessage.hpp"
82#endif
bigbiff bigbiffc7eee6f2014-09-02 18:59:01 -040083#endif
84
Dees Troy6f6441d2014-01-23 02:07:03 +000085extern "C" {
86 #include "cutils/properties.h"
Ethan Yonker74db1572015-10-28 12:44:49 -050087 #include "gui/gui.h"
Dees Troy6f6441d2014-01-23 02:07:03 +000088}
89
Dees_Troy5bf43922012-09-07 16:07:55 -040090#ifdef TW_INCLUDE_CRYPTO
bigbiff7ba75002020-04-11 20:47:09 -040091#include "crypto/fde/cryptfs.h"
92#include "gui/rapidxml.hpp"
93#include "gui/pages.hpp"
94#ifdef TW_INCLUDE_FBE
95#include "crypto/ext4crypt/Decrypt.h"
96#ifdef TW_INCLUDE_FBE_METADATA_DECRYPT
97 #ifdef USE_FSCRYPT
98 #include "crypto/fscrypt/MetadataCrypt.h"
99 #else
100 #include "crypto/ext4crypt/MetadataCrypt.h"
bigbiffadc599e2020-05-28 19:36:30 +0000101 #endif
bigbiff7ba75002020-04-11 20:47:09 -0400102#endif
103#endif
104#ifdef TW_CRYPTO_USE_SYSTEM_VOLD
105#include "crypto/vold_decrypt/vold_decrypt.h"
106#endif
Dees_Troy5bf43922012-09-07 16:07:55 -0400107#endif
Dees_Troy51a0e822012-09-05 15:24:24 -0400108
Ethan Yonker1b190162016-12-05 15:25:19 -0600109#ifdef AB_OTA_UPDATER
110#include <hardware/hardware.h>
111#include <hardware/boot_control.h>
112#endif
113
bigbiffee7b7ff2020-03-23 15:08:27 -0400114using android::fs_mgr::Fstab;
115using android::fs_mgr::FstabEntry;
Ethan Yonker6277c792014-09-15 14:54:30 -0500116
bigbiffee7b7ff2020-03-23 15:08:27 -0400117extern bool datamedia;
118
bigbiff bigbiff34684ff2013-12-01 21:03:45 -0500119TWPartitionManager::TWPartitionManager(void) {
bigbiff bigbiffc7eee6f2014-09-02 18:59:01 -0400120 mtp_was_enabled = false;
Ethan Yonker726a0202014-12-16 20:01:38 -0600121 mtp_write_fd = -1;
Ethan Yonker6e8c27a2016-12-22 17:55:57 -0600122 uevent_pfd.fd = -1;
bigbiff7abc5fe2015-01-17 16:53:12 -0500123 stop_backup.set_value(0);
Ethan Yonker1b190162016-12-05 15:25:19 -0600124#ifdef AB_OTA_UPDATER
125 char slot_suffix[PROPERTY_VALUE_MAX];
Ethan Yonkerfefe5912017-09-30 22:22:13 -0500126 property_get("ro.boot.slot_suffix", slot_suffix, "error");
127 if (strcmp(slot_suffix, "error") == 0)
128 property_get("ro.boot.slot", slot_suffix, "error");
Ethan Yonker1b190162016-12-05 15:25:19 -0600129 Active_Slot_Display = "";
Ethan Yonkerfefe5912017-09-30 22:22:13 -0500130 if (strcmp(slot_suffix, "_a") == 0 || strcmp(slot_suffix, "a") == 0)
Ethan Yonker1b190162016-12-05 15:25:19 -0600131 Set_Active_Slot("A");
132 else
133 Set_Active_Slot("B");
134#endif
bigbiff bigbiff34684ff2013-12-01 21:03:45 -0500135}
136
Chaosmasterf6e42ce2020-01-27 00:17:04 +0100137int TWPartitionManager::Process_Fstab(string Fstab_Filename, bool Display_Error, bool Sar_Detect) {
Dees_Troy5bf43922012-09-07 16:07:55 -0400138 FILE *fstabFile;
139 char fstab_line[MAX_FSTAB_LINE_LENGTH];
Dees Troy02a64532014-03-19 15:23:32 +0000140 TWPartition* settings_partition = NULL;
Matt Mowerbf4efa32014-04-14 23:25:26 -0500141 TWPartition* andsec_partition = NULL;
Ethan Yonker726a0202014-12-16 20:01:38 -0600142 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 -0600143 std::map<string, Flags_Map> twrp_flags;
144
145 fstabFile = fopen("/etc/twrp.flags", "rt");
146 if (fstabFile != NULL) {
147 LOGINFO("reading /etc/twrp.flags\n");
148 while (fgets(fstab_line, sizeof(fstab_line), fstabFile) != NULL) {
149 if (fstab_line[0] != '/')
150 continue;
151
152 size_t line_size = strlen(fstab_line);
153 if (fstab_line[line_size - 1] != '\n')
154 fstab_line[line_size] = '\n';
155 Flags_Map line_flags;
156 line_flags.Primary_Block_Device = "";
157 line_flags.Alternate_Block_Device = "";
158 line_flags.fstab_line = (char*)malloc(MAX_FSTAB_LINE_LENGTH);
159 if (!line_flags.fstab_line) {
160 LOGERR("malloc error on line_flags.fstab_line\n");
161 return false;
162 }
163 memcpy(line_flags.fstab_line, fstab_line, MAX_FSTAB_LINE_LENGTH);
164 bool found_separator = false;
165 char *fs_loc = NULL;
166 char *block_loc = NULL;
167 char *flags_loc = NULL;
168 size_t index, item_index = 0;
169 for (index = 0; index < line_size; index++) {
170 if (fstab_line[index] <= 32) {
171 fstab_line[index] = '\0';
172 found_separator = true;
173 } else if (found_separator) {
174 if (item_index == 0) {
175 fs_loc = fstab_line + index;
176 } else if (item_index == 1) {
177 block_loc = fstab_line + index;
178 } else if (item_index > 1) {
179 char *ptr = fstab_line + index;
180 if (*ptr == '/') {
181 line_flags.Alternate_Block_Device = ptr;
182 } else if (strlen(ptr) > strlen("flags=") && strncmp(ptr, "flags=", strlen("flags=")) == 0) {
183 flags_loc = ptr;
184 // Once we find the flags=, we're done scanning the line
185 break;
186 }
187 }
188 found_separator = false;
189 item_index++;
190 }
191 }
192 if (block_loc)
193 line_flags.Primary_Block_Device = block_loc;
194 if (fs_loc)
195 line_flags.File_System = fs_loc;
196 if (flags_loc)
197 line_flags.Flags = flags_loc;
198 string Mount_Point = fstab_line;
199 twrp_flags[Mount_Point] = line_flags;
200 memset(fstab_line, 0, sizeof(fstab_line));
201 }
202 fclose(fstabFile);
203 }
Dees_Troy5bf43922012-09-07 16:07:55 -0400204
205 fstabFile = fopen(Fstab_Filename.c_str(), "rt");
206 if (fstabFile == NULL) {
Dees_Troy2673cec2013-04-02 20:22:16 +0000207 LOGERR("Critical Error: Unable to open fstab at '%s'.\n", Fstab_Filename.c_str());
Dees_Troy5bf43922012-09-07 16:07:55 -0400208 return false;
Ethan Yonker6e8c27a2016-12-22 17:55:57 -0600209 } else
210 LOGINFO("Reading %s\n", Fstab_Filename.c_str());
Dees_Troy5bf43922012-09-07 16:07:55 -0400211
212 while (fgets(fstab_line, sizeof(fstab_line), fstabFile) != NULL) {
bigbiffee7b7ff2020-03-23 15:08:27 -0400213 bool isSuper = Is_Super_Partition(fstab_line);
214
215 if (!isSuper && fstab_line[0] != '/')
Dees_Troy5bf43922012-09-07 16:07:55 -0400216 continue;
217
Ethan Yonker6e8c27a2016-12-22 17:55:57 -0600218 if (strstr(fstab_line, "swap"))
219 continue; // Skip swap in recovery
220
221 size_t line_size = strlen(fstab_line);
222 if (fstab_line[line_size - 1] != '\n')
223 fstab_line[line_size] = '\n';
Dees_Troy2a923582012-09-20 12:13:34 -0400224
Matt Mower2b2dd152016-04-26 11:24:08 -0500225 TWPartition* partition = new TWPartition();
Chaosmasterf6e42ce2020-01-27 00:17:04 +0100226 if (partition->Process_Fstab_Line(fstab_line, Display_Error, &twrp_flags, Sar_Detect))
Ethan Yonkerc05c5982014-03-13 09:19:56 -0500227 Partitions.push_back(partition);
Matt Mower72c87ce2016-04-26 14:34:56 -0500228 else
Dees_Troy5bf43922012-09-07 16:07:55 -0400229 delete partition;
Matt Mower2b2dd152016-04-26 11:24:08 -0500230
231 memset(fstab_line, 0, sizeof(fstab_line));
Dees_Troy5bf43922012-09-07 16:07:55 -0400232 }
233 fclose(fstabFile);
Matt Mower72c87ce2016-04-26 14:34:56 -0500234
Ethan Yonker6e8c27a2016-12-22 17:55:57 -0600235 if (twrp_flags.size() > 0) {
236 LOGINFO("Processing remaining twrp.flags\n");
237 // Add any items from twrp.flags that did not exist in the recovery.fstab
238 for (std::map<string, Flags_Map>::iterator mapit=twrp_flags.begin(); mapit!=twrp_flags.end(); mapit++) {
239 if (Find_Partition_By_Path(mapit->first) == NULL) {
240 TWPartition* partition = new TWPartition();
Chaosmasterf6e42ce2020-01-27 00:17:04 +0100241 if (partition->Process_Fstab_Line(mapit->second.fstab_line, Display_Error, NULL, Sar_Detect))
Ethan Yonker6e8c27a2016-12-22 17:55:57 -0600242 Partitions.push_back(partition);
243 else
244 delete partition;
245 }
246 if (mapit->second.fstab_line)
247 free(mapit->second.fstab_line);
248 mapit->second.fstab_line = NULL;
249 }
250 }
Mohd Faraze3948ec2020-08-14 01:40:59 +0000251 if (Get_Super_Status()) {
252 Setup_Super_Devices();
253 }
Ethan Yonker6e8c27a2016-12-22 17:55:57 -0600254 LOGINFO("Done processing fstab files\n");
255
Matt Mower72c87ce2016-04-26 14:34:56 -0500256 std::vector<TWPartition*>::iterator iter;
257 for (iter = Partitions.begin(); iter != Partitions.end(); iter++) {
Chaosmasterf6e42ce2020-01-27 00:17:04 +0100258 if (Sar_Detect) {
259 if ((*iter)->Mount_Point == "/s")
260 return true;
261 else
262 continue;
263 }
264
Matt Mower72c87ce2016-04-26 14:34:56 -0500265 (*iter)->Partition_Post_Processing(Display_Error);
266
267 if ((*iter)->Is_Storage) {
268 ++storageid;
269 (*iter)->MTP_Storage_ID = storageid;
270 }
271
272 if (!settings_partition && (*iter)->Is_Settings_Storage && (*iter)->Is_Present)
273 settings_partition = (*iter);
274 else
275 (*iter)->Is_Settings_Storage = false;
276
277 if (!andsec_partition && (*iter)->Has_Android_Secure && (*iter)->Is_Present)
278 andsec_partition = (*iter);
279 else
280 (*iter)->Has_Android_Secure = false;
Mohd Faraze3948ec2020-08-14 01:40:59 +0000281 if (Is_Super_Partition(TWFunc::Remove_Beginning_Slash((*iter)->Get_Mount_Point()).c_str()))
282 Prepare_Super_Volume((*iter));
283 }
284
285 //Setup Apex before decryption
286 TWPartition* sys = PartitionManager.Find_Partition_By_Path(PartitionManager.Get_Android_Root_Path());
287 TWPartition* ven = PartitionManager.Find_Partition_By_Path("/vendor");
288 if (sys) {
289 if (sys->Get_Super_Status()) {
290 sys->Mount(true);
291 if (ven) {
292 ven->Mount(true);
293 }
294 twrpApex apex;
295 if (!apex.loadApexImages()) {
296 LOGERR("Unable to load apex images from %s\n", APEX_DIR);
297 property_set("twrp.apex.loaded", "false");
298 } else {
299 property_set("twrp.apex.loaded", "true");
300 }
301 }
Matt Mower72c87ce2016-04-26 14:34:56 -0500302 }
303
Ethan Yonker6277c792014-09-15 14:54:30 -0500304 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) {
305 // Attempt to automatically identify /data/media emulated storage devices
306 TWPartition* Dat = Find_Partition_By_Path("/data");
307 if (Dat) {
308 LOGINFO("Using automatic handling for /data/media emulated storage device.\n");
309 datamedia = true;
that9e0593e2014-10-08 00:01:24 +0200310 Dat->Setup_Data_Media();
Ethan Yonker6277c792014-09-15 14:54:30 -0500311 settings_partition = Dat;
Ethan Yonker726a0202014-12-16 20:01:38 -0600312 // Since /data was not considered a storage partition earlier, we still need to assign an MTP ID
313 ++storageid;
314 Dat->MTP_Storage_ID = storageid;
Ethan Yonker6277c792014-09-15 14:54:30 -0500315 }
316 }
Dees Troy02a64532014-03-19 15:23:32 +0000317 if (!settings_partition) {
Dees_Troya13d74f2013-03-24 08:54:55 -0500318 for (iter = Partitions.begin(); iter != Partitions.end(); iter++) {
319 if ((*iter)->Is_Storage) {
Dees Troy02a64532014-03-19 15:23:32 +0000320 settings_partition = (*iter);
Dees_Troya13d74f2013-03-24 08:54:55 -0500321 break;
322 }
323 }
Dees Troy02a64532014-03-19 15:23:32 +0000324 if (!settings_partition)
Dees_Troy2673cec2013-04-02 20:22:16 +0000325 LOGERR("Unable to locate storage partition for storing settings file.\n");
Dees_Troya13d74f2013-03-24 08:54:55 -0500326 }
Dees_Troy5bf43922012-09-07 16:07:55 -0400327 if (!Write_Fstab()) {
328 if (Display_Error)
Dees_Troy2673cec2013-04-02 20:22:16 +0000329 LOGERR("Error creating fstab\n");
Dees_Troy5bf43922012-09-07 16:07:55 -0400330 else
Dees_Troy2673cec2013-04-02 20:22:16 +0000331 LOGINFO("Error creating fstab\n");
Dees_Troy5bf43922012-09-07 16:07:55 -0400332 }
Matt Mowered71fa32014-04-16 13:21:47 -0500333
Matt Mowerbf4efa32014-04-14 23:25:26 -0500334 if (andsec_partition) {
335 Setup_Android_Secure_Location(andsec_partition);
Matt Mowered71fa32014-04-16 13:21:47 -0500336 } else if (settings_partition) {
Matt Mowerbf4efa32014-04-14 23:25:26 -0500337 Setup_Android_Secure_Location(settings_partition);
338 }
Matt Mowered71fa32014-04-16 13:21:47 -0500339 if (settings_partition) {
340 Setup_Settings_Storage_Partition(settings_partition);
341 }
bigbiff7ba75002020-04-11 20:47:09 -0400342
Mohd Faraze3948ec2020-08-14 01:40:59 +0000343#ifdef TW_INCLUDE_CRYPTO
344 DataManager::SetValue(TW_IS_ENCRYPTED, 1);
345 Decrypt_Data();
346#endif
347
bigbiff7ba75002020-04-11 20:47:09 -0400348 Update_System_Details();
Mohd Faraze3948ec2020-08-14 01:40:59 +0000349 if (Get_Super_Status())
350 Setup_Super_Partition();
bigbiff7ba75002020-04-11 20:47:09 -0400351 UnMount_Main_Partitions();
352#ifdef AB_OTA_UPDATER
353 DataManager::SetValue("tw_active_slot", Get_Active_Slot_Display());
354#endif
355 setup_uevent();
356 return true;
357}
358
359int TWPartitionManager::Write_Fstab(void) {
360 FILE *fp;
361 std::vector<TWPartition*>::iterator iter;
362 string Line;
363
364 fp = fopen("/etc/fstab", "w");
365 if (fp == NULL) {
366 LOGINFO("Can not open /etc/fstab.\n");
367 return false;
368 }
369 for (iter = Partitions.begin(); iter != Partitions.end(); iter++) {
370 if ((*iter)->Can_Be_Mounted) {
371 Line = (*iter)->Actual_Block_Device + " " + (*iter)->Mount_Point + " " + (*iter)->Current_File_System + " rw 0 0\n";
372 fputs(Line.c_str(), fp);
373 }
374 // Handle subpartition tracking
375 if ((*iter)->Is_SubPartition) {
376 TWPartition* ParentPartition = Find_Partition_By_Path((*iter)->SubPartition_Of);
377 if (ParentPartition)
378 ParentPartition->Has_SubPartition = true;
379 else
380 LOGERR("Unable to locate parent partition '%s' of '%s'\n", (*iter)->SubPartition_Of.c_str(), (*iter)->Mount_Point.c_str());
381 }
382 }
383 fclose(fp);
384 return true;
385}
386
387void TWPartitionManager::Decrypt_Data() {
388 #ifdef TW_INCLUDE_CRYPTO
Ethan Yonkercceebb82014-11-18 10:17:59 -0600389 TWPartition* Decrypt_Data = Find_Partition_By_Path("/data");
390 if (Decrypt_Data && Decrypt_Data->Is_Encrypted && !Decrypt_Data->Is_Decrypted) {
Ethan Yonker93382822018-11-01 15:25:31 -0500391 if (!Decrypt_Data->Key_Directory.empty() && Mount_By_Path(Decrypt_Data->Key_Directory, false)) {
392#ifdef TW_INCLUDE_FBE_METADATA_DECRYPT
bigbiff7ba75002020-04-11 20:47:09 -0400393#ifdef USE_FSCRYPT
394 if (fscrypt_mount_metadata_encrypted(Decrypt_Data->Actual_Block_Device, Decrypt_Data->Mount_Point, false)) {
Mohd Faraze3948ec2020-08-14 01:40:59 +0000395 std::string crypto_blkdev =android::base::GetProperty("ro.crypto.fs_crypto_blkdev", "error");
396 Decrypt_Data->Decrypted_Block_Device = crypto_blkdev;
bigbiff7ba75002020-04-11 20:47:09 -0400397 LOGINFO("Successfully decrypted metadata encrypted data partition with new block device: '%s'\n", crypto_blkdev.c_str());
398#else
Ethan Yonker93382822018-11-01 15:25:31 -0500399 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 -0400400 LOGINFO("Successfully decrypted metadata encrypted data partition with new block device: '%s'\n",
401 Decrypt_Data->Decrypted_Block_Device.c_str());
402#endif
Ethan Yonker93382822018-11-01 15:25:31 -0500403 property_set("ro.crypto.state", "encrypted");
404 Decrypt_Data->Is_Decrypted = true; // Needed to make the mount function work correctly
405 int retry_count = 10;
406 while (!Decrypt_Data->Mount(false) && --retry_count)
407 usleep(500);
408 if (Decrypt_Data->Mount(false)) {
bigbiff bigbiff0be03b32019-08-27 20:50:31 -0400409 if (!Decrypt_Data->Decrypt_FBE_DE()) {
mauronofriofc79aa62019-11-23 23:13:04 +0100410 char wrappedvalue[PROPERTY_VALUE_MAX];
411 property_get("fbe.data.wrappedkey", wrappedvalue, "");
412 std::string wrappedkeyvalue(wrappedvalue);
413 if (wrappedkeyvalue == "true") {
bigbiff bigbiff0be03b32019-08-27 20:50:31 -0400414 LOGERR("Unable to decrypt FBE device\n");
mauronofriofc79aa62019-11-23 23:13:04 +0100415 } else {
416 LOGINFO("Trying wrapped key.\n");
417 property_set("fbe.data.wrappedkey", "true");
418 if (!Decrypt_Data->Decrypt_FBE_DE()) {
419 LOGERR("Unable to decrypt FBE device\n");
420 }
bigbiff bigbiff0be03b32019-08-27 20:50:31 -0400421 }
422 }
423
Ethan Yonker93382822018-11-01 15:25:31 -0500424 } else {
425 LOGINFO("Failed to mount data after metadata decrypt\n");
426 }
427 } else {
428 LOGINFO("Unable to decrypt metadata encryption\n");
429 }
430#else
431 LOGERR("Metadata FBE decrypt support not present in this TWRP\n");
432#endif
433 }
Ethan Yonkerbd7492d2016-12-07 13:55:01 -0600434 if (Decrypt_Data->Is_FBE) {
435 if (DataManager::GetIntValue(TW_CRYPTO_PWTYPE) == 0) {
436 if (Decrypt_Device("!") == 0) {
437 gui_msg("decrypt_success=Successfully decrypted with default password.");
438 DataManager::SetValue(TW_IS_ENCRYPTED, 0);
439 } else {
440 gui_err("unable_to_decrypt=Unable to decrypt with default password.");
441 }
Ethan Yonkercceebb82014-11-18 10:17:59 -0600442 }
443 } else {
Ethan Yonkerbd7492d2016-12-07 13:55:01 -0600444 int password_type = cryptfs_get_password_type();
445 if (password_type == CRYPT_TYPE_DEFAULT) {
446 LOGINFO("Device is encrypted with the default password, attempting to decrypt.\n");
447 if (Decrypt_Device("default_password") == 0) {
448 gui_msg("decrypt_success=Successfully decrypted with default password.");
449 DataManager::SetValue(TW_IS_ENCRYPTED, 0);
450 } else {
451 gui_err("unable_to_decrypt=Unable to decrypt with default password.");
452 }
453 } else {
454 DataManager::SetValue("TW_CRYPTO_TYPE", password_type);
455 }
Ethan Yonkercceebb82014-11-18 10:17:59 -0600456 }
457 }
bigbiffadc599e2020-05-28 19:36:30 +0000458 if (Decrypt_Data && (!Decrypt_Data->Is_Encrypted || Decrypt_Data->Is_Decrypted) && Decrypt_Data->Mount(false)) {
Ethan Yonker66a19492015-12-10 10:19:45 -0600459 Decrypt_Adopted();
460 }
Ethan Yonkercceebb82014-11-18 10:17:59 -0600461#endif
Dees_Troy51a0e822012-09-05 15:24:24 -0400462}
463
Ethan Yonkerc05c5982014-03-13 09:19:56 -0500464void TWPartitionManager::Setup_Settings_Storage_Partition(TWPartition* Part) {
Ethan Yonkerc05c5982014-03-13 09:19:56 -0500465 DataManager::SetValue("tw_settings_path", Part->Storage_Path);
466 DataManager::SetValue("tw_storage_path", Part->Storage_Path);
467 LOGINFO("Settings storage is '%s'\n", Part->Storage_Path.c_str());
468}
469
Matt Mowerbf4efa32014-04-14 23:25:26 -0500470void TWPartitionManager::Setup_Android_Secure_Location(TWPartition* Part) {
471 if (Part->Has_Android_Secure)
472 Part->Setup_AndSec();
Ethan Yonker6277c792014-09-15 14:54:30 -0500473 else if (!datamedia)
Matt Mowerbf4efa32014-04-14 23:25:26 -0500474 Part->Setup_AndSec();
Matt Mowerbf4efa32014-04-14 23:25:26 -0500475}
476
Dees_Troy8170a922012-09-18 15:40:25 -0400477void TWPartitionManager::Output_Partition_Logging(void) {
478 std::vector<TWPartition*>::iterator iter;
479
480 printf("\n\nPartition Logs:\n");
481 for (iter = Partitions.begin(); iter != Partitions.end(); iter++)
482 Output_Partition((*iter));
483}
484
485void TWPartitionManager::Output_Partition(TWPartition* Part) {
486 unsigned long long mb = 1048576;
487
Gary Peck004d48b2012-11-21 16:28:18 -0800488 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 -0400489 if (Part->Can_Be_Mounted) {
Gary Peck004d48b2012-11-21 16:28:18 -0800490 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 -0400491 }
Gary Peck004d48b2012-11-21 16:28:18 -0800492 printf("\n Flags: ");
Dees_Troya13d74f2013-03-24 08:54:55 -0500493 if (Part->Can_Be_Mounted)
494 printf("Can_Be_Mounted ");
Gary Peck004d48b2012-11-21 16:28:18 -0800495 if (Part->Can_Be_Wiped)
496 printf("Can_Be_Wiped ");
Hashcodedabfd492013-08-29 22:45:30 -0700497 if (Part->Use_Rm_Rf)
498 printf("Use_Rm_Rf ");
Dees_Troya13d74f2013-03-24 08:54:55 -0500499 if (Part->Can_Be_Backed_Up)
500 printf("Can_Be_Backed_Up ");
Gary Peck004d48b2012-11-21 16:28:18 -0800501 if (Part->Wipe_During_Factory_Reset)
502 printf("Wipe_During_Factory_Reset ");
503 if (Part->Wipe_Available_in_GUI)
504 printf("Wipe_Available_in_GUI ");
505 if (Part->Is_SubPartition)
506 printf("Is_SubPartition ");
507 if (Part->Has_SubPartition)
508 printf("Has_SubPartition ");
509 if (Part->Removable)
510 printf("Removable ");
511 if (Part->Is_Present)
512 printf("IsPresent ");
513 if (Part->Can_Be_Encrypted)
514 printf("Can_Be_Encrypted ");
515 if (Part->Is_Encrypted)
516 printf("Is_Encrypted ");
517 if (Part->Is_Decrypted)
518 printf("Is_Decrypted ");
519 if (Part->Has_Data_Media)
520 printf("Has_Data_Media ");
Dees_Troy83bd4832013-05-04 12:39:56 +0000521 if (Part->Can_Encrypt_Backup)
522 printf("Can_Encrypt_Backup ");
523 if (Part->Use_Userdata_Encryption)
524 printf("Use_Userdata_Encryption ");
Gary Peck004d48b2012-11-21 16:28:18 -0800525 if (Part->Has_Android_Secure)
526 printf("Has_Android_Secure ");
527 if (Part->Is_Storage)
528 printf("Is_Storage ");
Dees_Troya13d74f2013-03-24 08:54:55 -0500529 if (Part->Is_Settings_Storage)
530 printf("Is_Settings_Storage ");
Dees_Troy68cab492012-12-12 19:29:35 +0000531 if (Part->Ignore_Blkid)
532 printf("Ignore_Blkid ");
Ethan Yonker253368a2014-11-25 15:00:52 -0600533 if (Part->Mount_To_Decrypt)
534 printf("Mount_To_Decrypt ");
Ethan Yonker96af84a2015-01-05 14:58:36 -0600535 if (Part->Can_Flash_Img)
536 printf("Can_Flash_Img ");
Ethan Yonker66a19492015-12-10 10:19:45 -0600537 if (Part->Is_Adopted_Storage)
538 printf("Is_Adopted_Storage ");
Ethan Yonker1b190162016-12-05 15:25:19 -0600539 if (Part->SlotSelect)
540 printf("SlotSelect ");
Ethan Yonker6e8c27a2016-12-22 17:55:57 -0600541 if (Part->Mount_Read_Only)
542 printf("Mount_Read_Only ");
Gary Peck004d48b2012-11-21 16:28:18 -0800543 printf("\n");
544 if (!Part->SubPartition_Of.empty())
545 printf(" SubPartition_Of: %s\n", Part->SubPartition_Of.c_str());
546 if (!Part->Symlink_Path.empty())
547 printf(" Symlink_Path: %s\n", Part->Symlink_Path.c_str());
548 if (!Part->Symlink_Mount_Point.empty())
549 printf(" Symlink_Mount_Point: %s\n", Part->Symlink_Mount_Point.c_str());
550 if (!Part->Primary_Block_Device.empty())
551 printf(" Primary_Block_Device: %s\n", Part->Primary_Block_Device.c_str());
552 if (!Part->Alternate_Block_Device.empty())
553 printf(" Alternate_Block_Device: %s\n", Part->Alternate_Block_Device.c_str());
554 if (!Part->Decrypted_Block_Device.empty())
555 printf(" Decrypted_Block_Device: %s\n", Part->Decrypted_Block_Device.c_str());
dianlujitao4879b372018-12-03 18:45:47 +0800556 if (!Part->Crypto_Key_Location.empty())
Ethan Yonker253368a2014-11-25 15:00:52 -0600557 printf(" Crypto_Key_Location: %s\n", Part->Crypto_Key_Location.c_str());
Gary Peck004d48b2012-11-21 16:28:18 -0800558 if (Part->Length != 0)
559 printf(" Length: %i\n", Part->Length);
560 if (!Part->Display_Name.empty())
561 printf(" Display_Name: %s\n", Part->Display_Name.c_str());
Dees_Troya13d74f2013-03-24 08:54:55 -0500562 if (!Part->Storage_Name.empty())
563 printf(" Storage_Name: %s\n", Part->Storage_Name.c_str());
Gary Peck004d48b2012-11-21 16:28:18 -0800564 if (!Part->Backup_Path.empty())
565 printf(" Backup_Path: %s\n", Part->Backup_Path.c_str());
566 if (!Part->Backup_Name.empty())
567 printf(" Backup_Name: %s\n", Part->Backup_Name.c_str());
Dees_Troya13d74f2013-03-24 08:54:55 -0500568 if (!Part->Backup_Display_Name.empty())
569 printf(" Backup_Display_Name: %s\n", Part->Backup_Display_Name.c_str());
Gary Peck004d48b2012-11-21 16:28:18 -0800570 if (!Part->Backup_FileName.empty())
571 printf(" Backup_FileName: %s\n", Part->Backup_FileName.c_str());
572 if (!Part->Storage_Path.empty())
573 printf(" Storage_Path: %s\n", Part->Storage_Path.c_str());
574 if (!Part->Current_File_System.empty())
575 printf(" Current_File_System: %s\n", Part->Current_File_System.c_str());
576 if (!Part->Fstab_File_System.empty())
577 printf(" Fstab_File_System: %s\n", Part->Fstab_File_System.c_str());
578 if (Part->Format_Block_Size != 0)
Ethan Yonkerc798c9c2015-10-09 11:15:26 -0500579 printf(" Format_Block_Size: %lu\n", Part->Format_Block_Size);
Dees_Troy094207a2012-09-26 12:00:39 -0400580 if (!Part->MTD_Name.empty())
581 printf(" MTD_Name: %s\n", Part->MTD_Name.c_str());
Matt Mower029a82d2017-01-08 13:12:38 -0600582 printf(" Backup_Method: %s\n", Part->Backup_Method_By_Name().c_str());
Hashcode62bd9e02013-11-19 21:59:42 -0800583 if (Part->Mount_Flags || !Part->Mount_Options.empty())
Ethan Yonker6e8c27a2016-12-22 17:55:57 -0600584 printf(" Mount_Flags: %i, Mount_Options: %s\n", Part->Mount_Flags, Part->Mount_Options.c_str());
Ethan Yonker726a0202014-12-16 20:01:38 -0600585 if (Part->MTP_Storage_ID)
586 printf(" MTP_Storage_ID: %i\n", Part->MTP_Storage_ID);
Ethan Yonker93382822018-11-01 15:25:31 -0500587 if (!Part->Key_Directory.empty())
588 printf(" Metadata Key Directory: %s\n", Part->Key_Directory.c_str());
Ethan Yonker6277c792014-09-15 14:54:30 -0500589 printf("\n");
Dees_Troy8170a922012-09-18 15:40:25 -0400590}
591
Dees_Troy51a0e822012-09-05 15:24:24 -0400592int TWPartitionManager::Mount_By_Path(string Path, bool Display_Error) {
Dees_Troy5bf43922012-09-07 16:07:55 -0400593 std::vector<TWPartition*>::iterator iter;
594 int ret = false;
595 bool found = false;
Dees_Troy38bd7602012-09-14 13:33:53 -0400596 string Local_Path = TWFunc::Get_Root_Path(Path);
Dees_Troy5bf43922012-09-07 16:07:55 -0400597
bigbiffd58ba182020-03-23 10:02:29 -0400598 if (Local_Path == "/tmp" || Local_Path == "/")
Dees_Troy43d8b002012-09-17 16:00:01 -0400599 return true;
600
Dees_Troy5bf43922012-09-07 16:07:55 -0400601 // Iterate through all partitions
602 for (iter = Partitions.begin(); iter != Partitions.end(); iter++) {
Dees_Troy657c3092012-09-10 20:32:10 -0400603 if ((*iter)->Mount_Point == Local_Path || (!(*iter)->Symlink_Mount_Point.empty() && (*iter)->Symlink_Mount_Point == Local_Path)) {
Dees_Troy5bf43922012-09-07 16:07:55 -0400604 ret = (*iter)->Mount(Display_Error);
605 found = true;
Dees_Troy51127312012-09-08 13:08:49 -0400606 } else if ((*iter)->Is_SubPartition && (*iter)->SubPartition_Of == Local_Path) {
Dees_Troy5bf43922012-09-07 16:07:55 -0400607 (*iter)->Mount(Display_Error);
Dees_Troy51127312012-09-08 13:08:49 -0400608 }
Dees_Troy5bf43922012-09-07 16:07:55 -0400609 }
610 if (found) {
611 return ret;
612 } else if (Display_Error) {
Ethan Yonker74db1572015-10-28 12:44:49 -0500613 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 -0400614 } else {
Dees_Troy2673cec2013-04-02 20:22:16 +0000615 LOGINFO("Mount: Unable to find partition for path '%s'\n", Local_Path.c_str());
Dees_Troy5bf43922012-09-07 16:07:55 -0400616 }
617 return false;
Dees_Troy51a0e822012-09-05 15:24:24 -0400618}
619
Dees_Troy51a0e822012-09-05 15:24:24 -0400620int TWPartitionManager::UnMount_By_Path(string Path, bool Display_Error) {
Dees_Troy51127312012-09-08 13:08:49 -0400621 std::vector<TWPartition*>::iterator iter;
622 int ret = false;
623 bool found = false;
Dees_Troy38bd7602012-09-14 13:33:53 -0400624 string Local_Path = TWFunc::Get_Root_Path(Path);
Dees_Troy51127312012-09-08 13:08:49 -0400625
626 // Iterate through all partitions
627 for (iter = Partitions.begin(); iter != Partitions.end(); iter++) {
Dees_Troy657c3092012-09-10 20:32:10 -0400628 if ((*iter)->Mount_Point == Local_Path || (!(*iter)->Symlink_Mount_Point.empty() && (*iter)->Symlink_Mount_Point == Local_Path)) {
Dees_Troy51127312012-09-08 13:08:49 -0400629 ret = (*iter)->UnMount(Display_Error);
630 found = true;
631 } else if ((*iter)->Is_SubPartition && (*iter)->SubPartition_Of == Local_Path) {
632 (*iter)->UnMount(Display_Error);
633 }
634 }
635 if (found) {
636 return ret;
637 } else if (Display_Error) {
Ethan Yonker74db1572015-10-28 12:44:49 -0500638 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 -0400639 } else {
Dees_Troy2673cec2013-04-02 20:22:16 +0000640 LOGINFO("UnMount: Unable to find partition for path '%s'\n", Local_Path.c_str());
Dees_Troy51127312012-09-08 13:08:49 -0400641 }
642 return false;
Dees_Troy51a0e822012-09-05 15:24:24 -0400643}
644
Dees_Troy51a0e822012-09-05 15:24:24 -0400645int TWPartitionManager::Is_Mounted_By_Path(string Path) {
Dees_Troy51127312012-09-08 13:08:49 -0400646 TWPartition* Part = Find_Partition_By_Path(Path);
647
648 if (Part)
649 return Part->Is_Mounted();
650 else
Dees_Troy2673cec2013-04-02 20:22:16 +0000651 LOGINFO("Is_Mounted: Unable to find partition for path '%s'\n", Path.c_str());
Dees_Troy51127312012-09-08 13:08:49 -0400652 return false;
Dees_Troy51a0e822012-09-05 15:24:24 -0400653}
654
Dees_Troy5bf43922012-09-07 16:07:55 -0400655int TWPartitionManager::Mount_Current_Storage(bool Display_Error) {
Dees_Troy51127312012-09-08 13:08:49 -0400656 string current_storage_path = DataManager::GetCurrentStoragePath();
657
658 if (Mount_By_Path(current_storage_path, Display_Error)) {
659 TWPartition* FreeStorage = Find_Partition_By_Path(current_storage_path);
660 if (FreeStorage)
661 DataManager::SetValue(TW_STORAGE_FREE_SIZE, (int)(FreeStorage->Free / 1048576LLU));
662 return true;
663 }
664 return false;
Dees_Troy51a0e822012-09-05 15:24:24 -0400665}
666
Dees_Troy5bf43922012-09-07 16:07:55 -0400667int TWPartitionManager::Mount_Settings_Storage(bool Display_Error) {
668 return Mount_By_Path(DataManager::GetSettingsStoragePath(), Display_Error);
669}
670
Ethan Yonker6e8c27a2016-12-22 17:55:57 -0600671TWPartition* TWPartitionManager::Find_Partition_By_Path(const string& Path) {
Dees_Troy5bf43922012-09-07 16:07:55 -0400672 std::vector<TWPartition*>::iterator iter;
Dees_Troy38bd7602012-09-14 13:33:53 -0400673 string Local_Path = TWFunc::Get_Root_Path(Path);
Dees_Troy5bf43922012-09-07 16:07:55 -0400674
dianlujitaob76a73a2020-04-30 20:33:20 +0800675 if (Local_Path == "/system")
676 Local_Path = Get_Android_Root_Path();
Dees_Troy5bf43922012-09-07 16:07:55 -0400677 for (iter = Partitions.begin(); iter != Partitions.end(); iter++) {
Dees_Troy657c3092012-09-10 20:32:10 -0400678 if ((*iter)->Mount_Point == Local_Path || (!(*iter)->Symlink_Mount_Point.empty() && (*iter)->Symlink_Mount_Point == Local_Path))
Dees_Troy5bf43922012-09-07 16:07:55 -0400679 return (*iter);
680 }
Dees_Troy51a0e822012-09-05 15:24:24 -0400681 return NULL;
682}
683
Ethan Yonker6e8c27a2016-12-22 17:55:57 -0600684TWPartition* TWPartitionManager::Find_Partition_By_Block_Device(const string& Block_Device) {
685 std::vector<TWPartition*>::iterator iter;
686
687 for (iter = Partitions.begin(); iter != Partitions.end(); iter++) {
688 if ((*iter)->Primary_Block_Device == Block_Device || (!(*iter)->Actual_Block_Device.empty() && (*iter)->Actual_Block_Device == Block_Device))
689 return (*iter);
690 }
691 return NULL;
692}
693
Ethan Yonker53796e72019-01-11 22:49:52 -0600694int TWPartitionManager::Check_Backup_Name(const std::string& Backup_Name, bool Display_Error, bool Must_Be_Unique) {
Dees_Troyc9ff7a32012-09-27 10:09:41 -0400695 // Check the backup name to ensure that it is the correct size and contains only valid characters
696 // and that a backup with that name doesn't already exist
697 char backup_name[MAX_BACKUP_NAME_LEN];
698 char backup_loc[255], tw_image_dir[255];
699 int copy_size;
700 int index, cur_char;
Ethan Yonker53796e72019-01-11 22:49:52 -0600701 string Backup_Loc;
Dees_Troyc9ff7a32012-09-27 10:09:41 -0400702
Dees_Troyc9ff7a32012-09-27 10:09:41 -0400703 copy_size = Backup_Name.size();
704 // Check size
705 if (copy_size > MAX_BACKUP_NAME_LEN) {
706 if (Display_Error)
Ethan Yonker74db1572015-10-28 12:44:49 -0500707 gui_err("backup_name_len=Backup name is too long.");
Dees_Troyc9ff7a32012-09-27 10:09:41 -0400708 return -2;
709 }
710
711 // Check each character
712 strncpy(backup_name, Backup_Name.c_str(), copy_size);
Dees_Troya13d74f2013-03-24 08:54:55 -0500713 if (copy_size == 1 && strncmp(backup_name, "0", 1) == 0)
Dees_Troyc9ff7a32012-09-27 10:09:41 -0400714 return 0; // A "0" (zero) means to use the current timestamp for the backup name
715 for (index=0; index<copy_size; index++) {
716 cur_char = (int)backup_name[index];
Matt Mowerfb1c4ff2014-04-16 13:43:36 -0500717 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 -0400718 // These are valid characters
719 // Numbers
720 // Upper case letters
721 // Lower case letters
722 // Space
723 // and -_.{}[]
724 } else {
725 if (Display_Error)
Ethan Yonker4adc33e2016-01-22 16:07:11 -0600726 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 -0400727 return -3;
728 }
729 }
730
Ethan Yonker53796e72019-01-11 22:49:52 -0600731 if (Must_Be_Unique) {
732 // Check to make sure that a backup with this name doesn't already exist
733 DataManager::GetValue(TW_BACKUPS_FOLDER_VAR, Backup_Loc);
734 strcpy(backup_loc, Backup_Loc.c_str());
735 sprintf(tw_image_dir,"%s/%s", backup_loc, Backup_Name.c_str());
736 if (TWFunc::Path_Exists(tw_image_dir)) {
737 if (Display_Error)
738 gui_err("backup_name_exists=A backup with that name already exists!");
bigbiffce8f83c2015-12-12 18:30:21 -0500739
Ethan Yonker53796e72019-01-11 22:49:52 -0600740 return -4;
741 }
742 // Backup is unique
Dees_Troyc9ff7a32012-09-27 10:09:41 -0400743 }
Ethan Yonker53796e72019-01-11 22:49:52 -0600744 // No problems found
Dees_Troyc9ff7a32012-09-27 10:09:41 -0400745 return 0;
746}
747
bigbiffce8f83c2015-12-12 18:30:21 -0500748bool TWPartitionManager::Backup_Partition(PartitionSettings *part_settings) {
Dees_Troy43d8b002012-09-17 16:00:01 -0400749 time_t start, stop;
Matt Mower23d8aae2017-01-06 14:30:33 -0600750 int use_compression;
bigbiffce8f83c2015-12-12 18:30:21 -0500751 string backup_log = part_settings->Backup_Folder + "/recovery.log";
Dees_Troy43d8b002012-09-17 16:00:01 -0400752
bigbiffce8f83c2015-12-12 18:30:21 -0500753 if (part_settings->Part == NULL)
Dees_Troy43d8b002012-09-17 16:00:01 -0400754 return true;
755
Dees_Troy093b7642012-09-21 15:59:38 -0400756 DataManager::GetValue(TW_USE_COMPRESSION_VAR, use_compression);
Dees_Troy093b7642012-09-21 15:59:38 -0400757
Tom Hite5a926722014-09-15 01:31:03 +0000758 TWFunc::SetPerformanceMode(true);
Dees_Troy43d8b002012-09-17 16:00:01 -0400759 time(&start);
760
bigbiffce8f83c2015-12-12 18:30:21 -0500761 if (part_settings->Part->Backup(part_settings, &tar_fork_pid)) {
Ethan Yonkercd00a8b2017-07-06 10:23:30 -0500762 sync();
763 sync();
bigbiff bigbiff56cf5642016-08-19 17:43:45 -0400764 string Full_Filename = part_settings->Backup_Folder + "/" + part_settings->Part->Backup_FileName;
Ethan Yonkercd00a8b2017-07-06 10:23:30 -0500765 if (!part_settings->adbbackup && part_settings->generate_digest) {
766 if (!twrpDigestDriver::Make_Digest(Full_Filename))
767 goto backup_error;
bigbiff bigbiff56cf5642016-08-19 17:43:45 -0400768 }
bigbiff bigbiff8fd4b092016-08-30 20:48:53 -0400769
bigbiffce8f83c2015-12-12 18:30:21 -0500770 if (part_settings->Part->Has_SubPartition) {
Dees_Troy8170a922012-09-18 15:40:25 -0400771 std::vector<TWPartition*>::iterator subpart;
bigbiff bigbiff8fd4b092016-08-30 20:48:53 -0400772 TWPartition *parentPart = part_settings->Part;
Dees_Troy8170a922012-09-18 15:40:25 -0400773
774 for (subpart = Partitions.begin(); subpart != Partitions.end(); subpart++) {
bigbiff bigbiff8fd4b092016-08-30 20:48:53 -0400775 if ((*subpart)->Can_Be_Backed_Up && (*subpart)->Is_SubPartition && (*subpart)->SubPartition_Of == parentPart->Mount_Point) {
Ethan Yonkerdcf2b672016-09-13 14:41:53 -0500776 part_settings->Part = *subpart;
bigbiffce8f83c2015-12-12 18:30:21 -0500777 if (!(*subpart)->Backup(part_settings, &tar_fork_pid)) {
Ethan Yonkercd00a8b2017-07-06 10:23:30 -0500778 goto backup_error;
Tom Hite5a926722014-09-15 01:31:03 +0000779 }
Dees_Troy2727b992013-08-14 20:09:30 +0000780 sync();
781 sync();
bigbiff bigbifff5955b12019-05-18 17:28:58 -0400782 string Full_Filename = part_settings->Backup_Folder + "/" + part_settings->Part->Backup_FileName;
bigbiff bigbiff56cf5642016-08-19 17:43:45 -0400783 if (!part_settings->adbbackup && part_settings->generate_digest) {
784 if (!twrpDigestDriver::Make_Digest(Full_Filename)) {
Ethan Yonkercd00a8b2017-07-06 10:23:30 -0500785 goto backup_error;
bigbiffce8f83c2015-12-12 18:30:21 -0500786 }
Tom Hite5a926722014-09-15 01:31:03 +0000787 }
Dees_Troy8170a922012-09-18 15:40:25 -0400788 }
789 }
790 }
bigbiff bigbiff56cf5642016-08-19 17:43:45 -0400791
Dees_Troy43d8b002012-09-17 16:00:01 -0400792 time(&stop);
that203bcc92015-05-09 17:27:33 +0200793 int backup_time = (int) difftime(stop, start);
Dees_Troy2673cec2013-04-02 20:22:16 +0000794 LOGINFO("Partition Backup time: %d\n", backup_time);
bigbiff bigbiff8fd4b092016-08-30 20:48:53 -0400795
bigbiffce8f83c2015-12-12 18:30:21 -0500796 if (part_settings->Part->Backup_Method == BM_FILES) {
797 part_settings->file_time += backup_time;
Dees_Troy43d8b002012-09-17 16:00:01 -0400798 } else {
bigbiffce8f83c2015-12-12 18:30:21 -0500799 part_settings->img_time += backup_time;
800
Dees_Troy43d8b002012-09-17 16:00:01 -0400801 }
Tom Hite5a926722014-09-15 01:31:03 +0000802
Matt Mower02899552016-12-30 18:13:51 -0600803 TWFunc::SetPerformanceMode(false);
Ethan Yonkercd00a8b2017-07-06 10:23:30 -0500804 return true;
Dees_Troy43d8b002012-09-17 16:00:01 -0400805 }
Ethan Yonkercd00a8b2017-07-06 10:23:30 -0500806backup_error:
807 Clean_Backup_Folder(part_settings->Backup_Folder);
808 TWFunc::copy_file("/tmp/recovery.log", backup_log, 0644);
809 tw_set_default_metadata(backup_log.c_str());
810 TWFunc::SetPerformanceMode(false);
811 return false;
bigbiff7abc5fe2015-01-17 16:53:12 -0500812}
813
bigbiffbf1d6722015-02-14 16:25:59 -0500814void TWPartitionManager::Clean_Backup_Folder(string Backup_Folder) {
815 DIR *d = opendir(Backup_Folder.c_str());
816 struct dirent *p;
817 int r;
bigbiff bigbiff56cf5642016-08-19 17:43:45 -0400818 vector<string> ext;
819
820 //extensions we should delete when cleaning
821 ext.push_back("win");
822 ext.push_back("md5");
823 ext.push_back("sha2");
824 ext.push_back("info");
bigbiffbf1d6722015-02-14 16:25:59 -0500825
Ethan Yonker74db1572015-10-28 12:44:49 -0500826 gui_msg("backup_clean=Backup Failed. Cleaning Backup Folder.");
bigbiffbf1d6722015-02-14 16:25:59 -0500827
828 if (d == NULL) {
Ethan Yonker74db1572015-10-28 12:44:49 -0500829 gui_msg(Msg(msg::kError, "error_opening_strerr=Error opening: '{1}' ({2})")(Backup_Folder)(strerror(errno)));
bigbiffbf1d6722015-02-14 16:25:59 -0500830 return;
831 }
832
Matt Mower2b18a532015-02-20 16:58:05 -0600833 while ((p = readdir(d))) {
bigbiffbf1d6722015-02-14 16:25:59 -0500834 if (!strcmp(p->d_name, ".") || !strcmp(p->d_name, ".."))
835 continue;
836
Ethan Yonkere080c1f2016-09-19 13:50:25 -0500837 string path = Backup_Folder + "/" + p->d_name;
bigbiffbf1d6722015-02-14 16:25:59 -0500838
839 size_t dot = path.find_last_of(".") + 1;
bigbiff bigbiff56cf5642016-08-19 17:43:45 -0400840 for (vector<string>::const_iterator i = ext.begin(); i != ext.end(); ++i) {
841 if (path.substr(dot) == *i) {
842 r = unlink(path.c_str());
843 if (r != 0)
844 LOGINFO("Unable to unlink '%s: %s'\n", path.c_str(), strerror(errno));
bigbiffbf1d6722015-02-14 16:25:59 -0500845 }
846 }
847 }
848 closedir(d);
849}
850
Ethan Yonker472f5062016-02-25 13:47:30 -0600851int TWPartitionManager::Check_Backup_Cancel() {
852 return stop_backup.get_value();
853}
854
bigbiff7abc5fe2015-01-17 16:53:12 -0500855int TWPartitionManager::Cancel_Backup() {
856 string Backup_Folder, Backup_Name, Full_Backup_Path;
857
858 stop_backup.set_value(1);
859
860 if (tar_fork_pid != 0) {
861 DataManager::GetValue(TW_BACKUP_NAME, Backup_Name);
862 DataManager::GetValue(TW_BACKUPS_FOLDER_VAR, Backup_Folder);
Ethan Yonkere080c1f2016-09-19 13:50:25 -0500863 Full_Backup_Path = Backup_Folder + "/" + Backup_Name;
bigbiff7abc5fe2015-01-17 16:53:12 -0500864 LOGINFO("Killing pid: %d\n", tar_fork_pid);
865 kill(tar_fork_pid, SIGUSR2);
866 while (kill(tar_fork_pid, 0) == 0) {
867 usleep(1000);
868 }
869 LOGINFO("Backup_Run stopped and returning false, backup cancelled.\n");
870 LOGINFO("Removing directory %s\n", Full_Backup_Path.c_str());
871 TWFunc::removeDir(Full_Backup_Path, false);
872 tar_fork_pid = 0;
873 }
874
875 return 0;
Dees_Troy43d8b002012-09-17 16:00:01 -0400876}
877
bigbiffce8f83c2015-12-12 18:30:21 -0500878int TWPartitionManager::Run_Backup(bool adbbackup) {
879 PartitionSettings part_settings;
bigbiff bigbiff56cf5642016-08-19 17:43:45 -0400880 int partition_count = 0, disable_free_space_check = 0, skip_digest = 0;
bigbiffce8f83c2015-12-12 18:30:21 -0500881 string Backup_Name, Backup_List, backup_path;
Matt Mower23d8aae2017-01-06 14:30:33 -0600882 unsigned long long total_bytes = 0, free_space = 0;
Dees_Troy43d8b002012-09-17 16:00:01 -0400883 TWPartition* storage = NULL;
884 struct tm *t;
Matt Mower23d8aae2017-01-06 14:30:33 -0600885 time_t seconds, total_start, total_stop;
Dees_Troya13d74f2013-03-24 08:54:55 -0500886 size_t start_pos = 0, end_pos = 0;
bigbiff7abc5fe2015-01-17 16:53:12 -0500887 stop_backup.set_value(0);
Dees_Troy43d8b002012-09-17 16:00:01 -0400888 seconds = time(0);
Matt Mowerfb1c4ff2014-04-16 13:43:36 -0500889 t = localtime(&seconds);
Dees_Troy43d8b002012-09-17 16:00:01 -0400890
bigbiffce8f83c2015-12-12 18:30:21 -0500891 part_settings.img_bytes_remaining = 0;
892 part_settings.file_bytes_remaining = 0;
893 part_settings.img_time = 0;
894 part_settings.file_time = 0;
895 part_settings.img_bytes = 0;
896 part_settings.file_bytes = 0;
897 part_settings.PM_Method = PM_BACKUP;
898
bigbiffce8f83c2015-12-12 18:30:21 -0500899 part_settings.adbbackup = adbbackup;
Dees_Troy43d8b002012-09-17 16:00:01 -0400900 time(&total_start);
901
902 Update_System_Details();
903
904 if (!Mount_Current_Storage(true))
905 return false;
906
bigbiff bigbiff56cf5642016-08-19 17:43:45 -0400907 DataManager::GetValue(TW_SKIP_DIGEST_GENERATE_VAR, skip_digest);
908 if (skip_digest == 0)
909 part_settings.generate_digest = true;
Dees_Troyc5865ab2012-09-24 15:08:04 -0400910 else
bigbiff bigbiff56cf5642016-08-19 17:43:45 -0400911 part_settings.generate_digest = false;
Dees_Troy4a2a1262012-09-18 09:33:47 -0400912
bigbiffce8f83c2015-12-12 18:30:21 -0500913 DataManager::GetValue(TW_BACKUPS_FOLDER_VAR, part_settings.Backup_Folder);
Ethan Yonkerdcf2b672016-09-13 14:41:53 -0500914 DataManager::GetValue(TW_BACKUP_NAME, Backup_Name);
915 if (Backup_Name == gui_lookup("curr_date", "(Current Date)")) {
916 Backup_Name = TWFunc::Get_Current_Date();
917 } else if (Backup_Name == gui_lookup("auto_generate", "(Auto Generate)") || Backup_Name == "0" || Backup_Name.empty()) {
Dees Troyb21cc642013-09-10 17:36:41 +0000918 TWFunc::Auto_Generate_Backup_Name();
Ethan Yonkerdcf2b672016-09-13 14:41:53 -0500919 DataManager::GetValue(TW_BACKUP_NAME, Backup_Name);
Dees_Troy43d8b002012-09-17 16:00:01 -0400920 }
bigbiffce8f83c2015-12-12 18:30:21 -0500921
Ethan Yonkerdcf2b672016-09-13 14:41:53 -0500922 LOGINFO("Backup Name is: '%s'\n", Backup_Name.c_str());
Ethan Yonkere080c1f2016-09-19 13:50:25 -0500923 part_settings.Backup_Folder = part_settings.Backup_Folder + "/" + Backup_Name;
bigbiffce8f83c2015-12-12 18:30:21 -0500924
Ethan Yonkere080c1f2016-09-19 13:50:25 -0500925 LOGINFO("Backup_Folder is: '%s'\n", part_settings.Backup_Folder.c_str());
Dees_Troy43d8b002012-09-17 16:00:01 -0400926
Dees_Troy2673cec2013-04-02 20:22:16 +0000927 LOGINFO("Calculating backup details...\n");
Dees_Troya13d74f2013-03-24 08:54:55 -0500928 DataManager::GetValue("tw_backup_list", Backup_List);
bigbiff7ba75002020-04-11 20:47:09 -0400929 LOGINFO("Backup_List: %s\n", Backup_List.c_str());
Dees_Troya13d74f2013-03-24 08:54:55 -0500930 if (!Backup_List.empty()) {
931 end_pos = Backup_List.find(";", start_pos);
932 while (end_pos != string::npos && start_pos < Backup_List.size()) {
933 backup_path = Backup_List.substr(start_pos, end_pos - start_pos);
bigbiff7ba75002020-04-11 20:47:09 -0400934 LOGINFO("backup_path: %s\n", backup_path.c_str());
bigbiffce8f83c2015-12-12 18:30:21 -0500935 part_settings.Part = Find_Partition_By_Path(backup_path);
936 if (part_settings.Part != NULL) {
Dees_Troya13d74f2013-03-24 08:54:55 -0500937 partition_count++;
bigbiffce8f83c2015-12-12 18:30:21 -0500938 if (part_settings.Part->Backup_Method == BM_FILES)
939 part_settings.file_bytes += part_settings.Part->Backup_Size;
Dees_Troya13d74f2013-03-24 08:54:55 -0500940 else
bigbiffce8f83c2015-12-12 18:30:21 -0500941 part_settings.img_bytes += part_settings.Part->Backup_Size;
942 if (part_settings.Part->Has_SubPartition) {
Dees_Troya13d74f2013-03-24 08:54:55 -0500943 std::vector<TWPartition*>::iterator subpart;
944
945 for (subpart = Partitions.begin(); subpart != Partitions.end(); subpart++) {
bigbiffce8f83c2015-12-12 18:30:21 -0500946 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 -0500947 partition_count++;
bigbiffce8f83c2015-12-12 18:30:21 -0500948 if ((*subpart)->Backup_Method == BM_FILES)
949 part_settings.file_bytes += (*subpart)->Backup_Size;
Dees_Troya13d74f2013-03-24 08:54:55 -0500950 else
bigbiffce8f83c2015-12-12 18:30:21 -0500951 part_settings.img_bytes += (*subpart)->Backup_Size;
Dees_Troya13d74f2013-03-24 08:54:55 -0500952 }
953 }
Dees_Troy8170a922012-09-18 15:40:25 -0400954 }
Dees_Troya13d74f2013-03-24 08:54:55 -0500955 } else {
Ethan Yonker74db1572015-10-28 12:44:49 -0500956 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 -0400957 }
Dees_Troya13d74f2013-03-24 08:54:55 -0500958 start_pos = end_pos + 1;
959 end_pos = Backup_List.find(";", start_pos);
Dees_Troy43d8b002012-09-17 16:00:01 -0400960 }
961 }
Dees_Troy43d8b002012-09-17 16:00:01 -0400962
963 if (partition_count == 0) {
Ethan Yonker74db1572015-10-28 12:44:49 -0500964 gui_msg("no_partition_selected=No partitions selected for backup.");
Dees_Troy43d8b002012-09-17 16:00:01 -0400965 return false;
966 }
bigbiffce8f83c2015-12-12 18:30:21 -0500967 if (adbbackup) {
968 if (twadbbu::Write_ADB_Stream_Header(partition_count) == false) {
969 return false;
970 }
971 }
972 total_bytes = part_settings.file_bytes + part_settings.img_bytes;
Ethan Yonker472f5062016-02-25 13:47:30 -0600973 ProgressTracking progress(total_bytes);
bigbiffce8f83c2015-12-12 18:30:21 -0500974 part_settings.progress = &progress;
975
Ethan Yonker74db1572015-10-28 12:44:49 -0500976 gui_msg(Msg("total_partitions_backup= * Total number of partitions to back up: {1}")(partition_count));
977 gui_msg(Msg("total_backup_size= * Total size of all data: {1}MB")(total_bytes / 1024 / 1024));
Dees_Troy43d8b002012-09-17 16:00:01 -0400978 storage = Find_Partition_By_Path(DataManager::GetCurrentStoragePath());
979 if (storage != NULL) {
980 free_space = storage->Free;
Ethan Yonker74db1572015-10-28 12:44:49 -0500981 gui_msg(Msg("available_space= * Available space: {1}MB")(free_space / 1024 / 1024));
Dees_Troy43d8b002012-09-17 16:00:01 -0400982 } else {
Ethan Yonker74db1572015-10-28 12:44:49 -0500983 gui_err("unable_locate_storage=Unable to locate storage device.");
Dees_Troy43d8b002012-09-17 16:00:01 -0400984 return false;
985 }
bigbiffbf1d6722015-02-14 16:25:59 -0500986
Matt Mowerbfccfb82016-04-25 23:22:31 -0500987 DataManager::GetValue(TW_DISABLE_FREE_SPACE_VAR, disable_free_space_check);
bigbiffce8f83c2015-12-12 18:30:21 -0500988
989 if (adbbackup)
990 disable_free_space_check = true;
991
bigbiffbf1d6722015-02-14 16:25:59 -0500992 if (!disable_free_space_check) {
993 if (free_space - (32 * 1024 * 1024) < total_bytes) {
994 // We require an extra 32MB just in case
Ethan Yonker74db1572015-10-28 12:44:49 -0500995 gui_err("no_space=Not enough free space on storage.");
bigbiffbf1d6722015-02-14 16:25:59 -0500996 return false;
997 }
Dees_Troy43d8b002012-09-17 16:00:01 -0400998 }
bigbiffce8f83c2015-12-12 18:30:21 -0500999 part_settings.img_bytes_remaining = part_settings.img_bytes;
1000 part_settings.file_bytes_remaining = part_settings.file_bytes;
Dees_Troy43d8b002012-09-17 16:00:01 -04001001
Ethan Yonker74db1572015-10-28 12:44:49 -05001002 gui_msg("backup_started=[BACKUP STARTED]");
bigbiff bigbiffcdd97c72019-03-29 19:12:33 -04001003
1004 int is_decrypted = 0;
1005 int is_encrypted = 0;
1006
1007 DataManager::GetValue(TW_IS_DECRYPTED, is_decrypted);
1008 DataManager::GetValue(TW_IS_ENCRYPTED, is_encrypted);
1009 if (!adbbackup || (!is_encrypted || (is_encrypted && is_decrypted))) {
1010 gui_msg(Msg("backup_folder= * Backup Folder: {1}")(part_settings.Backup_Folder));
1011 if (!TWFunc::Recursive_Mkdir(part_settings.Backup_Folder)) {
1012 gui_err("fail_backup_folder=Failed to make backup folder.");
1013 return false;
1014 }
Dees_Troyd4b22b02013-01-18 17:17:58 +00001015 }
1016
Dees_Troy2673cec2013-04-02 20:22:16 +00001017 DataManager::SetProgress(0.0);
Dees_Troy093b7642012-09-21 15:59:38 -04001018
Dees_Troya13d74f2013-03-24 08:54:55 -05001019 start_pos = 0;
1020 end_pos = Backup_List.find(";", start_pos);
1021 while (end_pos != string::npos && start_pos < Backup_List.size()) {
bigbiff7abc5fe2015-01-17 16:53:12 -05001022 if (stop_backup.get_value() != 0)
1023 return -1;
Dees_Troya13d74f2013-03-24 08:54:55 -05001024 backup_path = Backup_List.substr(start_pos, end_pos - start_pos);
bigbiffce8f83c2015-12-12 18:30:21 -05001025 part_settings.Part = Find_Partition_By_Path(backup_path);
1026 if (part_settings.Part != NULL) {
1027 if (!Backup_Partition(&part_settings))
Dees_Troya13d74f2013-03-24 08:54:55 -05001028 return false;
1029 } else {
Ethan Yonker74db1572015-10-28 12:44:49 -05001030 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 -05001031 }
1032 start_pos = end_pos + 1;
1033 end_pos = Backup_List.find(";", start_pos);
1034 }
Dees_Troy43d8b002012-09-17 16:00:01 -04001035
1036 // Average BPS
bigbiffce8f83c2015-12-12 18:30:21 -05001037 if (part_settings.img_time == 0)
1038 part_settings.img_time = 1;
1039 if (part_settings.file_time == 0)
1040 part_settings.file_time = 1;
1041 int img_bps = (int)part_settings.img_bytes / (int)part_settings.img_time;
1042 unsigned long long file_bps = part_settings.file_bytes / (int)part_settings.file_time;
Dees_Troy43d8b002012-09-17 16:00:01 -04001043
bigbiffce8f83c2015-12-12 18:30:21 -05001044 if (part_settings.file_bytes != 0)
Ethan Yonker472f5062016-02-25 13:47:30 -06001045 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 -05001046 if (part_settings.img_bytes != 0)
Ethan Yonker472f5062016-02-25 13:47:30 -06001047 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 -04001048
1049 time(&total_stop);
1050 int total_time = (int) difftime(total_stop, total_start);
bigbiffce8f83c2015-12-12 18:30:21 -05001051
1052 uint64_t actual_backup_size;
Ethan Yonker3fdcda42016-11-30 12:29:37 -06001053 if (!adbbackup) {
1054 TWExclude twe;
1055 actual_backup_size = twe.Get_Folder_Size(part_settings.Backup_Folder);
1056 } else
bigbiffce8f83c2015-12-12 18:30:21 -05001057 actual_backup_size = part_settings.file_bytes + part_settings.img_bytes;
Matt Mowerfb1c4ff2014-04-16 13:43:36 -05001058 actual_backup_size /= (1024LLU * 1024LLU);
Dees_Troy43d8b002012-09-17 16:00:01 -04001059
bigbiffce8f83c2015-12-12 18:30:21 -05001060 int prev_img_bps = 0, use_compression = 0;
1061 unsigned long long prev_file_bps = 0;
Matt Mower173cdb92016-12-31 02:49:19 -06001062 DataManager::GetValue(TW_BACKUP_AVG_IMG_RATE, prev_img_bps);
Dees_Troy093b7642012-09-21 15:59:38 -04001063 img_bps += (prev_img_bps * 4);
Matt Mowerfb1c4ff2014-04-16 13:43:36 -05001064 img_bps /= 5;
Dees_Troy093b7642012-09-21 15:59:38 -04001065
Matt Mowerfb1c4ff2014-04-16 13:43:36 -05001066 DataManager::GetValue(TW_USE_COMPRESSION_VAR, use_compression);
Dees_Troy093b7642012-09-21 15:59:38 -04001067 if (use_compression)
1068 DataManager::GetValue(TW_BACKUP_AVG_FILE_COMP_RATE, prev_file_bps);
Matt Mowerfb1c4ff2014-04-16 13:43:36 -05001069 else
Dees_Troy093b7642012-09-21 15:59:38 -04001070 DataManager::GetValue(TW_BACKUP_AVG_FILE_RATE, prev_file_bps);
1071 file_bps += (prev_file_bps * 4);
Matt Mowerfb1c4ff2014-04-16 13:43:36 -05001072 file_bps /= 5;
Dees_Troy093b7642012-09-21 15:59:38 -04001073
Matt Mowerfb1c4ff2014-04-16 13:43:36 -05001074 DataManager::SetValue(TW_BACKUP_AVG_IMG_RATE, img_bps);
Dees_Troy093b7642012-09-21 15:59:38 -04001075 if (use_compression)
1076 DataManager::SetValue(TW_BACKUP_AVG_FILE_COMP_RATE, file_bps);
1077 else
1078 DataManager::SetValue(TW_BACKUP_AVG_FILE_RATE, file_bps);
1079
Ethan Yonker74db1572015-10-28 12:44:49 -05001080 gui_msg(Msg("total_backed_size=[{1} MB TOTAL BACKED UP]")(actual_backup_size));
Dees_Troy43d8b002012-09-17 16:00:01 -04001081 Update_System_Details();
Dees_Troyd0384ef2012-10-12 12:15:42 -04001082 UnMount_Main_Partitions();
Ethan Yonker56db1c42015-12-20 22:49:00 -06001083 gui_msg(Msg(msg::kHighlight, "backup_completed=[BACKUP COMPLETED IN {1} SECONDS]")(total_time)); // the end
Ethan Yonkere080c1f2016-09-19 13:50:25 -05001084 string backup_log = part_settings.Backup_Folder + "/recovery.log";
Dees_Troy3f5c4e82013-02-01 15:16:59 +00001085 TWFunc::copy_file("/tmp/recovery.log", backup_log, 0644);
Ethan Yonker4b94cfd2014-12-11 10:00:45 -06001086 tw_set_default_metadata(backup_log.c_str());
bigbiffce8f83c2015-12-12 18:30:21 -05001087
1088 if (part_settings.adbbackup) {
1089 if (twadbbu::Write_ADB_Stream_Trailer() == false) {
1090 return false;
1091 }
1092 }
1093 part_settings.adbbackup = false;
1094 DataManager::SetValue("tw_enable_adb_backup", 0);
1095
Dees_Troy3f5c4e82013-02-01 15:16:59 +00001096 return true;
Dees_Troy51a0e822012-09-05 15:24:24 -04001097}
1098
bigbiffce8f83c2015-12-12 18:30:21 -05001099bool TWPartitionManager::Restore_Partition(PartitionSettings *part_settings) {
Dees_Troy4a2a1262012-09-18 09:33:47 -04001100 time_t Start, Stop;
bigbiffce8f83c2015-12-12 18:30:21 -05001101
bigbiff bigbiffb5ecaad2017-03-20 18:53:53 -04001102 if (part_settings->adbbackup) {
bigbiff bigbiff19fb79c2016-09-05 21:04:51 -04001103 std::string partName = part_settings->Part->Backup_Name + "." + part_settings->Part->Current_File_System + ".win";
1104 LOGINFO("setting backup name: %s\n", partName.c_str());
bigbiff bigbiffb5ecaad2017-03-20 18:53:53 -04001105 part_settings->Part->Set_Backup_FileName(part_settings->Part->Backup_Name + "." + part_settings->Part->Current_File_System + ".win");
1106 }
1107
Tom Hite5a926722014-09-15 01:31:03 +00001108 TWFunc::SetPerformanceMode(true);
bigbiffce8f83c2015-12-12 18:30:21 -05001109
Dees_Troy4a2a1262012-09-18 09:33:47 -04001110 time(&Start);
Ethan Yonker472f5062016-02-25 13:47:30 -06001111
bigbiffce8f83c2015-12-12 18:30:21 -05001112 if (!part_settings->Part->Restore(part_settings)) {
Tom Hite5a926722014-09-15 01:31:03 +00001113 TWFunc::SetPerformanceMode(false);
Dees_Troy4a2a1262012-09-18 09:33:47 -04001114 return false;
Tom Hite5a926722014-09-15 01:31:03 +00001115 }
bigbiff bigbiff19fb79c2016-09-05 21:04:51 -04001116 if (part_settings->Part->Has_SubPartition && !part_settings->adbbackup) {
Dees_Troy8170a922012-09-18 15:40:25 -04001117 std::vector<TWPartition*>::iterator subpart;
bigbiff bigbiff8fd4b092016-08-30 20:48:53 -04001118 TWPartition *parentPart = part_settings->Part;
Dees_Troy8170a922012-09-18 15:40:25 -04001119
1120 for (subpart = Partitions.begin(); subpart != Partitions.end(); subpart++) {
bigbiff bigbiff8fd4b092016-08-30 20:48:53 -04001121 part_settings->Part = *subpart;
1122 if ((*subpart)->Is_SubPartition && (*subpart)->SubPartition_Of == parentPart->Mount_Point) {
1123 part_settings->Part = (*subpart);
bigbiff bigbiff19fb79c2016-09-05 21:04:51 -04001124 part_settings->Part->Set_Backup_FileName(part_settings->Part->Backup_Name + "." + part_settings->Part->Current_File_System + ".win");
bigbiffce8f83c2015-12-12 18:30:21 -05001125 if (!(*subpart)->Restore(part_settings)) {
Tom Hite5a926722014-09-15 01:31:03 +00001126 TWFunc::SetPerformanceMode(false);
Dees_Troy8170a922012-09-18 15:40:25 -04001127 return false;
Tom Hite5a926722014-09-15 01:31:03 +00001128 }
Dees_Troy8170a922012-09-18 15:40:25 -04001129 }
1130 }
1131 }
Dees_Troy4a2a1262012-09-18 09:33:47 -04001132 time(&Stop);
Tom Hite5a926722014-09-15 01:31:03 +00001133 TWFunc::SetPerformanceMode(false);
bigbiffce8f83c2015-12-12 18:30:21 -05001134 gui_msg(Msg("restore_part_done=[{1} done ({2} seconds)]")(part_settings->Part->Backup_Display_Name)((int)difftime(Stop, Start)));
1135
Dees_Troy4a2a1262012-09-18 09:33:47 -04001136 return true;
1137}
1138
Ethan Yonker472f5062016-02-25 13:47:30 -06001139int TWPartitionManager::Run_Restore(const string& Restore_Name) {
bigbiffce8f83c2015-12-12 18:30:21 -05001140 PartitionSettings part_settings;
bigbiff bigbiff56cf5642016-08-19 17:43:45 -04001141 int check_digest;
bigbiffce8f83c2015-12-12 18:30:21 -05001142
Dees_Troy4a2a1262012-09-18 09:33:47 -04001143 time_t rStart, rStop;
1144 time(&rStart);
Dees_Troya13d74f2013-03-24 08:54:55 -05001145 string Restore_List, restore_path;
1146 size_t start_pos = 0, end_pos;
bigbiffce8f83c2015-12-12 18:30:21 -05001147
Ethan Yonkerdcf2b672016-09-13 14:41:53 -05001148 part_settings.Backup_Folder = Restore_Name;
bigbiffce8f83c2015-12-12 18:30:21 -05001149 part_settings.Part = NULL;
1150 part_settings.partition_count = 0;
1151 part_settings.total_restore_size = 0;
1152 part_settings.adbbackup = false;
1153 part_settings.PM_Method = PM_RESTORE;
Dees_Troy43d8b002012-09-17 16:00:01 -04001154
Ethan Yonker74db1572015-10-28 12:44:49 -05001155 gui_msg("restore_started=[RESTORE STARTED]");
1156 gui_msg(Msg("restore_folder=Restore folder: '{1}'")(Restore_Name));
Dees_Troy43d8b002012-09-17 16:00:01 -04001157
Dees_Troy4a2a1262012-09-18 09:33:47 -04001158 if (!Mount_Current_Storage(true))
1159 return false;
1160
bigbiff bigbiff56cf5642016-08-19 17:43:45 -04001161 DataManager::GetValue(TW_SKIP_DIGEST_CHECK_VAR, check_digest);
1162 if (check_digest > 0) {
1163 // Check Digest files first before restoring to ensure that all of them match before starting a restore
1164 TWFunc::GUI_Operation_Text(TW_VERIFY_DIGEST_TEXT, gui_parse_text("{@verifying_digest}"));
1165 gui_msg("verifying_digest=Verifying Digest");
Dees_Troya13d74f2013-03-24 08:54:55 -05001166 } else {
bigbiff bigbiff56cf5642016-08-19 17:43:45 -04001167 gui_msg("skip_digest=Skipping Digest check based on user setting.");
Dees_Troya13d74f2013-03-24 08:54:55 -05001168 }
Ethan Yonker74db1572015-10-28 12:44:49 -05001169 gui_msg("calc_restore=Calculating restore details...");
Dees_Troya13d74f2013-03-24 08:54:55 -05001170 DataManager::GetValue("tw_restore_selected", Restore_List);
bigbiffce8f83c2015-12-12 18:30:21 -05001171
Dees_Troya13d74f2013-03-24 08:54:55 -05001172 if (!Restore_List.empty()) {
1173 end_pos = Restore_List.find(";", start_pos);
1174 while (end_pos != string::npos && start_pos < Restore_List.size()) {
1175 restore_path = Restore_List.substr(start_pos, end_pos - start_pos);
bigbiffce8f83c2015-12-12 18:30:21 -05001176 part_settings.Part = Find_Partition_By_Path(restore_path);
1177 if (part_settings.Part != NULL) {
bigbiffce8f83c2015-12-12 18:30:21 -05001178 if (part_settings.Part->Mount_Read_Only) {
1179 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 -05001180 return false;
1181 }
bigbiffce8f83c2015-12-12 18:30:21 -05001182
bigbiff bigbiff56cf5642016-08-19 17:43:45 -04001183 string Full_Filename = part_settings.Backup_Folder + "/" + part_settings.Part->Backup_FileName;
1184
1185 if (check_digest > 0 && !twrpDigestDriver::Check_Digest(Full_Filename))
Dees_Troya13d74f2013-03-24 08:54:55 -05001186 return false;
bigbiffce8f83c2015-12-12 18:30:21 -05001187 part_settings.partition_count++;
1188 part_settings.total_restore_size += part_settings.Part->Get_Restore_Size(&part_settings);
1189 if (part_settings.Part->Has_SubPartition) {
bigbiff bigbiff8fd4b092016-08-30 20:48:53 -04001190 TWPartition *parentPart = part_settings.Part;
Dees_Troya13d74f2013-03-24 08:54:55 -05001191 std::vector<TWPartition*>::iterator subpart;
1192
1193 for (subpart = Partitions.begin(); subpart != Partitions.end(); subpart++) {
bigbiff bigbiff8fd4b092016-08-30 20:48:53 -04001194 part_settings.Part = *subpart;
1195 if ((*subpart)->Is_SubPartition && (*subpart)->SubPartition_Of == parentPart->Mount_Point) {
bigbiff bigbiff56cf5642016-08-19 17:43:45 -04001196 if (check_digest > 0 && !twrpDigestDriver::Check_Digest(Full_Filename))
Dees_Troya13d74f2013-03-24 08:54:55 -05001197 return false;
bigbiffce8f83c2015-12-12 18:30:21 -05001198 part_settings.total_restore_size += (*subpart)->Get_Restore_Size(&part_settings);
Dees_Troya13d74f2013-03-24 08:54:55 -05001199 }
1200 }
1201 }
1202 } else {
Ethan Yonker74db1572015-10-28 12:44:49 -05001203 gui_msg(Msg(msg::kError, "restore_unable_locate=Unable to locate '{1}' partition for restoring.")(restore_path));
Dees_Troya13d74f2013-03-24 08:54:55 -05001204 }
1205 start_pos = end_pos + 1;
1206 end_pos = Restore_List.find(";", start_pos);
Dees_Troy4a2a1262012-09-18 09:33:47 -04001207 }
Dees_Troy4a2a1262012-09-18 09:33:47 -04001208 }
Dees_Troy4a2a1262012-09-18 09:33:47 -04001209
bigbiffce8f83c2015-12-12 18:30:21 -05001210 if (part_settings.partition_count == 0) {
Ethan Yonker74db1572015-10-28 12:44:49 -05001211 gui_err("no_part_restore=No partitions selected for restore.");
Dees_Troy4a2a1262012-09-18 09:33:47 -04001212 return false;
1213 }
1214
bigbiffce8f83c2015-12-12 18:30:21 -05001215 gui_msg(Msg("restore_part_count=Restoring {1} partitions...")(part_settings.partition_count));
1216 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 +00001217 DataManager::SetProgress(0.0);
bigbiffce8f83c2015-12-12 18:30:21 -05001218 ProgressTracking progress(part_settings.total_restore_size);
1219 part_settings.progress = &progress;
Ethan Yonker1b7a31b2014-07-03 15:09:22 -05001220
Dees_Troya13d74f2013-03-24 08:54:55 -05001221 start_pos = 0;
1222 if (!Restore_List.empty()) {
1223 end_pos = Restore_List.find(";", start_pos);
1224 while (end_pos != string::npos && start_pos < Restore_List.size()) {
1225 restore_path = Restore_List.substr(start_pos, end_pos - start_pos);
bigbiffce8f83c2015-12-12 18:30:21 -05001226
1227 part_settings.Part = Find_Partition_By_Path(restore_path);
1228 if (part_settings.Part != NULL) {
1229 part_settings.partition_count++;
bigbiffce8f83c2015-12-12 18:30:21 -05001230 if (!Restore_Partition(&part_settings))
Dees_Troya13d74f2013-03-24 08:54:55 -05001231 return false;
1232 } else {
Ethan Yonker74db1572015-10-28 12:44:49 -05001233 gui_msg(Msg(msg::kError, "restore_unable_locate=Unable to locate '{1}' partition for restoring.")(restore_path));
Dees_Troya13d74f2013-03-24 08:54:55 -05001234 }
1235 start_pos = end_pos + 1;
1236 end_pos = Restore_List.find(";", start_pos);
1237 }
1238 }
Ethan Yonker74db1572015-10-28 12:44:49 -05001239 TWFunc::GUI_Operation_Text(TW_UPDATE_SYSTEM_DETAILS_TEXT, gui_parse_text("{@updating_system_details}"));
Captain Throwback9d6feb52018-07-27 10:05:24 -04001240 UnMount_By_Path(Get_Android_Root_Path(), false);
Dees_Troy43d8b002012-09-17 16:00:01 -04001241 Update_System_Details();
Dees_Troyd0384ef2012-10-12 12:15:42 -04001242 UnMount_Main_Partitions();
Dees_Troy4a2a1262012-09-18 09:33:47 -04001243 time(&rStop);
Matt Mower3c366972015-12-25 19:28:31 -06001244 gui_msg(Msg(msg::kHighlight, "restore_completed=[RESTORE COMPLETED IN {1} SECONDS]")((int)difftime(rStop,rStart)));
Ethan Yonker1b7a31b2014-07-03 15:09:22 -05001245 DataManager::SetValue("tw_file_progress", "");
bigbiffce8f83c2015-12-12 18:30:21 -05001246
Dees_Troy63c8df72012-09-10 14:02:05 -04001247 return true;
Dees_Troy51a0e822012-09-05 15:24:24 -04001248}
1249
1250void TWPartitionManager::Set_Restore_Files(string Restore_Name) {
Dees_Troy63c8df72012-09-10 14:02:05 -04001251 // Start with the default values
Dees_Troya13d74f2013-03-24 08:54:55 -05001252 string Restore_List;
Dees_Troy83bd4832013-05-04 12:39:56 +00001253 bool get_date = true, check_encryption = true;
bigbiff bigbiff19fb79c2016-09-05 21:04:51 -04001254 bool adbbackup = false;
Dees_Troy83bd4832013-05-04 12:39:56 +00001255
1256 DataManager::SetValue("tw_restore_encrypted", 0);
bigbiff bigbiff19fb79c2016-09-05 21:04:51 -04001257 if (twadbbu::Check_ADB_Backup_File(Restore_Name)) {
1258 vector<string> adb_files;
1259 adb_files = twadbbu::Get_ADB_Backup_Files(Restore_Name);
1260 for (unsigned int i = 0; i < adb_files.size(); ++i) {
1261 string adb_restore_file = adb_files.at(i);
1262 std::size_t pos = adb_restore_file.find_first_of(".");
1263 std::string path = "/" + adb_restore_file.substr(0, pos);
1264 Restore_List = path + ";";
1265 TWPartition* Part = Find_Partition_By_Path(path);
1266 Part->Backup_FileName = TWFunc::Get_Filename(adb_restore_file);
1267 adbbackup = true;
1268 }
1269 DataManager::SetValue("tw_enable_adb_backup", 1);
Dees_Troy63c8df72012-09-10 14:02:05 -04001270 }
bigbiff bigbiff19fb79c2016-09-05 21:04:51 -04001271 else {
1272 DIR* d;
1273 d = opendir(Restore_Name.c_str());
1274 if (d == NULL)
Dees_Troy63c8df72012-09-10 14:02:05 -04001275 {
bigbiff bigbiff19fb79c2016-09-05 21:04:51 -04001276 gui_msg(Msg(msg::kError, "error_opening_strerr=Error opening: '{1}' ({2})")(Restore_Name)(strerror(errno)));
1277 return;
Dees_Troy63c8df72012-09-10 14:02:05 -04001278 }
bigbiff bigbiff19fb79c2016-09-05 21:04:51 -04001279
1280 struct dirent* de;
1281 while ((de = readdir(d)) != NULL)
Dees_Troy63c8df72012-09-10 14:02:05 -04001282 {
bigbiff bigbiff19fb79c2016-09-05 21:04:51 -04001283 // Strip off three components
1284 char str[256];
1285 char* label;
1286 char* fstype = NULL;
1287 char* extn = NULL;
1288 char* ptr;
Dees_Troy63c8df72012-09-10 14:02:05 -04001289
bigbiff bigbiff19fb79c2016-09-05 21:04:51 -04001290 strcpy(str, de->d_name);
1291 if (strlen(str) <= 2)
1292 continue;
Dees_Troy83bd4832013-05-04 12:39:56 +00001293
bigbiff bigbiff19fb79c2016-09-05 21:04:51 -04001294 if (get_date) {
1295 char file_path[255];
1296 struct stat st;
1297
1298 strcpy(file_path, Restore_Name.c_str());
1299 strcat(file_path, "/");
1300 strcat(file_path, str);
1301 stat(file_path, &st);
1302 string backup_date = ctime((const time_t*)(&st.st_mtime));
1303 DataManager::SetValue(TW_RESTORE_FILE_DATE, backup_date);
1304 get_date = false;
Dees_Troy83bd4832013-05-04 12:39:56 +00001305 }
Dees_Troy63c8df72012-09-10 14:02:05 -04001306
bigbiff bigbiff19fb79c2016-09-05 21:04:51 -04001307 label = str;
1308 ptr = label;
1309 while (*ptr && *ptr != '.') ptr++;
1310 if (*ptr == '.')
1311 {
1312 *ptr = 0x00;
1313 ptr++;
1314 fstype = ptr;
1315 }
1316 while (*ptr && *ptr != '.') ptr++;
1317 if (*ptr == '.')
1318 {
1319 *ptr = 0x00;
1320 ptr++;
1321 extn = ptr;
1322 }
Dees_Troy63c8df72012-09-10 14:02:05 -04001323
bigbiff bigbiff19fb79c2016-09-05 21:04:51 -04001324 if (fstype == NULL || extn == NULL || strcmp(fstype, "log") == 0) continue;
1325 int extnlength = strlen(extn);
1326 if (extnlength != 3 && extnlength != 6) continue;
1327 if (extnlength >= 3 && strncmp(extn, "win", 3) != 0) continue;
1328 //if (extnlength == 6 && strncmp(extn, "win000", 6) != 0) continue;
Dees_Troy63c8df72012-09-10 14:02:05 -04001329
bigbiff bigbiff19fb79c2016-09-05 21:04:51 -04001330 if (check_encryption) {
1331 string filename = Restore_Name + "/";
1332 filename += de->d_name;
1333 if (TWFunc::Get_File_Type(filename) == 2) {
1334 LOGINFO("'%s' is encrypted\n", filename.c_str());
1335 DataManager::SetValue("tw_restore_encrypted", 1);
1336 }
1337 }
1338 if (extnlength == 6 && strncmp(extn, "win000", 6) != 0) continue;
1339
1340 TWPartition* Part = Find_Partition_By_Path(label);
1341 if (Part == NULL)
1342 {
1343 gui_msg(Msg(msg::kError, "unable_locate_part_backup_name=Unable to locate partition by backup name: '{1}'")(label));
1344 continue;
1345 }
1346
1347 Part->Backup_FileName = de->d_name;
1348 if (strlen(extn) > 3) {
1349 Part->Backup_FileName.resize(Part->Backup_FileName.size() - strlen(extn) + 3);
1350 }
1351
dianlujitaob76a73a2020-04-30 20:33:20 +08001352 if (!Part->Is_SubPartition) {
1353 if (Part->Backup_Path == Get_Android_Root_Path())
1354 Restore_List += "/system;";
1355 else
1356 Restore_List += Part->Backup_Path + ";";
1357 }
bigbiff bigbiff19fb79c2016-09-05 21:04:51 -04001358 }
1359 closedir(d);
Dees_Troy63c8df72012-09-10 14:02:05 -04001360 }
bigbiff bigbiff19fb79c2016-09-05 21:04:51 -04001361
1362 if (adbbackup) {
1363 Restore_List = "ADB_Backup;";
1364 adbbackup = false;
1365 }
Dees_Troy63c8df72012-09-10 14:02:05 -04001366
Dees_Troya13d74f2013-03-24 08:54:55 -05001367 // Set the final value
1368 DataManager::SetValue("tw_restore_list", Restore_List);
1369 DataManager::SetValue("tw_restore_selected", Restore_List);
Dees_Troy51a0e822012-09-05 15:24:24 -04001370 return;
1371}
1372
1373int TWPartitionManager::Wipe_By_Path(string Path) {
Dees_Troy63c8df72012-09-10 14:02:05 -04001374 std::vector<TWPartition*>::iterator iter;
Mohd Farazfdd49bb2020-04-21 18:56:44 +05301375 std::vector < TWPartition * >::iterator iter1;
Dees_Troy63c8df72012-09-10 14:02:05 -04001376 int ret = false;
1377 bool found = false;
Dees_Troy38bd7602012-09-14 13:33:53 -04001378 string Local_Path = TWFunc::Get_Root_Path(Path);
Dees_Troy63c8df72012-09-10 14:02:05 -04001379
dianlujitaob76a73a2020-04-30 20:33:20 +08001380 if (Local_Path == "/system")
1381 Local_Path = Get_Android_Root_Path();
Dees_Troy63c8df72012-09-10 14:02:05 -04001382 // Iterate through all partitions
1383 for (iter = Partitions.begin(); iter != Partitions.end(); iter++) {
Dees_Troy657c3092012-09-10 20:32:10 -04001384 if ((*iter)->Mount_Point == Local_Path || (!(*iter)->Symlink_Mount_Point.empty() && (*iter)->Symlink_Mount_Point == Local_Path)) {
Mohd Farazfdd49bb2020-04-21 18:56:44 +05301385 // iterate through all partitions since some legacy devices uses other partitions as vendor causes issues while wiping
1386 (*iter)->Find_Actual_Block_Device();
1387 for (iter1 = Partitions.begin (); iter1 != Partitions.end (); iter1++)
1388 {
1389 (*iter1)->Find_Actual_Block_Device();
1390 if ((*iter)->Actual_Block_Device == (*iter1)->Actual_Block_Device && (*iter)->Mount_Point != (*iter1)->Mount_Point)
1391 (*iter1)->UnMount(false);
1392 }
Dees_Troye58d5262012-09-21 12:27:57 -04001393 if (Path == "/and-sec")
1394 ret = (*iter)->Wipe_AndSec();
1395 else
1396 ret = (*iter)->Wipe();
Dees_Troy63c8df72012-09-10 14:02:05 -04001397 found = true;
1398 } else if ((*iter)->Is_SubPartition && (*iter)->SubPartition_Of == Local_Path) {
1399 (*iter)->Wipe();
1400 }
1401 }
1402 if (found) {
1403 return ret;
1404 } else
Ethan Yonker74db1572015-10-28 12:44:49 -05001405 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 -04001406 return false;
Dees_Troy51a0e822012-09-05 15:24:24 -04001407}
1408
Ethan Yonker87c7bac2014-05-25 21:41:08 -05001409int TWPartitionManager::Wipe_By_Path(string Path, string New_File_System) {
1410 std::vector<TWPartition*>::iterator iter;
1411 int ret = false;
1412 bool found = false;
1413 string Local_Path = TWFunc::Get_Root_Path(Path);
1414
1415 // Iterate through all partitions
1416 for (iter = Partitions.begin(); iter != Partitions.end(); iter++) {
1417 if ((*iter)->Mount_Point == Local_Path || (!(*iter)->Symlink_Mount_Point.empty() && (*iter)->Symlink_Mount_Point == Local_Path)) {
1418 if (Path == "/and-sec")
1419 ret = (*iter)->Wipe_AndSec();
1420 else
1421 ret = (*iter)->Wipe(New_File_System);
1422 found = true;
1423 } else if ((*iter)->Is_SubPartition && (*iter)->SubPartition_Of == Local_Path) {
1424 (*iter)->Wipe(New_File_System);
1425 }
1426 }
1427 if (found) {
1428 return ret;
1429 } else
Ethan Yonker74db1572015-10-28 12:44:49 -05001430 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 -05001431 return false;
1432}
1433
Dees_Troy51a0e822012-09-05 15:24:24 -04001434int TWPartitionManager::Factory_Reset(void) {
Dees_Troy63c8df72012-09-10 14:02:05 -04001435 std::vector<TWPartition*>::iterator iter;
1436 int ret = true;
1437
1438 for (iter = Partitions.begin(); iter != Partitions.end(); iter++) {
Dees_Troy38bd7602012-09-14 13:33:53 -04001439 if ((*iter)->Wipe_During_Factory_Reset && (*iter)->Is_Present) {
Ethan Yonker89583ef2015-08-26 09:01:59 -05001440#ifdef TW_OEM_BUILD
1441 if ((*iter)->Mount_Point == "/data") {
1442 if (!(*iter)->Wipe_Encryption())
1443 ret = false;
1444 } else {
1445#endif
1446 if (!(*iter)->Wipe())
1447 ret = false;
1448#ifdef TW_OEM_BUILD
1449 }
1450#endif
Dees_Troy094207a2012-09-26 12:00:39 -04001451 } else if ((*iter)->Has_Android_Secure) {
1452 if (!(*iter)->Wipe_AndSec())
1453 ret = false;
Dees_Troy63c8df72012-09-10 14:02:05 -04001454 }
1455 }
bigbiffad58e1b2020-07-06 20:24:34 -04001456 TWFunc::check_and_run_script("/system/bin/factoryreset.sh", "Factory Reset Script");
Dees_Troy63c8df72012-09-10 14:02:05 -04001457 return ret;
Dees_Troy51a0e822012-09-05 15:24:24 -04001458}
1459
Dees_Troy38bd7602012-09-14 13:33:53 -04001460int TWPartitionManager::Wipe_Dalvik_Cache(void) {
1461 struct stat st;
bigbiff bigbiff9c754052013-01-09 09:09:08 -05001462 vector <string> dir;
Dees_Troy38bd7602012-09-14 13:33:53 -04001463
1464 if (!Mount_By_Path("/data", true))
1465 return false;
1466
bigbiff bigbiff9c754052013-01-09 09:09:08 -05001467 dir.push_back("/data/dalvik-cache");
bigbiff bigbiff19874f12019-01-08 20:06:57 -05001468
bigbiff25d25b92020-06-19 16:07:38 -04001469 std::string cacheDir = TWFunc::get_log_dir();
1470 if (cacheDir == CACHE_LOGS_DIR) {
1471 if (!PartitionManager.Mount_By_Path(CACHE_LOGS_DIR, false)) {
1472 LOGINFO("Unable to mount %s for wiping cache.\n", CACHE_LOGS_DIR);
bigbiff bigbiff19874f12019-01-08 20:06:57 -05001473 }
1474 dir.push_back(cacheDir + "dalvik-cache");
1475 dir.push_back(cacheDir + "/dc");
bigbiff bigbiff9c754052013-01-09 09:09:08 -05001476 }
Ethan Yonkerff2b7882016-12-10 09:04:41 -06001477
Dees_Troy38bd7602012-09-14 13:33:53 -04001478 TWPartition* sdext = Find_Partition_By_Path("/sd-ext");
Vojtech Bocekfafb0c52013-07-25 22:53:02 +02001479 if (sdext && sdext->Is_Present && sdext->Mount(false))
1480 {
1481 if (stat("/sd-ext/dalvik-cache", &st) == 0)
1482 {
Ethan Yonkerff2b7882016-12-10 09:04:41 -06001483 dir.push_back("/sd-ext/dalvik-cache");
1484 }
1485 }
1486
bigbiff25d25b92020-06-19 16:07:38 -04001487 if (cacheDir == CACHE_LOGS_DIR) {
bigbiff bigbiff19874f12019-01-08 20:06:57 -05001488 gui_msg("wiping_cache_dalvik=Wiping Dalvik Cache Directories...");
1489 } else {
1490 gui_msg("wiping_dalvik=Wiping Dalvik Directory...");
1491 }
Ethan Yonkerff2b7882016-12-10 09:04:41 -06001492 for (unsigned i = 0; i < dir.size(); ++i) {
1493 if (stat(dir.at(i).c_str(), &st) == 0) {
1494 TWFunc::removeDir(dir.at(i), false);
1495 gui_msg(Msg("cleaned=Cleaned: {1}...")(dir.at(i)));
bigbiff bigbiff9c754052013-01-09 09:09:08 -05001496 }
Vojtech Bocekfafb0c52013-07-25 22:53:02 +02001497 }
bigbiff bigbiff19874f12019-01-08 20:06:57 -05001498
bigbiff25d25b92020-06-19 16:07:38 -04001499 if (cacheDir == CACHE_LOGS_DIR) {
bigbiff bigbiff19874f12019-01-08 20:06:57 -05001500 gui_msg("cache_dalvik_done=-- Dalvik Cache Directories Wipe Complete!");
1501 } else {
1502 gui_msg("dalvik_done=-- Dalvik Directory Wipe Complete!");
1503 }
1504
Dees_Troy38bd7602012-09-14 13:33:53 -04001505 return true;
1506}
1507
1508int TWPartitionManager::Wipe_Rotate_Data(void) {
1509 if (!Mount_By_Path("/data", true))
1510 return false;
1511
bigbiff bigbiff9c754052013-01-09 09:09:08 -05001512 unlink("/data/misc/akmd*");
1513 unlink("/data/misc/rild*");
Dees_Troy2673cec2013-04-02 20:22:16 +00001514 gui_print("Rotation data wiped.\n");
Dees_Troy38bd7602012-09-14 13:33:53 -04001515 return true;
1516}
1517
1518int TWPartitionManager::Wipe_Battery_Stats(void) {
1519 struct stat st;
1520
1521 if (!Mount_By_Path("/data", true))
1522 return false;
1523
1524 if (0 != stat("/data/system/batterystats.bin", &st)) {
Dees_Troy2673cec2013-04-02 20:22:16 +00001525 gui_print("No Battery Stats Found. No Need To Wipe.\n");
Dees_Troy38bd7602012-09-14 13:33:53 -04001526 } else {
1527 remove("/data/system/batterystats.bin");
Dees_Troy2673cec2013-04-02 20:22:16 +00001528 gui_print("Cleared battery stats.\n");
Dees_Troy38bd7602012-09-14 13:33:53 -04001529 }
1530 return true;
1531}
1532
Dees_Troy2ff5a8d2012-09-26 14:53:02 -04001533int TWPartitionManager::Wipe_Android_Secure(void) {
1534 std::vector<TWPartition*>::iterator iter;
1535 int ret = false;
1536 bool found = false;
1537
1538 // Iterate through all partitions
1539 for (iter = Partitions.begin(); iter != Partitions.end(); iter++) {
1540 if ((*iter)->Has_Android_Secure) {
1541 ret = (*iter)->Wipe_AndSec();
1542 found = true;
1543 }
1544 }
1545 if (found) {
1546 return ret;
1547 } else {
Ethan Yonker74db1572015-10-28 12:44:49 -05001548 gui_err("no_andsec=No android secure partitions found.");
Dees_Troy2ff5a8d2012-09-26 14:53:02 -04001549 }
1550 return false;
1551}
1552
Dees_Troy38bd7602012-09-14 13:33:53 -04001553int TWPartitionManager::Format_Data(void) {
1554 TWPartition* dat = Find_Partition_By_Path("/data");
1555
1556 if (dat != NULL) {
Dees_Troy38bd7602012-09-14 13:33:53 -04001557 return dat->Wipe_Encryption();
1558 } else {
Matt Mower3c366972015-12-25 19:28:31 -06001559 gui_msg(Msg(msg::kError, "unable_to_locate=Unable to locate {1}.")("/data"));
Dees_Troy38bd7602012-09-14 13:33:53 -04001560 return false;
1561 }
1562 return false;
1563}
1564
1565int TWPartitionManager::Wipe_Media_From_Data(void) {
1566 TWPartition* dat = Find_Partition_By_Path("/data");
1567
1568 if (dat != NULL) {
1569 if (!dat->Has_Data_Media) {
Dees_Troy2673cec2013-04-02 20:22:16 +00001570 LOGERR("This device does not have /data/media\n");
Dees_Troy38bd7602012-09-14 13:33:53 -04001571 return false;
1572 }
1573 if (!dat->Mount(true))
1574 return false;
1575
Ethan Yonker74db1572015-10-28 12:44:49 -05001576 gui_msg("wiping_datamedia=Wiping internal storage -- /data/media...");
Ethan Yonker726a0202014-12-16 20:01:38 -06001577 Remove_MTP_Storage(dat->MTP_Storage_ID);
bigbiff bigbiff9c754052013-01-09 09:09:08 -05001578 TWFunc::removeDir("/data/media", false);
xiaolu9416f4f2015-06-04 08:22:23 +08001579 dat->Recreate_Media_Folder();
Ethan Yonker726a0202014-12-16 20:01:38 -06001580 Add_MTP_Storage(dat->MTP_Storage_ID);
Dees_Troy38bd7602012-09-14 13:33:53 -04001581 return true;
1582 } else {
Matt Mower3c366972015-12-25 19:28:31 -06001583 gui_msg(Msg(msg::kError, "unable_to_locate=Unable to locate {1}.")("/data"));
Dees_Troy38bd7602012-09-14 13:33:53 -04001584 return false;
1585 }
1586 return false;
1587}
1588
Ethan Yonker87c7bac2014-05-25 21:41:08 -05001589int TWPartitionManager::Repair_By_Path(string Path, bool Display_Error) {
1590 std::vector<TWPartition*>::iterator iter;
1591 int ret = false;
1592 bool found = false;
1593 string Local_Path = TWFunc::Get_Root_Path(Path);
1594
1595 if (Local_Path == "/tmp" || Local_Path == "/")
1596 return true;
1597
1598 // Iterate through all partitions
1599 for (iter = Partitions.begin(); iter != Partitions.end(); iter++) {
1600 if ((*iter)->Mount_Point == Local_Path || (!(*iter)->Symlink_Mount_Point.empty() && (*iter)->Symlink_Mount_Point == Local_Path)) {
1601 ret = (*iter)->Repair();
1602 found = true;
1603 } else if ((*iter)->Is_SubPartition && (*iter)->SubPartition_Of == Local_Path) {
1604 (*iter)->Repair();
1605 }
1606 }
1607 if (found) {
1608 return ret;
1609 } else if (Display_Error) {
Ethan Yonker74db1572015-10-28 12:44:49 -05001610 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 -05001611 } else {
1612 LOGINFO("Repair: Unable to find partition for path '%s'\n", Local_Path.c_str());
1613 }
1614 return false;
1615}
1616
Ethan Yonkera2719152015-05-28 09:44:41 -05001617int TWPartitionManager::Resize_By_Path(string Path, bool Display_Error) {
1618 std::vector<TWPartition*>::iterator iter;
1619 int ret = false;
1620 bool found = false;
1621 string Local_Path = TWFunc::Get_Root_Path(Path);
1622
1623 if (Local_Path == "/tmp" || Local_Path == "/")
1624 return true;
1625
1626 // Iterate through all partitions
1627 for (iter = Partitions.begin(); iter != Partitions.end(); iter++) {
1628 if ((*iter)->Mount_Point == Local_Path || (!(*iter)->Symlink_Mount_Point.empty() && (*iter)->Symlink_Mount_Point == Local_Path)) {
1629 ret = (*iter)->Resize();
1630 found = true;
1631 } else if ((*iter)->Is_SubPartition && (*iter)->SubPartition_Of == Local_Path) {
1632 (*iter)->Resize();
1633 }
1634 }
1635 if (found) {
1636 return ret;
1637 } else if (Display_Error) {
Ethan Yonker74db1572015-10-28 12:44:49 -05001638 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 -05001639 } else {
1640 LOGINFO("Resize: Unable to find partition for path '%s'\n", Local_Path.c_str());
1641 }
1642 return false;
1643}
1644
Dees_Troy51a0e822012-09-05 15:24:24 -04001645void TWPartitionManager::Update_System_Details(void) {
Dees_Troy5bf43922012-09-07 16:07:55 -04001646 std::vector<TWPartition*>::iterator iter;
Dees_Troy51127312012-09-08 13:08:49 -04001647 int data_size = 0;
Dees_Troy5bf43922012-09-07 16:07:55 -04001648
Ethan Yonker74db1572015-10-28 12:44:49 -05001649 gui_msg("update_part_details=Updating partition details...");
Dees_Troy5bf43922012-09-07 16:07:55 -04001650 for (iter = Partitions.begin(); iter != Partitions.end(); iter++) {
Ethan Yonker1b190162016-12-05 15:25:19 -06001651 (*iter)->Update_Size(true);
Dees_Troy51127312012-09-08 13:08:49 -04001652 if ((*iter)->Can_Be_Mounted) {
Captain Throwback9d6feb52018-07-27 10:05:24 -04001653 if ((*iter)->Mount_Point == Get_Android_Root_Path()) {
Dees_Troy51127312012-09-08 13:08:49 -04001654 int backup_display_size = (int)((*iter)->Backup_Size / 1048576LLU);
1655 DataManager::SetValue(TW_BACKUP_SYSTEM_SIZE, backup_display_size);
Ethan Yonker76bbd3a2019-05-10 10:50:04 -05001656 TWFunc::Is_TWRP_App_In_System();
Dees_Troy51127312012-09-08 13:08:49 -04001657 } else if ((*iter)->Mount_Point == "/data" || (*iter)->Mount_Point == "/datadata") {
1658 data_size += (int)((*iter)->Backup_Size / 1048576LLU);
1659 } else if ((*iter)->Mount_Point == "/cache") {
1660 int backup_display_size = (int)((*iter)->Backup_Size / 1048576LLU);
1661 DataManager::SetValue(TW_BACKUP_CACHE_SIZE, backup_display_size);
1662 } else if ((*iter)->Mount_Point == "/sd-ext") {
1663 int backup_display_size = (int)((*iter)->Backup_Size / 1048576LLU);
1664 DataManager::SetValue(TW_BACKUP_SDEXT_SIZE, backup_display_size);
1665 if ((*iter)->Backup_Size == 0) {
1666 DataManager::SetValue(TW_HAS_SDEXT_PARTITION, 0);
1667 DataManager::SetValue(TW_BACKUP_SDEXT_VAR, 0);
1668 } else
1669 DataManager::SetValue(TW_HAS_SDEXT_PARTITION, 1);
Dees_Troye58d5262012-09-21 12:27:57 -04001670 } else if ((*iter)->Has_Android_Secure) {
Dees_Troy8170a922012-09-18 15:40:25 -04001671 int backup_display_size = (int)((*iter)->Backup_Size / 1048576LLU);
Dees_Troye58d5262012-09-21 12:27:57 -04001672 DataManager::SetValue(TW_BACKUP_ANDSEC_SIZE, backup_display_size);
Dees_Troy8170a922012-09-18 15:40:25 -04001673 if ((*iter)->Backup_Size == 0) {
1674 DataManager::SetValue(TW_HAS_ANDROID_SECURE, 0);
1675 DataManager::SetValue(TW_BACKUP_ANDSEC_VAR, 0);
1676 } else
1677 DataManager::SetValue(TW_HAS_ANDROID_SECURE, 1);
Dees_Troy2c50e182012-09-26 20:05:28 -04001678 } else if ((*iter)->Mount_Point == "/boot") {
1679 int backup_display_size = (int)((*iter)->Backup_Size / 1048576LLU);
1680 DataManager::SetValue(TW_BACKUP_BOOT_SIZE, backup_display_size);
1681 if ((*iter)->Backup_Size == 0) {
1682 DataManager::SetValue("tw_has_boot_partition", 0);
1683 DataManager::SetValue(TW_BACKUP_BOOT_VAR, 0);
1684 } else
1685 DataManager::SetValue("tw_has_boot_partition", 1);
Dees_Troy51127312012-09-08 13:08:49 -04001686 }
Dees_Troyaa9cc402012-10-13 12:14:05 -04001687 } else {
1688 // Handle unmountable partitions in case we reset defaults
1689 if ((*iter)->Mount_Point == "/boot") {
1690 int backup_display_size = (int)((*iter)->Backup_Size / 1048576LLU);
1691 DataManager::SetValue(TW_BACKUP_BOOT_SIZE, backup_display_size);
1692 if ((*iter)->Backup_Size == 0) {
1693 DataManager::SetValue(TW_HAS_BOOT_PARTITION, 0);
1694 DataManager::SetValue(TW_BACKUP_BOOT_VAR, 0);
1695 } else
1696 DataManager::SetValue(TW_HAS_BOOT_PARTITION, 1);
1697 } else if ((*iter)->Mount_Point == "/recovery") {
1698 int backup_display_size = (int)((*iter)->Backup_Size / 1048576LLU);
1699 DataManager::SetValue(TW_BACKUP_RECOVERY_SIZE, backup_display_size);
1700 if ((*iter)->Backup_Size == 0) {
1701 DataManager::SetValue(TW_HAS_RECOVERY_PARTITION, 0);
1702 DataManager::SetValue(TW_BACKUP_RECOVERY_VAR, 0);
1703 } else
1704 DataManager::SetValue(TW_HAS_RECOVERY_PARTITION, 1);
Gary Peck82599a82012-11-21 16:23:12 -08001705 } else if ((*iter)->Mount_Point == "/data") {
1706 data_size += (int)((*iter)->Backup_Size / 1048576LLU);
Dees_Troyaa9cc402012-10-13 12:14:05 -04001707 }
Dees_Troy51127312012-09-08 13:08:49 -04001708 }
Dees_Troy5bf43922012-09-07 16:07:55 -04001709 }
Ethan Yonker74db1572015-10-28 12:44:49 -05001710 gui_msg("update_part_details_done=...done");
Dees_Troy51127312012-09-08 13:08:49 -04001711 DataManager::SetValue(TW_BACKUP_DATA_SIZE, data_size);
1712 string current_storage_path = DataManager::GetCurrentStoragePath();
1713 TWPartition* FreeStorage = Find_Partition_By_Path(current_storage_path);
Dees_Troy8170a922012-09-18 15:40:25 -04001714 if (FreeStorage != NULL) {
1715 // Attempt to mount storage
bigbiff25d25b92020-06-19 16:07:38 -04001716 if (!FreeStorage->Mount(false)) {
1717 gui_msg(Msg(msg::kWarning, "unable_to_mount_storage=Unable to mount storage"));
1718 DataManager::SetValue(TW_STORAGE_FREE_SIZE, 0);
1719 } else {
1720 DataManager::SetValue(TW_STORAGE_FREE_SIZE, (int)(FreeStorage->Free / 1048576LLU));
Dees_Troy8170a922012-09-18 15:40:25 -04001721 }
1722 } else {
Dees_Troy2673cec2013-04-02 20:22:16 +00001723 LOGINFO("Unable to find storage partition '%s'.\n", current_storage_path.c_str());
Dees_Troy8170a922012-09-18 15:40:25 -04001724 }
Dees_Troy5bf43922012-09-07 16:07:55 -04001725 if (!Write_Fstab())
Dees_Troy2673cec2013-04-02 20:22:16 +00001726 LOGERR("Error creating fstab\n");
Dees_Troy51a0e822012-09-05 15:24:24 -04001727 return;
1728}
1729
Ethan Yonkerbd7492d2016-12-07 13:55:01 -06001730void TWPartitionManager::Post_Decrypt(const string& Block_Device) {
1731 TWPartition* dat = Find_Partition_By_Path("/data");
bigbiff7ba75002020-04-11 20:47:09 -04001732#ifdef USE_FSCRYPT
1733 dat->Set_Block_Device("/dev/block/mapper/userdata");
1734#endif
Ethan Yonkerbd7492d2016-12-07 13:55:01 -06001735 if (dat != NULL) {
1736 DataManager::SetValue(TW_IS_DECRYPTED, 1);
1737 dat->Is_Decrypted = true;
1738 if (!Block_Device.empty()) {
1739 dat->Decrypted_Block_Device = Block_Device;
1740 gui_msg(Msg("decrypt_success_dev=Data successfully decrypted, new block device: '{1}'")(Block_Device));
1741 } else {
1742 gui_msg("decrypt_success_nodev=Data successfully decrypted");
1743 }
1744 dat->Setup_File_System(false);
bigbiffadc599e2020-05-28 19:36:30 +00001745 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 -06001746
bigbiffadc599e2020-05-28 19:36:30 +00001747 // Sleep for a bit so that the device will be ready
1748 sleep(1);
Ethan Yonkerbd7492d2016-12-07 13:55:01 -06001749 if (dat->Has_Data_Media && dat->Mount(false) && TWFunc::Path_Exists("/data/media/0")) {
1750 dat->Storage_Path = "/data/media/0";
1751 dat->Symlink_Path = dat->Storage_Path;
1752 DataManager::SetValue("tw_storage_path", "/data/media/0");
1753 DataManager::SetValue("tw_settings_path", "/data/media/0");
1754 dat->UnMount(false);
Ethan Yonkerbd7492d2016-12-07 13:55:01 -06001755 }
1756 Update_System_Details();
nkk71ffb02bd2017-06-04 23:12:16 +03001757 Output_Partition(dat);
Ethan Yonkerbd7492d2016-12-07 13:55:01 -06001758 UnMount_Main_Partitions();
1759 } else
1760 LOGERR("Unable to locate data partition.\n");
1761}
1762
bigbiffadc599e2020-05-28 19:36:30 +00001763int TWPartitionManager::Decrypt_Device(string Password) {
Dees_Troy5bf43922012-09-07 16:07:55 -04001764#ifdef TW_INCLUDE_CRYPTO
Ethan Yonkerddb63e22017-01-19 14:01:57 -06001765 char crypto_state[PROPERTY_VALUE_MAX], crypto_blkdev[PROPERTY_VALUE_MAX];
Ethan Yonker253368a2014-11-25 15:00:52 -06001766 std::vector<TWPartition*>::iterator iter;
Dees_Troy5bf43922012-09-07 16:07:55 -04001767
Ethan Yonker253368a2014-11-25 15:00:52 -06001768 // Mount any partitions that need to be mounted for decrypt
1769 for (iter = Partitions.begin(); iter != Partitions.end(); iter++) {
1770 if ((*iter)->Mount_To_Decrypt) {
1771 (*iter)->Mount(true);
1772 }
a39552696ff55ce2013-01-08 16:14:56 +00001773 }
oshmouna82a7542018-04-10 17:45:55 +02001774 property_set("twrp.mount_to_decrypt", "1");
a39552696ff55ce2013-01-08 16:14:56 +00001775
Ethan Yonkera1de1492015-11-04 11:58:27 -06001776 property_get("ro.crypto.state", crypto_state, "error");
1777 if (strcmp(crypto_state, "error") == 0) {
1778 property_set("ro.crypto.state", "encrypted");
1779 // Sleep for a bit so that services can start if needed
1780 sleep(1);
1781 }
1782
Ethan Yonkerbd7492d2016-12-07 13:55:01 -06001783 if (DataManager::GetIntValue(TW_IS_FBE)) {
1784#ifdef TW_INCLUDE_FBE
1785 if (!Mount_By_Path("/data", true)) // /data has to be mounted for FBE
1786 return -1;
1787 int retry_count = 10;
1788 while (!TWFunc::Path_Exists("/data/system/users/gatekeeper.password.key") && --retry_count)
bigbiffadc599e2020-05-28 19:36:30 +00001789 usleep(2000); // A small sleep is needed after mounting /data to ensure reliable decrypt... maybe because of DE?
1790 int user_id = DataManager::GetIntValue("tw_decrypt_user_id");
1791 LOGINFO("Decrypting FBE for user %i\n", user_id);
Ethan Yonkerbd7492d2016-12-07 13:55:01 -06001792 if (Decrypt_User(user_id, Password)) {
bigbiffadc599e2020-05-28 19:36:30 +00001793 Post_Decrypt("");
Ethan Yonkerbd7492d2016-12-07 13:55:01 -06001794 return 0;
1795 }
1796#else
1797 LOGERR("FBE support is not present\n");
1798#endif
1799 return -1;
1800 }
1801
Ethan Yonkerddb63e22017-01-19 14:01:57 -06001802 int pwret = -1;
1803 pid_t pid = fork();
1804 if (pid < 0) {
1805 LOGERR("fork failed\n");
1806 return -1;
1807 } else if (pid == 0) {
1808 // Child process
1809 char cPassword[255];
1810 strcpy(cPassword, Password.c_str());
1811 int ret = cryptfs_check_passwd(cPassword);
1812 exit(ret);
1813 } else {
1814 // Parent
1815 int status;
1816 if (TWFunc::Wait_For_Child_Timeout(pid, &status, "Decrypt", 30))
1817 pwret = -1;
1818 else
1819 pwret = WEXITSTATUS(status) ? -1 : 0;
1820 }
a39552696ff55ce2013-01-08 16:14:56 +00001821
nkk7171c6c502017-01-05 23:55:05 +02001822#ifdef TW_CRYPTO_USE_SYSTEM_VOLD
1823 if (pwret != 0) {
1824 pwret = vold_decrypt(Password);
nkk717d1222a2017-11-06 17:27:21 +02001825 switch (pwret) {
1826 case VD_SUCCESS:
1827 break;
1828 case VD_ERR_MISSING_VDC:
1829 gui_msg(Msg(msg::kError, "decrypt_data_vold_os_missing=Missing files needed for vold decrypt: {1}")("/system/bin/vdc"));
1830 break;
1831 case VD_ERR_MISSING_VOLD:
1832 gui_msg(Msg(msg::kError, "decrypt_data_vold_os_missing=Missing files needed for vold decrypt: {1}")("/system/bin/vold"));
1833 break;
1834 }
nkk7171c6c502017-01-05 23:55:05 +02001835 }
1836#endif // TW_CRYPTO_USE_SYSTEM_VOLD
1837
Ethan Yonker253368a2014-11-25 15:00:52 -06001838 // Unmount any partitions that were needed for decrypt
1839 for (iter = Partitions.begin(); iter != Partitions.end(); iter++) {
1840 if ((*iter)->Mount_To_Decrypt) {
1841 (*iter)->UnMount(false);
1842 }
1843 }
oshmouna82a7542018-04-10 17:45:55 +02001844 property_set("twrp.mount_to_decrypt", "0");
Ethan Yonker253368a2014-11-25 15:00:52 -06001845
a39552696ff55ce2013-01-08 16:14:56 +00001846 if (pwret != 0) {
Ethan Yonker74db1572015-10-28 12:44:49 -05001847 gui_err("fail_decrypt=Failed to decrypt data.");
Dees_Troy5bf43922012-09-07 16:07:55 -04001848 return -1;
1849 }
a39552696ff55ce2013-01-08 16:14:56 +00001850
Dees_Troy5bf43922012-09-07 16:07:55 -04001851 property_get("ro.crypto.fs_crypto_blkdev", crypto_blkdev, "error");
1852 if (strcmp(crypto_blkdev, "error") == 0) {
Dees_Troy2673cec2013-04-02 20:22:16 +00001853 LOGERR("Error retrieving decrypted data block device.\n");
Dees_Troy5bf43922012-09-07 16:07:55 -04001854 } else {
Ethan Yonkerbd7492d2016-12-07 13:55:01 -06001855 Post_Decrypt(crypto_blkdev);
Dees_Troy5bf43922012-09-07 16:07:55 -04001856 }
1857 return 0;
1858#else
Ethan Yonker74db1572015-10-28 12:44:49 -05001859 gui_err("no_crypto_support=No crypto support was compiled into this build.");
Dees_Troy5bf43922012-09-07 16:07:55 -04001860 return -1;
1861#endif
Dees_Troy51a0e822012-09-05 15:24:24 -04001862 return 1;
Dees_Troy51127312012-09-08 13:08:49 -04001863}
1864
Ethan Yonkerb5fab762016-01-28 14:03:33 -06001865int TWPartitionManager::Fix_Contexts(void) {
Ethan Yonkerb5fab762016-01-28 14:03:33 -06001866 std::vector<TWPartition*>::iterator iter;
1867 for (iter = Partitions.begin(); iter != Partitions.end(); iter++) {
1868 if ((*iter)->Has_Data_Media) {
1869 if ((*iter)->Mount(true)) {
1870 if (fixContexts::fixDataMediaContexts((*iter)->Mount_Point) != 0)
1871 return -1;
1872 }
1873 }
1874 }
Dees_Troy1a650e62012-10-19 20:54:32 -04001875 UnMount_Main_Partitions();
Ethan Yonker74db1572015-10-28 12:44:49 -05001876 gui_msg("done=Done.");
Ethan Yonkerb5fab762016-01-28 14:03:33 -06001877 return 0;
bigbiff bigbiffa0f8a592012-10-09 21:01:03 -04001878}
1879
Ethan Yonker66a19492015-12-10 10:19:45 -06001880TWPartition* TWPartitionManager::Find_Next_Storage(string Path, bool Exclude_Data_Media) {
Ethan Yonker47360be2014-04-01 10:34:34 -05001881 std::vector<TWPartition*>::iterator iter = Partitions.begin();
1882
1883 if (!Path.empty()) {
1884 string Search_Path = TWFunc::Get_Root_Path(Path);
1885 for (; iter != Partitions.end(); iter++) {
Matt Mower9a561dd2016-02-22 21:25:51 -06001886 if ((*iter)->Mount_Point == Search_Path) {
Ethan Yonker47360be2014-04-01 10:34:34 -05001887 iter++;
1888 break;
1889 }
1890 }
1891 }
1892
1893 for (; iter != Partitions.end(); iter++) {
Ethan Yonker66a19492015-12-10 10:19:45 -06001894 if (Exclude_Data_Media && (*iter)->Has_Data_Media) {
1895 // do nothing, do not return this type of partition
1896 } else if ((*iter)->Is_Storage && (*iter)->Is_Present) {
Ethan Yonker47360be2014-04-01 10:34:34 -05001897 return (*iter);
1898 }
1899 }
1900
1901 return NULL;
1902}
1903
Dees_Troyd21618c2012-10-14 18:48:49 -04001904int TWPartitionManager::Open_Lun_File(string Partition_Path, string Lun_File) {
Dees_Troyd21618c2012-10-14 18:48:49 -04001905 TWPartition* Part = Find_Partition_By_Path(Partition_Path);
1906
1907 if (Part == NULL) {
Ethan Yonker74db1572015-10-28 12:44:49 -05001908 LOGINFO("Unable to locate '%s' for USB storage mode.", Partition_Path.c_str());
1909 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 -04001910 return false;
1911 }
Ethan Yonker47360be2014-04-01 10:34:34 -05001912 LOGINFO("USB mount '%s', '%s' > '%s'\n", Partition_Path.c_str(), Part->Actual_Block_Device.c_str(), Lun_File.c_str());
1913 if (!Part->UnMount(true) || !Part->Is_Present)
Dees_Troyd21618c2012-10-14 18:48:49 -04001914 return false;
1915
Ethan Yonker6e8c27a2016-12-22 17:55:57 -06001916 if (TWFunc::write_to_file(Lun_File, Part->Actual_Block_Device)) {
Dees_Troy2673cec2013-04-02 20:22:16 +00001917 LOGERR("Unable to write to ums lunfile '%s': (%s)\n", Lun_File.c_str(), strerror(errno));
Dees_Troyd21618c2012-10-14 18:48:49 -04001918 return false;
1919 }
Dees_Troyd21618c2012-10-14 18:48:49 -04001920 return true;
1921}
1922
Dees_Troy8170a922012-09-18 15:40:25 -04001923int TWPartitionManager::usb_storage_enable(void) {
Dees_Troy8170a922012-09-18 15:40:25 -04001924 char lun_file[255];
Dees_Troyd21618c2012-10-14 18:48:49 -04001925 bool has_multiple_lun = false;
Dees_Troy8170a922012-09-18 15:40:25 -04001926
Ethan Yonker47360be2014-04-01 10:34:34 -05001927 string Lun_File_str = CUSTOM_LUN_FILE;
1928 size_t found = Lun_File_str.find("%");
1929 if (found != string::npos) {
1930 sprintf(lun_file, CUSTOM_LUN_FILE, 1);
1931 if (TWFunc::Path_Exists(lun_file))
1932 has_multiple_lun = true;
1933 }
Ethan Yonker726a0202014-12-16 20:01:38 -06001934 mtp_was_enabled = TWFunc::Toggle_MTP(false); // Must disable MTP for USB Storage
Ethan Yonker47360be2014-04-01 10:34:34 -05001935 if (!has_multiple_lun) {
1936 LOGINFO("Device doesn't have multiple lun files, mount current storage\n");
1937 sprintf(lun_file, CUSTOM_LUN_FILE, 0);
1938 if (TWFunc::Get_Root_Path(DataManager::GetCurrentStoragePath()) == "/data") {
Ethan Yonker66a19492015-12-10 10:19:45 -06001939 TWPartition* Mount = Find_Next_Storage("", true);
Ethan Yonker47360be2014-04-01 10:34:34 -05001940 if (Mount) {
bigbiff bigbiffc7eee6f2014-09-02 18:59:01 -04001941 if (!Open_Lun_File(Mount->Mount_Point, lun_file)) {
1942 goto error_handle;
1943 }
Ethan Yonker47360be2014-04-01 10:34:34 -05001944 } else {
Ethan Yonker74db1572015-10-28 12:44:49 -05001945 gui_err("unable_locate_storage=Unable to locate storage device.");
bigbiff bigbiffc7eee6f2014-09-02 18:59:01 -04001946 goto error_handle;
Ethan Yonker47360be2014-04-01 10:34:34 -05001947 }
1948 } else if (!Open_Lun_File(DataManager::GetCurrentStoragePath(), lun_file)) {
bigbiff bigbiffc7eee6f2014-09-02 18:59:01 -04001949 goto error_handle;
Dees_Troy8170a922012-09-18 15:40:25 -04001950 }
Dees_Troy8170a922012-09-18 15:40:25 -04001951 } else {
Ethan Yonker47360be2014-04-01 10:34:34 -05001952 LOGINFO("Device has multiple lun files\n");
1953 TWPartition* Mount1;
1954 TWPartition* Mount2;
Dees_Troy8170a922012-09-18 15:40:25 -04001955 sprintf(lun_file, CUSTOM_LUN_FILE, 0);
Ethan Yonker66a19492015-12-10 10:19:45 -06001956 Mount1 = Find_Next_Storage("", true);
Ethan Yonker47360be2014-04-01 10:34:34 -05001957 if (Mount1) {
bigbiff bigbiffc7eee6f2014-09-02 18:59:01 -04001958 if (!Open_Lun_File(Mount1->Mount_Point, lun_file)) {
1959 goto error_handle;
1960 }
Matt Moweree717062014-04-26 01:46:46 -05001961 sprintf(lun_file, CUSTOM_LUN_FILE, 1);
Ethan Yonker66a19492015-12-10 10:19:45 -06001962 Mount2 = Find_Next_Storage(Mount1->Mount_Point, true);
Matt Mower1fdcdb72016-01-25 20:53:47 -06001963 if (Mount2 && Mount2->Mount_Point != Mount1->Mount_Point) {
Matt Moweree717062014-04-26 01:46:46 -05001964 Open_Lun_File(Mount2->Mount_Point, lun_file);
Ethan Yonker47360be2014-04-01 10:34:34 -05001965 }
1966 } else {
Ethan Yonker74db1572015-10-28 12:44:49 -05001967 gui_err("unable_locate_storage=Unable to locate storage device.");
bigbiff bigbiffc7eee6f2014-09-02 18:59:01 -04001968 goto error_handle;
Ethan Yonker47360be2014-04-01 10:34:34 -05001969 }
Dees_Troy8170a922012-09-18 15:40:25 -04001970 }
Matt Mowerb6ef4782014-11-06 02:24:36 -06001971 property_set("sys.storage.ums_enabled", "1");
HandyMenny37d42992014-10-26 22:15:59 +01001972 property_set("sys.usb.config", "mass_storage,adb");
Dees_Troy8170a922012-09-18 15:40:25 -04001973 return true;
bigbiff bigbiffc7eee6f2014-09-02 18:59:01 -04001974error_handle:
1975 if (mtp_was_enabled)
1976 if (!Enable_MTP())
1977 Disable_MTP();
1978 return false;
Dees_Troy8170a922012-09-18 15:40:25 -04001979}
1980
1981int TWPartitionManager::usb_storage_disable(void) {
Dees_Troy2673cec2013-04-02 20:22:16 +00001982 int index, ret;
1983 char lun_file[255], ch[2] = {0, 0};
1984 string str = ch;
Dees_Troy8170a922012-09-18 15:40:25 -04001985
1986 for (index=0; index<2; index++) {
1987 sprintf(lun_file, CUSTOM_LUN_FILE, index);
Ethan Yonker6e8c27a2016-12-22 17:55:57 -06001988 ret = TWFunc::write_to_file(lun_file, str);
Dees_Troy2673cec2013-04-02 20:22:16 +00001989 if (ret < 0) {
1990 break;
Dees_Troy8170a922012-09-18 15:40:25 -04001991 }
Dees_Troy8170a922012-09-18 15:40:25 -04001992 }
Dees_Troye58d5262012-09-21 12:27:57 -04001993 Mount_All_Storage();
1994 Update_System_Details();
Dees_Troycfd73ef2012-10-12 16:52:00 -04001995 UnMount_Main_Partitions();
Matt Mowerd9cb9062013-12-14 20:34:45 -06001996 property_set("sys.storage.ums_enabled", "0");
HandyMenny37d42992014-10-26 22:15:59 +01001997 property_set("sys.usb.config", "adb");
bigbiff bigbiffc7eee6f2014-09-02 18:59:01 -04001998 if (mtp_was_enabled)
1999 if (!Enable_MTP())
2000 Disable_MTP();
Dees_Troy2673cec2013-04-02 20:22:16 +00002001 if (ret < 0 && index == 0) {
2002 LOGERR("Unable to write to ums lunfile '%s'.", lun_file);
2003 return false;
2004 } else {
2005 return true;
2006 }
Dees_Troy8170a922012-09-18 15:40:25 -04002007 return true;
Dees_Troy812660f2012-09-20 09:55:17 -04002008}
2009
2010void TWPartitionManager::Mount_All_Storage(void) {
2011 std::vector<TWPartition*>::iterator iter;
2012
2013 for (iter = Partitions.begin(); iter != Partitions.end(); iter++) {
2014 if ((*iter)->Is_Storage)
2015 (*iter)->Mount(false);
2016 }
Dees_Troy2c50e182012-09-26 20:05:28 -04002017}
Dees_Troy9350b8d2012-09-27 12:38:38 -04002018
Dees_Troyd0384ef2012-10-12 12:15:42 -04002019void TWPartitionManager::UnMount_Main_Partitions(void) {
2020 // Unmounts system and data if data is not data/media
2021 // Also unmounts boot if boot is mountable
Dees_Troy2673cec2013-04-02 20:22:16 +00002022 LOGINFO("Unmounting main partitions...\n");
Dees_Troyd0384ef2012-10-12 12:15:42 -04002023
Mohd Faraze3948ec2020-08-14 01:40:59 +00002024 TWPartition *Partition = Find_Partition_By_Path ("/vendor");
Dees_Troyd0384ef2012-10-12 12:15:42 -04002025
Mohd Faraze3948ec2020-08-14 01:40:59 +00002026 if (Partition != NULL) UnMount_By_Path("/vendor", false);
2027 UnMount_By_Path (Get_Android_Root_Path(), true);
2028 Partition = Find_Partition_By_Path ("/product");
2029 if (Partition != NULL) UnMount_By_Path("/product", false);
Ethan Yonker6277c792014-09-15 14:54:30 -05002030 if (!datamedia)
2031 UnMount_By_Path("/data", true);
2032
Mohd Faraze3948ec2020-08-14 01:40:59 +00002033 Partition = Find_Partition_By_Path ("/boot");
2034 if (Partition != NULL && Partition->Can_Be_Mounted)
2035 Partition->UnMount(true);
Dees_Troyd0384ef2012-10-12 12:15:42 -04002036}
2037
Dees_Troy9350b8d2012-09-27 12:38:38 -04002038int TWPartitionManager::Partition_SDCard(void) {
Matt Mower23d8aae2017-01-06 14:30:33 -06002039 char temp[255];
Ethan Yonker483e9f42016-01-11 22:21:18 -06002040 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 -04002041 int ext, swap, total_size = 0, fat_size;
Dees_Troy9350b8d2012-09-27 12:38:38 -04002042
Ethan Yonker74db1572015-10-28 12:44:49 -05002043 gui_msg("start_partition_sd=Partitioning SD Card...");
Ethan Yonker483e9f42016-01-11 22:21:18 -06002044
2045 // Locate and validate device to partition
2046 TWPartition* SDCard = Find_Partition_By_Path(DataManager::GetCurrentStoragePath());
2047
Ethan Yonker66a19492015-12-10 10:19:45 -06002048 if (SDCard->Is_Adopted_Storage)
2049 SDCard->Revert_Adopted();
2050
Ethan Yonker1eff6cd2014-09-15 13:30:42 -05002051 if (SDCard == NULL || !SDCard->Removable || SDCard->Has_Data_Media) {
Ethan Yonker74db1572015-10-28 12:44:49 -05002052 gui_err("partition_sd_locate=Unable to locate device to partition.");
Dees_Troy9350b8d2012-09-27 12:38:38 -04002053 return false;
2054 }
Ethan Yonker483e9f42016-01-11 22:21:18 -06002055
2056 // Unmount everything
Dees_Troy9350b8d2012-09-27 12:38:38 -04002057 if (!SDCard->UnMount(true))
2058 return false;
2059 TWPartition* SDext = Find_Partition_By_Path("/sd-ext");
2060 if (SDext != NULL) {
2061 if (!SDext->UnMount(true))
2062 return false;
2063 }
Ethan Yonker483e9f42016-01-11 22:21:18 -06002064 char* swappath = getenv("SWAPPATH");
2065 if (swappath != NULL) {
2066 LOGINFO("Unmounting swap at '%s'\n", swappath);
2067 umount(swappath);
2068 }
Vojtech Bocek05534202013-09-11 08:11:56 +02002069
Ethan Yonker483e9f42016-01-11 22:21:18 -06002070 // Determine block device
2071 if (SDCard->Alternate_Block_Device.empty()) {
2072 SDCard->Find_Actual_Block_Device();
2073 Device = SDCard->Actual_Block_Device;
2074 // Just use the root block device
2075 Device.resize(strlen("/dev/block/mmcblkX"));
2076 } else {
2077 Device = SDCard->Alternate_Block_Device;
2078 }
Dees_Troy9350b8d2012-09-27 12:38:38 -04002079
2080 // Find the size of the block device:
Ethan Yonker483e9f42016-01-11 22:21:18 -06002081 total_size = (int)(TWFunc::IOCTL_Get_Block_Size(Device.c_str()) / (1048576));
Dees_Troy9350b8d2012-09-27 12:38:38 -04002082
2083 DataManager::GetValue("tw_sdext_size", ext);
2084 DataManager::GetValue("tw_swap_size", swap);
2085 DataManager::GetValue("tw_sdpart_file_system", ext_format);
2086 fat_size = total_size - ext - swap;
Ethan Yonker483e9f42016-01-11 22:21:18 -06002087 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);
2088
2089 // Determine partition sizes
2090 if (swap == 0 && ext == 0) {
2091 fat_str = "-0";
2092 } else {
2093 memset(temp, 0, sizeof(temp));
2094 sprintf(temp, "%i", fat_size);
2095 fat_str = temp;
2096 fat_str += "MB";
2097 }
2098 if (swap == 0) {
2099 ext_str = "-0";
2100 } else {
2101 memset(temp, 0, sizeof(temp));
2102 sprintf(temp, "%i", ext);
2103 ext_str = "+";
2104 ext_str += temp;
2105 ext_str += "MB";
2106 }
2107
Dees_Troy9350b8d2012-09-27 12:38:38 -04002108 if (ext + swap > total_size) {
Ethan Yonker74db1572015-10-28 12:44:49 -05002109 gui_err("ext_swap_size=EXT + Swap size is larger than sdcard size.");
Dees_Troy9350b8d2012-09-27 12:38:38 -04002110 return false;
2111 }
Ethan Yonker483e9f42016-01-11 22:21:18 -06002112
Ethan Yonker74db1572015-10-28 12:44:49 -05002113 gui_msg("remove_part_table=Removing partition table...");
Ethan Yonker483e9f42016-01-11 22:21:18 -06002114 Command = "sgdisk --zap-all " + Device;
Dees_Troy2673cec2013-04-02 20:22:16 +00002115 LOGINFO("Command is: '%s'\n", Command.c_str());
Vojtech Bocek05534202013-09-11 08:11:56 +02002116 if (TWFunc::Exec_Cmd(Command) != 0) {
Ethan Yonker74db1572015-10-28 12:44:49 -05002117 gui_err("unable_rm_part=Unable to remove partition table.");
Dees_Troy9350b8d2012-09-27 12:38:38 -04002118 Update_System_Details();
2119 return false;
2120 }
Ethan Yonker74db1572015-10-28 12:44:49 -05002121 gui_msg(Msg("create_part=Creating {1} partition...")("FAT32"));
Captain Throwback9643a802016-05-27 11:44:51 -04002122 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 +00002123 LOGINFO("Command is: '%s'\n", Command.c_str());
Vojtech Bocek05534202013-09-11 08:11:56 +02002124 if (TWFunc::Exec_Cmd(Command) != 0) {
Ethan Yonker74db1572015-10-28 12:44:49 -05002125 gui_msg(Msg(msg::kError, "unable_to_create_part=Unable to create {1} partition.")("FAT32"));
Dees_Troy9350b8d2012-09-27 12:38:38 -04002126 return false;
2127 }
2128 if (ext > 0) {
Ethan Yonker74db1572015-10-28 12:44:49 -05002129 gui_msg(Msg("create_part=Creating {1} partition...")("EXT"));
Ethan Yonker483e9f42016-01-11 22:21:18 -06002130 Command = "sgdisk --new=0:0:" + ext_str + " --change-name=0:\"Linux filesystem\" " + Device;
Dees_Troy2673cec2013-04-02 20:22:16 +00002131 LOGINFO("Command is: '%s'\n", Command.c_str());
Vojtech Bocek05534202013-09-11 08:11:56 +02002132 if (TWFunc::Exec_Cmd(Command) != 0) {
Ethan Yonker74db1572015-10-28 12:44:49 -05002133 gui_msg(Msg(msg::kError, "unable_to_create_part=Unable to create {1} partition.")("EXT"));
Dees_Troy9350b8d2012-09-27 12:38:38 -04002134 Update_System_Details();
2135 return false;
2136 }
2137 }
2138 if (swap > 0) {
Ethan Yonker74db1572015-10-28 12:44:49 -05002139 gui_msg(Msg("create_part=Creating {1} partition...")("swap"));
Ethan Yonker483e9f42016-01-11 22:21:18 -06002140 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 +00002141 LOGINFO("Command is: '%s'\n", Command.c_str());
Vojtech Bocek05534202013-09-11 08:11:56 +02002142 if (TWFunc::Exec_Cmd(Command) != 0) {
Ethan Yonker74db1572015-10-28 12:44:49 -05002143 gui_msg(Msg(msg::kError, "unable_to_create_part=Unable to create {1} partition.")("swap"));
Dees_Troy9350b8d2012-09-27 12:38:38 -04002144 Update_System_Details();
2145 return false;
2146 }
2147 }
Ethan Yonker483e9f42016-01-11 22:21:18 -06002148
2149 // Convert GPT to MBR
2150 Command = "sgdisk --gpttombr " + Device;
2151 if (TWFunc::Exec_Cmd(Command) != 0)
2152 LOGINFO("Failed to covert partition GPT to MBR\n");
2153
2154 // Tell the kernel to rescan the partition table
2155 int fd = open(Device.c_str(), O_RDONLY);
2156 ioctl(fd, BLKRRPART, 0);
2157 close(fd);
2158
2159 string format_device = Device;
2160 if (Device.substr(0, 17) == "/dev/block/mmcblk")
2161 format_device += "p";
2162
2163 // Format new partitions to proper file system
2164 if (fat_size > 0) {
2165 Command = "mkfs.fat " + format_device + "1";
2166 TWFunc::Exec_Cmd(Command);
2167 }
Dees_Troy9350b8d2012-09-27 12:38:38 -04002168 if (ext > 0) {
2169 if (SDext == NULL) {
Ethan Yonker483e9f42016-01-11 22:21:18 -06002170 Command = "mke2fs -t " + ext_format + " -m 0 " + format_device + "2";
2171 gui_msg(Msg("format_sdext_as=Formatting sd-ext as {1}...")(ext_format));
2172 LOGINFO("Formatting sd-ext after partitioning, command: '%s'\n", Command.c_str());
2173 TWFunc::Exec_Cmd(Command);
2174 } else {
2175 SDext->Wipe(ext_format);
Dees_Troy9350b8d2012-09-27 12:38:38 -04002176 }
Ethan Yonker483e9f42016-01-11 22:21:18 -06002177 }
2178 if (swap > 0) {
2179 Command = "mkswap " + format_device;
2180 if (ext > 0)
2181 Command += "3";
2182 else
2183 Command += "2";
Vojtech Bocek05534202013-09-11 08:11:56 +02002184 TWFunc::Exec_Cmd(Command);
Dees_Troy9350b8d2012-09-27 12:38:38 -04002185 }
2186
Ethan Yonker483e9f42016-01-11 22:21:18 -06002187 // recreate TWRP folder and rewrite settings - these will be gone after sdcard is partitioned
2188 if (SDCard->Mount(true)) {
2189 string TWRP_Folder = SDCard->Mount_Point + "/TWRP";
2190 mkdir(TWRP_Folder.c_str(), 0777);
2191 DataManager::Flush();
2192 }
2193
Dees_Troy9350b8d2012-09-27 12:38:38 -04002194 Update_System_Details();
Ethan Yonker74db1572015-10-28 12:44:49 -05002195 gui_msg("part_complete=Partitioning complete.");
Dees_Troy9350b8d2012-09-27 12:38:38 -04002196 return true;
bigbiff bigbiffa0f8a592012-10-09 21:01:03 -04002197}
Dees_Troya13d74f2013-03-24 08:54:55 -05002198
2199void TWPartitionManager::Get_Partition_List(string ListType, std::vector<PartitionList> *Partition_List) {
2200 std::vector<TWPartition*>::iterator iter;
2201 if (ListType == "mount") {
2202 for (iter = Partitions.begin(); iter != Partitions.end(); iter++) {
Ethan Yonker6e8c27a2016-12-22 17:55:57 -06002203 if ((*iter)->Can_Be_Mounted) {
Dees_Troya13d74f2013-03-24 08:54:55 -05002204 struct PartitionList part;
2205 part.Display_Name = (*iter)->Display_Name;
2206 part.Mount_Point = (*iter)->Mount_Point;
2207 part.selected = (*iter)->Is_Mounted();
2208 Partition_List->push_back(part);
2209 }
2210 }
2211 } else if (ListType == "storage") {
2212 char free_space[255];
2213 string Current_Storage = DataManager::GetCurrentStoragePath();
2214 for (iter = Partitions.begin(); iter != Partitions.end(); iter++) {
2215 if ((*iter)->Is_Storage) {
2216 struct PartitionList part;
2217 sprintf(free_space, "%llu", (*iter)->Free / 1024 / 1024);
2218 part.Display_Name = (*iter)->Storage_Name + " (";
2219 part.Display_Name += free_space;
2220 part.Display_Name += "MB)";
2221 part.Mount_Point = (*iter)->Storage_Path;
2222 if ((*iter)->Storage_Path == Current_Storage)
2223 part.selected = 1;
2224 else
2225 part.selected = 0;
2226 Partition_List->push_back(part);
2227 }
2228 }
2229 } else if (ListType == "backup") {
2230 char backup_size[255];
Dees_Troy9e0b71c2013-04-08 13:35:37 +00002231 unsigned long long Backup_Size;
Dees_Troya13d74f2013-03-24 08:54:55 -05002232 for (iter = Partitions.begin(); iter != Partitions.end(); iter++) {
Dees_Troy9e0b71c2013-04-08 13:35:37 +00002233 if ((*iter)->Can_Be_Backed_Up && !(*iter)->Is_SubPartition && (*iter)->Is_Present) {
Dees_Troya13d74f2013-03-24 08:54:55 -05002234 struct PartitionList part;
Dees_Troy9e0b71c2013-04-08 13:35:37 +00002235 Backup_Size = (*iter)->Backup_Size;
2236 if ((*iter)->Has_SubPartition) {
2237 std::vector<TWPartition*>::iterator subpart;
2238
2239 for (subpart = Partitions.begin(); subpart != Partitions.end(); subpart++) {
2240 if ((*subpart)->Is_SubPartition && (*subpart)->Can_Be_Backed_Up && (*subpart)->Is_Present && (*subpart)->SubPartition_Of == (*iter)->Mount_Point)
2241 Backup_Size += (*subpart)->Backup_Size;
2242 }
2243 }
2244 sprintf(backup_size, "%llu", Backup_Size / 1024 / 1024);
Dees_Troya13d74f2013-03-24 08:54:55 -05002245 part.Display_Name = (*iter)->Backup_Display_Name + " (";
2246 part.Display_Name += backup_size;
2247 part.Display_Name += "MB)";
2248 part.Mount_Point = (*iter)->Backup_Path;
2249 part.selected = 0;
2250 Partition_List->push_back(part);
2251 }
2252 }
2253 } else if (ListType == "restore") {
2254 string Restore_List, restore_path;
2255 TWPartition* restore_part = NULL;
2256
2257 DataManager::GetValue("tw_restore_list", Restore_List);
2258 if (!Restore_List.empty()) {
2259 size_t start_pos = 0, end_pos = Restore_List.find(";", start_pos);
2260 while (end_pos != string::npos && start_pos < Restore_List.size()) {
2261 restore_path = Restore_List.substr(start_pos, end_pos - start_pos);
bigbiff bigbiff19fb79c2016-09-05 21:04:51 -04002262 struct PartitionList part;
2263 if (restore_path.compare("ADB_Backup") == 0) {
2264 part.Display_Name = "ADB Backup";
2265 part.Mount_Point = "ADB Backup";
2266 part.selected = 1;
2267 Partition_List->push_back(part);
2268 break;
2269 }
Dees_Troy59df9262013-06-19 14:53:57 -05002270 if ((restore_part = Find_Partition_By_Path(restore_path)) != NULL) {
Dees Troy4159aed2014-02-28 17:24:43 +00002271 if ((restore_part->Backup_Name == "recovery" && !restore_part->Can_Be_Backed_Up) || restore_part->Is_SubPartition) {
Dees_Troya13d74f2013-03-24 08:54:55 -05002272 // Don't allow restore of recovery (causes problems on some devices)
Dees_Troy59df9262013-06-19 14:53:57 -05002273 // Don't add subpartitions to the list of items
Dees_Troya13d74f2013-03-24 08:54:55 -05002274 } else {
Dees_Troya13d74f2013-03-24 08:54:55 -05002275 part.Display_Name = restore_part->Backup_Display_Name;
2276 part.Mount_Point = restore_part->Backup_Path;
2277 part.selected = 1;
2278 Partition_List->push_back(part);
2279 }
2280 } else {
Ethan Yonker74db1572015-10-28 12:44:49 -05002281 gui_msg(Msg(msg::kError, "restore_unable_locate=Unable to locate '{1}' partition for restoring.")(restore_path));
Dees_Troya13d74f2013-03-24 08:54:55 -05002282 }
2283 start_pos = end_pos + 1;
2284 end_pos = Restore_List.find(";", start_pos);
2285 }
2286 }
2287 } else if (ListType == "wipe") {
2288 struct PartitionList dalvik;
Ethan Yonker74db1572015-10-28 12:44:49 -05002289 dalvik.Display_Name = gui_parse_text("{@dalvik}");
Dees_Troya13d74f2013-03-24 08:54:55 -05002290 dalvik.Mount_Point = "DALVIK";
2291 dalvik.selected = 0;
2292 Partition_List->push_back(dalvik);
2293 for (iter = Partitions.begin(); iter != Partitions.end(); iter++) {
2294 if ((*iter)->Wipe_Available_in_GUI && !(*iter)->Is_SubPartition) {
2295 struct PartitionList part;
2296 part.Display_Name = (*iter)->Display_Name;
2297 part.Mount_Point = (*iter)->Mount_Point;
2298 part.selected = 0;
2299 Partition_List->push_back(part);
2300 }
2301 if ((*iter)->Has_Android_Secure) {
2302 struct PartitionList part;
2303 part.Display_Name = (*iter)->Backup_Display_Name;
2304 part.Mount_Point = (*iter)->Backup_Path;
2305 part.selected = 0;
2306 Partition_List->push_back(part);
2307 }
Dees_Troy74fb2e92013-04-15 14:35:47 +00002308 if ((*iter)->Has_Data_Media) {
2309 struct PartitionList datamedia;
2310 datamedia.Display_Name = (*iter)->Storage_Name;
2311 datamedia.Mount_Point = "INTERNAL";
2312 datamedia.selected = 0;
2313 Partition_List->push_back(datamedia);
2314 }
Dees_Troya13d74f2013-03-24 08:54:55 -05002315 }
Ethan Yonker96af84a2015-01-05 14:58:36 -06002316 } else if (ListType == "flashimg") {
2317 for (iter = Partitions.begin(); iter != Partitions.end(); iter++) {
2318 if ((*iter)->Can_Flash_Img && (*iter)->Is_Present) {
2319 struct PartitionList part;
2320 part.Display_Name = (*iter)->Backup_Display_Name;
2321 part.Mount_Point = (*iter)->Backup_Path;
2322 part.selected = 0;
2323 Partition_List->push_back(part);
2324 }
2325 }
Ethan Yonker53796e72019-01-11 22:49:52 -06002326 if (DataManager::GetIntValue("tw_has_repack_tools") != 0 && DataManager::GetIntValue("tw_has_boot_slots") != 0) {
2327 TWPartition* boot = Find_Partition_By_Path("/boot");
2328 if (boot) {
2329 // Allow flashing kernels and ramdisks
2330 struct PartitionList repack_ramdisk;
2331 repack_ramdisk.Display_Name = gui_lookup("install_twrp_ramdisk", "Install Recovery Ramdisk");
2332 repack_ramdisk.Mount_Point = "/repack_ramdisk";
2333 repack_ramdisk.selected = 0;
2334 Partition_List->push_back(repack_ramdisk);
2335 /*struct PartitionList repack_kernel; For now let's leave repacking kernels under advanced only
2336 repack_kernel.Display_Name = gui_lookup("install_kernel", "Install Kernel");
2337 repack_kernel.Mount_Point = "/repack_kernel";
2338 repack_kernel.selected = 0;
2339 Partition_List->push_back(repack_kernel);*/
2340 }
2341 }
Dees_Troya13d74f2013-03-24 08:54:55 -05002342 } else {
Dees_Troy2673cec2013-04-02 20:22:16 +00002343 LOGERR("Unknown list type '%s' requested for TWPartitionManager::Get_Partition_List\n", ListType.c_str());
Dees_Troya13d74f2013-03-24 08:54:55 -05002344 }
2345}
2346
2347int TWPartitionManager::Fstab_Processed(void) {
2348 return Partitions.size();
2349}
Dees_Troyd93bda52013-07-03 19:55:19 +00002350
2351void TWPartitionManager::Output_Storage_Fstab(void) {
2352 std::vector<TWPartition*>::iterator iter;
2353 char storage_partition[255];
bigbiff bigbiffe4bdb152019-03-23 18:33:17 -04002354 std::string Temp;
bigbiff25d25b92020-06-19 16:07:38 -04002355 std::string cacheDir = TWFunc::get_log_dir();
bigbiff bigbiffe4bdb152019-03-23 18:33:17 -04002356
2357 if (cacheDir.empty()) {
2358 LOGINFO("Unable to find cache directory\n");
2359 return;
2360 }
bigbiff bigbiff19874f12019-01-08 20:06:57 -05002361
bigbiff25d25b92020-06-19 16:07:38 -04002362 std::string storageFstab = TWFunc::get_log_dir() + "recovery/storage.fstab";
bigbiff bigbiff19874f12019-01-08 20:06:57 -05002363 FILE *fp = fopen(storageFstab.c_str(), "w");
Dees_Troyd93bda52013-07-03 19:55:19 +00002364
2365 if (fp == NULL) {
bigbiff bigbiff19874f12019-01-08 20:06:57 -05002366 gui_msg(Msg(msg::kError, "unable_to_open=Unable to open '{1}'.")(storageFstab));
Dees_Troyd93bda52013-07-03 19:55:19 +00002367 return;
2368 }
2369
2370 // Iterate through all partitions
2371 for (iter = Partitions.begin(); iter != Partitions.end(); iter++) {
2372 if ((*iter)->Is_Storage) {
2373 Temp = (*iter)->Storage_Path + ";" + (*iter)->Storage_Name + ";\n";
2374 strcpy(storage_partition, Temp.c_str());
2375 fwrite(storage_partition, sizeof(storage_partition[0]), strlen(storage_partition) / sizeof(storage_partition[0]), fp);
2376 }
2377 }
2378 fclose(fp);
Vojtech Bocekfafb0c52013-07-25 22:53:02 +02002379}
Vojtech Bocek93cb1ef2014-05-12 15:41:52 +02002380
2381TWPartition *TWPartitionManager::Get_Default_Storage_Partition()
2382{
2383 TWPartition *res = NULL;
2384 for (std::vector<TWPartition*>::iterator iter = Partitions.begin(); iter != Partitions.end(); ++iter) {
Matt Mowera8a89d12016-12-30 18:10:37 -06002385 if (!(*iter)->Is_Storage)
Vojtech Bocek93cb1ef2014-05-12 15:41:52 +02002386 continue;
2387
Matt Mowera8a89d12016-12-30 18:10:37 -06002388 if ((*iter)->Is_Settings_Storage)
Vojtech Bocek93cb1ef2014-05-12 15:41:52 +02002389 return *iter;
2390
Matt Mowera8a89d12016-12-30 18:10:37 -06002391 if (!res)
Vojtech Bocek93cb1ef2014-05-12 15:41:52 +02002392 res = *iter;
2393 }
2394 return res;
2395}
bigbiff bigbiffc7eee6f2014-09-02 18:59:01 -04002396
2397bool TWPartitionManager::Enable_MTP(void) {
2398#ifdef TW_HAS_MTP
Ethan Yonker8dfa7772014-09-04 21:48:41 -05002399 if (mtppid) {
Ethan Yonker74db1572015-10-28 12:44:49 -05002400 gui_err("mtp_already_enabled=MTP already enabled");
bigbiff bigbiffc7eee6f2014-09-02 18:59:01 -04002401 return true;
2402 }
Ethan Yonker726a0202014-12-16 20:01:38 -06002403
2404 int mtppipe[2];
2405
2406 if (pipe(mtppipe) < 0) {
2407 LOGERR("Error creating MTP pipe\n");
2408 return false;
2409 }
2410
Ethan Yonkerdf7abac2014-12-29 10:48:17 -06002411 char old_value[PROPERTY_VALUE_MAX];
Matt Mowere07f0102017-02-23 17:40:00 -06002412 property_get("sys.usb.config", old_value, "");
2413 if (strcmp(old_value, "mtp,adb") != 0) {
Ethan Yonkerdf7abac2014-12-29 10:48:17 -06002414 char vendor[PROPERTY_VALUE_MAX];
2415 char product[PROPERTY_VALUE_MAX];
2416 property_set("sys.usb.config", "none");
2417 property_get("usb.vendor", vendor, "18D1");
2418 property_get("usb.product.mtpadb", product, "4EE2");
2419 string vendorstr = vendor;
2420 string productstr = product;
Ethan Yonker6e8c27a2016-12-22 17:55:57 -06002421 TWFunc::write_to_file("/sys/class/android_usb/android0/idVendor", vendorstr);
2422 TWFunc::write_to_file("/sys/class/android_usb/android0/idProduct", productstr);
Ethan Yonkerdf7abac2014-12-29 10:48:17 -06002423 property_set("sys.usb.config", "mtp,adb");
2424 }
Matt Mower653a1702017-02-16 10:38:52 -06002425 /* To enable MTP debug, use the twrp command line feature:
Ethan Yonker6d154c42014-09-03 14:19:43 -05002426 * twrp set tw_mtp_debug 1
2427 */
2428 twrpMtp *mtp = new twrpMtp(DataManager::GetIntValue("tw_mtp_debug"));
Ethan Yonker1b039202015-01-30 10:08:48 -06002429 mtppid = mtp->forkserver(mtppipe);
2430 if (mtppid) {
2431 close(mtppipe[0]); // Host closes read side
2432 mtp_write_fd = mtppipe[1];
2433 DataManager::SetValue("tw_mtp_enabled", 1);
2434 Add_All_MTP_Storage();
2435 return true;
Ethan Yonker726a0202014-12-16 20:01:38 -06002436 } else {
2437 close(mtppipe[0]);
2438 close(mtppipe[1]);
Ethan Yonker74db1572015-10-28 12:44:49 -05002439 gui_err("mtp_fail=Failed to enable MTP");
Ethan Yonker1b039202015-01-30 10:08:48 -06002440 return false;
bigbiff bigbiffc7eee6f2014-09-02 18:59:01 -04002441 }
bigbiff bigbiffc7eee6f2014-09-02 18:59:01 -04002442#else
Ethan Yonker74db1572015-10-28 12:44:49 -05002443 gui_err("no_mtp=MTP support not included");
bigbiff bigbiffc7eee6f2014-09-02 18:59:01 -04002444#endif
2445 DataManager::SetValue("tw_mtp_enabled", 0);
2446 return false;
2447}
2448
Ethan Yonker1b039202015-01-30 10:08:48 -06002449void TWPartitionManager::Add_All_MTP_Storage(void) {
2450#ifdef TW_HAS_MTP
2451 std::vector<TWPartition*>::iterator iter;
2452
2453 if (!mtppid)
2454 return; // MTP is not enabled
2455
2456 for (iter = Partitions.begin(); iter != Partitions.end(); iter++) {
2457 if ((*iter)->Is_Storage && (*iter)->Is_Present && (*iter)->Mount(false))
2458 Add_Remove_MTP_Storage((*iter), MTP_MESSAGE_ADD_STORAGE);
2459 }
2460#else
2461 return;
2462#endif
2463}
2464
bigbiff bigbiffc7eee6f2014-09-02 18:59:01 -04002465bool TWPartitionManager::Disable_MTP(void) {
Ethan Yonkerdf7abac2014-12-29 10:48:17 -06002466 char old_value[PROPERTY_VALUE_MAX];
bigbiff bigbiffaf32bb92018-12-18 18:39:53 -05002467 property_set("sys.usb.ffs.mtp.ready", "0");
Matt Mowere07f0102017-02-23 17:40:00 -06002468 property_get("sys.usb.config", old_value, "");
Ethan Yonkerdf7abac2014-12-29 10:48:17 -06002469 if (strcmp(old_value, "adb") != 0) {
2470 char vendor[PROPERTY_VALUE_MAX];
2471 char product[PROPERTY_VALUE_MAX];
2472 property_set("sys.usb.config", "none");
2473 property_get("usb.vendor", vendor, "18D1");
Matt Mowere07f0102017-02-23 17:40:00 -06002474 property_get("usb.product.adb", product, "D001");
Ethan Yonkerdf7abac2014-12-29 10:48:17 -06002475 string vendorstr = vendor;
2476 string productstr = product;
Ethan Yonker6e8c27a2016-12-22 17:55:57 -06002477 TWFunc::write_to_file("/sys/class/android_usb/android0/idVendor", vendorstr);
2478 TWFunc::write_to_file("/sys/class/android_usb/android0/idProduct", productstr);
Ethan Yonkerdf7abac2014-12-29 10:48:17 -06002479 usleep(2000);
2480 }
bigbiff bigbiffc7eee6f2014-09-02 18:59:01 -04002481#ifdef TW_HAS_MTP
Ethan Yonker8dfa7772014-09-04 21:48:41 -05002482 if (mtppid) {
Ethan Yonker8613dc02014-09-11 09:28:20 -05002483 LOGINFO("Disabling MTP\n");
2484 int status;
2485 kill(mtppid, SIGKILL);
Ethan Yonker8dfa7772014-09-04 21:48:41 -05002486 mtppid = 0;
Ethan Yonker8613dc02014-09-11 09:28:20 -05002487 // We don't care about the exit value, but this prevents a zombie process
2488 waitpid(mtppid, &status, 0);
Ethan Yonker726a0202014-12-16 20:01:38 -06002489 close(mtp_write_fd);
2490 mtp_write_fd = -1;
bigbiff bigbiffc7eee6f2014-09-02 18:59:01 -04002491 }
Ethan Yonkerdf7abac2014-12-29 10:48:17 -06002492#endif
bigbiff bigbiffc7eee6f2014-09-02 18:59:01 -04002493 property_set("sys.usb.config", "adb");
Ethan Yonkerdf7abac2014-12-29 10:48:17 -06002494#ifdef TW_HAS_MTP
bigbiff bigbiffc7eee6f2014-09-02 18:59:01 -04002495 DataManager::SetValue("tw_mtp_enabled", 0);
2496 return true;
bigbiff bigbiffc7eee6f2014-09-02 18:59:01 -04002497#endif
Ethan Yonkerdf7abac2014-12-29 10:48:17 -06002498 return false;
bigbiff bigbiffc7eee6f2014-09-02 18:59:01 -04002499}
Ethan Yonker726a0202014-12-16 20:01:38 -06002500
2501TWPartition* TWPartitionManager::Find_Partition_By_MTP_Storage_ID(unsigned int Storage_ID) {
2502 std::vector<TWPartition*>::iterator iter;
2503
2504 for (iter = Partitions.begin(); iter != Partitions.end(); iter++) {
2505 if ((*iter)->MTP_Storage_ID == Storage_ID)
2506 return (*iter);
2507 }
2508 return NULL;
2509}
2510
2511bool TWPartitionManager::Add_Remove_MTP_Storage(TWPartition* Part, int message_type) {
2512#ifdef TW_HAS_MTP
2513 struct mtpmsg mtp_message;
2514
2515 if (!mtppid)
2516 return false; // MTP is disabled
2517
2518 if (mtp_write_fd < 0) {
Ethan Yonkerd9ff3c52015-01-21 21:51:20 -06002519 LOGINFO("MTP: mtp_write_fd is not set\n");
Ethan Yonker726a0202014-12-16 20:01:38 -06002520 return false;
2521 }
2522
2523 if (Part) {
Ethan Yonker4bfabab2014-12-29 09:15:37 -06002524 if (Part->MTP_Storage_ID == 0)
2525 return false;
Ethan Yonker726a0202014-12-16 20:01:38 -06002526 if (message_type == MTP_MESSAGE_REMOVE_STORAGE) {
2527 mtp_message.message_type = MTP_MESSAGE_REMOVE_STORAGE; // Remove
2528 LOGINFO("sending message to remove %i\n", Part->MTP_Storage_ID);
2529 mtp_message.storage_id = Part->MTP_Storage_ID;
2530 if (write(mtp_write_fd, &mtp_message, sizeof(mtp_message)) <= 0) {
Ethan Yonkerd9ff3c52015-01-21 21:51:20 -06002531 LOGINFO("error sending message to remove storage %i\n", Part->MTP_Storage_ID);
Ethan Yonker726a0202014-12-16 20:01:38 -06002532 return false;
2533 } else {
2534 LOGINFO("Message sent, remove storage ID: %i\n", Part->MTP_Storage_ID);
2535 return true;
2536 }
2537 } else if (message_type == MTP_MESSAGE_ADD_STORAGE && Part->Is_Mounted()) {
2538 mtp_message.message_type = MTP_MESSAGE_ADD_STORAGE; // Add
2539 mtp_message.storage_id = Part->MTP_Storage_ID;
Ethan Yonker6e8c27a2016-12-22 17:55:57 -06002540 if (Part->Storage_Path.size() >= sizeof(mtp_message.path)) {
2541 LOGERR("Storage path '%s' too large for mtpmsg\n", Part->Storage_Path.c_str());
2542 return false;
2543 }
2544 strcpy(mtp_message.path, Part->Storage_Path.c_str());
2545 if (Part->Storage_Name.size() >= sizeof(mtp_message.display)) {
2546 LOGERR("Storage name '%s' too large for mtpmsg\n", Part->Storage_Name.c_str());
2547 return false;
2548 }
2549 strcpy(mtp_message.display, Part->Storage_Name.c_str());
Ethan Yonker726a0202014-12-16 20:01:38 -06002550 mtp_message.maxFileSize = Part->Get_Max_FileSize();
Ethan Yonker1b039202015-01-30 10:08:48 -06002551 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 -06002552 if (write(mtp_write_fd, &mtp_message, sizeof(mtp_message)) <= 0) {
Ethan Yonkerd9ff3c52015-01-21 21:51:20 -06002553 LOGINFO("error sending message to add storage %i\n", Part->MTP_Storage_ID);
Ethan Yonker726a0202014-12-16 20:01:38 -06002554 return false;
2555 } else {
Ethan Yonker6e8c27a2016-12-22 17:55:57 -06002556 LOGINFO("Message sent, add storage ID: %i '%s'\n", Part->MTP_Storage_ID, mtp_message.path);
Ethan Yonker726a0202014-12-16 20:01:38 -06002557 return true;
2558 }
2559 } else {
2560 LOGERR("Unknown MTP message type: %i\n", message_type);
2561 }
2562 } else {
2563 // This hopefully never happens as the error handling should
2564 // occur in the calling function.
Ethan Yonkerd9ff3c52015-01-21 21:51:20 -06002565 LOGINFO("TWPartitionManager::Add_Remove_MTP_Storage NULL partition given\n");
Ethan Yonker726a0202014-12-16 20:01:38 -06002566 }
2567 return true;
2568#else
Ethan Yonker74db1572015-10-28 12:44:49 -05002569 gui_err("no_mtp=MTP support not included");
Ethan Yonker726a0202014-12-16 20:01:38 -06002570 DataManager::SetValue("tw_mtp_enabled", 0);
2571 return false;
2572#endif
2573}
2574
2575bool TWPartitionManager::Add_MTP_Storage(string Mount_Point) {
2576#ifdef TW_HAS_MTP
2577 TWPartition* Part = PartitionManager.Find_Partition_By_Path(Mount_Point);
2578 if (Part) {
2579 return PartitionManager.Add_Remove_MTP_Storage(Part, MTP_MESSAGE_ADD_STORAGE);
2580 } else {
Ethan Yonkerd9ff3c52015-01-21 21:51:20 -06002581 LOGINFO("TWFunc::Add_MTP_Storage unable to locate partition for '%s'\n", Mount_Point.c_str());
Ethan Yonker726a0202014-12-16 20:01:38 -06002582 }
2583#endif
2584 return false;
2585}
2586
2587bool TWPartitionManager::Add_MTP_Storage(unsigned int Storage_ID) {
2588#ifdef TW_HAS_MTP
2589 TWPartition* Part = PartitionManager.Find_Partition_By_MTP_Storage_ID(Storage_ID);
2590 if (Part) {
2591 return PartitionManager.Add_Remove_MTP_Storage(Part, MTP_MESSAGE_ADD_STORAGE);
2592 } else {
Ethan Yonkerd9ff3c52015-01-21 21:51:20 -06002593 LOGINFO("TWFunc::Add_MTP_Storage unable to locate partition for %i\n", Storage_ID);
Ethan Yonker726a0202014-12-16 20:01:38 -06002594 }
2595#endif
2596 return false;
2597}
2598
2599bool TWPartitionManager::Remove_MTP_Storage(string Mount_Point) {
2600#ifdef TW_HAS_MTP
2601 TWPartition* Part = PartitionManager.Find_Partition_By_Path(Mount_Point);
2602 if (Part) {
2603 return PartitionManager.Add_Remove_MTP_Storage(Part, MTP_MESSAGE_REMOVE_STORAGE);
2604 } else {
Ethan Yonkerd9ff3c52015-01-21 21:51:20 -06002605 LOGINFO("TWFunc::Remove_MTP_Storage unable to locate partition for '%s'\n", Mount_Point.c_str());
Ethan Yonker726a0202014-12-16 20:01:38 -06002606 }
2607#endif
2608 return false;
2609}
2610
2611bool TWPartitionManager::Remove_MTP_Storage(unsigned int Storage_ID) {
2612#ifdef TW_HAS_MTP
2613 TWPartition* Part = PartitionManager.Find_Partition_By_MTP_Storage_ID(Storage_ID);
2614 if (Part) {
2615 return PartitionManager.Add_Remove_MTP_Storage(Part, MTP_MESSAGE_REMOVE_STORAGE);
2616 } else {
Ethan Yonkerd9ff3c52015-01-21 21:51:20 -06002617 LOGINFO("TWFunc::Remove_MTP_Storage unable to locate partition for %i\n", Storage_ID);
Ethan Yonker726a0202014-12-16 20:01:38 -06002618 }
2619#endif
2620 return false;
2621}
Ethan Yonker96af84a2015-01-05 14:58:36 -06002622
Ethan Yonkere080c1f2016-09-19 13:50:25 -05002623bool TWPartitionManager::Flash_Image(string& path, string& filename) {
bigbiffad58e1b2020-07-06 20:24:34 -04002624 twrpRepacker repacker;
Matt Mower23d8aae2017-01-06 14:30:33 -06002625 int partition_count = 0;
Ethan Yonker96af84a2015-01-05 14:58:36 -06002626 TWPartition* flash_part = NULL;
bigbiffce8f83c2015-12-12 18:30:21 -05002627 string Flash_List, flash_path, full_filename;
Ethan Yonker96af84a2015-01-05 14:58:36 -06002628 size_t start_pos = 0, end_pos = 0;
2629
Ethan Yonkere080c1f2016-09-19 13:50:25 -05002630 full_filename = path + "/" + filename;
Ethan Yonker96af84a2015-01-05 14:58:36 -06002631
bigbiffce8f83c2015-12-12 18:30:21 -05002632 gui_msg("image_flash_start=[IMAGE FLASH STARTED]");
2633 gui_msg(Msg("img_to_flash=Image to flash: '{1}'")(full_filename));
2634
2635 if (!TWFunc::Path_Exists(full_filename)) {
2636 if (!Mount_By_Path(full_filename, true)) {
Ethan Yonkerb78fbdf2016-01-15 16:46:35 -06002637 return false;
2638 }
bigbiffce8f83c2015-12-12 18:30:21 -05002639 if (!TWFunc::Path_Exists(full_filename)) {
2640 gui_msg(Msg(msg::kError, "unable_to_locate=Unable to locate {1}.")(full_filename));
Ethan Yonkerb78fbdf2016-01-15 16:46:35 -06002641 return false;
2642 }
2643 }
Ethan Yonker96af84a2015-01-05 14:58:36 -06002644
Ethan Yonker53796e72019-01-11 22:49:52 -06002645 DataManager::GetValue("tw_flash_partition", Flash_List);
2646 Repack_Type repack = REPLACE_NONE;
2647 if (Flash_List == "/repack_ramdisk;") {
2648 repack = REPLACE_RAMDISK;
2649 } else if (Flash_List == "/repack_kernel;") {
2650 repack = REPLACE_KERNEL;
2651 }
2652 if (repack != REPLACE_NONE) {
2653 Repack_Options_struct Repack_Options;
2654 Repack_Options.Type = repack;
2655 Repack_Options.Disable_Verity = false;
2656 Repack_Options.Disable_Force_Encrypt = false;
2657 Repack_Options.Backup_First = DataManager::GetIntValue("tw_repack_backup_first") != 0;
bigbiffad58e1b2020-07-06 20:24:34 -04002658 return repacker.Repack_Image_And_Flash(full_filename, Repack_Options);
Ethan Yonker53796e72019-01-11 22:49:52 -06002659 }
Ethan Yonkere080c1f2016-09-19 13:50:25 -05002660 PartitionSettings part_settings;
2661 part_settings.Backup_Folder = path;
2662 unsigned long long total_bytes = TWFunc::Get_File_Size(full_filename);
2663 ProgressTracking progress(total_bytes);
2664 part_settings.progress = &progress;
2665 part_settings.adbbackup = false;
2666 part_settings.PM_Method = PM_RESTORE;
Ethan Yonker74db1572015-10-28 12:44:49 -05002667 gui_msg("calc_restore=Calculating restore details...");
Ethan Yonker96af84a2015-01-05 14:58:36 -06002668 if (!Flash_List.empty()) {
2669 end_pos = Flash_List.find(";", start_pos);
2670 while (end_pos != string::npos && start_pos < Flash_List.size()) {
2671 flash_path = Flash_List.substr(start_pos, end_pos - start_pos);
2672 flash_part = Find_Partition_By_Path(flash_path);
2673 if (flash_part != NULL) {
2674 partition_count++;
2675 if (partition_count > 1) {
Ethan Yonker74db1572015-10-28 12:44:49 -05002676 gui_err("too_many_flash=Too many partitions selected for flashing.");
Ethan Yonker96af84a2015-01-05 14:58:36 -06002677 return false;
2678 }
2679 } else {
Ethan Yonker74db1572015-10-28 12:44:49 -05002680 gui_msg(Msg(msg::kError, "flash_unable_locate=Unable to locate '{1}' partition for flashing.")(flash_path));
Ethan Yonker96af84a2015-01-05 14:58:36 -06002681 return false;
2682 }
2683 start_pos = end_pos + 1;
2684 end_pos = Flash_List.find(";", start_pos);
2685 }
2686 }
2687
2688 if (partition_count == 0) {
Ethan Yonker74db1572015-10-28 12:44:49 -05002689 gui_err("no_part_flash=No partitions selected for flashing.");
Ethan Yonker96af84a2015-01-05 14:58:36 -06002690 return false;
2691 }
2692
2693 DataManager::SetProgress(0.0);
2694 if (flash_part) {
Ethan Yonkere080c1f2016-09-19 13:50:25 -05002695 flash_part->Backup_FileName = filename;
2696 if (!flash_part->Flash_Image(&part_settings))
Ethan Yonker96af84a2015-01-05 14:58:36 -06002697 return false;
2698 } else {
Ethan Yonker74db1572015-10-28 12:44:49 -05002699 gui_err("invalid_flash=Invalid flash partition specified.");
Ethan Yonker96af84a2015-01-05 14:58:36 -06002700 return false;
2701 }
Ethan Yonker74db1572015-10-28 12:44:49 -05002702 gui_highlight("flash_done=IMAGE FLASH COMPLETED]");
Ethan Yonker96af84a2015-01-05 14:58:36 -06002703 return true;
2704}
Ethan Yonker74db1572015-10-28 12:44:49 -05002705
2706void TWPartitionManager::Translate_Partition(const char* path, const char* resource_name, const char* default_value) {
2707 TWPartition* part = PartitionManager.Find_Partition_By_Path(path);
2708 if (part) {
Ethan Yonker66a19492015-12-10 10:19:45 -06002709 if (part->Is_Adopted_Storage) {
2710 part->Display_Name = part->Display_Name + " - " + gui_lookup("data", "Data");
2711 part->Backup_Display_Name = part->Display_Name;
2712 part->Storage_Name = part->Storage_Name + " - " + gui_lookup("adopted_storage", "Adopted Storage");
2713 } else {
2714 part->Display_Name = gui_lookup(resource_name, default_value);
2715 part->Backup_Display_Name = part->Display_Name;
2716 }
Ethan Yonker74db1572015-10-28 12:44:49 -05002717 }
2718}
2719
2720void TWPartitionManager::Translate_Partition(const char* path, const char* resource_name, const char* default_value, const char* storage_resource_name, const char* storage_default_value) {
2721 TWPartition* part = PartitionManager.Find_Partition_By_Path(path);
2722 if (part) {
Ethan Yonker66a19492015-12-10 10:19:45 -06002723 if (part->Is_Adopted_Storage) {
Ethan Yonker01f4e032017-02-03 15:30:52 -06002724 part->Backup_Display_Name = part->Display_Name + " - " + gui_lookup("data_backup", "Data (excl. storage)");
Ethan Yonker66a19492015-12-10 10:19:45 -06002725 part->Display_Name = part->Display_Name + " - " + gui_lookup("data", "Data");
Ethan Yonker66a19492015-12-10 10:19:45 -06002726 part->Storage_Name = part->Storage_Name + " - " + gui_lookup("adopted_storage", "Adopted Storage");
2727 } else {
2728 part->Display_Name = gui_lookup(resource_name, default_value);
2729 part->Backup_Display_Name = part->Display_Name;
2730 if (part->Is_Storage)
2731 part->Storage_Name = gui_lookup(storage_resource_name, storage_default_value);
2732 }
Ethan Yonker74db1572015-10-28 12:44:49 -05002733 }
2734}
2735
Ethan Yonker01f4e032017-02-03 15:30:52 -06002736void 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) {
2737 TWPartition* part = PartitionManager.Find_Partition_By_Path(path);
2738 if (part) {
2739 if (part->Is_Adopted_Storage) {
2740 part->Backup_Display_Name = part->Display_Name + " - " + gui_lookup(backup_name, backup_default);
2741 part->Display_Name = part->Display_Name + " - " + gui_lookup("data", "Data");
2742 part->Storage_Name = part->Storage_Name + " - " + gui_lookup("adopted_storage", "Adopted Storage");
2743 } else {
2744 part->Display_Name = gui_lookup(resource_name, default_value);
2745 part->Backup_Display_Name = gui_lookup(backup_name, backup_default);
2746 if (part->Is_Storage)
2747 part->Storage_Name = gui_lookup(storage_resource_name, storage_default_value);
2748 }
2749 }
2750}
2751
Ethan Yonker74db1572015-10-28 12:44:49 -05002752void TWPartitionManager::Translate_Partition_Display_Names() {
Ethan Yonker66a19492015-12-10 10:19:45 -06002753 LOGINFO("Translating partition display names\n");
Ethan Yonker74db1572015-10-28 12:44:49 -05002754 Translate_Partition("/system", "system", "System");
2755 Translate_Partition("/system_image", "system_image", "System Image");
2756 Translate_Partition("/vendor", "vendor", "Vendor");
2757 Translate_Partition("/vendor_image", "vendor_image", "Vendor Image");
2758 Translate_Partition("/cache", "cache", "Cache");
Ethan Yonker74db1572015-10-28 12:44:49 -05002759 Translate_Partition("/boot", "boot", "Boot");
2760 Translate_Partition("/recovery", "recovery", "Recovery");
2761 if (!datamedia) {
Ethan Yonker01f4e032017-02-03 15:30:52 -06002762 Translate_Partition("/data", "data", "Data", "internal", "Internal Storage");
Ethan Yonker74db1572015-10-28 12:44:49 -05002763 Translate_Partition("/sdcard", "sdcard", "SDCard", "sdcard", "SDCard");
2764 Translate_Partition("/internal_sd", "sdcard", "SDCard", "sdcard", "SDCard");
2765 Translate_Partition("/internal_sdcard", "sdcard", "SDCard", "sdcard", "SDCard");
2766 Translate_Partition("/emmc", "sdcard", "SDCard", "sdcard", "SDCard");
Ethan Yonker01f4e032017-02-03 15:30:52 -06002767 } else {
2768 Translate_Partition("/data", "data", "Data", "internal", "Internal Storage", "data_backup", "Data (excl. storage)");
Ethan Yonker74db1572015-10-28 12:44:49 -05002769 }
Ethan Yonker01f4e032017-02-03 15:30:52 -06002770 Translate_Partition("/external_sd", "microsd", "Micro SDCard", "microsd", "Micro SDCard", "data_backup", "Data (excl. storage)");
2771 Translate_Partition("/external_sdcard", "microsd", "Micro SDCard", "microsd", "Micro SDCard", "data_backup", "Data (excl. storage)");
Ethan Yonker74db1572015-10-28 12:44:49 -05002772 Translate_Partition("/usb-otg", "usbotg", "USB OTG", "usbotg", "USB OTG");
2773 Translate_Partition("/sd-ext", "sdext", "SD-EXT");
2774
2775 // Android secure is a special case
2776 TWPartition* part = PartitionManager.Find_Partition_By_Path("/and-sec");
2777 if (part)
2778 part->Backup_Display_Name = gui_lookup("android_secure", "Android Secure");
2779
Ethan Yonker6e8c27a2016-12-22 17:55:57 -06002780 std::vector<TWPartition*>::iterator sysfs;
2781 for (sysfs = Partitions.begin(); sysfs != Partitions.end(); sysfs++) {
2782 if (!(*sysfs)->Sysfs_Entry.empty()) {
2783 Translate_Partition((*sysfs)->Mount_Point.c_str(), "autostorage", "Storage", "autostorage", "Storage");
2784 }
2785 }
2786
Ethan Yonker74db1572015-10-28 12:44:49 -05002787 // This updates the text on all of the storage selection buttons in the GUI
2788 DataManager::SetBackupFolder();
2789}
Ethan Yonker66a19492015-12-10 10:19:45 -06002790
Ethan Yonker6e8c27a2016-12-22 17:55:57 -06002791bool TWPartitionManager::Decrypt_Adopted() {
Ethan Yonker66a19492015-12-10 10:19:45 -06002792#ifdef TW_INCLUDE_CRYPTO
Ethan Yonker6e8c27a2016-12-22 17:55:57 -06002793 bool ret = false;
Ethan Yonker66a19492015-12-10 10:19:45 -06002794 if (!Mount_By_Path("/data", false)) {
2795 LOGERR("Cannot decrypt adopted storage because /data will not mount\n");
Ethan Yonker6e8c27a2016-12-22 17:55:57 -06002796 return false;
Ethan Yonker66a19492015-12-10 10:19:45 -06002797 }
2798 LOGINFO("Decrypt adopted storage starting\n");
2799 char* xmlFile = PageManager::LoadFileToBuffer("/data/system/storage.xml", NULL);
2800 xml_document<> *doc = NULL;
2801 xml_node<>* volumes = NULL;
Ethan Yonker66a19492015-12-10 10:19:45 -06002802 string Primary_Storage_UUID = "";
2803 if (xmlFile != NULL) {
2804 LOGINFO("successfully loaded storage.xml\n");
2805 doc = new xml_document<>();
2806 doc->parse<0>(xmlFile);
2807 volumes = doc->first_node("volumes");
2808 if (volumes) {
2809 xml_attribute<>* psuuid = volumes->first_attribute("primaryStorageUuid");
2810 if (psuuid) {
2811 Primary_Storage_UUID = psuuid->value();
2812 }
2813 }
Ethan Yonker6e8c27a2016-12-22 17:55:57 -06002814 } else {
2815 LOGINFO("No /data/system/storage.xml for adopted storage\n");
2816 return false;
Ethan Yonker66a19492015-12-10 10:19:45 -06002817 }
2818 std::vector<TWPartition*>::iterator adopt;
2819 for (adopt = Partitions.begin(); adopt != Partitions.end(); adopt++) {
2820 if ((*adopt)->Removable && (*adopt)->Is_Present) {
2821 if ((*adopt)->Decrypt_Adopted() == 0) {
Ethan Yonker6e8c27a2016-12-22 17:55:57 -06002822 ret = true;
Ethan Yonker66a19492015-12-10 10:19:45 -06002823 if (volumes) {
2824 xml_node<>* volume = volumes->first_node("volume");
2825 while (volume) {
2826 xml_attribute<>* guid = volume->first_attribute("partGuid");
2827 if (guid) {
2828 string GUID = (*adopt)->Adopted_GUID.c_str();
2829 GUID.insert(8, "-");
2830 GUID.insert(13, "-");
2831 GUID.insert(18, "-");
2832 GUID.insert(23, "-");
2833
2834 if (strcasecmp(GUID.c_str(), guid->value()) == 0) {
2835 xml_attribute<>* attr = volume->first_attribute("nickname");
nkk71ffb02bd2017-06-04 23:12:16 +03002836 if (attr && attr->value() && strlen(attr->value()) > 0) {
Ethan Yonker66a19492015-12-10 10:19:45 -06002837 (*adopt)->Storage_Name = attr->value();
2838 (*adopt)->Display_Name = (*adopt)->Storage_Name;
2839 (*adopt)->Backup_Display_Name = (*adopt)->Storage_Name;
2840 LOGINFO("storage name from storage.xml is '%s'\n", attr->value());
2841 }
2842 attr = volume->first_attribute("fsUuid");
2843 if (attr && !Primary_Storage_UUID.empty() && strcmp(Primary_Storage_UUID.c_str(), attr->value()) == 0) {
2844 TWPartition* Dat = Find_Partition_By_Path("/data");
2845 if (Dat) {
2846 LOGINFO("Internal storage is found on adopted storage '%s'\n", (*adopt)->Display_Name.c_str());
2847 LOGINFO("Changing '%s' to point to '%s'\n", Dat->Symlink_Mount_Point.c_str(), (*adopt)->Storage_Path.c_str());
2848 (*adopt)->Symlink_Mount_Point = Dat->Symlink_Mount_Point;
2849 Dat->Symlink_Mount_Point = "";
2850 // Toggle mounts to ensure that the symlink mount point (probably /sdcard) is mounted to the right location
2851 Dat->UnMount(false);
2852 Dat->Mount(false);
2853 (*adopt)->UnMount(false);
2854 (*adopt)->Mount(false);
Ethan Yonker66a19492015-12-10 10:19:45 -06002855 }
2856 }
2857 break;
2858 }
2859 }
2860 volume = volume->next_sibling("volume");
2861 }
2862 }
nkk71ffb02bd2017-06-04 23:12:16 +03002863 Update_System_Details();
2864 Output_Partition((*adopt));
Ethan Yonker66a19492015-12-10 10:19:45 -06002865 }
2866 }
2867 }
2868 if (xmlFile) {
2869 doc->clear();
2870 delete doc;
2871 free(xmlFile);
2872 }
Ethan Yonker6e8c27a2016-12-22 17:55:57 -06002873 return ret;
Ethan Yonker66a19492015-12-10 10:19:45 -06002874#else
2875 LOGINFO("Decrypt_Adopted: no crypto support\n");
Ethan Yonker6e8c27a2016-12-22 17:55:57 -06002876 return false;
Ethan Yonker66a19492015-12-10 10:19:45 -06002877#endif
2878}
Ethan Yonkerfcf3f242016-02-16 12:30:26 -06002879
2880void TWPartitionManager::Remove_Partition_By_Path(string Path) {
2881 std::vector<TWPartition*>::iterator iter;
2882 string Local_Path = TWFunc::Get_Root_Path(Path);
2883
2884 for (iter = Partitions.begin(); iter != Partitions.end(); iter++) {
2885 if ((*iter)->Mount_Point == Local_Path || (!(*iter)->Symlink_Mount_Point.empty() && (*iter)->Symlink_Mount_Point == Local_Path)) {
2886 LOGINFO("Found and erasing '%s' from partition list\n", Local_Path.c_str());
2887 Partitions.erase(iter);
2888 return;
2889 }
2890 }
2891}
Ethan Yonker1b190162016-12-05 15:25:19 -06002892
2893void TWPartitionManager::Set_Active_Slot(const string& Slot) {
2894 if (Slot != "A" && Slot != "B") {
2895 LOGERR("Set_Active_Slot invalid slot '%s'\n", Slot.c_str());
2896 return;
2897 }
2898 if (Active_Slot_Display == Slot)
2899 return;
2900 LOGINFO("Setting active slot %s\n", Slot.c_str());
2901#ifdef AB_OTA_UPDATER
2902 if (!Active_Slot_Display.empty()) {
2903 const hw_module_t *hw_module;
2904 boot_control_module_t *module;
2905 int ret;
2906 ret = hw_get_module("bootctrl", &hw_module);
2907 if (ret != 0) {
2908 LOGERR("Error getting bootctrl module.\n");
2909 } else {
2910 module = (boot_control_module_t*) hw_module;
2911 module->init(module);
2912 int slot_number = 0;
2913 if (Slot == "B")
2914 slot_number = 1;
2915 if (module->setActiveBootSlot(module, slot_number))
2916 gui_msg(Msg(msg::kError, "unable_set_boot_slot=Error changing bootloader boot slot to {1}")(Slot));
2917 }
2918 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
2919 }
2920#else
2921 LOGERR("Boot slot feature not present\n");
2922#endif
2923 Active_Slot_Display = Slot;
2924 if (Fstab_Processed())
2925 Update_System_Details();
2926}
2927string TWPartitionManager::Get_Active_Slot_Suffix() {
2928 if (Active_Slot_Display == "A")
2929 return "_a";
2930 return "_b";
2931}
2932string TWPartitionManager::Get_Active_Slot_Display() {
2933 return Active_Slot_Display;
2934}
Ethan Yonker6e8c27a2016-12-22 17:55:57 -06002935
Captain Throwback9d6feb52018-07-27 10:05:24 -04002936string TWPartitionManager::Get_Android_Root_Path() {
Chaosmasterf6e42ce2020-01-27 00:17:04 +01002937 if (property_get_bool("ro.twrp.sar", false))
dianlujitao58f1a632020-01-16 23:03:56 +08002938 return "/system_root";
2939 return "/system";
Captain Throwback9d6feb52018-07-27 10:05:24 -04002940}
2941
Ethan Yonker6e8c27a2016-12-22 17:55:57 -06002942void TWPartitionManager::Remove_Uevent_Devices(const string& Mount_Point) {
2943 std::vector<TWPartition*>::iterator iter;
2944
2945 for (iter = Partitions.begin(); iter != Partitions.end(); ) {
2946 if ((*iter)->Is_SubPartition && (*iter)->SubPartition_Of == Mount_Point) {
2947 TWPartition *part = *iter;
2948 LOGINFO("%s was removed by uevent data\n", (*iter)->Mount_Point.c_str());
2949 (*iter)->UnMount(false);
2950 rmdir((*iter)->Mount_Point.c_str());
2951 iter = Partitions.erase(iter);
2952 delete part;
2953 } else {
2954 iter++;
2955 }
2956 }
2957}
2958
2959void TWPartitionManager::Handle_Uevent(const Uevent_Block_Data& uevent_data) {
2960 std::vector<TWPartition*>::iterator iter;
2961
2962 for (iter = Partitions.begin(); iter != Partitions.end(); iter++) {
2963 if (!(*iter)->Sysfs_Entry.empty()) {
2964 string device;
2965 size_t wildcard = (*iter)->Sysfs_Entry.find("*");
2966 if (wildcard != string::npos) {
2967 device = (*iter)->Sysfs_Entry.substr(0, wildcard);
2968 } else {
2969 device = (*iter)->Sysfs_Entry;
2970 }
2971 if (device == uevent_data.sysfs_path.substr(0, device.size())) {
2972 // Found a match
2973 if (uevent_data.action == "add") {
2974 (*iter)->Primary_Block_Device = "/dev/block/" + uevent_data.block_device;
2975 (*iter)->Alternate_Block_Device = (*iter)->Primary_Block_Device;
2976 (*iter)->Is_Present = true;
2977 LOGINFO("Found a match '%s' '%s'\n", uevent_data.block_device.c_str(), device.c_str());
2978 if (!Decrypt_Adopted()) {
2979 LOGINFO("No adopted storage so finding actual block device\n");
2980 (*iter)->Find_Actual_Block_Device();
2981 }
2982 return;
2983 } else if (uevent_data.action == "remove") {
2984 (*iter)->Is_Present = false;
2985 (*iter)->Primary_Block_Device = "";
2986 (*iter)->Actual_Block_Device = "";
2987 Remove_Uevent_Devices((*iter)->Mount_Point);
2988 return;
2989 }
2990 }
2991 }
2992 }
bigbiffee7b7ff2020-03-23 15:08:27 -04002993
2994 if (!PartitionManager.Get_Super_Status())
2995 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 -06002996}
2997
2998void TWPartitionManager::setup_uevent() {
2999 struct sockaddr_nl nls;
3000
3001 if (uevent_pfd.fd >= 0) {
3002 LOGINFO("uevent already set up\n");
3003 return;
3004 }
3005
3006 // Open hotplug event netlink socket
3007 memset(&nls,0,sizeof(struct sockaddr_nl));
3008 nls.nl_family = AF_NETLINK;
3009 nls.nl_pid = getpid();
3010 nls.nl_groups = -1;
3011 uevent_pfd.events = POLLIN;
3012 uevent_pfd.fd = socket(PF_NETLINK, SOCK_DGRAM, NETLINK_KOBJECT_UEVENT);
3013 if (uevent_pfd.fd==-1) {
3014 LOGERR("uevent not root\n");
3015 return;
3016 }
3017
3018 // Listen to netlink socket
3019 if (::bind(uevent_pfd.fd, (struct sockaddr *) &nls, sizeof(struct sockaddr_nl)) < 0) {
3020 LOGERR("Bind failed\n");
3021 return;
3022 }
3023 set_select_fd();
3024 Coldboot();
3025}
3026
3027Uevent_Block_Data TWPartitionManager::get_event_block_values(char *buf, int len) {
3028 Uevent_Block_Data ret;
3029 ret.subsystem = "";
3030 char *ptr = buf;
3031 const char *end = buf + len;
3032
3033 buf[len - 1] = '\0';
3034 while (ptr < end) {
3035 if (strncmp(ptr, "ACTION=", strlen("ACTION=")) == 0) {
3036 ptr += strlen("ACTION=");
3037 ret.action = ptr;
3038 } else if (strncmp(ptr, "SUBSYSTEM=", strlen("SUBSYSTEM=")) == 0) {
3039 ptr += strlen("SUBSYSTEM=");
3040 ret.subsystem = ptr;
3041 } else if (strncmp(ptr, "DEVTYPE=", strlen("DEVTYPE=")) == 0) {
3042 ptr += strlen("DEVTYPE=");
3043 ret.type = ptr;
3044 } else if (strncmp(ptr, "DEVPATH=", strlen("DEVPATH=")) == 0) {
3045 ptr += strlen("DEVPATH=");
3046 ret.sysfs_path += ptr;
3047 } else if (strncmp(ptr, "DEVNAME=", strlen("DEVNAME=")) == 0) {
3048 ptr += strlen("DEVNAME=");
3049 ret.block_device += ptr;
3050 } else if (strncmp(ptr, "MAJOR=", strlen("MAJOR=")) == 0) {
3051 ptr += strlen("MAJOR=");
3052 ret.major = atoi(ptr);
3053 } else if (strncmp(ptr, "MINOR=", strlen("MINOR=")) == 0) {
3054 ptr += strlen("MINOR=");
3055 ret.minor = atoi(ptr);
3056 }
3057 ptr += strlen(ptr) + 1;
3058 }
3059 return ret;
3060}
3061
3062void TWPartitionManager::read_uevent() {
3063 char buf[1024];
3064
3065 int len = recv(uevent_pfd.fd, buf, sizeof(buf), MSG_DONTWAIT);
3066 if (len == -1) {
bigbiffd58ba182020-03-23 10:02:29 -04003067 LOGERR("recv error on uevent\n");
Ethan Yonker6e8c27a2016-12-22 17:55:57 -06003068 return;
3069 }
3070 /*int i = 0; // Print all uevent output for test /debug
3071 while (i<len) {
3072 printf("%s\n", buf+i);
3073 i += strlen(buf+i)+1;
3074 }*/
3075 Uevent_Block_Data uevent_data = get_event_block_values(buf, len);
3076 if (uevent_data.subsystem == "block" && uevent_data.type == "disk") {
3077 PartitionManager.Handle_Uevent(uevent_data);
3078 }
3079}
3080
3081void TWPartitionManager::close_uevent() {
3082 if (uevent_pfd.fd > 0)
3083 close(uevent_pfd.fd);
3084 uevent_pfd.fd = -1;
3085}
3086
3087void TWPartitionManager::Add_Partition(TWPartition* Part) {
3088 Partitions.push_back(Part);
3089}
3090
3091void TWPartitionManager::Coldboot_Scan(std::vector<string> *sysfs_entries, const string& Path, int depth) {
3092 string Real_Path = Path;
3093 char real_path[PATH_MAX];
3094 if (realpath(Path.c_str(), &real_path[0])) {
3095 string Real_Path = real_path;
3096 std::vector<string>::iterator iter;
3097 for (iter = sysfs_entries->begin(); iter != sysfs_entries->end(); iter++) {
3098 if (Real_Path.find((*iter)) != string::npos) {
3099 string Write_Path = Real_Path + "/uevent";
3100 if (TWFunc::Path_Exists(Write_Path)) {
3101 const char* write_val = "add\n";
3102 TWFunc::write_to_file(Write_Path, write_val);
3103 break;
3104 }
3105 }
3106 }
3107 }
3108
3109 DIR* d = opendir(Path.c_str());
3110 if (d != NULL) {
3111 struct dirent* de;
3112 while ((de = readdir(d)) != NULL) {
3113 if (de->d_name[0] == '.' || (de->d_type != DT_DIR && depth > 0))
3114 continue;
3115 if (strlen(de->d_name) >= 4 && (strncmp(de->d_name, "ram", 3) == 0 || strncmp(de->d_name, "loop", 4) == 0))
3116 continue;
3117
3118 string item = Path + "/";
3119 item.append(de->d_name);
3120 Coldboot_Scan(sysfs_entries, item, depth + 1);
3121 }
3122 closedir(d);
3123 }
3124}
3125
3126void TWPartitionManager::Coldboot() {
3127 std::vector<TWPartition*>::iterator iter;
3128 std::vector<string> sysfs_entries;
3129
3130 for (iter = Partitions.begin(); iter != Partitions.end(); iter++) {
3131 if (!(*iter)->Sysfs_Entry.empty()) {
3132 size_t wildcard_pos = (*iter)->Sysfs_Entry.find("*");
3133 if (wildcard_pos == string::npos)
3134 wildcard_pos = (*iter)->Sysfs_Entry.size();
3135 sysfs_entries.push_back((*iter)->Sysfs_Entry.substr(0, wildcard_pos));
3136 }
3137 }
3138
3139 if (sysfs_entries.size() > 0)
3140 Coldboot_Scan(&sysfs_entries, "/sys/block", 0);
3141}
Ethan Yonker53796e72019-01-11 22:49:52 -06003142
3143bool TWPartitionManager::Prepare_Empty_Folder(const std::string& Folder) {
3144 if (TWFunc::Path_Exists(Folder))
3145 TWFunc::removeDir(Folder, false);
3146 return TWFunc::Recursive_Mkdir(Folder);
3147}
3148
bigbiffee7b7ff2020-03-23 15:08:27 -04003149bool TWPartitionManager::Prepare_Super_Volume(TWPartition* twrpPart) {
3150 Fstab fstab;
3151 std::string bare_partition_name;
3152
3153 if (twrpPart->Get_Mount_Point() == "/system_root")
3154 bare_partition_name = "system";
3155 else
3156 bare_partition_name = TWFunc::Remove_Beginning_Slash(twrpPart->Get_Mount_Point());
3157
3158 LOGINFO("Trying to prepare %s from super partition\n", bare_partition_name.c_str());
3159
3160 std::string blk_device_partition;
3161#ifdef AB_OTA_UPDATER
3162 blk_device_partition = bare_partition_name + PartitionManager.Get_Active_Slot_Suffix();
3163#else
3164 blk_device_partition = bare_partition_name;
3165#endif
3166
3167 FstabEntry fstabEntry = {
3168 .blk_device = blk_device_partition,
3169 .mount_point = twrpPart->Get_Mount_Point(),
3170 .fs_type = twrpPart->Current_File_System,
3171 .fs_mgr_flags.logical = twrpPart->Is_Super,
3172 };
3173
3174 fstab.emplace_back(fstabEntry);
3175 if (!fs_mgr_update_logical_partition(&fstabEntry)) {
3176 LOGERR("unable to update logical partition: %s\n", twrpPart->Get_Mount_Point().c_str());
3177 return false;
3178 }
3179
bigbiff32cbabe2020-04-12 19:16:19 -04003180 while (access(fstabEntry.blk_device.c_str(), F_OK) != 0) {
3181 usleep(100);
3182 }
3183
bigbiffee7b7ff2020-03-23 15:08:27 -04003184 twrpPart->Set_Block_Device(fstabEntry.blk_device);
3185 twrpPart->Update_Size(true);
3186 twrpPart->Change_Mount_Read_Only(true);
3187 twrpPart->Set_Can_Be_Backed_Up(false);
3188 twrpPart->Set_Can_Be_Wiped(false);
3189 return true;
3190}
3191
3192bool TWPartitionManager::Prepare_All_Super_Volumes() {
3193 bool status = true;
3194 std::vector<TWPartition*>::iterator iter;
3195
3196 for (iter = Partitions.begin(); iter != Partitions.end(); iter++) {
3197 if ((*iter)->Is_Super) {
3198 if (!Prepare_Super_Volume(*iter)) {
3199 status = false;
3200 }
3201 PartitionManager.Output_Partition(*iter);
3202 }
3203 }
3204 Update_System_Details();
3205 return status;
3206}
3207
3208bool TWPartitionManager::Is_Super_Partition(const char* fstab_line) {
Mohd Faraze3948ec2020-08-14 01:40:59 +00003209 if (!Get_Super_Status())
3210 return false;
bigbiffee7b7ff2020-03-23 15:08:27 -04003211 std::vector<std::string> super_partition_list = {"system", "vendor", "odm", "product", "system_ext"};
3212
3213 for (auto&& fstab_partition_check: super_partition_list) {
3214 if (strncmp(fstab_line, fstab_partition_check.c_str(), fstab_partition_check.size()) == 0) {
3215 DataManager::SetValue(TW_IS_SUPER, "1");
3216 return true;
3217 }
3218 }
3219 return false;
3220}
3221
3222std::string TWPartitionManager::Get_Super_Partition() {
3223 int slot_number = Get_Active_Slot_Display() == "A" ? 0 : 1;
3224 std::string super_device = fs_mgr_get_super_partition_name(slot_number);
3225 return "/dev/block/by-name/" + super_device;
3226}
3227
3228void TWPartitionManager::Setup_Super_Devices() {
3229 std::string superPart = Get_Super_Partition();
3230 android::fs_mgr::CreateLogicalPartitions(superPart);
bigbiff7ba75002020-04-11 20:47:09 -04003231}
3232
3233void TWPartitionManager::Setup_Super_Partition() {
bigbiffee7b7ff2020-03-23 15:08:27 -04003234 TWPartition* superPartition = new TWPartition();
bigbiff7ba75002020-04-11 20:47:09 -04003235 std::string superPart = Get_Super_Partition();
3236
3237 superPartition->Backup_Path = "/super";
3238 superPartition->Mount_Point = "/super";
bigbiffee7b7ff2020-03-23 15:08:27 -04003239 superPartition->Actual_Block_Device = superPart;
3240 superPartition->Alternate_Block_Device = superPart;
3241 superPartition->Backup_Display_Name = "super";
3242 superPartition->Can_Flash_Img = true;
bigbiffee7b7ff2020-03-23 15:08:27 -04003243 superPartition->Current_File_System = "emmc";
3244 superPartition->Can_Be_Backed_Up = true;
3245 superPartition->Is_Present = true;
3246 superPartition->Is_SubPartition = false;
bigbiff7ba75002020-04-11 20:47:09 -04003247 superPartition->Setup_Image();
bigbiffee7b7ff2020-03-23 15:08:27 -04003248 Add_Partition(superPartition);
3249 PartitionManager.Output_Partition(superPartition);
3250 Update_System_Details();
3251}
3252
3253bool TWPartitionManager::Get_Super_Status() {
3254 return access(Get_Super_Partition().c_str(), F_OK) == 0;
3255}
bigbiff25d25b92020-06-19 16:07:38 -04003256
3257bool TWPartitionManager::Recreate_Logs_Dir() {
3258#ifdef TW_INCLUDE_FBE
3259 struct passwd pd;
3260 struct passwd *pwdptr = &pd;
3261 struct passwd *tempPd;
3262 char pwdBuf[512];
3263 int uid = 0, gid = 0;
3264
3265 if ((getpwnam_r("system", pwdptr, pwdBuf, sizeof(pwdBuf), &tempPd)) != 0) {
3266 LOGERR("unable to get system user id\n");
3267 return false;
3268 } else {
3269 struct group grp;
3270 struct group *grpptr = &grp;
3271 struct group *tempGrp;
3272 char grpBuf[512];
3273
3274 if ((getgrnam_r("cache", grpptr, grpBuf, sizeof(grpBuf), &tempGrp)) != 0) {
3275 LOGERR("unable to get cache group id\n");
3276 return false;
3277 } else {
3278 uid = pd.pw_uid;
3279 gid = grp.gr_gid;
3280 std::string abLogsRecoveryDir(DATA_LOGS_DIR);
3281 abLogsRecoveryDir += "/recovery/";
3282
3283 if (!TWFunc::Create_Dir_Recursive(abLogsRecoveryDir, S_IRWXU | S_IRWXG | S_IWGRP | S_IXGRP, uid, gid)) {
3284 LOGERR("Unable to recreate %s\n", abLogsRecoveryDir.c_str());
3285 return false;
3286 }
3287 if (setfilecon(abLogsRecoveryDir.c_str(), "u:object_r:cache_file:s0") != 0) {
3288 LOGERR("Unable to set contexts for %s\n", abLogsRecoveryDir.c_str());
3289 return false;
3290 }
3291 }
3292 }
3293#endif
3294 return true;
3295}