blob: bdc4f9ed69d96bad547bffdfec0f13f004f59718 [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
bigbiff8da46fa2020-09-08 16:42:34 -0400137int TWPartitionManager::Process_Fstab(string Fstab_Filename, bool Display_Error) {
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();
bigbiff8da46fa2020-09-08 16:42:34 -0400226 if (partition->Process_Fstab_Line(fstab_line, Display_Error, &twrp_flags))
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();
bigbiff8da46fa2020-09-08 16:42:34 -0400241 if (partition->Process_Fstab_Line(mapit->second.fstab_line, Display_Error, NULL))
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++) {
258 (*iter)->Partition_Post_Processing(Display_Error);
259
260 if ((*iter)->Is_Storage) {
261 ++storageid;
262 (*iter)->MTP_Storage_ID = storageid;
263 }
264
265 if (!settings_partition && (*iter)->Is_Settings_Storage && (*iter)->Is_Present)
266 settings_partition = (*iter);
267 else
268 (*iter)->Is_Settings_Storage = false;
269
270 if (!andsec_partition && (*iter)->Has_Android_Secure && (*iter)->Is_Present)
271 andsec_partition = (*iter);
272 else
273 (*iter)->Has_Android_Secure = false;
Mohd Faraze3948ec2020-08-14 01:40:59 +0000274 if (Is_Super_Partition(TWFunc::Remove_Beginning_Slash((*iter)->Get_Mount_Point()).c_str()))
275 Prepare_Super_Volume((*iter));
276 }
277
278 //Setup Apex before decryption
279 TWPartition* sys = PartitionManager.Find_Partition_By_Path(PartitionManager.Get_Android_Root_Path());
280 TWPartition* ven = PartitionManager.Find_Partition_By_Path("/vendor");
281 if (sys) {
282 if (sys->Get_Super_Status()) {
283 sys->Mount(true);
284 if (ven) {
285 ven->Mount(true);
286 }
287 twrpApex apex;
288 if (!apex.loadApexImages()) {
289 LOGERR("Unable to load apex images from %s\n", APEX_DIR);
290 property_set("twrp.apex.loaded", "false");
291 } else {
292 property_set("twrp.apex.loaded", "true");
293 }
294 }
Matt Mower72c87ce2016-04-26 14:34:56 -0500295 }
296
Ethan Yonker6277c792014-09-15 14:54:30 -0500297 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) {
298 // Attempt to automatically identify /data/media emulated storage devices
299 TWPartition* Dat = Find_Partition_By_Path("/data");
300 if (Dat) {
301 LOGINFO("Using automatic handling for /data/media emulated storage device.\n");
302 datamedia = true;
that9e0593e2014-10-08 00:01:24 +0200303 Dat->Setup_Data_Media();
Ethan Yonker6277c792014-09-15 14:54:30 -0500304 settings_partition = Dat;
Ethan Yonker726a0202014-12-16 20:01:38 -0600305 // Since /data was not considered a storage partition earlier, we still need to assign an MTP ID
306 ++storageid;
307 Dat->MTP_Storage_ID = storageid;
Ethan Yonker6277c792014-09-15 14:54:30 -0500308 }
309 }
Dees Troy02a64532014-03-19 15:23:32 +0000310 if (!settings_partition) {
Dees_Troya13d74f2013-03-24 08:54:55 -0500311 for (iter = Partitions.begin(); iter != Partitions.end(); iter++) {
312 if ((*iter)->Is_Storage) {
Dees Troy02a64532014-03-19 15:23:32 +0000313 settings_partition = (*iter);
Dees_Troya13d74f2013-03-24 08:54:55 -0500314 break;
315 }
316 }
Dees Troy02a64532014-03-19 15:23:32 +0000317 if (!settings_partition)
Dees_Troy2673cec2013-04-02 20:22:16 +0000318 LOGERR("Unable to locate storage partition for storing settings file.\n");
Dees_Troya13d74f2013-03-24 08:54:55 -0500319 }
Dees_Troy5bf43922012-09-07 16:07:55 -0400320 if (!Write_Fstab()) {
321 if (Display_Error)
Dees_Troy2673cec2013-04-02 20:22:16 +0000322 LOGERR("Error creating fstab\n");
Dees_Troy5bf43922012-09-07 16:07:55 -0400323 else
Dees_Troy2673cec2013-04-02 20:22:16 +0000324 LOGINFO("Error creating fstab\n");
Dees_Troy5bf43922012-09-07 16:07:55 -0400325 }
Matt Mowered71fa32014-04-16 13:21:47 -0500326
Matt Mowerbf4efa32014-04-14 23:25:26 -0500327 if (andsec_partition) {
328 Setup_Android_Secure_Location(andsec_partition);
Matt Mowered71fa32014-04-16 13:21:47 -0500329 } else if (settings_partition) {
Matt Mowerbf4efa32014-04-14 23:25:26 -0500330 Setup_Android_Secure_Location(settings_partition);
331 }
Matt Mowered71fa32014-04-16 13:21:47 -0500332 if (settings_partition) {
333 Setup_Settings_Storage_Partition(settings_partition);
334 }
bigbiff7ba75002020-04-11 20:47:09 -0400335
Mohd Faraze3948ec2020-08-14 01:40:59 +0000336#ifdef TW_INCLUDE_CRYPTO
337 DataManager::SetValue(TW_IS_ENCRYPTED, 1);
338 Decrypt_Data();
339#endif
340
bigbiff7ba75002020-04-11 20:47:09 -0400341 Update_System_Details();
Mohd Faraze3948ec2020-08-14 01:40:59 +0000342 if (Get_Super_Status())
343 Setup_Super_Partition();
bigbiff7ba75002020-04-11 20:47:09 -0400344 UnMount_Main_Partitions();
345#ifdef AB_OTA_UPDATER
346 DataManager::SetValue("tw_active_slot", Get_Active_Slot_Display());
347#endif
348 setup_uevent();
349 return true;
350}
351
352int TWPartitionManager::Write_Fstab(void) {
353 FILE *fp;
354 std::vector<TWPartition*>::iterator iter;
355 string Line;
356
357 fp = fopen("/etc/fstab", "w");
358 if (fp == NULL) {
359 LOGINFO("Can not open /etc/fstab.\n");
360 return false;
361 }
362 for (iter = Partitions.begin(); iter != Partitions.end(); iter++) {
363 if ((*iter)->Can_Be_Mounted) {
364 Line = (*iter)->Actual_Block_Device + " " + (*iter)->Mount_Point + " " + (*iter)->Current_File_System + " rw 0 0\n";
365 fputs(Line.c_str(), fp);
366 }
367 // Handle subpartition tracking
368 if ((*iter)->Is_SubPartition) {
369 TWPartition* ParentPartition = Find_Partition_By_Path((*iter)->SubPartition_Of);
370 if (ParentPartition)
371 ParentPartition->Has_SubPartition = true;
372 else
373 LOGERR("Unable to locate parent partition '%s' of '%s'\n", (*iter)->SubPartition_Of.c_str(), (*iter)->Mount_Point.c_str());
374 }
375 }
376 fclose(fp);
377 return true;
378}
379
380void TWPartitionManager::Decrypt_Data() {
381 #ifdef TW_INCLUDE_CRYPTO
Ethan Yonkercceebb82014-11-18 10:17:59 -0600382 TWPartition* Decrypt_Data = Find_Partition_By_Path("/data");
383 if (Decrypt_Data && Decrypt_Data->Is_Encrypted && !Decrypt_Data->Is_Decrypted) {
Ethan Yonker93382822018-11-01 15:25:31 -0500384 if (!Decrypt_Data->Key_Directory.empty() && Mount_By_Path(Decrypt_Data->Key_Directory, false)) {
385#ifdef TW_INCLUDE_FBE_METADATA_DECRYPT
bigbiff7ba75002020-04-11 20:47:09 -0400386#ifdef USE_FSCRYPT
387 if (fscrypt_mount_metadata_encrypted(Decrypt_Data->Actual_Block_Device, Decrypt_Data->Mount_Point, false)) {
Mohd Faraze3948ec2020-08-14 01:40:59 +0000388 std::string crypto_blkdev =android::base::GetProperty("ro.crypto.fs_crypto_blkdev", "error");
389 Decrypt_Data->Decrypted_Block_Device = crypto_blkdev;
bigbiff7ba75002020-04-11 20:47:09 -0400390 LOGINFO("Successfully decrypted metadata encrypted data partition with new block device: '%s'\n", crypto_blkdev.c_str());
391#else
Ethan Yonker93382822018-11-01 15:25:31 -0500392 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 -0400393 LOGINFO("Successfully decrypted metadata encrypted data partition with new block device: '%s'\n",
394 Decrypt_Data->Decrypted_Block_Device.c_str());
395#endif
Ethan Yonker93382822018-11-01 15:25:31 -0500396 property_set("ro.crypto.state", "encrypted");
397 Decrypt_Data->Is_Decrypted = true; // Needed to make the mount function work correctly
398 int retry_count = 10;
399 while (!Decrypt_Data->Mount(false) && --retry_count)
400 usleep(500);
401 if (Decrypt_Data->Mount(false)) {
bigbiff bigbiff0be03b32019-08-27 20:50:31 -0400402 if (!Decrypt_Data->Decrypt_FBE_DE()) {
mauronofriofc79aa62019-11-23 23:13:04 +0100403 char wrappedvalue[PROPERTY_VALUE_MAX];
404 property_get("fbe.data.wrappedkey", wrappedvalue, "");
405 std::string wrappedkeyvalue(wrappedvalue);
406 if (wrappedkeyvalue == "true") {
bigbiff bigbiff0be03b32019-08-27 20:50:31 -0400407 LOGERR("Unable to decrypt FBE device\n");
mauronofriofc79aa62019-11-23 23:13:04 +0100408 } else {
409 LOGINFO("Trying wrapped key.\n");
410 property_set("fbe.data.wrappedkey", "true");
411 if (!Decrypt_Data->Decrypt_FBE_DE()) {
412 LOGERR("Unable to decrypt FBE device\n");
413 }
bigbiff bigbiff0be03b32019-08-27 20:50:31 -0400414 }
415 }
416
Ethan Yonker93382822018-11-01 15:25:31 -0500417 } else {
418 LOGINFO("Failed to mount data after metadata decrypt\n");
419 }
420 } else {
421 LOGINFO("Unable to decrypt metadata encryption\n");
422 }
423#else
424 LOGERR("Metadata FBE decrypt support not present in this TWRP\n");
425#endif
426 }
Ethan Yonkerbd7492d2016-12-07 13:55:01 -0600427 if (Decrypt_Data->Is_FBE) {
428 if (DataManager::GetIntValue(TW_CRYPTO_PWTYPE) == 0) {
429 if (Decrypt_Device("!") == 0) {
430 gui_msg("decrypt_success=Successfully decrypted with default password.");
431 DataManager::SetValue(TW_IS_ENCRYPTED, 0);
432 } else {
433 gui_err("unable_to_decrypt=Unable to decrypt with default password.");
434 }
Ethan Yonkercceebb82014-11-18 10:17:59 -0600435 }
436 } else {
Ethan Yonkerbd7492d2016-12-07 13:55:01 -0600437 int password_type = cryptfs_get_password_type();
438 if (password_type == CRYPT_TYPE_DEFAULT) {
439 LOGINFO("Device is encrypted with the default password, attempting to decrypt.\n");
440 if (Decrypt_Device("default_password") == 0) {
441 gui_msg("decrypt_success=Successfully decrypted with default password.");
442 DataManager::SetValue(TW_IS_ENCRYPTED, 0);
443 } else {
444 gui_err("unable_to_decrypt=Unable to decrypt with default password.");
445 }
446 } else {
447 DataManager::SetValue("TW_CRYPTO_TYPE", password_type);
448 }
Ethan Yonkercceebb82014-11-18 10:17:59 -0600449 }
450 }
bigbiffadc599e2020-05-28 19:36:30 +0000451 if (Decrypt_Data && (!Decrypt_Data->Is_Encrypted || Decrypt_Data->Is_Decrypted) && Decrypt_Data->Mount(false)) {
Ethan Yonker66a19492015-12-10 10:19:45 -0600452 Decrypt_Adopted();
453 }
Ethan Yonkercceebb82014-11-18 10:17:59 -0600454#endif
Dees_Troy51a0e822012-09-05 15:24:24 -0400455}
456
Ethan Yonkerc05c5982014-03-13 09:19:56 -0500457void TWPartitionManager::Setup_Settings_Storage_Partition(TWPartition* Part) {
Ethan Yonkerc05c5982014-03-13 09:19:56 -0500458 DataManager::SetValue("tw_settings_path", Part->Storage_Path);
459 DataManager::SetValue("tw_storage_path", Part->Storage_Path);
460 LOGINFO("Settings storage is '%s'\n", Part->Storage_Path.c_str());
461}
462
Matt Mowerbf4efa32014-04-14 23:25:26 -0500463void TWPartitionManager::Setup_Android_Secure_Location(TWPartition* Part) {
464 if (Part->Has_Android_Secure)
465 Part->Setup_AndSec();
Ethan Yonker6277c792014-09-15 14:54:30 -0500466 else if (!datamedia)
Matt Mowerbf4efa32014-04-14 23:25:26 -0500467 Part->Setup_AndSec();
Matt Mowerbf4efa32014-04-14 23:25:26 -0500468}
469
Dees_Troy8170a922012-09-18 15:40:25 -0400470void TWPartitionManager::Output_Partition_Logging(void) {
471 std::vector<TWPartition*>::iterator iter;
472
473 printf("\n\nPartition Logs:\n");
474 for (iter = Partitions.begin(); iter != Partitions.end(); iter++)
475 Output_Partition((*iter));
476}
477
478void TWPartitionManager::Output_Partition(TWPartition* Part) {
479 unsigned long long mb = 1048576;
480
Gary Peck004d48b2012-11-21 16:28:18 -0800481 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 -0400482 if (Part->Can_Be_Mounted) {
Gary Peck004d48b2012-11-21 16:28:18 -0800483 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 -0400484 }
Gary Peck004d48b2012-11-21 16:28:18 -0800485 printf("\n Flags: ");
Dees_Troya13d74f2013-03-24 08:54:55 -0500486 if (Part->Can_Be_Mounted)
487 printf("Can_Be_Mounted ");
Gary Peck004d48b2012-11-21 16:28:18 -0800488 if (Part->Can_Be_Wiped)
489 printf("Can_Be_Wiped ");
Hashcodedabfd492013-08-29 22:45:30 -0700490 if (Part->Use_Rm_Rf)
491 printf("Use_Rm_Rf ");
Dees_Troya13d74f2013-03-24 08:54:55 -0500492 if (Part->Can_Be_Backed_Up)
493 printf("Can_Be_Backed_Up ");
Gary Peck004d48b2012-11-21 16:28:18 -0800494 if (Part->Wipe_During_Factory_Reset)
495 printf("Wipe_During_Factory_Reset ");
496 if (Part->Wipe_Available_in_GUI)
497 printf("Wipe_Available_in_GUI ");
498 if (Part->Is_SubPartition)
499 printf("Is_SubPartition ");
500 if (Part->Has_SubPartition)
501 printf("Has_SubPartition ");
502 if (Part->Removable)
503 printf("Removable ");
504 if (Part->Is_Present)
505 printf("IsPresent ");
506 if (Part->Can_Be_Encrypted)
507 printf("Can_Be_Encrypted ");
508 if (Part->Is_Encrypted)
509 printf("Is_Encrypted ");
510 if (Part->Is_Decrypted)
511 printf("Is_Decrypted ");
512 if (Part->Has_Data_Media)
513 printf("Has_Data_Media ");
Dees_Troy83bd4832013-05-04 12:39:56 +0000514 if (Part->Can_Encrypt_Backup)
515 printf("Can_Encrypt_Backup ");
516 if (Part->Use_Userdata_Encryption)
517 printf("Use_Userdata_Encryption ");
Gary Peck004d48b2012-11-21 16:28:18 -0800518 if (Part->Has_Android_Secure)
519 printf("Has_Android_Secure ");
520 if (Part->Is_Storage)
521 printf("Is_Storage ");
Dees_Troya13d74f2013-03-24 08:54:55 -0500522 if (Part->Is_Settings_Storage)
523 printf("Is_Settings_Storage ");
Dees_Troy68cab492012-12-12 19:29:35 +0000524 if (Part->Ignore_Blkid)
525 printf("Ignore_Blkid ");
Ethan Yonker253368a2014-11-25 15:00:52 -0600526 if (Part->Mount_To_Decrypt)
527 printf("Mount_To_Decrypt ");
Ethan Yonker96af84a2015-01-05 14:58:36 -0600528 if (Part->Can_Flash_Img)
529 printf("Can_Flash_Img ");
Ethan Yonker66a19492015-12-10 10:19:45 -0600530 if (Part->Is_Adopted_Storage)
531 printf("Is_Adopted_Storage ");
Ethan Yonker1b190162016-12-05 15:25:19 -0600532 if (Part->SlotSelect)
533 printf("SlotSelect ");
Ethan Yonker6e8c27a2016-12-22 17:55:57 -0600534 if (Part->Mount_Read_Only)
535 printf("Mount_Read_Only ");
Gary Peck004d48b2012-11-21 16:28:18 -0800536 printf("\n");
537 if (!Part->SubPartition_Of.empty())
538 printf(" SubPartition_Of: %s\n", Part->SubPartition_Of.c_str());
539 if (!Part->Symlink_Path.empty())
540 printf(" Symlink_Path: %s\n", Part->Symlink_Path.c_str());
541 if (!Part->Symlink_Mount_Point.empty())
542 printf(" Symlink_Mount_Point: %s\n", Part->Symlink_Mount_Point.c_str());
543 if (!Part->Primary_Block_Device.empty())
544 printf(" Primary_Block_Device: %s\n", Part->Primary_Block_Device.c_str());
545 if (!Part->Alternate_Block_Device.empty())
546 printf(" Alternate_Block_Device: %s\n", Part->Alternate_Block_Device.c_str());
547 if (!Part->Decrypted_Block_Device.empty())
548 printf(" Decrypted_Block_Device: %s\n", Part->Decrypted_Block_Device.c_str());
dianlujitao4879b372018-12-03 18:45:47 +0800549 if (!Part->Crypto_Key_Location.empty())
Ethan Yonker253368a2014-11-25 15:00:52 -0600550 printf(" Crypto_Key_Location: %s\n", Part->Crypto_Key_Location.c_str());
Gary Peck004d48b2012-11-21 16:28:18 -0800551 if (Part->Length != 0)
552 printf(" Length: %i\n", Part->Length);
553 if (!Part->Display_Name.empty())
554 printf(" Display_Name: %s\n", Part->Display_Name.c_str());
Dees_Troya13d74f2013-03-24 08:54:55 -0500555 if (!Part->Storage_Name.empty())
556 printf(" Storage_Name: %s\n", Part->Storage_Name.c_str());
Gary Peck004d48b2012-11-21 16:28:18 -0800557 if (!Part->Backup_Path.empty())
558 printf(" Backup_Path: %s\n", Part->Backup_Path.c_str());
559 if (!Part->Backup_Name.empty())
560 printf(" Backup_Name: %s\n", Part->Backup_Name.c_str());
Dees_Troya13d74f2013-03-24 08:54:55 -0500561 if (!Part->Backup_Display_Name.empty())
562 printf(" Backup_Display_Name: %s\n", Part->Backup_Display_Name.c_str());
Gary Peck004d48b2012-11-21 16:28:18 -0800563 if (!Part->Backup_FileName.empty())
564 printf(" Backup_FileName: %s\n", Part->Backup_FileName.c_str());
565 if (!Part->Storage_Path.empty())
566 printf(" Storage_Path: %s\n", Part->Storage_Path.c_str());
567 if (!Part->Current_File_System.empty())
568 printf(" Current_File_System: %s\n", Part->Current_File_System.c_str());
569 if (!Part->Fstab_File_System.empty())
570 printf(" Fstab_File_System: %s\n", Part->Fstab_File_System.c_str());
571 if (Part->Format_Block_Size != 0)
Ethan Yonkerc798c9c2015-10-09 11:15:26 -0500572 printf(" Format_Block_Size: %lu\n", Part->Format_Block_Size);
Dees_Troy094207a2012-09-26 12:00:39 -0400573 if (!Part->MTD_Name.empty())
574 printf(" MTD_Name: %s\n", Part->MTD_Name.c_str());
Matt Mower029a82d2017-01-08 13:12:38 -0600575 printf(" Backup_Method: %s\n", Part->Backup_Method_By_Name().c_str());
Hashcode62bd9e02013-11-19 21:59:42 -0800576 if (Part->Mount_Flags || !Part->Mount_Options.empty())
Ethan Yonker6e8c27a2016-12-22 17:55:57 -0600577 printf(" Mount_Flags: %i, Mount_Options: %s\n", Part->Mount_Flags, Part->Mount_Options.c_str());
Ethan Yonker726a0202014-12-16 20:01:38 -0600578 if (Part->MTP_Storage_ID)
579 printf(" MTP_Storage_ID: %i\n", Part->MTP_Storage_ID);
Ethan Yonker93382822018-11-01 15:25:31 -0500580 if (!Part->Key_Directory.empty())
581 printf(" Metadata Key Directory: %s\n", Part->Key_Directory.c_str());
Ethan Yonker6277c792014-09-15 14:54:30 -0500582 printf("\n");
Dees_Troy8170a922012-09-18 15:40:25 -0400583}
584
Dees_Troy51a0e822012-09-05 15:24:24 -0400585int TWPartitionManager::Mount_By_Path(string Path, bool Display_Error) {
Dees_Troy5bf43922012-09-07 16:07:55 -0400586 std::vector<TWPartition*>::iterator iter;
587 int ret = false;
588 bool found = false;
Dees_Troy38bd7602012-09-14 13:33:53 -0400589 string Local_Path = TWFunc::Get_Root_Path(Path);
Dees_Troy5bf43922012-09-07 16:07:55 -0400590
bigbiffd58ba182020-03-23 10:02:29 -0400591 if (Local_Path == "/tmp" || Local_Path == "/")
Dees_Troy43d8b002012-09-17 16:00:01 -0400592 return true;
593
Dees_Troy5bf43922012-09-07 16:07:55 -0400594 // Iterate through all partitions
595 for (iter = Partitions.begin(); iter != Partitions.end(); iter++) {
Dees_Troy657c3092012-09-10 20:32:10 -0400596 if ((*iter)->Mount_Point == Local_Path || (!(*iter)->Symlink_Mount_Point.empty() && (*iter)->Symlink_Mount_Point == Local_Path)) {
Dees_Troy5bf43922012-09-07 16:07:55 -0400597 ret = (*iter)->Mount(Display_Error);
598 found = true;
Dees_Troy51127312012-09-08 13:08:49 -0400599 } else if ((*iter)->Is_SubPartition && (*iter)->SubPartition_Of == Local_Path) {
Dees_Troy5bf43922012-09-07 16:07:55 -0400600 (*iter)->Mount(Display_Error);
Dees_Troy51127312012-09-08 13:08:49 -0400601 }
Dees_Troy5bf43922012-09-07 16:07:55 -0400602 }
603 if (found) {
604 return ret;
605 } else if (Display_Error) {
Ethan Yonker74db1572015-10-28 12:44:49 -0500606 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 -0400607 } else {
Dees_Troy2673cec2013-04-02 20:22:16 +0000608 LOGINFO("Mount: Unable to find partition for path '%s'\n", Local_Path.c_str());
Dees_Troy5bf43922012-09-07 16:07:55 -0400609 }
610 return false;
Dees_Troy51a0e822012-09-05 15:24:24 -0400611}
612
Dees_Troy51a0e822012-09-05 15:24:24 -0400613int TWPartitionManager::UnMount_By_Path(string Path, bool Display_Error) {
Dees_Troy51127312012-09-08 13:08:49 -0400614 std::vector<TWPartition*>::iterator iter;
615 int ret = false;
616 bool found = false;
Dees_Troy38bd7602012-09-14 13:33:53 -0400617 string Local_Path = TWFunc::Get_Root_Path(Path);
Dees_Troy51127312012-09-08 13:08:49 -0400618
619 // Iterate through all partitions
620 for (iter = Partitions.begin(); iter != Partitions.end(); iter++) {
Dees_Troy657c3092012-09-10 20:32:10 -0400621 if ((*iter)->Mount_Point == Local_Path || (!(*iter)->Symlink_Mount_Point.empty() && (*iter)->Symlink_Mount_Point == Local_Path)) {
Dees_Troy51127312012-09-08 13:08:49 -0400622 ret = (*iter)->UnMount(Display_Error);
623 found = true;
624 } else if ((*iter)->Is_SubPartition && (*iter)->SubPartition_Of == Local_Path) {
625 (*iter)->UnMount(Display_Error);
626 }
627 }
628 if (found) {
629 return ret;
630 } else if (Display_Error) {
Ethan Yonker74db1572015-10-28 12:44:49 -0500631 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 -0400632 } else {
Dees_Troy2673cec2013-04-02 20:22:16 +0000633 LOGINFO("UnMount: Unable to find partition for path '%s'\n", Local_Path.c_str());
Dees_Troy51127312012-09-08 13:08:49 -0400634 }
635 return false;
Dees_Troy51a0e822012-09-05 15:24:24 -0400636}
637
Dees_Troy51a0e822012-09-05 15:24:24 -0400638int TWPartitionManager::Is_Mounted_By_Path(string Path) {
Dees_Troy51127312012-09-08 13:08:49 -0400639 TWPartition* Part = Find_Partition_By_Path(Path);
640
641 if (Part)
642 return Part->Is_Mounted();
643 else
Dees_Troy2673cec2013-04-02 20:22:16 +0000644 LOGINFO("Is_Mounted: Unable to find partition for path '%s'\n", Path.c_str());
Dees_Troy51127312012-09-08 13:08:49 -0400645 return false;
Dees_Troy51a0e822012-09-05 15:24:24 -0400646}
647
Dees_Troy5bf43922012-09-07 16:07:55 -0400648int TWPartitionManager::Mount_Current_Storage(bool Display_Error) {
Dees_Troy51127312012-09-08 13:08:49 -0400649 string current_storage_path = DataManager::GetCurrentStoragePath();
650
651 if (Mount_By_Path(current_storage_path, Display_Error)) {
652 TWPartition* FreeStorage = Find_Partition_By_Path(current_storage_path);
653 if (FreeStorage)
654 DataManager::SetValue(TW_STORAGE_FREE_SIZE, (int)(FreeStorage->Free / 1048576LLU));
655 return true;
656 }
657 return false;
Dees_Troy51a0e822012-09-05 15:24:24 -0400658}
659
Dees_Troy5bf43922012-09-07 16:07:55 -0400660int TWPartitionManager::Mount_Settings_Storage(bool Display_Error) {
661 return Mount_By_Path(DataManager::GetSettingsStoragePath(), Display_Error);
662}
663
Ethan Yonker6e8c27a2016-12-22 17:55:57 -0600664TWPartition* TWPartitionManager::Find_Partition_By_Path(const string& Path) {
Dees_Troy5bf43922012-09-07 16:07:55 -0400665 std::vector<TWPartition*>::iterator iter;
Dees_Troy38bd7602012-09-14 13:33:53 -0400666 string Local_Path = TWFunc::Get_Root_Path(Path);
Dees_Troy5bf43922012-09-07 16:07:55 -0400667
dianlujitaob76a73a2020-04-30 20:33:20 +0800668 if (Local_Path == "/system")
669 Local_Path = Get_Android_Root_Path();
Dees_Troy5bf43922012-09-07 16:07:55 -0400670 for (iter = Partitions.begin(); iter != Partitions.end(); iter++) {
Dees_Troy657c3092012-09-10 20:32:10 -0400671 if ((*iter)->Mount_Point == Local_Path || (!(*iter)->Symlink_Mount_Point.empty() && (*iter)->Symlink_Mount_Point == Local_Path))
Dees_Troy5bf43922012-09-07 16:07:55 -0400672 return (*iter);
673 }
Dees_Troy51a0e822012-09-05 15:24:24 -0400674 return NULL;
675}
676
Ethan Yonker6e8c27a2016-12-22 17:55:57 -0600677TWPartition* TWPartitionManager::Find_Partition_By_Block_Device(const string& Block_Device) {
678 std::vector<TWPartition*>::iterator iter;
679
680 for (iter = Partitions.begin(); iter != Partitions.end(); iter++) {
681 if ((*iter)->Primary_Block_Device == Block_Device || (!(*iter)->Actual_Block_Device.empty() && (*iter)->Actual_Block_Device == Block_Device))
682 return (*iter);
683 }
684 return NULL;
685}
686
Ethan Yonker53796e72019-01-11 22:49:52 -0600687int TWPartitionManager::Check_Backup_Name(const std::string& Backup_Name, bool Display_Error, bool Must_Be_Unique) {
Dees_Troyc9ff7a32012-09-27 10:09:41 -0400688 // Check the backup name to ensure that it is the correct size and contains only valid characters
689 // and that a backup with that name doesn't already exist
690 char backup_name[MAX_BACKUP_NAME_LEN];
691 char backup_loc[255], tw_image_dir[255];
692 int copy_size;
693 int index, cur_char;
Ethan Yonker53796e72019-01-11 22:49:52 -0600694 string Backup_Loc;
Dees_Troyc9ff7a32012-09-27 10:09:41 -0400695
Dees_Troyc9ff7a32012-09-27 10:09:41 -0400696 copy_size = Backup_Name.size();
697 // Check size
698 if (copy_size > MAX_BACKUP_NAME_LEN) {
699 if (Display_Error)
Ethan Yonker74db1572015-10-28 12:44:49 -0500700 gui_err("backup_name_len=Backup name is too long.");
Dees_Troyc9ff7a32012-09-27 10:09:41 -0400701 return -2;
702 }
703
704 // Check each character
705 strncpy(backup_name, Backup_Name.c_str(), copy_size);
Dees_Troya13d74f2013-03-24 08:54:55 -0500706 if (copy_size == 1 && strncmp(backup_name, "0", 1) == 0)
Dees_Troyc9ff7a32012-09-27 10:09:41 -0400707 return 0; // A "0" (zero) means to use the current timestamp for the backup name
708 for (index=0; index<copy_size; index++) {
709 cur_char = (int)backup_name[index];
Matt Mowerfb1c4ff2014-04-16 13:43:36 -0500710 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 -0400711 // These are valid characters
712 // Numbers
713 // Upper case letters
714 // Lower case letters
715 // Space
716 // and -_.{}[]
717 } else {
718 if (Display_Error)
Ethan Yonker4adc33e2016-01-22 16:07:11 -0600719 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 -0400720 return -3;
721 }
722 }
723
Ethan Yonker53796e72019-01-11 22:49:52 -0600724 if (Must_Be_Unique) {
725 // Check to make sure that a backup with this name doesn't already exist
726 DataManager::GetValue(TW_BACKUPS_FOLDER_VAR, Backup_Loc);
727 strcpy(backup_loc, Backup_Loc.c_str());
728 sprintf(tw_image_dir,"%s/%s", backup_loc, Backup_Name.c_str());
729 if (TWFunc::Path_Exists(tw_image_dir)) {
730 if (Display_Error)
731 gui_err("backup_name_exists=A backup with that name already exists!");
bigbiffce8f83c2015-12-12 18:30:21 -0500732
Ethan Yonker53796e72019-01-11 22:49:52 -0600733 return -4;
734 }
735 // Backup is unique
Dees_Troyc9ff7a32012-09-27 10:09:41 -0400736 }
Ethan Yonker53796e72019-01-11 22:49:52 -0600737 // No problems found
Dees_Troyc9ff7a32012-09-27 10:09:41 -0400738 return 0;
739}
740
bigbiffce8f83c2015-12-12 18:30:21 -0500741bool TWPartitionManager::Backup_Partition(PartitionSettings *part_settings) {
Dees_Troy43d8b002012-09-17 16:00:01 -0400742 time_t start, stop;
Matt Mower23d8aae2017-01-06 14:30:33 -0600743 int use_compression;
bigbiffce8f83c2015-12-12 18:30:21 -0500744 string backup_log = part_settings->Backup_Folder + "/recovery.log";
Dees_Troy43d8b002012-09-17 16:00:01 -0400745
bigbiffce8f83c2015-12-12 18:30:21 -0500746 if (part_settings->Part == NULL)
Dees_Troy43d8b002012-09-17 16:00:01 -0400747 return true;
748
Dees_Troy093b7642012-09-21 15:59:38 -0400749 DataManager::GetValue(TW_USE_COMPRESSION_VAR, use_compression);
Dees_Troy093b7642012-09-21 15:59:38 -0400750
Tom Hite5a926722014-09-15 01:31:03 +0000751 TWFunc::SetPerformanceMode(true);
Dees_Troy43d8b002012-09-17 16:00:01 -0400752 time(&start);
753
bigbiffce8f83c2015-12-12 18:30:21 -0500754 if (part_settings->Part->Backup(part_settings, &tar_fork_pid)) {
Ethan Yonkercd00a8b2017-07-06 10:23:30 -0500755 sync();
756 sync();
bigbiff bigbiff56cf5642016-08-19 17:43:45 -0400757 string Full_Filename = part_settings->Backup_Folder + "/" + part_settings->Part->Backup_FileName;
Ethan Yonkercd00a8b2017-07-06 10:23:30 -0500758 if (!part_settings->adbbackup && part_settings->generate_digest) {
759 if (!twrpDigestDriver::Make_Digest(Full_Filename))
760 goto backup_error;
bigbiff bigbiff56cf5642016-08-19 17:43:45 -0400761 }
bigbiff bigbiff8fd4b092016-08-30 20:48:53 -0400762
bigbiffce8f83c2015-12-12 18:30:21 -0500763 if (part_settings->Part->Has_SubPartition) {
Dees_Troy8170a922012-09-18 15:40:25 -0400764 std::vector<TWPartition*>::iterator subpart;
bigbiff bigbiff8fd4b092016-08-30 20:48:53 -0400765 TWPartition *parentPart = part_settings->Part;
Dees_Troy8170a922012-09-18 15:40:25 -0400766
767 for (subpart = Partitions.begin(); subpart != Partitions.end(); subpart++) {
bigbiff bigbiff8fd4b092016-08-30 20:48:53 -0400768 if ((*subpart)->Can_Be_Backed_Up && (*subpart)->Is_SubPartition && (*subpart)->SubPartition_Of == parentPart->Mount_Point) {
Ethan Yonkerdcf2b672016-09-13 14:41:53 -0500769 part_settings->Part = *subpart;
bigbiffce8f83c2015-12-12 18:30:21 -0500770 if (!(*subpart)->Backup(part_settings, &tar_fork_pid)) {
Ethan Yonkercd00a8b2017-07-06 10:23:30 -0500771 goto backup_error;
Tom Hite5a926722014-09-15 01:31:03 +0000772 }
Dees_Troy2727b992013-08-14 20:09:30 +0000773 sync();
774 sync();
bigbiff bigbifff5955b12019-05-18 17:28:58 -0400775 string Full_Filename = part_settings->Backup_Folder + "/" + part_settings->Part->Backup_FileName;
bigbiff bigbiff56cf5642016-08-19 17:43:45 -0400776 if (!part_settings->adbbackup && part_settings->generate_digest) {
777 if (!twrpDigestDriver::Make_Digest(Full_Filename)) {
Ethan Yonkercd00a8b2017-07-06 10:23:30 -0500778 goto backup_error;
bigbiffce8f83c2015-12-12 18:30:21 -0500779 }
Tom Hite5a926722014-09-15 01:31:03 +0000780 }
Dees_Troy8170a922012-09-18 15:40:25 -0400781 }
782 }
783 }
bigbiff bigbiff56cf5642016-08-19 17:43:45 -0400784
Dees_Troy43d8b002012-09-17 16:00:01 -0400785 time(&stop);
that203bcc92015-05-09 17:27:33 +0200786 int backup_time = (int) difftime(stop, start);
Dees_Troy2673cec2013-04-02 20:22:16 +0000787 LOGINFO("Partition Backup time: %d\n", backup_time);
bigbiff bigbiff8fd4b092016-08-30 20:48:53 -0400788
bigbiffce8f83c2015-12-12 18:30:21 -0500789 if (part_settings->Part->Backup_Method == BM_FILES) {
790 part_settings->file_time += backup_time;
Dees_Troy43d8b002012-09-17 16:00:01 -0400791 } else {
bigbiffce8f83c2015-12-12 18:30:21 -0500792 part_settings->img_time += backup_time;
793
Dees_Troy43d8b002012-09-17 16:00:01 -0400794 }
Tom Hite5a926722014-09-15 01:31:03 +0000795
Matt Mower02899552016-12-30 18:13:51 -0600796 TWFunc::SetPerformanceMode(false);
Ethan Yonkercd00a8b2017-07-06 10:23:30 -0500797 return true;
Dees_Troy43d8b002012-09-17 16:00:01 -0400798 }
Ethan Yonkercd00a8b2017-07-06 10:23:30 -0500799backup_error:
800 Clean_Backup_Folder(part_settings->Backup_Folder);
801 TWFunc::copy_file("/tmp/recovery.log", backup_log, 0644);
802 tw_set_default_metadata(backup_log.c_str());
803 TWFunc::SetPerformanceMode(false);
804 return false;
bigbiff7abc5fe2015-01-17 16:53:12 -0500805}
806
bigbiffbf1d6722015-02-14 16:25:59 -0500807void TWPartitionManager::Clean_Backup_Folder(string Backup_Folder) {
808 DIR *d = opendir(Backup_Folder.c_str());
809 struct dirent *p;
810 int r;
bigbiff bigbiff56cf5642016-08-19 17:43:45 -0400811 vector<string> ext;
812
813 //extensions we should delete when cleaning
814 ext.push_back("win");
815 ext.push_back("md5");
816 ext.push_back("sha2");
817 ext.push_back("info");
bigbiffbf1d6722015-02-14 16:25:59 -0500818
Ethan Yonker74db1572015-10-28 12:44:49 -0500819 gui_msg("backup_clean=Backup Failed. Cleaning Backup Folder.");
bigbiffbf1d6722015-02-14 16:25:59 -0500820
821 if (d == NULL) {
Ethan Yonker74db1572015-10-28 12:44:49 -0500822 gui_msg(Msg(msg::kError, "error_opening_strerr=Error opening: '{1}' ({2})")(Backup_Folder)(strerror(errno)));
bigbiffbf1d6722015-02-14 16:25:59 -0500823 return;
824 }
825
Matt Mower2b18a532015-02-20 16:58:05 -0600826 while ((p = readdir(d))) {
bigbiffbf1d6722015-02-14 16:25:59 -0500827 if (!strcmp(p->d_name, ".") || !strcmp(p->d_name, ".."))
828 continue;
829
Ethan Yonkere080c1f2016-09-19 13:50:25 -0500830 string path = Backup_Folder + "/" + p->d_name;
bigbiffbf1d6722015-02-14 16:25:59 -0500831
832 size_t dot = path.find_last_of(".") + 1;
bigbiff bigbiff56cf5642016-08-19 17:43:45 -0400833 for (vector<string>::const_iterator i = ext.begin(); i != ext.end(); ++i) {
834 if (path.substr(dot) == *i) {
835 r = unlink(path.c_str());
836 if (r != 0)
837 LOGINFO("Unable to unlink '%s: %s'\n", path.c_str(), strerror(errno));
bigbiffbf1d6722015-02-14 16:25:59 -0500838 }
839 }
840 }
841 closedir(d);
842}
843
Ethan Yonker472f5062016-02-25 13:47:30 -0600844int TWPartitionManager::Check_Backup_Cancel() {
845 return stop_backup.get_value();
846}
847
bigbiff7abc5fe2015-01-17 16:53:12 -0500848int TWPartitionManager::Cancel_Backup() {
849 string Backup_Folder, Backup_Name, Full_Backup_Path;
850
851 stop_backup.set_value(1);
852
853 if (tar_fork_pid != 0) {
854 DataManager::GetValue(TW_BACKUP_NAME, Backup_Name);
855 DataManager::GetValue(TW_BACKUPS_FOLDER_VAR, Backup_Folder);
Ethan Yonkere080c1f2016-09-19 13:50:25 -0500856 Full_Backup_Path = Backup_Folder + "/" + Backup_Name;
bigbiff7abc5fe2015-01-17 16:53:12 -0500857 LOGINFO("Killing pid: %d\n", tar_fork_pid);
858 kill(tar_fork_pid, SIGUSR2);
859 while (kill(tar_fork_pid, 0) == 0) {
860 usleep(1000);
861 }
862 LOGINFO("Backup_Run stopped and returning false, backup cancelled.\n");
863 LOGINFO("Removing directory %s\n", Full_Backup_Path.c_str());
864 TWFunc::removeDir(Full_Backup_Path, false);
865 tar_fork_pid = 0;
866 }
867
868 return 0;
Dees_Troy43d8b002012-09-17 16:00:01 -0400869}
870
bigbiffce8f83c2015-12-12 18:30:21 -0500871int TWPartitionManager::Run_Backup(bool adbbackup) {
872 PartitionSettings part_settings;
bigbiff bigbiff56cf5642016-08-19 17:43:45 -0400873 int partition_count = 0, disable_free_space_check = 0, skip_digest = 0;
bigbiffce8f83c2015-12-12 18:30:21 -0500874 string Backup_Name, Backup_List, backup_path;
Matt Mower23d8aae2017-01-06 14:30:33 -0600875 unsigned long long total_bytes = 0, free_space = 0;
Dees_Troy43d8b002012-09-17 16:00:01 -0400876 TWPartition* storage = NULL;
877 struct tm *t;
Matt Mower23d8aae2017-01-06 14:30:33 -0600878 time_t seconds, total_start, total_stop;
Dees_Troya13d74f2013-03-24 08:54:55 -0500879 size_t start_pos = 0, end_pos = 0;
bigbiff7abc5fe2015-01-17 16:53:12 -0500880 stop_backup.set_value(0);
Dees_Troy43d8b002012-09-17 16:00:01 -0400881 seconds = time(0);
Matt Mowerfb1c4ff2014-04-16 13:43:36 -0500882 t = localtime(&seconds);
Dees_Troy43d8b002012-09-17 16:00:01 -0400883
bigbiffce8f83c2015-12-12 18:30:21 -0500884 part_settings.img_bytes_remaining = 0;
885 part_settings.file_bytes_remaining = 0;
886 part_settings.img_time = 0;
887 part_settings.file_time = 0;
888 part_settings.img_bytes = 0;
889 part_settings.file_bytes = 0;
890 part_settings.PM_Method = PM_BACKUP;
891
bigbiffce8f83c2015-12-12 18:30:21 -0500892 part_settings.adbbackup = adbbackup;
Dees_Troy43d8b002012-09-17 16:00:01 -0400893 time(&total_start);
894
895 Update_System_Details();
896
897 if (!Mount_Current_Storage(true))
898 return false;
899
bigbiff bigbiff56cf5642016-08-19 17:43:45 -0400900 DataManager::GetValue(TW_SKIP_DIGEST_GENERATE_VAR, skip_digest);
901 if (skip_digest == 0)
902 part_settings.generate_digest = true;
Dees_Troyc5865ab2012-09-24 15:08:04 -0400903 else
bigbiff bigbiff56cf5642016-08-19 17:43:45 -0400904 part_settings.generate_digest = false;
Dees_Troy4a2a1262012-09-18 09:33:47 -0400905
bigbiffce8f83c2015-12-12 18:30:21 -0500906 DataManager::GetValue(TW_BACKUPS_FOLDER_VAR, part_settings.Backup_Folder);
Ethan Yonkerdcf2b672016-09-13 14:41:53 -0500907 DataManager::GetValue(TW_BACKUP_NAME, Backup_Name);
908 if (Backup_Name == gui_lookup("curr_date", "(Current Date)")) {
909 Backup_Name = TWFunc::Get_Current_Date();
910 } else if (Backup_Name == gui_lookup("auto_generate", "(Auto Generate)") || Backup_Name == "0" || Backup_Name.empty()) {
Dees Troyb21cc642013-09-10 17:36:41 +0000911 TWFunc::Auto_Generate_Backup_Name();
Ethan Yonkerdcf2b672016-09-13 14:41:53 -0500912 DataManager::GetValue(TW_BACKUP_NAME, Backup_Name);
Dees_Troy43d8b002012-09-17 16:00:01 -0400913 }
bigbiffce8f83c2015-12-12 18:30:21 -0500914
Ethan Yonkerdcf2b672016-09-13 14:41:53 -0500915 LOGINFO("Backup Name is: '%s'\n", Backup_Name.c_str());
Ethan Yonkere080c1f2016-09-19 13:50:25 -0500916 part_settings.Backup_Folder = part_settings.Backup_Folder + "/" + Backup_Name;
bigbiffce8f83c2015-12-12 18:30:21 -0500917
Ethan Yonkere080c1f2016-09-19 13:50:25 -0500918 LOGINFO("Backup_Folder is: '%s'\n", part_settings.Backup_Folder.c_str());
Dees_Troy43d8b002012-09-17 16:00:01 -0400919
Dees_Troy2673cec2013-04-02 20:22:16 +0000920 LOGINFO("Calculating backup details...\n");
Dees_Troya13d74f2013-03-24 08:54:55 -0500921 DataManager::GetValue("tw_backup_list", Backup_List);
bigbiff7ba75002020-04-11 20:47:09 -0400922 LOGINFO("Backup_List: %s\n", Backup_List.c_str());
Dees_Troya13d74f2013-03-24 08:54:55 -0500923 if (!Backup_List.empty()) {
924 end_pos = Backup_List.find(";", start_pos);
925 while (end_pos != string::npos && start_pos < Backup_List.size()) {
926 backup_path = Backup_List.substr(start_pos, end_pos - start_pos);
bigbiff7ba75002020-04-11 20:47:09 -0400927 LOGINFO("backup_path: %s\n", backup_path.c_str());
bigbiffce8f83c2015-12-12 18:30:21 -0500928 part_settings.Part = Find_Partition_By_Path(backup_path);
929 if (part_settings.Part != NULL) {
Dees_Troya13d74f2013-03-24 08:54:55 -0500930 partition_count++;
bigbiffce8f83c2015-12-12 18:30:21 -0500931 if (part_settings.Part->Backup_Method == BM_FILES)
932 part_settings.file_bytes += part_settings.Part->Backup_Size;
Dees_Troya13d74f2013-03-24 08:54:55 -0500933 else
bigbiffce8f83c2015-12-12 18:30:21 -0500934 part_settings.img_bytes += part_settings.Part->Backup_Size;
935 if (part_settings.Part->Has_SubPartition) {
Dees_Troya13d74f2013-03-24 08:54:55 -0500936 std::vector<TWPartition*>::iterator subpart;
937
938 for (subpart = Partitions.begin(); subpart != Partitions.end(); subpart++) {
bigbiffce8f83c2015-12-12 18:30:21 -0500939 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 -0500940 partition_count++;
bigbiffce8f83c2015-12-12 18:30:21 -0500941 if ((*subpart)->Backup_Method == BM_FILES)
942 part_settings.file_bytes += (*subpart)->Backup_Size;
Dees_Troya13d74f2013-03-24 08:54:55 -0500943 else
bigbiffce8f83c2015-12-12 18:30:21 -0500944 part_settings.img_bytes += (*subpart)->Backup_Size;
Dees_Troya13d74f2013-03-24 08:54:55 -0500945 }
946 }
Dees_Troy8170a922012-09-18 15:40:25 -0400947 }
Dees_Troya13d74f2013-03-24 08:54:55 -0500948 } else {
Ethan Yonker74db1572015-10-28 12:44:49 -0500949 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 -0400950 }
Dees_Troya13d74f2013-03-24 08:54:55 -0500951 start_pos = end_pos + 1;
952 end_pos = Backup_List.find(";", start_pos);
Dees_Troy43d8b002012-09-17 16:00:01 -0400953 }
954 }
Dees_Troy43d8b002012-09-17 16:00:01 -0400955
956 if (partition_count == 0) {
Ethan Yonker74db1572015-10-28 12:44:49 -0500957 gui_msg("no_partition_selected=No partitions selected for backup.");
Dees_Troy43d8b002012-09-17 16:00:01 -0400958 return false;
959 }
bigbiffce8f83c2015-12-12 18:30:21 -0500960 if (adbbackup) {
961 if (twadbbu::Write_ADB_Stream_Header(partition_count) == false) {
962 return false;
963 }
964 }
965 total_bytes = part_settings.file_bytes + part_settings.img_bytes;
Ethan Yonker472f5062016-02-25 13:47:30 -0600966 ProgressTracking progress(total_bytes);
bigbiffce8f83c2015-12-12 18:30:21 -0500967 part_settings.progress = &progress;
968
Ethan Yonker74db1572015-10-28 12:44:49 -0500969 gui_msg(Msg("total_partitions_backup= * Total number of partitions to back up: {1}")(partition_count));
970 gui_msg(Msg("total_backup_size= * Total size of all data: {1}MB")(total_bytes / 1024 / 1024));
Dees_Troy43d8b002012-09-17 16:00:01 -0400971 storage = Find_Partition_By_Path(DataManager::GetCurrentStoragePath());
972 if (storage != NULL) {
973 free_space = storage->Free;
Ethan Yonker74db1572015-10-28 12:44:49 -0500974 gui_msg(Msg("available_space= * Available space: {1}MB")(free_space / 1024 / 1024));
Dees_Troy43d8b002012-09-17 16:00:01 -0400975 } else {
Ethan Yonker74db1572015-10-28 12:44:49 -0500976 gui_err("unable_locate_storage=Unable to locate storage device.");
Dees_Troy43d8b002012-09-17 16:00:01 -0400977 return false;
978 }
bigbiffbf1d6722015-02-14 16:25:59 -0500979
Matt Mowerbfccfb82016-04-25 23:22:31 -0500980 DataManager::GetValue(TW_DISABLE_FREE_SPACE_VAR, disable_free_space_check);
bigbiffce8f83c2015-12-12 18:30:21 -0500981
982 if (adbbackup)
983 disable_free_space_check = true;
984
bigbiffbf1d6722015-02-14 16:25:59 -0500985 if (!disable_free_space_check) {
986 if (free_space - (32 * 1024 * 1024) < total_bytes) {
987 // We require an extra 32MB just in case
Ethan Yonker74db1572015-10-28 12:44:49 -0500988 gui_err("no_space=Not enough free space on storage.");
bigbiffbf1d6722015-02-14 16:25:59 -0500989 return false;
990 }
Dees_Troy43d8b002012-09-17 16:00:01 -0400991 }
bigbiffce8f83c2015-12-12 18:30:21 -0500992 part_settings.img_bytes_remaining = part_settings.img_bytes;
993 part_settings.file_bytes_remaining = part_settings.file_bytes;
Dees_Troy43d8b002012-09-17 16:00:01 -0400994
Ethan Yonker74db1572015-10-28 12:44:49 -0500995 gui_msg("backup_started=[BACKUP STARTED]");
bigbiff bigbiffcdd97c72019-03-29 19:12:33 -0400996
997 int is_decrypted = 0;
998 int is_encrypted = 0;
999
1000 DataManager::GetValue(TW_IS_DECRYPTED, is_decrypted);
1001 DataManager::GetValue(TW_IS_ENCRYPTED, is_encrypted);
1002 if (!adbbackup || (!is_encrypted || (is_encrypted && is_decrypted))) {
1003 gui_msg(Msg("backup_folder= * Backup Folder: {1}")(part_settings.Backup_Folder));
1004 if (!TWFunc::Recursive_Mkdir(part_settings.Backup_Folder)) {
1005 gui_err("fail_backup_folder=Failed to make backup folder.");
1006 return false;
1007 }
Dees_Troyd4b22b02013-01-18 17:17:58 +00001008 }
1009
Dees_Troy2673cec2013-04-02 20:22:16 +00001010 DataManager::SetProgress(0.0);
Dees_Troy093b7642012-09-21 15:59:38 -04001011
Dees_Troya13d74f2013-03-24 08:54:55 -05001012 start_pos = 0;
1013 end_pos = Backup_List.find(";", start_pos);
1014 while (end_pos != string::npos && start_pos < Backup_List.size()) {
bigbiff7abc5fe2015-01-17 16:53:12 -05001015 if (stop_backup.get_value() != 0)
1016 return -1;
Dees_Troya13d74f2013-03-24 08:54:55 -05001017 backup_path = Backup_List.substr(start_pos, end_pos - start_pos);
bigbiffce8f83c2015-12-12 18:30:21 -05001018 part_settings.Part = Find_Partition_By_Path(backup_path);
1019 if (part_settings.Part != NULL) {
1020 if (!Backup_Partition(&part_settings))
Dees_Troya13d74f2013-03-24 08:54:55 -05001021 return false;
1022 } else {
Ethan Yonker74db1572015-10-28 12:44:49 -05001023 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 -05001024 }
1025 start_pos = end_pos + 1;
1026 end_pos = Backup_List.find(";", start_pos);
1027 }
Dees_Troy43d8b002012-09-17 16:00:01 -04001028
1029 // Average BPS
bigbiffce8f83c2015-12-12 18:30:21 -05001030 if (part_settings.img_time == 0)
1031 part_settings.img_time = 1;
1032 if (part_settings.file_time == 0)
1033 part_settings.file_time = 1;
1034 int img_bps = (int)part_settings.img_bytes / (int)part_settings.img_time;
1035 unsigned long long file_bps = part_settings.file_bytes / (int)part_settings.file_time;
Dees_Troy43d8b002012-09-17 16:00:01 -04001036
bigbiffce8f83c2015-12-12 18:30:21 -05001037 if (part_settings.file_bytes != 0)
Ethan Yonker472f5062016-02-25 13:47:30 -06001038 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 -05001039 if (part_settings.img_bytes != 0)
Ethan Yonker472f5062016-02-25 13:47:30 -06001040 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 -04001041
1042 time(&total_stop);
1043 int total_time = (int) difftime(total_stop, total_start);
bigbiffce8f83c2015-12-12 18:30:21 -05001044
1045 uint64_t actual_backup_size;
Ethan Yonker3fdcda42016-11-30 12:29:37 -06001046 if (!adbbackup) {
1047 TWExclude twe;
1048 actual_backup_size = twe.Get_Folder_Size(part_settings.Backup_Folder);
1049 } else
bigbiffce8f83c2015-12-12 18:30:21 -05001050 actual_backup_size = part_settings.file_bytes + part_settings.img_bytes;
Matt Mowerfb1c4ff2014-04-16 13:43:36 -05001051 actual_backup_size /= (1024LLU * 1024LLU);
Dees_Troy43d8b002012-09-17 16:00:01 -04001052
bigbiffce8f83c2015-12-12 18:30:21 -05001053 int prev_img_bps = 0, use_compression = 0;
1054 unsigned long long prev_file_bps = 0;
Matt Mower173cdb92016-12-31 02:49:19 -06001055 DataManager::GetValue(TW_BACKUP_AVG_IMG_RATE, prev_img_bps);
Dees_Troy093b7642012-09-21 15:59:38 -04001056 img_bps += (prev_img_bps * 4);
Matt Mowerfb1c4ff2014-04-16 13:43:36 -05001057 img_bps /= 5;
Dees_Troy093b7642012-09-21 15:59:38 -04001058
Matt Mowerfb1c4ff2014-04-16 13:43:36 -05001059 DataManager::GetValue(TW_USE_COMPRESSION_VAR, use_compression);
Dees_Troy093b7642012-09-21 15:59:38 -04001060 if (use_compression)
1061 DataManager::GetValue(TW_BACKUP_AVG_FILE_COMP_RATE, prev_file_bps);
Matt Mowerfb1c4ff2014-04-16 13:43:36 -05001062 else
Dees_Troy093b7642012-09-21 15:59:38 -04001063 DataManager::GetValue(TW_BACKUP_AVG_FILE_RATE, prev_file_bps);
1064 file_bps += (prev_file_bps * 4);
Matt Mowerfb1c4ff2014-04-16 13:43:36 -05001065 file_bps /= 5;
Dees_Troy093b7642012-09-21 15:59:38 -04001066
Matt Mowerfb1c4ff2014-04-16 13:43:36 -05001067 DataManager::SetValue(TW_BACKUP_AVG_IMG_RATE, img_bps);
Dees_Troy093b7642012-09-21 15:59:38 -04001068 if (use_compression)
1069 DataManager::SetValue(TW_BACKUP_AVG_FILE_COMP_RATE, file_bps);
1070 else
1071 DataManager::SetValue(TW_BACKUP_AVG_FILE_RATE, file_bps);
1072
Ethan Yonker74db1572015-10-28 12:44:49 -05001073 gui_msg(Msg("total_backed_size=[{1} MB TOTAL BACKED UP]")(actual_backup_size));
Dees_Troy43d8b002012-09-17 16:00:01 -04001074 Update_System_Details();
Dees_Troyd0384ef2012-10-12 12:15:42 -04001075 UnMount_Main_Partitions();
Ethan Yonker56db1c42015-12-20 22:49:00 -06001076 gui_msg(Msg(msg::kHighlight, "backup_completed=[BACKUP COMPLETED IN {1} SECONDS]")(total_time)); // the end
Ethan Yonkere080c1f2016-09-19 13:50:25 -05001077 string backup_log = part_settings.Backup_Folder + "/recovery.log";
Dees_Troy3f5c4e82013-02-01 15:16:59 +00001078 TWFunc::copy_file("/tmp/recovery.log", backup_log, 0644);
Ethan Yonker4b94cfd2014-12-11 10:00:45 -06001079 tw_set_default_metadata(backup_log.c_str());
bigbiffce8f83c2015-12-12 18:30:21 -05001080
1081 if (part_settings.adbbackup) {
1082 if (twadbbu::Write_ADB_Stream_Trailer() == false) {
1083 return false;
1084 }
1085 }
1086 part_settings.adbbackup = false;
1087 DataManager::SetValue("tw_enable_adb_backup", 0);
1088
Dees_Troy3f5c4e82013-02-01 15:16:59 +00001089 return true;
Dees_Troy51a0e822012-09-05 15:24:24 -04001090}
1091
bigbiffce8f83c2015-12-12 18:30:21 -05001092bool TWPartitionManager::Restore_Partition(PartitionSettings *part_settings) {
Dees_Troy4a2a1262012-09-18 09:33:47 -04001093 time_t Start, Stop;
bigbiffce8f83c2015-12-12 18:30:21 -05001094
bigbiff bigbiffb5ecaad2017-03-20 18:53:53 -04001095 if (part_settings->adbbackup) {
bigbiff bigbiff19fb79c2016-09-05 21:04:51 -04001096 std::string partName = part_settings->Part->Backup_Name + "." + part_settings->Part->Current_File_System + ".win";
1097 LOGINFO("setting backup name: %s\n", partName.c_str());
bigbiff bigbiffb5ecaad2017-03-20 18:53:53 -04001098 part_settings->Part->Set_Backup_FileName(part_settings->Part->Backup_Name + "." + part_settings->Part->Current_File_System + ".win");
1099 }
1100
Tom Hite5a926722014-09-15 01:31:03 +00001101 TWFunc::SetPerformanceMode(true);
bigbiffce8f83c2015-12-12 18:30:21 -05001102
Dees_Troy4a2a1262012-09-18 09:33:47 -04001103 time(&Start);
Ethan Yonker472f5062016-02-25 13:47:30 -06001104
bigbiffce8f83c2015-12-12 18:30:21 -05001105 if (!part_settings->Part->Restore(part_settings)) {
Tom Hite5a926722014-09-15 01:31:03 +00001106 TWFunc::SetPerformanceMode(false);
Dees_Troy4a2a1262012-09-18 09:33:47 -04001107 return false;
Tom Hite5a926722014-09-15 01:31:03 +00001108 }
bigbiff bigbiff19fb79c2016-09-05 21:04:51 -04001109 if (part_settings->Part->Has_SubPartition && !part_settings->adbbackup) {
Dees_Troy8170a922012-09-18 15:40:25 -04001110 std::vector<TWPartition*>::iterator subpart;
bigbiff bigbiff8fd4b092016-08-30 20:48:53 -04001111 TWPartition *parentPart = part_settings->Part;
Dees_Troy8170a922012-09-18 15:40:25 -04001112
1113 for (subpart = Partitions.begin(); subpart != Partitions.end(); subpart++) {
bigbiff bigbiff8fd4b092016-08-30 20:48:53 -04001114 part_settings->Part = *subpart;
1115 if ((*subpart)->Is_SubPartition && (*subpart)->SubPartition_Of == parentPart->Mount_Point) {
1116 part_settings->Part = (*subpart);
bigbiff bigbiff19fb79c2016-09-05 21:04:51 -04001117 part_settings->Part->Set_Backup_FileName(part_settings->Part->Backup_Name + "." + part_settings->Part->Current_File_System + ".win");
bigbiffce8f83c2015-12-12 18:30:21 -05001118 if (!(*subpart)->Restore(part_settings)) {
Tom Hite5a926722014-09-15 01:31:03 +00001119 TWFunc::SetPerformanceMode(false);
Dees_Troy8170a922012-09-18 15:40:25 -04001120 return false;
Tom Hite5a926722014-09-15 01:31:03 +00001121 }
Dees_Troy8170a922012-09-18 15:40:25 -04001122 }
1123 }
1124 }
Dees_Troy4a2a1262012-09-18 09:33:47 -04001125 time(&Stop);
Tom Hite5a926722014-09-15 01:31:03 +00001126 TWFunc::SetPerformanceMode(false);
bigbiffce8f83c2015-12-12 18:30:21 -05001127 gui_msg(Msg("restore_part_done=[{1} done ({2} seconds)]")(part_settings->Part->Backup_Display_Name)((int)difftime(Stop, Start)));
1128
Dees_Troy4a2a1262012-09-18 09:33:47 -04001129 return true;
1130}
1131
Ethan Yonker472f5062016-02-25 13:47:30 -06001132int TWPartitionManager::Run_Restore(const string& Restore_Name) {
bigbiffce8f83c2015-12-12 18:30:21 -05001133 PartitionSettings part_settings;
bigbiff bigbiff56cf5642016-08-19 17:43:45 -04001134 int check_digest;
bigbiffce8f83c2015-12-12 18:30:21 -05001135
Dees_Troy4a2a1262012-09-18 09:33:47 -04001136 time_t rStart, rStop;
1137 time(&rStart);
Dees_Troya13d74f2013-03-24 08:54:55 -05001138 string Restore_List, restore_path;
1139 size_t start_pos = 0, end_pos;
bigbiffce8f83c2015-12-12 18:30:21 -05001140
Ethan Yonkerdcf2b672016-09-13 14:41:53 -05001141 part_settings.Backup_Folder = Restore_Name;
bigbiffce8f83c2015-12-12 18:30:21 -05001142 part_settings.Part = NULL;
1143 part_settings.partition_count = 0;
1144 part_settings.total_restore_size = 0;
1145 part_settings.adbbackup = false;
1146 part_settings.PM_Method = PM_RESTORE;
Dees_Troy43d8b002012-09-17 16:00:01 -04001147
Ethan Yonker74db1572015-10-28 12:44:49 -05001148 gui_msg("restore_started=[RESTORE STARTED]");
1149 gui_msg(Msg("restore_folder=Restore folder: '{1}'")(Restore_Name));
Dees_Troy43d8b002012-09-17 16:00:01 -04001150
Dees_Troy4a2a1262012-09-18 09:33:47 -04001151 if (!Mount_Current_Storage(true))
1152 return false;
1153
bigbiff bigbiff56cf5642016-08-19 17:43:45 -04001154 DataManager::GetValue(TW_SKIP_DIGEST_CHECK_VAR, check_digest);
1155 if (check_digest > 0) {
1156 // Check Digest files first before restoring to ensure that all of them match before starting a restore
1157 TWFunc::GUI_Operation_Text(TW_VERIFY_DIGEST_TEXT, gui_parse_text("{@verifying_digest}"));
1158 gui_msg("verifying_digest=Verifying Digest");
Dees_Troya13d74f2013-03-24 08:54:55 -05001159 } else {
bigbiff bigbiff56cf5642016-08-19 17:43:45 -04001160 gui_msg("skip_digest=Skipping Digest check based on user setting.");
Dees_Troya13d74f2013-03-24 08:54:55 -05001161 }
Ethan Yonker74db1572015-10-28 12:44:49 -05001162 gui_msg("calc_restore=Calculating restore details...");
Dees_Troya13d74f2013-03-24 08:54:55 -05001163 DataManager::GetValue("tw_restore_selected", Restore_List);
bigbiffce8f83c2015-12-12 18:30:21 -05001164
Dees_Troya13d74f2013-03-24 08:54:55 -05001165 if (!Restore_List.empty()) {
1166 end_pos = Restore_List.find(";", start_pos);
1167 while (end_pos != string::npos && start_pos < Restore_List.size()) {
1168 restore_path = Restore_List.substr(start_pos, end_pos - start_pos);
bigbiffce8f83c2015-12-12 18:30:21 -05001169 part_settings.Part = Find_Partition_By_Path(restore_path);
1170 if (part_settings.Part != NULL) {
bigbiffce8f83c2015-12-12 18:30:21 -05001171 if (part_settings.Part->Mount_Read_Only) {
1172 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 -05001173 return false;
1174 }
bigbiffce8f83c2015-12-12 18:30:21 -05001175
bigbiff bigbiff56cf5642016-08-19 17:43:45 -04001176 string Full_Filename = part_settings.Backup_Folder + "/" + part_settings.Part->Backup_FileName;
1177
1178 if (check_digest > 0 && !twrpDigestDriver::Check_Digest(Full_Filename))
Dees_Troya13d74f2013-03-24 08:54:55 -05001179 return false;
bigbiffce8f83c2015-12-12 18:30:21 -05001180 part_settings.partition_count++;
1181 part_settings.total_restore_size += part_settings.Part->Get_Restore_Size(&part_settings);
1182 if (part_settings.Part->Has_SubPartition) {
bigbiff bigbiff8fd4b092016-08-30 20:48:53 -04001183 TWPartition *parentPart = part_settings.Part;
Dees_Troya13d74f2013-03-24 08:54:55 -05001184 std::vector<TWPartition*>::iterator subpart;
1185
1186 for (subpart = Partitions.begin(); subpart != Partitions.end(); subpart++) {
bigbiff bigbiff8fd4b092016-08-30 20:48:53 -04001187 part_settings.Part = *subpart;
1188 if ((*subpart)->Is_SubPartition && (*subpart)->SubPartition_Of == parentPart->Mount_Point) {
bigbiff bigbiff56cf5642016-08-19 17:43:45 -04001189 if (check_digest > 0 && !twrpDigestDriver::Check_Digest(Full_Filename))
Dees_Troya13d74f2013-03-24 08:54:55 -05001190 return false;
bigbiffce8f83c2015-12-12 18:30:21 -05001191 part_settings.total_restore_size += (*subpart)->Get_Restore_Size(&part_settings);
Dees_Troya13d74f2013-03-24 08:54:55 -05001192 }
1193 }
1194 }
1195 } else {
Ethan Yonker74db1572015-10-28 12:44:49 -05001196 gui_msg(Msg(msg::kError, "restore_unable_locate=Unable to locate '{1}' partition for restoring.")(restore_path));
Dees_Troya13d74f2013-03-24 08:54:55 -05001197 }
1198 start_pos = end_pos + 1;
1199 end_pos = Restore_List.find(";", start_pos);
Dees_Troy4a2a1262012-09-18 09:33:47 -04001200 }
Dees_Troy4a2a1262012-09-18 09:33:47 -04001201 }
Dees_Troy4a2a1262012-09-18 09:33:47 -04001202
bigbiffce8f83c2015-12-12 18:30:21 -05001203 if (part_settings.partition_count == 0) {
Ethan Yonker74db1572015-10-28 12:44:49 -05001204 gui_err("no_part_restore=No partitions selected for restore.");
Dees_Troy4a2a1262012-09-18 09:33:47 -04001205 return false;
1206 }
1207
bigbiffce8f83c2015-12-12 18:30:21 -05001208 gui_msg(Msg("restore_part_count=Restoring {1} partitions...")(part_settings.partition_count));
1209 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 +00001210 DataManager::SetProgress(0.0);
bigbiffce8f83c2015-12-12 18:30:21 -05001211 ProgressTracking progress(part_settings.total_restore_size);
1212 part_settings.progress = &progress;
Ethan Yonker1b7a31b2014-07-03 15:09:22 -05001213
Dees_Troya13d74f2013-03-24 08:54:55 -05001214 start_pos = 0;
1215 if (!Restore_List.empty()) {
1216 end_pos = Restore_List.find(";", start_pos);
1217 while (end_pos != string::npos && start_pos < Restore_List.size()) {
1218 restore_path = Restore_List.substr(start_pos, end_pos - start_pos);
bigbiffce8f83c2015-12-12 18:30:21 -05001219
1220 part_settings.Part = Find_Partition_By_Path(restore_path);
1221 if (part_settings.Part != NULL) {
1222 part_settings.partition_count++;
bigbiffce8f83c2015-12-12 18:30:21 -05001223 if (!Restore_Partition(&part_settings))
Dees_Troya13d74f2013-03-24 08:54:55 -05001224 return false;
1225 } else {
Ethan Yonker74db1572015-10-28 12:44:49 -05001226 gui_msg(Msg(msg::kError, "restore_unable_locate=Unable to locate '{1}' partition for restoring.")(restore_path));
Dees_Troya13d74f2013-03-24 08:54:55 -05001227 }
1228 start_pos = end_pos + 1;
1229 end_pos = Restore_List.find(";", start_pos);
1230 }
1231 }
Ethan Yonker74db1572015-10-28 12:44:49 -05001232 TWFunc::GUI_Operation_Text(TW_UPDATE_SYSTEM_DETAILS_TEXT, gui_parse_text("{@updating_system_details}"));
Captain Throwback9d6feb52018-07-27 10:05:24 -04001233 UnMount_By_Path(Get_Android_Root_Path(), false);
Dees_Troy43d8b002012-09-17 16:00:01 -04001234 Update_System_Details();
Dees_Troyd0384ef2012-10-12 12:15:42 -04001235 UnMount_Main_Partitions();
Dees_Troy4a2a1262012-09-18 09:33:47 -04001236 time(&rStop);
Matt Mower3c366972015-12-25 19:28:31 -06001237 gui_msg(Msg(msg::kHighlight, "restore_completed=[RESTORE COMPLETED IN {1} SECONDS]")((int)difftime(rStop,rStart)));
Ethan Yonker1b7a31b2014-07-03 15:09:22 -05001238 DataManager::SetValue("tw_file_progress", "");
bigbiffce8f83c2015-12-12 18:30:21 -05001239
Dees_Troy63c8df72012-09-10 14:02:05 -04001240 return true;
Dees_Troy51a0e822012-09-05 15:24:24 -04001241}
1242
1243void TWPartitionManager::Set_Restore_Files(string Restore_Name) {
Dees_Troy63c8df72012-09-10 14:02:05 -04001244 // Start with the default values
Dees_Troya13d74f2013-03-24 08:54:55 -05001245 string Restore_List;
Dees_Troy83bd4832013-05-04 12:39:56 +00001246 bool get_date = true, check_encryption = true;
bigbiff bigbiff19fb79c2016-09-05 21:04:51 -04001247 bool adbbackup = false;
Dees_Troy83bd4832013-05-04 12:39:56 +00001248
1249 DataManager::SetValue("tw_restore_encrypted", 0);
bigbiff bigbiff19fb79c2016-09-05 21:04:51 -04001250 if (twadbbu::Check_ADB_Backup_File(Restore_Name)) {
1251 vector<string> adb_files;
1252 adb_files = twadbbu::Get_ADB_Backup_Files(Restore_Name);
1253 for (unsigned int i = 0; i < adb_files.size(); ++i) {
1254 string adb_restore_file = adb_files.at(i);
1255 std::size_t pos = adb_restore_file.find_first_of(".");
1256 std::string path = "/" + adb_restore_file.substr(0, pos);
1257 Restore_List = path + ";";
1258 TWPartition* Part = Find_Partition_By_Path(path);
1259 Part->Backup_FileName = TWFunc::Get_Filename(adb_restore_file);
1260 adbbackup = true;
1261 }
1262 DataManager::SetValue("tw_enable_adb_backup", 1);
Dees_Troy63c8df72012-09-10 14:02:05 -04001263 }
bigbiff bigbiff19fb79c2016-09-05 21:04:51 -04001264 else {
1265 DIR* d;
1266 d = opendir(Restore_Name.c_str());
1267 if (d == NULL)
Dees_Troy63c8df72012-09-10 14:02:05 -04001268 {
bigbiff bigbiff19fb79c2016-09-05 21:04:51 -04001269 gui_msg(Msg(msg::kError, "error_opening_strerr=Error opening: '{1}' ({2})")(Restore_Name)(strerror(errno)));
1270 return;
Dees_Troy63c8df72012-09-10 14:02:05 -04001271 }
bigbiff bigbiff19fb79c2016-09-05 21:04:51 -04001272
1273 struct dirent* de;
1274 while ((de = readdir(d)) != NULL)
Dees_Troy63c8df72012-09-10 14:02:05 -04001275 {
bigbiff bigbiff19fb79c2016-09-05 21:04:51 -04001276 // Strip off three components
1277 char str[256];
1278 char* label;
1279 char* fstype = NULL;
1280 char* extn = NULL;
1281 char* ptr;
Dees_Troy63c8df72012-09-10 14:02:05 -04001282
bigbiff bigbiff19fb79c2016-09-05 21:04:51 -04001283 strcpy(str, de->d_name);
1284 if (strlen(str) <= 2)
1285 continue;
Dees_Troy83bd4832013-05-04 12:39:56 +00001286
bigbiff bigbiff19fb79c2016-09-05 21:04:51 -04001287 if (get_date) {
1288 char file_path[255];
1289 struct stat st;
1290
1291 strcpy(file_path, Restore_Name.c_str());
1292 strcat(file_path, "/");
1293 strcat(file_path, str);
1294 stat(file_path, &st);
1295 string backup_date = ctime((const time_t*)(&st.st_mtime));
1296 DataManager::SetValue(TW_RESTORE_FILE_DATE, backup_date);
1297 get_date = false;
Dees_Troy83bd4832013-05-04 12:39:56 +00001298 }
Dees_Troy63c8df72012-09-10 14:02:05 -04001299
bigbiff bigbiff19fb79c2016-09-05 21:04:51 -04001300 label = str;
1301 ptr = label;
1302 while (*ptr && *ptr != '.') ptr++;
1303 if (*ptr == '.')
1304 {
1305 *ptr = 0x00;
1306 ptr++;
1307 fstype = ptr;
1308 }
1309 while (*ptr && *ptr != '.') ptr++;
1310 if (*ptr == '.')
1311 {
1312 *ptr = 0x00;
1313 ptr++;
1314 extn = ptr;
1315 }
Dees_Troy63c8df72012-09-10 14:02:05 -04001316
bigbiff bigbiff19fb79c2016-09-05 21:04:51 -04001317 if (fstype == NULL || extn == NULL || strcmp(fstype, "log") == 0) continue;
1318 int extnlength = strlen(extn);
1319 if (extnlength != 3 && extnlength != 6) continue;
1320 if (extnlength >= 3 && strncmp(extn, "win", 3) != 0) continue;
1321 //if (extnlength == 6 && strncmp(extn, "win000", 6) != 0) continue;
Dees_Troy63c8df72012-09-10 14:02:05 -04001322
bigbiff bigbiff19fb79c2016-09-05 21:04:51 -04001323 if (check_encryption) {
1324 string filename = Restore_Name + "/";
1325 filename += de->d_name;
1326 if (TWFunc::Get_File_Type(filename) == 2) {
1327 LOGINFO("'%s' is encrypted\n", filename.c_str());
1328 DataManager::SetValue("tw_restore_encrypted", 1);
1329 }
1330 }
1331 if (extnlength == 6 && strncmp(extn, "win000", 6) != 0) continue;
1332
1333 TWPartition* Part = Find_Partition_By_Path(label);
1334 if (Part == NULL)
1335 {
1336 gui_msg(Msg(msg::kError, "unable_locate_part_backup_name=Unable to locate partition by backup name: '{1}'")(label));
1337 continue;
1338 }
1339
1340 Part->Backup_FileName = de->d_name;
1341 if (strlen(extn) > 3) {
1342 Part->Backup_FileName.resize(Part->Backup_FileName.size() - strlen(extn) + 3);
1343 }
1344
dianlujitaob76a73a2020-04-30 20:33:20 +08001345 if (!Part->Is_SubPartition) {
1346 if (Part->Backup_Path == Get_Android_Root_Path())
1347 Restore_List += "/system;";
1348 else
1349 Restore_List += Part->Backup_Path + ";";
1350 }
bigbiff bigbiff19fb79c2016-09-05 21:04:51 -04001351 }
1352 closedir(d);
Dees_Troy63c8df72012-09-10 14:02:05 -04001353 }
bigbiff bigbiff19fb79c2016-09-05 21:04:51 -04001354
1355 if (adbbackup) {
1356 Restore_List = "ADB_Backup;";
1357 adbbackup = false;
1358 }
Dees_Troy63c8df72012-09-10 14:02:05 -04001359
Dees_Troya13d74f2013-03-24 08:54:55 -05001360 // Set the final value
1361 DataManager::SetValue("tw_restore_list", Restore_List);
1362 DataManager::SetValue("tw_restore_selected", Restore_List);
Dees_Troy51a0e822012-09-05 15:24:24 -04001363 return;
1364}
1365
1366int TWPartitionManager::Wipe_By_Path(string Path) {
Dees_Troy63c8df72012-09-10 14:02:05 -04001367 std::vector<TWPartition*>::iterator iter;
Mohd Farazfdd49bb2020-04-21 18:56:44 +05301368 std::vector < TWPartition * >::iterator iter1;
Dees_Troy63c8df72012-09-10 14:02:05 -04001369 int ret = false;
1370 bool found = false;
Dees_Troy38bd7602012-09-14 13:33:53 -04001371 string Local_Path = TWFunc::Get_Root_Path(Path);
Dees_Troy63c8df72012-09-10 14:02:05 -04001372
dianlujitaob76a73a2020-04-30 20:33:20 +08001373 if (Local_Path == "/system")
1374 Local_Path = Get_Android_Root_Path();
Dees_Troy63c8df72012-09-10 14:02:05 -04001375 // Iterate through all partitions
1376 for (iter = Partitions.begin(); iter != Partitions.end(); iter++) {
Dees_Troy657c3092012-09-10 20:32:10 -04001377 if ((*iter)->Mount_Point == Local_Path || (!(*iter)->Symlink_Mount_Point.empty() && (*iter)->Symlink_Mount_Point == Local_Path)) {
Mohd Farazfdd49bb2020-04-21 18:56:44 +05301378 // iterate through all partitions since some legacy devices uses other partitions as vendor causes issues while wiping
1379 (*iter)->Find_Actual_Block_Device();
1380 for (iter1 = Partitions.begin (); iter1 != Partitions.end (); iter1++)
1381 {
1382 (*iter1)->Find_Actual_Block_Device();
1383 if ((*iter)->Actual_Block_Device == (*iter1)->Actual_Block_Device && (*iter)->Mount_Point != (*iter1)->Mount_Point)
1384 (*iter1)->UnMount(false);
1385 }
Dees_Troye58d5262012-09-21 12:27:57 -04001386 if (Path == "/and-sec")
1387 ret = (*iter)->Wipe_AndSec();
1388 else
1389 ret = (*iter)->Wipe();
Dees_Troy63c8df72012-09-10 14:02:05 -04001390 found = true;
1391 } else if ((*iter)->Is_SubPartition && (*iter)->SubPartition_Of == Local_Path) {
1392 (*iter)->Wipe();
1393 }
1394 }
1395 if (found) {
1396 return ret;
1397 } else
Ethan Yonker74db1572015-10-28 12:44:49 -05001398 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 -04001399 return false;
Dees_Troy51a0e822012-09-05 15:24:24 -04001400}
1401
Ethan Yonker87c7bac2014-05-25 21:41:08 -05001402int TWPartitionManager::Wipe_By_Path(string Path, string New_File_System) {
1403 std::vector<TWPartition*>::iterator iter;
1404 int ret = false;
1405 bool found = false;
1406 string Local_Path = TWFunc::Get_Root_Path(Path);
1407
1408 // Iterate through all partitions
1409 for (iter = Partitions.begin(); iter != Partitions.end(); iter++) {
1410 if ((*iter)->Mount_Point == Local_Path || (!(*iter)->Symlink_Mount_Point.empty() && (*iter)->Symlink_Mount_Point == Local_Path)) {
1411 if (Path == "/and-sec")
1412 ret = (*iter)->Wipe_AndSec();
1413 else
1414 ret = (*iter)->Wipe(New_File_System);
1415 found = true;
1416 } else if ((*iter)->Is_SubPartition && (*iter)->SubPartition_Of == Local_Path) {
1417 (*iter)->Wipe(New_File_System);
1418 }
1419 }
1420 if (found) {
1421 return ret;
1422 } else
Ethan Yonker74db1572015-10-28 12:44:49 -05001423 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 -05001424 return false;
1425}
1426
Dees_Troy51a0e822012-09-05 15:24:24 -04001427int TWPartitionManager::Factory_Reset(void) {
Dees_Troy63c8df72012-09-10 14:02:05 -04001428 std::vector<TWPartition*>::iterator iter;
1429 int ret = true;
1430
1431 for (iter = Partitions.begin(); iter != Partitions.end(); iter++) {
Dees_Troy38bd7602012-09-14 13:33:53 -04001432 if ((*iter)->Wipe_During_Factory_Reset && (*iter)->Is_Present) {
Ethan Yonker89583ef2015-08-26 09:01:59 -05001433#ifdef TW_OEM_BUILD
1434 if ((*iter)->Mount_Point == "/data") {
1435 if (!(*iter)->Wipe_Encryption())
1436 ret = false;
1437 } else {
1438#endif
1439 if (!(*iter)->Wipe())
1440 ret = false;
1441#ifdef TW_OEM_BUILD
1442 }
1443#endif
Dees_Troy094207a2012-09-26 12:00:39 -04001444 } else if ((*iter)->Has_Android_Secure) {
1445 if (!(*iter)->Wipe_AndSec())
1446 ret = false;
Dees_Troy63c8df72012-09-10 14:02:05 -04001447 }
1448 }
bigbiffad58e1b2020-07-06 20:24:34 -04001449 TWFunc::check_and_run_script("/system/bin/factoryreset.sh", "Factory Reset Script");
Dees_Troy63c8df72012-09-10 14:02:05 -04001450 return ret;
Dees_Troy51a0e822012-09-05 15:24:24 -04001451}
1452
Dees_Troy38bd7602012-09-14 13:33:53 -04001453int TWPartitionManager::Wipe_Dalvik_Cache(void) {
1454 struct stat st;
bigbiff bigbiff9c754052013-01-09 09:09:08 -05001455 vector <string> dir;
Dees_Troy38bd7602012-09-14 13:33:53 -04001456
1457 if (!Mount_By_Path("/data", true))
1458 return false;
1459
bigbiff bigbiff9c754052013-01-09 09:09:08 -05001460 dir.push_back("/data/dalvik-cache");
bigbiff bigbiff19874f12019-01-08 20:06:57 -05001461
bigbiff25d25b92020-06-19 16:07:38 -04001462 std::string cacheDir = TWFunc::get_log_dir();
1463 if (cacheDir == CACHE_LOGS_DIR) {
1464 if (!PartitionManager.Mount_By_Path(CACHE_LOGS_DIR, false)) {
1465 LOGINFO("Unable to mount %s for wiping cache.\n", CACHE_LOGS_DIR);
bigbiff bigbiff19874f12019-01-08 20:06:57 -05001466 }
1467 dir.push_back(cacheDir + "dalvik-cache");
1468 dir.push_back(cacheDir + "/dc");
bigbiff bigbiff9c754052013-01-09 09:09:08 -05001469 }
Ethan Yonkerff2b7882016-12-10 09:04:41 -06001470
Dees_Troy38bd7602012-09-14 13:33:53 -04001471 TWPartition* sdext = Find_Partition_By_Path("/sd-ext");
Vojtech Bocekfafb0c52013-07-25 22:53:02 +02001472 if (sdext && sdext->Is_Present && sdext->Mount(false))
1473 {
1474 if (stat("/sd-ext/dalvik-cache", &st) == 0)
1475 {
Ethan Yonkerff2b7882016-12-10 09:04:41 -06001476 dir.push_back("/sd-ext/dalvik-cache");
1477 }
1478 }
1479
bigbiff25d25b92020-06-19 16:07:38 -04001480 if (cacheDir == CACHE_LOGS_DIR) {
bigbiff bigbiff19874f12019-01-08 20:06:57 -05001481 gui_msg("wiping_cache_dalvik=Wiping Dalvik Cache Directories...");
1482 } else {
1483 gui_msg("wiping_dalvik=Wiping Dalvik Directory...");
1484 }
Ethan Yonkerff2b7882016-12-10 09:04:41 -06001485 for (unsigned i = 0; i < dir.size(); ++i) {
1486 if (stat(dir.at(i).c_str(), &st) == 0) {
1487 TWFunc::removeDir(dir.at(i), false);
1488 gui_msg(Msg("cleaned=Cleaned: {1}...")(dir.at(i)));
bigbiff bigbiff9c754052013-01-09 09:09:08 -05001489 }
Vojtech Bocekfafb0c52013-07-25 22:53:02 +02001490 }
bigbiff bigbiff19874f12019-01-08 20:06:57 -05001491
bigbiff25d25b92020-06-19 16:07:38 -04001492 if (cacheDir == CACHE_LOGS_DIR) {
bigbiff bigbiff19874f12019-01-08 20:06:57 -05001493 gui_msg("cache_dalvik_done=-- Dalvik Cache Directories Wipe Complete!");
1494 } else {
1495 gui_msg("dalvik_done=-- Dalvik Directory Wipe Complete!");
1496 }
1497
Dees_Troy38bd7602012-09-14 13:33:53 -04001498 return true;
1499}
1500
1501int TWPartitionManager::Wipe_Rotate_Data(void) {
1502 if (!Mount_By_Path("/data", true))
1503 return false;
1504
bigbiff bigbiff9c754052013-01-09 09:09:08 -05001505 unlink("/data/misc/akmd*");
1506 unlink("/data/misc/rild*");
Dees_Troy2673cec2013-04-02 20:22:16 +00001507 gui_print("Rotation data wiped.\n");
Dees_Troy38bd7602012-09-14 13:33:53 -04001508 return true;
1509}
1510
1511int TWPartitionManager::Wipe_Battery_Stats(void) {
1512 struct stat st;
1513
1514 if (!Mount_By_Path("/data", true))
1515 return false;
1516
1517 if (0 != stat("/data/system/batterystats.bin", &st)) {
Dees_Troy2673cec2013-04-02 20:22:16 +00001518 gui_print("No Battery Stats Found. No Need To Wipe.\n");
Dees_Troy38bd7602012-09-14 13:33:53 -04001519 } else {
1520 remove("/data/system/batterystats.bin");
Dees_Troy2673cec2013-04-02 20:22:16 +00001521 gui_print("Cleared battery stats.\n");
Dees_Troy38bd7602012-09-14 13:33:53 -04001522 }
1523 return true;
1524}
1525
Dees_Troy2ff5a8d2012-09-26 14:53:02 -04001526int TWPartitionManager::Wipe_Android_Secure(void) {
1527 std::vector<TWPartition*>::iterator iter;
1528 int ret = false;
1529 bool found = false;
1530
1531 // Iterate through all partitions
1532 for (iter = Partitions.begin(); iter != Partitions.end(); iter++) {
1533 if ((*iter)->Has_Android_Secure) {
1534 ret = (*iter)->Wipe_AndSec();
1535 found = true;
1536 }
1537 }
1538 if (found) {
1539 return ret;
1540 } else {
Ethan Yonker74db1572015-10-28 12:44:49 -05001541 gui_err("no_andsec=No android secure partitions found.");
Dees_Troy2ff5a8d2012-09-26 14:53:02 -04001542 }
1543 return false;
1544}
1545
Dees_Troy38bd7602012-09-14 13:33:53 -04001546int TWPartitionManager::Format_Data(void) {
1547 TWPartition* dat = Find_Partition_By_Path("/data");
1548
1549 if (dat != NULL) {
Dees_Troy38bd7602012-09-14 13:33:53 -04001550 return dat->Wipe_Encryption();
1551 } else {
Matt Mower3c366972015-12-25 19:28:31 -06001552 gui_msg(Msg(msg::kError, "unable_to_locate=Unable to locate {1}.")("/data"));
Dees_Troy38bd7602012-09-14 13:33:53 -04001553 return false;
1554 }
1555 return false;
1556}
1557
1558int TWPartitionManager::Wipe_Media_From_Data(void) {
1559 TWPartition* dat = Find_Partition_By_Path("/data");
1560
1561 if (dat != NULL) {
1562 if (!dat->Has_Data_Media) {
Dees_Troy2673cec2013-04-02 20:22:16 +00001563 LOGERR("This device does not have /data/media\n");
Dees_Troy38bd7602012-09-14 13:33:53 -04001564 return false;
1565 }
1566 if (!dat->Mount(true))
1567 return false;
1568
Ethan Yonker74db1572015-10-28 12:44:49 -05001569 gui_msg("wiping_datamedia=Wiping internal storage -- /data/media...");
Ethan Yonker726a0202014-12-16 20:01:38 -06001570 Remove_MTP_Storage(dat->MTP_Storage_ID);
bigbiff bigbiff9c754052013-01-09 09:09:08 -05001571 TWFunc::removeDir("/data/media", false);
xiaolu9416f4f2015-06-04 08:22:23 +08001572 dat->Recreate_Media_Folder();
Ethan Yonker726a0202014-12-16 20:01:38 -06001573 Add_MTP_Storage(dat->MTP_Storage_ID);
Dees_Troy38bd7602012-09-14 13:33:53 -04001574 return true;
1575 } else {
Matt Mower3c366972015-12-25 19:28:31 -06001576 gui_msg(Msg(msg::kError, "unable_to_locate=Unable to locate {1}.")("/data"));
Dees_Troy38bd7602012-09-14 13:33:53 -04001577 return false;
1578 }
1579 return false;
1580}
1581
Ethan Yonker87c7bac2014-05-25 21:41:08 -05001582int TWPartitionManager::Repair_By_Path(string Path, bool Display_Error) {
1583 std::vector<TWPartition*>::iterator iter;
1584 int ret = false;
1585 bool found = false;
1586 string Local_Path = TWFunc::Get_Root_Path(Path);
1587
1588 if (Local_Path == "/tmp" || Local_Path == "/")
1589 return true;
1590
1591 // Iterate through all partitions
1592 for (iter = Partitions.begin(); iter != Partitions.end(); iter++) {
1593 if ((*iter)->Mount_Point == Local_Path || (!(*iter)->Symlink_Mount_Point.empty() && (*iter)->Symlink_Mount_Point == Local_Path)) {
1594 ret = (*iter)->Repair();
1595 found = true;
1596 } else if ((*iter)->Is_SubPartition && (*iter)->SubPartition_Of == Local_Path) {
1597 (*iter)->Repair();
1598 }
1599 }
1600 if (found) {
1601 return ret;
1602 } else if (Display_Error) {
Ethan Yonker74db1572015-10-28 12:44:49 -05001603 gui_msg(Msg(msg::kError, "unable_find_part_path=Unable to find partition for path '{1}'")(Local_Path));
Ethan Yonker87c7bac2014-05-25 21:41:08 -05001604 } else {
1605 LOGINFO("Repair: Unable to find partition for path '%s'\n", Local_Path.c_str());
1606 }
1607 return false;
1608}
1609
Ethan Yonkera2719152015-05-28 09:44:41 -05001610int TWPartitionManager::Resize_By_Path(string Path, bool Display_Error) {
1611 std::vector<TWPartition*>::iterator iter;
1612 int ret = false;
1613 bool found = false;
1614 string Local_Path = TWFunc::Get_Root_Path(Path);
1615
1616 if (Local_Path == "/tmp" || Local_Path == "/")
1617 return true;
1618
1619 // Iterate through all partitions
1620 for (iter = Partitions.begin(); iter != Partitions.end(); iter++) {
1621 if ((*iter)->Mount_Point == Local_Path || (!(*iter)->Symlink_Mount_Point.empty() && (*iter)->Symlink_Mount_Point == Local_Path)) {
1622 ret = (*iter)->Resize();
1623 found = true;
1624 } else if ((*iter)->Is_SubPartition && (*iter)->SubPartition_Of == Local_Path) {
1625 (*iter)->Resize();
1626 }
1627 }
1628 if (found) {
1629 return ret;
1630 } else if (Display_Error) {
Ethan Yonker74db1572015-10-28 12:44:49 -05001631 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 -05001632 } else {
1633 LOGINFO("Resize: Unable to find partition for path '%s'\n", Local_Path.c_str());
1634 }
1635 return false;
1636}
1637
Dees_Troy51a0e822012-09-05 15:24:24 -04001638void TWPartitionManager::Update_System_Details(void) {
Dees_Troy5bf43922012-09-07 16:07:55 -04001639 std::vector<TWPartition*>::iterator iter;
Dees_Troy51127312012-09-08 13:08:49 -04001640 int data_size = 0;
Dees_Troy5bf43922012-09-07 16:07:55 -04001641
Ethan Yonker74db1572015-10-28 12:44:49 -05001642 gui_msg("update_part_details=Updating partition details...");
Dees_Troy5bf43922012-09-07 16:07:55 -04001643 for (iter = Partitions.begin(); iter != Partitions.end(); iter++) {
Ethan Yonker1b190162016-12-05 15:25:19 -06001644 (*iter)->Update_Size(true);
Dees_Troy51127312012-09-08 13:08:49 -04001645 if ((*iter)->Can_Be_Mounted) {
Captain Throwback9d6feb52018-07-27 10:05:24 -04001646 if ((*iter)->Mount_Point == Get_Android_Root_Path()) {
Dees_Troy51127312012-09-08 13:08:49 -04001647 int backup_display_size = (int)((*iter)->Backup_Size / 1048576LLU);
1648 DataManager::SetValue(TW_BACKUP_SYSTEM_SIZE, backup_display_size);
Ethan Yonker76bbd3a2019-05-10 10:50:04 -05001649 TWFunc::Is_TWRP_App_In_System();
Dees_Troy51127312012-09-08 13:08:49 -04001650 } else if ((*iter)->Mount_Point == "/data" || (*iter)->Mount_Point == "/datadata") {
1651 data_size += (int)((*iter)->Backup_Size / 1048576LLU);
1652 } else if ((*iter)->Mount_Point == "/cache") {
1653 int backup_display_size = (int)((*iter)->Backup_Size / 1048576LLU);
1654 DataManager::SetValue(TW_BACKUP_CACHE_SIZE, backup_display_size);
1655 } else if ((*iter)->Mount_Point == "/sd-ext") {
1656 int backup_display_size = (int)((*iter)->Backup_Size / 1048576LLU);
1657 DataManager::SetValue(TW_BACKUP_SDEXT_SIZE, backup_display_size);
1658 if ((*iter)->Backup_Size == 0) {
1659 DataManager::SetValue(TW_HAS_SDEXT_PARTITION, 0);
1660 DataManager::SetValue(TW_BACKUP_SDEXT_VAR, 0);
1661 } else
1662 DataManager::SetValue(TW_HAS_SDEXT_PARTITION, 1);
Dees_Troye58d5262012-09-21 12:27:57 -04001663 } else if ((*iter)->Has_Android_Secure) {
Dees_Troy8170a922012-09-18 15:40:25 -04001664 int backup_display_size = (int)((*iter)->Backup_Size / 1048576LLU);
Dees_Troye58d5262012-09-21 12:27:57 -04001665 DataManager::SetValue(TW_BACKUP_ANDSEC_SIZE, backup_display_size);
Dees_Troy8170a922012-09-18 15:40:25 -04001666 if ((*iter)->Backup_Size == 0) {
1667 DataManager::SetValue(TW_HAS_ANDROID_SECURE, 0);
1668 DataManager::SetValue(TW_BACKUP_ANDSEC_VAR, 0);
1669 } else
1670 DataManager::SetValue(TW_HAS_ANDROID_SECURE, 1);
Dees_Troy2c50e182012-09-26 20:05:28 -04001671 } else if ((*iter)->Mount_Point == "/boot") {
1672 int backup_display_size = (int)((*iter)->Backup_Size / 1048576LLU);
1673 DataManager::SetValue(TW_BACKUP_BOOT_SIZE, backup_display_size);
1674 if ((*iter)->Backup_Size == 0) {
1675 DataManager::SetValue("tw_has_boot_partition", 0);
1676 DataManager::SetValue(TW_BACKUP_BOOT_VAR, 0);
1677 } else
1678 DataManager::SetValue("tw_has_boot_partition", 1);
Dees_Troy51127312012-09-08 13:08:49 -04001679 }
Dees_Troyaa9cc402012-10-13 12:14:05 -04001680 } else {
1681 // Handle unmountable partitions in case we reset defaults
1682 if ((*iter)->Mount_Point == "/boot") {
1683 int backup_display_size = (int)((*iter)->Backup_Size / 1048576LLU);
1684 DataManager::SetValue(TW_BACKUP_BOOT_SIZE, backup_display_size);
1685 if ((*iter)->Backup_Size == 0) {
1686 DataManager::SetValue(TW_HAS_BOOT_PARTITION, 0);
1687 DataManager::SetValue(TW_BACKUP_BOOT_VAR, 0);
1688 } else
1689 DataManager::SetValue(TW_HAS_BOOT_PARTITION, 1);
1690 } else if ((*iter)->Mount_Point == "/recovery") {
1691 int backup_display_size = (int)((*iter)->Backup_Size / 1048576LLU);
1692 DataManager::SetValue(TW_BACKUP_RECOVERY_SIZE, backup_display_size);
1693 if ((*iter)->Backup_Size == 0) {
1694 DataManager::SetValue(TW_HAS_RECOVERY_PARTITION, 0);
1695 DataManager::SetValue(TW_BACKUP_RECOVERY_VAR, 0);
1696 } else
1697 DataManager::SetValue(TW_HAS_RECOVERY_PARTITION, 1);
Gary Peck82599a82012-11-21 16:23:12 -08001698 } else if ((*iter)->Mount_Point == "/data") {
1699 data_size += (int)((*iter)->Backup_Size / 1048576LLU);
Dees_Troyaa9cc402012-10-13 12:14:05 -04001700 }
Dees_Troy51127312012-09-08 13:08:49 -04001701 }
Dees_Troy5bf43922012-09-07 16:07:55 -04001702 }
Ethan Yonker74db1572015-10-28 12:44:49 -05001703 gui_msg("update_part_details_done=...done");
Dees_Troy51127312012-09-08 13:08:49 -04001704 DataManager::SetValue(TW_BACKUP_DATA_SIZE, data_size);
1705 string current_storage_path = DataManager::GetCurrentStoragePath();
1706 TWPartition* FreeStorage = Find_Partition_By_Path(current_storage_path);
Dees_Troy8170a922012-09-18 15:40:25 -04001707 if (FreeStorage != NULL) {
1708 // Attempt to mount storage
bigbiff25d25b92020-06-19 16:07:38 -04001709 if (!FreeStorage->Mount(false)) {
1710 gui_msg(Msg(msg::kWarning, "unable_to_mount_storage=Unable to mount storage"));
1711 DataManager::SetValue(TW_STORAGE_FREE_SIZE, 0);
1712 } else {
1713 DataManager::SetValue(TW_STORAGE_FREE_SIZE, (int)(FreeStorage->Free / 1048576LLU));
Dees_Troy8170a922012-09-18 15:40:25 -04001714 }
1715 } else {
Dees_Troy2673cec2013-04-02 20:22:16 +00001716 LOGINFO("Unable to find storage partition '%s'.\n", current_storage_path.c_str());
Dees_Troy8170a922012-09-18 15:40:25 -04001717 }
Dees_Troy5bf43922012-09-07 16:07:55 -04001718 if (!Write_Fstab())
Dees_Troy2673cec2013-04-02 20:22:16 +00001719 LOGERR("Error creating fstab\n");
Dees_Troy51a0e822012-09-05 15:24:24 -04001720 return;
1721}
1722
Ethan Yonkerbd7492d2016-12-07 13:55:01 -06001723void TWPartitionManager::Post_Decrypt(const string& Block_Device) {
1724 TWPartition* dat = Find_Partition_By_Path("/data");
bigbiffc2cb3852020-09-11 14:03:31 -04001725
Ethan Yonkerbd7492d2016-12-07 13:55:01 -06001726 if (dat != NULL) {
1727 DataManager::SetValue(TW_IS_DECRYPTED, 1);
1728 dat->Is_Decrypted = true;
1729 if (!Block_Device.empty()) {
1730 dat->Decrypted_Block_Device = Block_Device;
1731 gui_msg(Msg("decrypt_success_dev=Data successfully decrypted, new block device: '{1}'")(Block_Device));
1732 } else {
1733 gui_msg("decrypt_success_nodev=Data successfully decrypted");
1734 }
1735 dat->Setup_File_System(false);
bigbiffadc599e2020-05-28 19:36:30 +00001736 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 -06001737
bigbiffadc599e2020-05-28 19:36:30 +00001738 // Sleep for a bit so that the device will be ready
1739 sleep(1);
Ethan Yonkerbd7492d2016-12-07 13:55:01 -06001740 if (dat->Has_Data_Media && dat->Mount(false) && TWFunc::Path_Exists("/data/media/0")) {
1741 dat->Storage_Path = "/data/media/0";
1742 dat->Symlink_Path = dat->Storage_Path;
1743 DataManager::SetValue("tw_storage_path", "/data/media/0");
1744 DataManager::SetValue("tw_settings_path", "/data/media/0");
1745 dat->UnMount(false);
Ethan Yonkerbd7492d2016-12-07 13:55:01 -06001746 }
1747 Update_System_Details();
nkk71ffb02bd2017-06-04 23:12:16 +03001748 Output_Partition(dat);
Ethan Yonkerbd7492d2016-12-07 13:55:01 -06001749 UnMount_Main_Partitions();
1750 } else
1751 LOGERR("Unable to locate data partition.\n");
1752}
1753
bigbiffadc599e2020-05-28 19:36:30 +00001754int TWPartitionManager::Decrypt_Device(string Password) {
Dees_Troy5bf43922012-09-07 16:07:55 -04001755#ifdef TW_INCLUDE_CRYPTO
Ethan Yonkerddb63e22017-01-19 14:01:57 -06001756 char crypto_state[PROPERTY_VALUE_MAX], crypto_blkdev[PROPERTY_VALUE_MAX];
Ethan Yonker253368a2014-11-25 15:00:52 -06001757 std::vector<TWPartition*>::iterator iter;
Dees_Troy5bf43922012-09-07 16:07:55 -04001758
Ethan Yonker253368a2014-11-25 15:00:52 -06001759 // Mount any partitions that need to be mounted for decrypt
1760 for (iter = Partitions.begin(); iter != Partitions.end(); iter++) {
1761 if ((*iter)->Mount_To_Decrypt) {
1762 (*iter)->Mount(true);
1763 }
a39552696ff55ce2013-01-08 16:14:56 +00001764 }
oshmouna82a7542018-04-10 17:45:55 +02001765 property_set("twrp.mount_to_decrypt", "1");
a39552696ff55ce2013-01-08 16:14:56 +00001766
Ethan Yonkera1de1492015-11-04 11:58:27 -06001767 property_get("ro.crypto.state", crypto_state, "error");
1768 if (strcmp(crypto_state, "error") == 0) {
1769 property_set("ro.crypto.state", "encrypted");
1770 // Sleep for a bit so that services can start if needed
1771 sleep(1);
1772 }
1773
Ethan Yonkerbd7492d2016-12-07 13:55:01 -06001774 if (DataManager::GetIntValue(TW_IS_FBE)) {
1775#ifdef TW_INCLUDE_FBE
1776 if (!Mount_By_Path("/data", true)) // /data has to be mounted for FBE
1777 return -1;
1778 int retry_count = 10;
1779 while (!TWFunc::Path_Exists("/data/system/users/gatekeeper.password.key") && --retry_count)
bigbiffadc599e2020-05-28 19:36:30 +00001780 usleep(2000); // A small sleep is needed after mounting /data to ensure reliable decrypt... maybe because of DE?
1781 int user_id = DataManager::GetIntValue("tw_decrypt_user_id");
1782 LOGINFO("Decrypting FBE for user %i\n", user_id);
Ethan Yonkerbd7492d2016-12-07 13:55:01 -06001783 if (Decrypt_User(user_id, Password)) {
bigbiffadc599e2020-05-28 19:36:30 +00001784 Post_Decrypt("");
Ethan Yonkerbd7492d2016-12-07 13:55:01 -06001785 return 0;
1786 }
1787#else
1788 LOGERR("FBE support is not present\n");
1789#endif
1790 return -1;
1791 }
1792
Ethan Yonkerddb63e22017-01-19 14:01:57 -06001793 int pwret = -1;
1794 pid_t pid = fork();
1795 if (pid < 0) {
1796 LOGERR("fork failed\n");
1797 return -1;
1798 } else if (pid == 0) {
1799 // Child process
1800 char cPassword[255];
1801 strcpy(cPassword, Password.c_str());
1802 int ret = cryptfs_check_passwd(cPassword);
1803 exit(ret);
1804 } else {
1805 // Parent
1806 int status;
1807 if (TWFunc::Wait_For_Child_Timeout(pid, &status, "Decrypt", 30))
1808 pwret = -1;
1809 else
1810 pwret = WEXITSTATUS(status) ? -1 : 0;
1811 }
a39552696ff55ce2013-01-08 16:14:56 +00001812
nkk7171c6c502017-01-05 23:55:05 +02001813#ifdef TW_CRYPTO_USE_SYSTEM_VOLD
1814 if (pwret != 0) {
1815 pwret = vold_decrypt(Password);
nkk717d1222a2017-11-06 17:27:21 +02001816 switch (pwret) {
1817 case VD_SUCCESS:
1818 break;
1819 case VD_ERR_MISSING_VDC:
1820 gui_msg(Msg(msg::kError, "decrypt_data_vold_os_missing=Missing files needed for vold decrypt: {1}")("/system/bin/vdc"));
1821 break;
1822 case VD_ERR_MISSING_VOLD:
1823 gui_msg(Msg(msg::kError, "decrypt_data_vold_os_missing=Missing files needed for vold decrypt: {1}")("/system/bin/vold"));
1824 break;
1825 }
nkk7171c6c502017-01-05 23:55:05 +02001826 }
1827#endif // TW_CRYPTO_USE_SYSTEM_VOLD
1828
Ethan Yonker253368a2014-11-25 15:00:52 -06001829 // Unmount any partitions that were needed for decrypt
1830 for (iter = Partitions.begin(); iter != Partitions.end(); iter++) {
1831 if ((*iter)->Mount_To_Decrypt) {
1832 (*iter)->UnMount(false);
1833 }
1834 }
oshmouna82a7542018-04-10 17:45:55 +02001835 property_set("twrp.mount_to_decrypt", "0");
Ethan Yonker253368a2014-11-25 15:00:52 -06001836
a39552696ff55ce2013-01-08 16:14:56 +00001837 if (pwret != 0) {
Ethan Yonker74db1572015-10-28 12:44:49 -05001838 gui_err("fail_decrypt=Failed to decrypt data.");
Dees_Troy5bf43922012-09-07 16:07:55 -04001839 return -1;
1840 }
a39552696ff55ce2013-01-08 16:14:56 +00001841
Dees_Troy5bf43922012-09-07 16:07:55 -04001842 property_get("ro.crypto.fs_crypto_blkdev", crypto_blkdev, "error");
1843 if (strcmp(crypto_blkdev, "error") == 0) {
Dees_Troy2673cec2013-04-02 20:22:16 +00001844 LOGERR("Error retrieving decrypted data block device.\n");
Dees_Troy5bf43922012-09-07 16:07:55 -04001845 } else {
Ethan Yonkerbd7492d2016-12-07 13:55:01 -06001846 Post_Decrypt(crypto_blkdev);
Dees_Troy5bf43922012-09-07 16:07:55 -04001847 }
1848 return 0;
1849#else
Ethan Yonker74db1572015-10-28 12:44:49 -05001850 gui_err("no_crypto_support=No crypto support was compiled into this build.");
Dees_Troy5bf43922012-09-07 16:07:55 -04001851 return -1;
1852#endif
Dees_Troy51a0e822012-09-05 15:24:24 -04001853 return 1;
Dees_Troy51127312012-09-08 13:08:49 -04001854}
1855
Ethan Yonkerb5fab762016-01-28 14:03:33 -06001856int TWPartitionManager::Fix_Contexts(void) {
Ethan Yonkerb5fab762016-01-28 14:03:33 -06001857 std::vector<TWPartition*>::iterator iter;
1858 for (iter = Partitions.begin(); iter != Partitions.end(); iter++) {
1859 if ((*iter)->Has_Data_Media) {
1860 if ((*iter)->Mount(true)) {
1861 if (fixContexts::fixDataMediaContexts((*iter)->Mount_Point) != 0)
1862 return -1;
1863 }
1864 }
1865 }
Dees_Troy1a650e62012-10-19 20:54:32 -04001866 UnMount_Main_Partitions();
Ethan Yonker74db1572015-10-28 12:44:49 -05001867 gui_msg("done=Done.");
Ethan Yonkerb5fab762016-01-28 14:03:33 -06001868 return 0;
bigbiff bigbiffa0f8a592012-10-09 21:01:03 -04001869}
1870
Ethan Yonker66a19492015-12-10 10:19:45 -06001871TWPartition* TWPartitionManager::Find_Next_Storage(string Path, bool Exclude_Data_Media) {
Ethan Yonker47360be2014-04-01 10:34:34 -05001872 std::vector<TWPartition*>::iterator iter = Partitions.begin();
1873
1874 if (!Path.empty()) {
1875 string Search_Path = TWFunc::Get_Root_Path(Path);
1876 for (; iter != Partitions.end(); iter++) {
Matt Mower9a561dd2016-02-22 21:25:51 -06001877 if ((*iter)->Mount_Point == Search_Path) {
Ethan Yonker47360be2014-04-01 10:34:34 -05001878 iter++;
1879 break;
1880 }
1881 }
1882 }
1883
1884 for (; iter != Partitions.end(); iter++) {
Ethan Yonker66a19492015-12-10 10:19:45 -06001885 if (Exclude_Data_Media && (*iter)->Has_Data_Media) {
1886 // do nothing, do not return this type of partition
1887 } else if ((*iter)->Is_Storage && (*iter)->Is_Present) {
Ethan Yonker47360be2014-04-01 10:34:34 -05001888 return (*iter);
1889 }
1890 }
1891
1892 return NULL;
1893}
1894
Dees_Troyd21618c2012-10-14 18:48:49 -04001895int TWPartitionManager::Open_Lun_File(string Partition_Path, string Lun_File) {
Dees_Troyd21618c2012-10-14 18:48:49 -04001896 TWPartition* Part = Find_Partition_By_Path(Partition_Path);
1897
1898 if (Part == NULL) {
Ethan Yonker74db1572015-10-28 12:44:49 -05001899 LOGINFO("Unable to locate '%s' for USB storage mode.", Partition_Path.c_str());
1900 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 -04001901 return false;
1902 }
Ethan Yonker47360be2014-04-01 10:34:34 -05001903 LOGINFO("USB mount '%s', '%s' > '%s'\n", Partition_Path.c_str(), Part->Actual_Block_Device.c_str(), Lun_File.c_str());
1904 if (!Part->UnMount(true) || !Part->Is_Present)
Dees_Troyd21618c2012-10-14 18:48:49 -04001905 return false;
1906
Ethan Yonker6e8c27a2016-12-22 17:55:57 -06001907 if (TWFunc::write_to_file(Lun_File, Part->Actual_Block_Device)) {
Dees_Troy2673cec2013-04-02 20:22:16 +00001908 LOGERR("Unable to write to ums lunfile '%s': (%s)\n", Lun_File.c_str(), strerror(errno));
Dees_Troyd21618c2012-10-14 18:48:49 -04001909 return false;
1910 }
Dees_Troyd21618c2012-10-14 18:48:49 -04001911 return true;
1912}
1913
Dees_Troy8170a922012-09-18 15:40:25 -04001914int TWPartitionManager::usb_storage_enable(void) {
Dees_Troy8170a922012-09-18 15:40:25 -04001915 char lun_file[255];
Dees_Troyd21618c2012-10-14 18:48:49 -04001916 bool has_multiple_lun = false;
Dees_Troy8170a922012-09-18 15:40:25 -04001917
Ethan Yonker47360be2014-04-01 10:34:34 -05001918 string Lun_File_str = CUSTOM_LUN_FILE;
1919 size_t found = Lun_File_str.find("%");
1920 if (found != string::npos) {
1921 sprintf(lun_file, CUSTOM_LUN_FILE, 1);
1922 if (TWFunc::Path_Exists(lun_file))
1923 has_multiple_lun = true;
1924 }
Ethan Yonker726a0202014-12-16 20:01:38 -06001925 mtp_was_enabled = TWFunc::Toggle_MTP(false); // Must disable MTP for USB Storage
Ethan Yonker47360be2014-04-01 10:34:34 -05001926 if (!has_multiple_lun) {
1927 LOGINFO("Device doesn't have multiple lun files, mount current storage\n");
1928 sprintf(lun_file, CUSTOM_LUN_FILE, 0);
1929 if (TWFunc::Get_Root_Path(DataManager::GetCurrentStoragePath()) == "/data") {
Ethan Yonker66a19492015-12-10 10:19:45 -06001930 TWPartition* Mount = Find_Next_Storage("", true);
Ethan Yonker47360be2014-04-01 10:34:34 -05001931 if (Mount) {
bigbiff bigbiffc7eee6f2014-09-02 18:59:01 -04001932 if (!Open_Lun_File(Mount->Mount_Point, lun_file)) {
1933 goto error_handle;
1934 }
Ethan Yonker47360be2014-04-01 10:34:34 -05001935 } else {
Ethan Yonker74db1572015-10-28 12:44:49 -05001936 gui_err("unable_locate_storage=Unable to locate storage device.");
bigbiff bigbiffc7eee6f2014-09-02 18:59:01 -04001937 goto error_handle;
Ethan Yonker47360be2014-04-01 10:34:34 -05001938 }
1939 } else if (!Open_Lun_File(DataManager::GetCurrentStoragePath(), lun_file)) {
bigbiff bigbiffc7eee6f2014-09-02 18:59:01 -04001940 goto error_handle;
Dees_Troy8170a922012-09-18 15:40:25 -04001941 }
Dees_Troy8170a922012-09-18 15:40:25 -04001942 } else {
Ethan Yonker47360be2014-04-01 10:34:34 -05001943 LOGINFO("Device has multiple lun files\n");
1944 TWPartition* Mount1;
1945 TWPartition* Mount2;
Dees_Troy8170a922012-09-18 15:40:25 -04001946 sprintf(lun_file, CUSTOM_LUN_FILE, 0);
Ethan Yonker66a19492015-12-10 10:19:45 -06001947 Mount1 = Find_Next_Storage("", true);
Ethan Yonker47360be2014-04-01 10:34:34 -05001948 if (Mount1) {
bigbiff bigbiffc7eee6f2014-09-02 18:59:01 -04001949 if (!Open_Lun_File(Mount1->Mount_Point, lun_file)) {
1950 goto error_handle;
1951 }
Matt Moweree717062014-04-26 01:46:46 -05001952 sprintf(lun_file, CUSTOM_LUN_FILE, 1);
Ethan Yonker66a19492015-12-10 10:19:45 -06001953 Mount2 = Find_Next_Storage(Mount1->Mount_Point, true);
Matt Mower1fdcdb72016-01-25 20:53:47 -06001954 if (Mount2 && Mount2->Mount_Point != Mount1->Mount_Point) {
Matt Moweree717062014-04-26 01:46:46 -05001955 Open_Lun_File(Mount2->Mount_Point, lun_file);
Ethan Yonker47360be2014-04-01 10:34:34 -05001956 }
1957 } else {
Ethan Yonker74db1572015-10-28 12:44:49 -05001958 gui_err("unable_locate_storage=Unable to locate storage device.");
bigbiff bigbiffc7eee6f2014-09-02 18:59:01 -04001959 goto error_handle;
Ethan Yonker47360be2014-04-01 10:34:34 -05001960 }
Dees_Troy8170a922012-09-18 15:40:25 -04001961 }
Matt Mowerb6ef4782014-11-06 02:24:36 -06001962 property_set("sys.storage.ums_enabled", "1");
HandyMenny37d42992014-10-26 22:15:59 +01001963 property_set("sys.usb.config", "mass_storage,adb");
Dees_Troy8170a922012-09-18 15:40:25 -04001964 return true;
bigbiff bigbiffc7eee6f2014-09-02 18:59:01 -04001965error_handle:
1966 if (mtp_was_enabled)
1967 if (!Enable_MTP())
1968 Disable_MTP();
1969 return false;
Dees_Troy8170a922012-09-18 15:40:25 -04001970}
1971
1972int TWPartitionManager::usb_storage_disable(void) {
Dees_Troy2673cec2013-04-02 20:22:16 +00001973 int index, ret;
1974 char lun_file[255], ch[2] = {0, 0};
1975 string str = ch;
Dees_Troy8170a922012-09-18 15:40:25 -04001976
1977 for (index=0; index<2; index++) {
1978 sprintf(lun_file, CUSTOM_LUN_FILE, index);
Ethan Yonker6e8c27a2016-12-22 17:55:57 -06001979 ret = TWFunc::write_to_file(lun_file, str);
Dees_Troy2673cec2013-04-02 20:22:16 +00001980 if (ret < 0) {
1981 break;
Dees_Troy8170a922012-09-18 15:40:25 -04001982 }
Dees_Troy8170a922012-09-18 15:40:25 -04001983 }
Dees_Troye58d5262012-09-21 12:27:57 -04001984 Mount_All_Storage();
1985 Update_System_Details();
Dees_Troycfd73ef2012-10-12 16:52:00 -04001986 UnMount_Main_Partitions();
Matt Mowerd9cb9062013-12-14 20:34:45 -06001987 property_set("sys.storage.ums_enabled", "0");
HandyMenny37d42992014-10-26 22:15:59 +01001988 property_set("sys.usb.config", "adb");
bigbiff bigbiffc7eee6f2014-09-02 18:59:01 -04001989 if (mtp_was_enabled)
1990 if (!Enable_MTP())
1991 Disable_MTP();
Dees_Troy2673cec2013-04-02 20:22:16 +00001992 if (ret < 0 && index == 0) {
1993 LOGERR("Unable to write to ums lunfile '%s'.", lun_file);
1994 return false;
1995 } else {
1996 return true;
1997 }
Dees_Troy8170a922012-09-18 15:40:25 -04001998 return true;
Dees_Troy812660f2012-09-20 09:55:17 -04001999}
2000
2001void TWPartitionManager::Mount_All_Storage(void) {
2002 std::vector<TWPartition*>::iterator iter;
2003
2004 for (iter = Partitions.begin(); iter != Partitions.end(); iter++) {
2005 if ((*iter)->Is_Storage)
2006 (*iter)->Mount(false);
2007 }
Dees_Troy2c50e182012-09-26 20:05:28 -04002008}
Dees_Troy9350b8d2012-09-27 12:38:38 -04002009
Dees_Troyd0384ef2012-10-12 12:15:42 -04002010void TWPartitionManager::UnMount_Main_Partitions(void) {
2011 // Unmounts system and data if data is not data/media
2012 // Also unmounts boot if boot is mountable
Dees_Troy2673cec2013-04-02 20:22:16 +00002013 LOGINFO("Unmounting main partitions...\n");
Dees_Troyd0384ef2012-10-12 12:15:42 -04002014
Mohd Faraze3948ec2020-08-14 01:40:59 +00002015 TWPartition *Partition = Find_Partition_By_Path ("/vendor");
Dees_Troyd0384ef2012-10-12 12:15:42 -04002016
Mohd Faraze3948ec2020-08-14 01:40:59 +00002017 if (Partition != NULL) UnMount_By_Path("/vendor", false);
2018 UnMount_By_Path (Get_Android_Root_Path(), true);
2019 Partition = Find_Partition_By_Path ("/product");
2020 if (Partition != NULL) UnMount_By_Path("/product", false);
Ethan Yonker6277c792014-09-15 14:54:30 -05002021 if (!datamedia)
2022 UnMount_By_Path("/data", true);
2023
Mohd Faraze3948ec2020-08-14 01:40:59 +00002024 Partition = Find_Partition_By_Path ("/boot");
2025 if (Partition != NULL && Partition->Can_Be_Mounted)
2026 Partition->UnMount(true);
Dees_Troyd0384ef2012-10-12 12:15:42 -04002027}
2028
Dees_Troy9350b8d2012-09-27 12:38:38 -04002029int TWPartitionManager::Partition_SDCard(void) {
Matt Mower23d8aae2017-01-06 14:30:33 -06002030 char temp[255];
Ethan Yonker483e9f42016-01-11 22:21:18 -06002031 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 -04002032 int ext, swap, total_size = 0, fat_size;
Dees_Troy9350b8d2012-09-27 12:38:38 -04002033
Ethan Yonker74db1572015-10-28 12:44:49 -05002034 gui_msg("start_partition_sd=Partitioning SD Card...");
Ethan Yonker483e9f42016-01-11 22:21:18 -06002035
2036 // Locate and validate device to partition
2037 TWPartition* SDCard = Find_Partition_By_Path(DataManager::GetCurrentStoragePath());
2038
Ethan Yonker66a19492015-12-10 10:19:45 -06002039 if (SDCard->Is_Adopted_Storage)
2040 SDCard->Revert_Adopted();
2041
Ethan Yonker1eff6cd2014-09-15 13:30:42 -05002042 if (SDCard == NULL || !SDCard->Removable || SDCard->Has_Data_Media) {
Ethan Yonker74db1572015-10-28 12:44:49 -05002043 gui_err("partition_sd_locate=Unable to locate device to partition.");
Dees_Troy9350b8d2012-09-27 12:38:38 -04002044 return false;
2045 }
Ethan Yonker483e9f42016-01-11 22:21:18 -06002046
2047 // Unmount everything
Dees_Troy9350b8d2012-09-27 12:38:38 -04002048 if (!SDCard->UnMount(true))
2049 return false;
2050 TWPartition* SDext = Find_Partition_By_Path("/sd-ext");
2051 if (SDext != NULL) {
2052 if (!SDext->UnMount(true))
2053 return false;
2054 }
Ethan Yonker483e9f42016-01-11 22:21:18 -06002055 char* swappath = getenv("SWAPPATH");
2056 if (swappath != NULL) {
2057 LOGINFO("Unmounting swap at '%s'\n", swappath);
2058 umount(swappath);
2059 }
Vojtech Bocek05534202013-09-11 08:11:56 +02002060
Ethan Yonker483e9f42016-01-11 22:21:18 -06002061 // Determine block device
2062 if (SDCard->Alternate_Block_Device.empty()) {
2063 SDCard->Find_Actual_Block_Device();
2064 Device = SDCard->Actual_Block_Device;
2065 // Just use the root block device
2066 Device.resize(strlen("/dev/block/mmcblkX"));
2067 } else {
2068 Device = SDCard->Alternate_Block_Device;
2069 }
Dees_Troy9350b8d2012-09-27 12:38:38 -04002070
2071 // Find the size of the block device:
Ethan Yonker483e9f42016-01-11 22:21:18 -06002072 total_size = (int)(TWFunc::IOCTL_Get_Block_Size(Device.c_str()) / (1048576));
Dees_Troy9350b8d2012-09-27 12:38:38 -04002073
2074 DataManager::GetValue("tw_sdext_size", ext);
2075 DataManager::GetValue("tw_swap_size", swap);
2076 DataManager::GetValue("tw_sdpart_file_system", ext_format);
2077 fat_size = total_size - ext - swap;
Ethan Yonker483e9f42016-01-11 22:21:18 -06002078 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);
2079
2080 // Determine partition sizes
2081 if (swap == 0 && ext == 0) {
2082 fat_str = "-0";
2083 } else {
2084 memset(temp, 0, sizeof(temp));
2085 sprintf(temp, "%i", fat_size);
2086 fat_str = temp;
2087 fat_str += "MB";
2088 }
2089 if (swap == 0) {
2090 ext_str = "-0";
2091 } else {
2092 memset(temp, 0, sizeof(temp));
2093 sprintf(temp, "%i", ext);
2094 ext_str = "+";
2095 ext_str += temp;
2096 ext_str += "MB";
2097 }
2098
Dees_Troy9350b8d2012-09-27 12:38:38 -04002099 if (ext + swap > total_size) {
Ethan Yonker74db1572015-10-28 12:44:49 -05002100 gui_err("ext_swap_size=EXT + Swap size is larger than sdcard size.");
Dees_Troy9350b8d2012-09-27 12:38:38 -04002101 return false;
2102 }
Ethan Yonker483e9f42016-01-11 22:21:18 -06002103
Ethan Yonker74db1572015-10-28 12:44:49 -05002104 gui_msg("remove_part_table=Removing partition table...");
Ethan Yonker483e9f42016-01-11 22:21:18 -06002105 Command = "sgdisk --zap-all " + Device;
Dees_Troy2673cec2013-04-02 20:22:16 +00002106 LOGINFO("Command is: '%s'\n", Command.c_str());
Vojtech Bocek05534202013-09-11 08:11:56 +02002107 if (TWFunc::Exec_Cmd(Command) != 0) {
Ethan Yonker74db1572015-10-28 12:44:49 -05002108 gui_err("unable_rm_part=Unable to remove partition table.");
Dees_Troy9350b8d2012-09-27 12:38:38 -04002109 Update_System_Details();
2110 return false;
2111 }
Ethan Yonker74db1572015-10-28 12:44:49 -05002112 gui_msg(Msg("create_part=Creating {1} partition...")("FAT32"));
Captain Throwback9643a802016-05-27 11:44:51 -04002113 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 +00002114 LOGINFO("Command is: '%s'\n", Command.c_str());
Vojtech Bocek05534202013-09-11 08:11:56 +02002115 if (TWFunc::Exec_Cmd(Command) != 0) {
Ethan Yonker74db1572015-10-28 12:44:49 -05002116 gui_msg(Msg(msg::kError, "unable_to_create_part=Unable to create {1} partition.")("FAT32"));
Dees_Troy9350b8d2012-09-27 12:38:38 -04002117 return false;
2118 }
2119 if (ext > 0) {
Ethan Yonker74db1572015-10-28 12:44:49 -05002120 gui_msg(Msg("create_part=Creating {1} partition...")("EXT"));
Ethan Yonker483e9f42016-01-11 22:21:18 -06002121 Command = "sgdisk --new=0:0:" + ext_str + " --change-name=0:\"Linux filesystem\" " + Device;
Dees_Troy2673cec2013-04-02 20:22:16 +00002122 LOGINFO("Command is: '%s'\n", Command.c_str());
Vojtech Bocek05534202013-09-11 08:11:56 +02002123 if (TWFunc::Exec_Cmd(Command) != 0) {
Ethan Yonker74db1572015-10-28 12:44:49 -05002124 gui_msg(Msg(msg::kError, "unable_to_create_part=Unable to create {1} partition.")("EXT"));
Dees_Troy9350b8d2012-09-27 12:38:38 -04002125 Update_System_Details();
2126 return false;
2127 }
2128 }
2129 if (swap > 0) {
Ethan Yonker74db1572015-10-28 12:44:49 -05002130 gui_msg(Msg("create_part=Creating {1} partition...")("swap"));
Ethan Yonker483e9f42016-01-11 22:21:18 -06002131 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 +00002132 LOGINFO("Command is: '%s'\n", Command.c_str());
Vojtech Bocek05534202013-09-11 08:11:56 +02002133 if (TWFunc::Exec_Cmd(Command) != 0) {
Ethan Yonker74db1572015-10-28 12:44:49 -05002134 gui_msg(Msg(msg::kError, "unable_to_create_part=Unable to create {1} partition.")("swap"));
Dees_Troy9350b8d2012-09-27 12:38:38 -04002135 Update_System_Details();
2136 return false;
2137 }
2138 }
Ethan Yonker483e9f42016-01-11 22:21:18 -06002139
2140 // Convert GPT to MBR
2141 Command = "sgdisk --gpttombr " + Device;
2142 if (TWFunc::Exec_Cmd(Command) != 0)
2143 LOGINFO("Failed to covert partition GPT to MBR\n");
2144
2145 // Tell the kernel to rescan the partition table
2146 int fd = open(Device.c_str(), O_RDONLY);
2147 ioctl(fd, BLKRRPART, 0);
2148 close(fd);
2149
2150 string format_device = Device;
2151 if (Device.substr(0, 17) == "/dev/block/mmcblk")
2152 format_device += "p";
2153
2154 // Format new partitions to proper file system
2155 if (fat_size > 0) {
2156 Command = "mkfs.fat " + format_device + "1";
2157 TWFunc::Exec_Cmd(Command);
2158 }
Dees_Troy9350b8d2012-09-27 12:38:38 -04002159 if (ext > 0) {
2160 if (SDext == NULL) {
Ethan Yonker483e9f42016-01-11 22:21:18 -06002161 Command = "mke2fs -t " + ext_format + " -m 0 " + format_device + "2";
2162 gui_msg(Msg("format_sdext_as=Formatting sd-ext as {1}...")(ext_format));
2163 LOGINFO("Formatting sd-ext after partitioning, command: '%s'\n", Command.c_str());
2164 TWFunc::Exec_Cmd(Command);
2165 } else {
2166 SDext->Wipe(ext_format);
Dees_Troy9350b8d2012-09-27 12:38:38 -04002167 }
Ethan Yonker483e9f42016-01-11 22:21:18 -06002168 }
2169 if (swap > 0) {
2170 Command = "mkswap " + format_device;
2171 if (ext > 0)
2172 Command += "3";
2173 else
2174 Command += "2";
Vojtech Bocek05534202013-09-11 08:11:56 +02002175 TWFunc::Exec_Cmd(Command);
Dees_Troy9350b8d2012-09-27 12:38:38 -04002176 }
2177
Ethan Yonker483e9f42016-01-11 22:21:18 -06002178 // recreate TWRP folder and rewrite settings - these will be gone after sdcard is partitioned
2179 if (SDCard->Mount(true)) {
2180 string TWRP_Folder = SDCard->Mount_Point + "/TWRP";
2181 mkdir(TWRP_Folder.c_str(), 0777);
2182 DataManager::Flush();
2183 }
2184
Dees_Troy9350b8d2012-09-27 12:38:38 -04002185 Update_System_Details();
Ethan Yonker74db1572015-10-28 12:44:49 -05002186 gui_msg("part_complete=Partitioning complete.");
Dees_Troy9350b8d2012-09-27 12:38:38 -04002187 return true;
bigbiff bigbiffa0f8a592012-10-09 21:01:03 -04002188}
Dees_Troya13d74f2013-03-24 08:54:55 -05002189
2190void TWPartitionManager::Get_Partition_List(string ListType, std::vector<PartitionList> *Partition_List) {
2191 std::vector<TWPartition*>::iterator iter;
2192 if (ListType == "mount") {
2193 for (iter = Partitions.begin(); iter != Partitions.end(); iter++) {
Ethan Yonker6e8c27a2016-12-22 17:55:57 -06002194 if ((*iter)->Can_Be_Mounted) {
Dees_Troya13d74f2013-03-24 08:54:55 -05002195 struct PartitionList part;
2196 part.Display_Name = (*iter)->Display_Name;
2197 part.Mount_Point = (*iter)->Mount_Point;
2198 part.selected = (*iter)->Is_Mounted();
2199 Partition_List->push_back(part);
2200 }
2201 }
2202 } else if (ListType == "storage") {
2203 char free_space[255];
2204 string Current_Storage = DataManager::GetCurrentStoragePath();
2205 for (iter = Partitions.begin(); iter != Partitions.end(); iter++) {
2206 if ((*iter)->Is_Storage) {
2207 struct PartitionList part;
2208 sprintf(free_space, "%llu", (*iter)->Free / 1024 / 1024);
2209 part.Display_Name = (*iter)->Storage_Name + " (";
2210 part.Display_Name += free_space;
2211 part.Display_Name += "MB)";
2212 part.Mount_Point = (*iter)->Storage_Path;
2213 if ((*iter)->Storage_Path == Current_Storage)
2214 part.selected = 1;
2215 else
2216 part.selected = 0;
2217 Partition_List->push_back(part);
2218 }
2219 }
2220 } else if (ListType == "backup") {
2221 char backup_size[255];
Dees_Troy9e0b71c2013-04-08 13:35:37 +00002222 unsigned long long Backup_Size;
Dees_Troya13d74f2013-03-24 08:54:55 -05002223 for (iter = Partitions.begin(); iter != Partitions.end(); iter++) {
Dees_Troy9e0b71c2013-04-08 13:35:37 +00002224 if ((*iter)->Can_Be_Backed_Up && !(*iter)->Is_SubPartition && (*iter)->Is_Present) {
Dees_Troya13d74f2013-03-24 08:54:55 -05002225 struct PartitionList part;
Dees_Troy9e0b71c2013-04-08 13:35:37 +00002226 Backup_Size = (*iter)->Backup_Size;
2227 if ((*iter)->Has_SubPartition) {
2228 std::vector<TWPartition*>::iterator subpart;
2229
2230 for (subpart = Partitions.begin(); subpart != Partitions.end(); subpart++) {
2231 if ((*subpart)->Is_SubPartition && (*subpart)->Can_Be_Backed_Up && (*subpart)->Is_Present && (*subpart)->SubPartition_Of == (*iter)->Mount_Point)
2232 Backup_Size += (*subpart)->Backup_Size;
2233 }
2234 }
2235 sprintf(backup_size, "%llu", Backup_Size / 1024 / 1024);
Dees_Troya13d74f2013-03-24 08:54:55 -05002236 part.Display_Name = (*iter)->Backup_Display_Name + " (";
2237 part.Display_Name += backup_size;
2238 part.Display_Name += "MB)";
2239 part.Mount_Point = (*iter)->Backup_Path;
2240 part.selected = 0;
2241 Partition_List->push_back(part);
2242 }
2243 }
2244 } else if (ListType == "restore") {
2245 string Restore_List, restore_path;
2246 TWPartition* restore_part = NULL;
2247
2248 DataManager::GetValue("tw_restore_list", Restore_List);
2249 if (!Restore_List.empty()) {
2250 size_t start_pos = 0, end_pos = Restore_List.find(";", start_pos);
2251 while (end_pos != string::npos && start_pos < Restore_List.size()) {
2252 restore_path = Restore_List.substr(start_pos, end_pos - start_pos);
bigbiff bigbiff19fb79c2016-09-05 21:04:51 -04002253 struct PartitionList part;
2254 if (restore_path.compare("ADB_Backup") == 0) {
2255 part.Display_Name = "ADB Backup";
2256 part.Mount_Point = "ADB Backup";
2257 part.selected = 1;
2258 Partition_List->push_back(part);
2259 break;
2260 }
Dees_Troy59df9262013-06-19 14:53:57 -05002261 if ((restore_part = Find_Partition_By_Path(restore_path)) != NULL) {
Dees Troy4159aed2014-02-28 17:24:43 +00002262 if ((restore_part->Backup_Name == "recovery" && !restore_part->Can_Be_Backed_Up) || restore_part->Is_SubPartition) {
Dees_Troya13d74f2013-03-24 08:54:55 -05002263 // Don't allow restore of recovery (causes problems on some devices)
Dees_Troy59df9262013-06-19 14:53:57 -05002264 // Don't add subpartitions to the list of items
Dees_Troya13d74f2013-03-24 08:54:55 -05002265 } else {
Dees_Troya13d74f2013-03-24 08:54:55 -05002266 part.Display_Name = restore_part->Backup_Display_Name;
2267 part.Mount_Point = restore_part->Backup_Path;
2268 part.selected = 1;
2269 Partition_List->push_back(part);
2270 }
2271 } else {
Ethan Yonker74db1572015-10-28 12:44:49 -05002272 gui_msg(Msg(msg::kError, "restore_unable_locate=Unable to locate '{1}' partition for restoring.")(restore_path));
Dees_Troya13d74f2013-03-24 08:54:55 -05002273 }
2274 start_pos = end_pos + 1;
2275 end_pos = Restore_List.find(";", start_pos);
2276 }
2277 }
2278 } else if (ListType == "wipe") {
2279 struct PartitionList dalvik;
Ethan Yonker74db1572015-10-28 12:44:49 -05002280 dalvik.Display_Name = gui_parse_text("{@dalvik}");
Dees_Troya13d74f2013-03-24 08:54:55 -05002281 dalvik.Mount_Point = "DALVIK";
2282 dalvik.selected = 0;
2283 Partition_List->push_back(dalvik);
2284 for (iter = Partitions.begin(); iter != Partitions.end(); iter++) {
2285 if ((*iter)->Wipe_Available_in_GUI && !(*iter)->Is_SubPartition) {
2286 struct PartitionList part;
2287 part.Display_Name = (*iter)->Display_Name;
2288 part.Mount_Point = (*iter)->Mount_Point;
2289 part.selected = 0;
2290 Partition_List->push_back(part);
2291 }
2292 if ((*iter)->Has_Android_Secure) {
2293 struct PartitionList part;
2294 part.Display_Name = (*iter)->Backup_Display_Name;
2295 part.Mount_Point = (*iter)->Backup_Path;
2296 part.selected = 0;
2297 Partition_List->push_back(part);
2298 }
Dees_Troy74fb2e92013-04-15 14:35:47 +00002299 if ((*iter)->Has_Data_Media) {
2300 struct PartitionList datamedia;
2301 datamedia.Display_Name = (*iter)->Storage_Name;
2302 datamedia.Mount_Point = "INTERNAL";
2303 datamedia.selected = 0;
2304 Partition_List->push_back(datamedia);
2305 }
Dees_Troya13d74f2013-03-24 08:54:55 -05002306 }
Ethan Yonker96af84a2015-01-05 14:58:36 -06002307 } else if (ListType == "flashimg") {
2308 for (iter = Partitions.begin(); iter != Partitions.end(); iter++) {
2309 if ((*iter)->Can_Flash_Img && (*iter)->Is_Present) {
2310 struct PartitionList part;
2311 part.Display_Name = (*iter)->Backup_Display_Name;
2312 part.Mount_Point = (*iter)->Backup_Path;
2313 part.selected = 0;
2314 Partition_List->push_back(part);
2315 }
2316 }
Ethan Yonker53796e72019-01-11 22:49:52 -06002317 if (DataManager::GetIntValue("tw_has_repack_tools") != 0 && DataManager::GetIntValue("tw_has_boot_slots") != 0) {
2318 TWPartition* boot = Find_Partition_By_Path("/boot");
2319 if (boot) {
2320 // Allow flashing kernels and ramdisks
2321 struct PartitionList repack_ramdisk;
2322 repack_ramdisk.Display_Name = gui_lookup("install_twrp_ramdisk", "Install Recovery Ramdisk");
2323 repack_ramdisk.Mount_Point = "/repack_ramdisk";
2324 repack_ramdisk.selected = 0;
2325 Partition_List->push_back(repack_ramdisk);
2326 /*struct PartitionList repack_kernel; For now let's leave repacking kernels under advanced only
2327 repack_kernel.Display_Name = gui_lookup("install_kernel", "Install Kernel");
2328 repack_kernel.Mount_Point = "/repack_kernel";
2329 repack_kernel.selected = 0;
2330 Partition_List->push_back(repack_kernel);*/
2331 }
2332 }
Dees_Troya13d74f2013-03-24 08:54:55 -05002333 } else {
Dees_Troy2673cec2013-04-02 20:22:16 +00002334 LOGERR("Unknown list type '%s' requested for TWPartitionManager::Get_Partition_List\n", ListType.c_str());
Dees_Troya13d74f2013-03-24 08:54:55 -05002335 }
2336}
2337
2338int TWPartitionManager::Fstab_Processed(void) {
2339 return Partitions.size();
2340}
Dees_Troyd93bda52013-07-03 19:55:19 +00002341
2342void TWPartitionManager::Output_Storage_Fstab(void) {
2343 std::vector<TWPartition*>::iterator iter;
2344 char storage_partition[255];
bigbiff bigbiffe4bdb152019-03-23 18:33:17 -04002345 std::string Temp;
bigbiff25d25b92020-06-19 16:07:38 -04002346 std::string cacheDir = TWFunc::get_log_dir();
bigbiff bigbiffe4bdb152019-03-23 18:33:17 -04002347
2348 if (cacheDir.empty()) {
2349 LOGINFO("Unable to find cache directory\n");
2350 return;
2351 }
bigbiff bigbiff19874f12019-01-08 20:06:57 -05002352
bigbiff25d25b92020-06-19 16:07:38 -04002353 std::string storageFstab = TWFunc::get_log_dir() + "recovery/storage.fstab";
bigbiff bigbiff19874f12019-01-08 20:06:57 -05002354 FILE *fp = fopen(storageFstab.c_str(), "w");
Dees_Troyd93bda52013-07-03 19:55:19 +00002355
2356 if (fp == NULL) {
bigbiff bigbiff19874f12019-01-08 20:06:57 -05002357 gui_msg(Msg(msg::kError, "unable_to_open=Unable to open '{1}'.")(storageFstab));
Dees_Troyd93bda52013-07-03 19:55:19 +00002358 return;
2359 }
2360
2361 // Iterate through all partitions
2362 for (iter = Partitions.begin(); iter != Partitions.end(); iter++) {
2363 if ((*iter)->Is_Storage) {
2364 Temp = (*iter)->Storage_Path + ";" + (*iter)->Storage_Name + ";\n";
2365 strcpy(storage_partition, Temp.c_str());
2366 fwrite(storage_partition, sizeof(storage_partition[0]), strlen(storage_partition) / sizeof(storage_partition[0]), fp);
2367 }
2368 }
2369 fclose(fp);
Vojtech Bocekfafb0c52013-07-25 22:53:02 +02002370}
Vojtech Bocek93cb1ef2014-05-12 15:41:52 +02002371
2372TWPartition *TWPartitionManager::Get_Default_Storage_Partition()
2373{
2374 TWPartition *res = NULL;
2375 for (std::vector<TWPartition*>::iterator iter = Partitions.begin(); iter != Partitions.end(); ++iter) {
Matt Mowera8a89d12016-12-30 18:10:37 -06002376 if (!(*iter)->Is_Storage)
Vojtech Bocek93cb1ef2014-05-12 15:41:52 +02002377 continue;
2378
Matt Mowera8a89d12016-12-30 18:10:37 -06002379 if ((*iter)->Is_Settings_Storage)
Vojtech Bocek93cb1ef2014-05-12 15:41:52 +02002380 return *iter;
2381
Matt Mowera8a89d12016-12-30 18:10:37 -06002382 if (!res)
Vojtech Bocek93cb1ef2014-05-12 15:41:52 +02002383 res = *iter;
2384 }
2385 return res;
2386}
bigbiff bigbiffc7eee6f2014-09-02 18:59:01 -04002387
2388bool TWPartitionManager::Enable_MTP(void) {
2389#ifdef TW_HAS_MTP
Ethan Yonker8dfa7772014-09-04 21:48:41 -05002390 if (mtppid) {
Ethan Yonker74db1572015-10-28 12:44:49 -05002391 gui_err("mtp_already_enabled=MTP already enabled");
bigbiff bigbiffc7eee6f2014-09-02 18:59:01 -04002392 return true;
2393 }
Ethan Yonker726a0202014-12-16 20:01:38 -06002394
2395 int mtppipe[2];
2396
2397 if (pipe(mtppipe) < 0) {
2398 LOGERR("Error creating MTP pipe\n");
2399 return false;
2400 }
2401
Ethan Yonkerdf7abac2014-12-29 10:48:17 -06002402 char old_value[PROPERTY_VALUE_MAX];
Matt Mowere07f0102017-02-23 17:40:00 -06002403 property_get("sys.usb.config", old_value, "");
2404 if (strcmp(old_value, "mtp,adb") != 0) {
Ethan Yonkerdf7abac2014-12-29 10:48:17 -06002405 char vendor[PROPERTY_VALUE_MAX];
2406 char product[PROPERTY_VALUE_MAX];
2407 property_set("sys.usb.config", "none");
2408 property_get("usb.vendor", vendor, "18D1");
2409 property_get("usb.product.mtpadb", product, "4EE2");
2410 string vendorstr = vendor;
2411 string productstr = product;
Ethan Yonker6e8c27a2016-12-22 17:55:57 -06002412 TWFunc::write_to_file("/sys/class/android_usb/android0/idVendor", vendorstr);
2413 TWFunc::write_to_file("/sys/class/android_usb/android0/idProduct", productstr);
Ethan Yonkerdf7abac2014-12-29 10:48:17 -06002414 property_set("sys.usb.config", "mtp,adb");
2415 }
Matt Mower653a1702017-02-16 10:38:52 -06002416 /* To enable MTP debug, use the twrp command line feature:
Ethan Yonker6d154c42014-09-03 14:19:43 -05002417 * twrp set tw_mtp_debug 1
2418 */
2419 twrpMtp *mtp = new twrpMtp(DataManager::GetIntValue("tw_mtp_debug"));
Ethan Yonker1b039202015-01-30 10:08:48 -06002420 mtppid = mtp->forkserver(mtppipe);
2421 if (mtppid) {
2422 close(mtppipe[0]); // Host closes read side
2423 mtp_write_fd = mtppipe[1];
2424 DataManager::SetValue("tw_mtp_enabled", 1);
2425 Add_All_MTP_Storage();
2426 return true;
Ethan Yonker726a0202014-12-16 20:01:38 -06002427 } else {
2428 close(mtppipe[0]);
2429 close(mtppipe[1]);
Ethan Yonker74db1572015-10-28 12:44:49 -05002430 gui_err("mtp_fail=Failed to enable MTP");
Ethan Yonker1b039202015-01-30 10:08:48 -06002431 return false;
bigbiff bigbiffc7eee6f2014-09-02 18:59:01 -04002432 }
bigbiff bigbiffc7eee6f2014-09-02 18:59:01 -04002433#else
Ethan Yonker74db1572015-10-28 12:44:49 -05002434 gui_err("no_mtp=MTP support not included");
bigbiff bigbiffc7eee6f2014-09-02 18:59:01 -04002435#endif
2436 DataManager::SetValue("tw_mtp_enabled", 0);
2437 return false;
2438}
2439
Ethan Yonker1b039202015-01-30 10:08:48 -06002440void TWPartitionManager::Add_All_MTP_Storage(void) {
2441#ifdef TW_HAS_MTP
2442 std::vector<TWPartition*>::iterator iter;
2443
2444 if (!mtppid)
2445 return; // MTP is not enabled
2446
2447 for (iter = Partitions.begin(); iter != Partitions.end(); iter++) {
2448 if ((*iter)->Is_Storage && (*iter)->Is_Present && (*iter)->Mount(false))
2449 Add_Remove_MTP_Storage((*iter), MTP_MESSAGE_ADD_STORAGE);
2450 }
2451#else
2452 return;
2453#endif
2454}
2455
bigbiff bigbiffc7eee6f2014-09-02 18:59:01 -04002456bool TWPartitionManager::Disable_MTP(void) {
Ethan Yonkerdf7abac2014-12-29 10:48:17 -06002457 char old_value[PROPERTY_VALUE_MAX];
bigbiff bigbiffaf32bb92018-12-18 18:39:53 -05002458 property_set("sys.usb.ffs.mtp.ready", "0");
Matt Mowere07f0102017-02-23 17:40:00 -06002459 property_get("sys.usb.config", old_value, "");
Ethan Yonkerdf7abac2014-12-29 10:48:17 -06002460 if (strcmp(old_value, "adb") != 0) {
2461 char vendor[PROPERTY_VALUE_MAX];
2462 char product[PROPERTY_VALUE_MAX];
2463 property_set("sys.usb.config", "none");
2464 property_get("usb.vendor", vendor, "18D1");
Matt Mowere07f0102017-02-23 17:40:00 -06002465 property_get("usb.product.adb", product, "D001");
Ethan Yonkerdf7abac2014-12-29 10:48:17 -06002466 string vendorstr = vendor;
2467 string productstr = product;
Ethan Yonker6e8c27a2016-12-22 17:55:57 -06002468 TWFunc::write_to_file("/sys/class/android_usb/android0/idVendor", vendorstr);
2469 TWFunc::write_to_file("/sys/class/android_usb/android0/idProduct", productstr);
Ethan Yonkerdf7abac2014-12-29 10:48:17 -06002470 usleep(2000);
2471 }
bigbiff bigbiffc7eee6f2014-09-02 18:59:01 -04002472#ifdef TW_HAS_MTP
Ethan Yonker8dfa7772014-09-04 21:48:41 -05002473 if (mtppid) {
Ethan Yonker8613dc02014-09-11 09:28:20 -05002474 LOGINFO("Disabling MTP\n");
2475 int status;
2476 kill(mtppid, SIGKILL);
Ethan Yonker8dfa7772014-09-04 21:48:41 -05002477 mtppid = 0;
Ethan Yonker8613dc02014-09-11 09:28:20 -05002478 // We don't care about the exit value, but this prevents a zombie process
2479 waitpid(mtppid, &status, 0);
Ethan Yonker726a0202014-12-16 20:01:38 -06002480 close(mtp_write_fd);
2481 mtp_write_fd = -1;
bigbiff bigbiffc7eee6f2014-09-02 18:59:01 -04002482 }
Ethan Yonkerdf7abac2014-12-29 10:48:17 -06002483#endif
bigbiff bigbiffc7eee6f2014-09-02 18:59:01 -04002484 property_set("sys.usb.config", "adb");
Ethan Yonkerdf7abac2014-12-29 10:48:17 -06002485#ifdef TW_HAS_MTP
bigbiff bigbiffc7eee6f2014-09-02 18:59:01 -04002486 DataManager::SetValue("tw_mtp_enabled", 0);
2487 return true;
bigbiff bigbiffc7eee6f2014-09-02 18:59:01 -04002488#endif
Ethan Yonkerdf7abac2014-12-29 10:48:17 -06002489 return false;
bigbiff bigbiffc7eee6f2014-09-02 18:59:01 -04002490}
Ethan Yonker726a0202014-12-16 20:01:38 -06002491
2492TWPartition* TWPartitionManager::Find_Partition_By_MTP_Storage_ID(unsigned int Storage_ID) {
2493 std::vector<TWPartition*>::iterator iter;
2494
2495 for (iter = Partitions.begin(); iter != Partitions.end(); iter++) {
2496 if ((*iter)->MTP_Storage_ID == Storage_ID)
2497 return (*iter);
2498 }
2499 return NULL;
2500}
2501
2502bool TWPartitionManager::Add_Remove_MTP_Storage(TWPartition* Part, int message_type) {
2503#ifdef TW_HAS_MTP
2504 struct mtpmsg mtp_message;
2505
2506 if (!mtppid)
2507 return false; // MTP is disabled
2508
2509 if (mtp_write_fd < 0) {
Ethan Yonkerd9ff3c52015-01-21 21:51:20 -06002510 LOGINFO("MTP: mtp_write_fd is not set\n");
Ethan Yonker726a0202014-12-16 20:01:38 -06002511 return false;
2512 }
2513
2514 if (Part) {
Ethan Yonker4bfabab2014-12-29 09:15:37 -06002515 if (Part->MTP_Storage_ID == 0)
2516 return false;
Ethan Yonker726a0202014-12-16 20:01:38 -06002517 if (message_type == MTP_MESSAGE_REMOVE_STORAGE) {
2518 mtp_message.message_type = MTP_MESSAGE_REMOVE_STORAGE; // Remove
2519 LOGINFO("sending message to remove %i\n", Part->MTP_Storage_ID);
2520 mtp_message.storage_id = Part->MTP_Storage_ID;
2521 if (write(mtp_write_fd, &mtp_message, sizeof(mtp_message)) <= 0) {
Ethan Yonkerd9ff3c52015-01-21 21:51:20 -06002522 LOGINFO("error sending message to remove storage %i\n", Part->MTP_Storage_ID);
Ethan Yonker726a0202014-12-16 20:01:38 -06002523 return false;
2524 } else {
2525 LOGINFO("Message sent, remove storage ID: %i\n", Part->MTP_Storage_ID);
2526 return true;
2527 }
2528 } else if (message_type == MTP_MESSAGE_ADD_STORAGE && Part->Is_Mounted()) {
2529 mtp_message.message_type = MTP_MESSAGE_ADD_STORAGE; // Add
2530 mtp_message.storage_id = Part->MTP_Storage_ID;
Ethan Yonker6e8c27a2016-12-22 17:55:57 -06002531 if (Part->Storage_Path.size() >= sizeof(mtp_message.path)) {
2532 LOGERR("Storage path '%s' too large for mtpmsg\n", Part->Storage_Path.c_str());
2533 return false;
2534 }
2535 strcpy(mtp_message.path, Part->Storage_Path.c_str());
2536 if (Part->Storage_Name.size() >= sizeof(mtp_message.display)) {
2537 LOGERR("Storage name '%s' too large for mtpmsg\n", Part->Storage_Name.c_str());
2538 return false;
2539 }
2540 strcpy(mtp_message.display, Part->Storage_Name.c_str());
Ethan Yonker726a0202014-12-16 20:01:38 -06002541 mtp_message.maxFileSize = Part->Get_Max_FileSize();
Ethan Yonker1b039202015-01-30 10:08:48 -06002542 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 -06002543 if (write(mtp_write_fd, &mtp_message, sizeof(mtp_message)) <= 0) {
Ethan Yonkerd9ff3c52015-01-21 21:51:20 -06002544 LOGINFO("error sending message to add storage %i\n", Part->MTP_Storage_ID);
Ethan Yonker726a0202014-12-16 20:01:38 -06002545 return false;
2546 } else {
Ethan Yonker6e8c27a2016-12-22 17:55:57 -06002547 LOGINFO("Message sent, add storage ID: %i '%s'\n", Part->MTP_Storage_ID, mtp_message.path);
Ethan Yonker726a0202014-12-16 20:01:38 -06002548 return true;
2549 }
2550 } else {
2551 LOGERR("Unknown MTP message type: %i\n", message_type);
2552 }
2553 } else {
2554 // This hopefully never happens as the error handling should
2555 // occur in the calling function.
Ethan Yonkerd9ff3c52015-01-21 21:51:20 -06002556 LOGINFO("TWPartitionManager::Add_Remove_MTP_Storage NULL partition given\n");
Ethan Yonker726a0202014-12-16 20:01:38 -06002557 }
2558 return true;
2559#else
Ethan Yonker74db1572015-10-28 12:44:49 -05002560 gui_err("no_mtp=MTP support not included");
Ethan Yonker726a0202014-12-16 20:01:38 -06002561 DataManager::SetValue("tw_mtp_enabled", 0);
2562 return false;
2563#endif
2564}
2565
2566bool TWPartitionManager::Add_MTP_Storage(string Mount_Point) {
2567#ifdef TW_HAS_MTP
2568 TWPartition* Part = PartitionManager.Find_Partition_By_Path(Mount_Point);
2569 if (Part) {
2570 return PartitionManager.Add_Remove_MTP_Storage(Part, MTP_MESSAGE_ADD_STORAGE);
2571 } else {
Ethan Yonkerd9ff3c52015-01-21 21:51:20 -06002572 LOGINFO("TWFunc::Add_MTP_Storage unable to locate partition for '%s'\n", Mount_Point.c_str());
Ethan Yonker726a0202014-12-16 20:01:38 -06002573 }
2574#endif
2575 return false;
2576}
2577
2578bool TWPartitionManager::Add_MTP_Storage(unsigned int Storage_ID) {
2579#ifdef TW_HAS_MTP
2580 TWPartition* Part = PartitionManager.Find_Partition_By_MTP_Storage_ID(Storage_ID);
2581 if (Part) {
2582 return PartitionManager.Add_Remove_MTP_Storage(Part, MTP_MESSAGE_ADD_STORAGE);
2583 } else {
Ethan Yonkerd9ff3c52015-01-21 21:51:20 -06002584 LOGINFO("TWFunc::Add_MTP_Storage unable to locate partition for %i\n", Storage_ID);
Ethan Yonker726a0202014-12-16 20:01:38 -06002585 }
2586#endif
2587 return false;
2588}
2589
2590bool TWPartitionManager::Remove_MTP_Storage(string Mount_Point) {
2591#ifdef TW_HAS_MTP
2592 TWPartition* Part = PartitionManager.Find_Partition_By_Path(Mount_Point);
2593 if (Part) {
2594 return PartitionManager.Add_Remove_MTP_Storage(Part, MTP_MESSAGE_REMOVE_STORAGE);
2595 } else {
Ethan Yonkerd9ff3c52015-01-21 21:51:20 -06002596 LOGINFO("TWFunc::Remove_MTP_Storage unable to locate partition for '%s'\n", Mount_Point.c_str());
Ethan Yonker726a0202014-12-16 20:01:38 -06002597 }
2598#endif
2599 return false;
2600}
2601
2602bool TWPartitionManager::Remove_MTP_Storage(unsigned int Storage_ID) {
2603#ifdef TW_HAS_MTP
2604 TWPartition* Part = PartitionManager.Find_Partition_By_MTP_Storage_ID(Storage_ID);
2605 if (Part) {
2606 return PartitionManager.Add_Remove_MTP_Storage(Part, MTP_MESSAGE_REMOVE_STORAGE);
2607 } else {
Ethan Yonkerd9ff3c52015-01-21 21:51:20 -06002608 LOGINFO("TWFunc::Remove_MTP_Storage unable to locate partition for %i\n", Storage_ID);
Ethan Yonker726a0202014-12-16 20:01:38 -06002609 }
2610#endif
2611 return false;
2612}
Ethan Yonker96af84a2015-01-05 14:58:36 -06002613
Ethan Yonkere080c1f2016-09-19 13:50:25 -05002614bool TWPartitionManager::Flash_Image(string& path, string& filename) {
bigbiffad58e1b2020-07-06 20:24:34 -04002615 twrpRepacker repacker;
Matt Mower23d8aae2017-01-06 14:30:33 -06002616 int partition_count = 0;
Ethan Yonker96af84a2015-01-05 14:58:36 -06002617 TWPartition* flash_part = NULL;
bigbiffce8f83c2015-12-12 18:30:21 -05002618 string Flash_List, flash_path, full_filename;
Ethan Yonker96af84a2015-01-05 14:58:36 -06002619 size_t start_pos = 0, end_pos = 0;
2620
Ethan Yonkere080c1f2016-09-19 13:50:25 -05002621 full_filename = path + "/" + filename;
Ethan Yonker96af84a2015-01-05 14:58:36 -06002622
bigbiffce8f83c2015-12-12 18:30:21 -05002623 gui_msg("image_flash_start=[IMAGE FLASH STARTED]");
2624 gui_msg(Msg("img_to_flash=Image to flash: '{1}'")(full_filename));
2625
2626 if (!TWFunc::Path_Exists(full_filename)) {
2627 if (!Mount_By_Path(full_filename, true)) {
Ethan Yonkerb78fbdf2016-01-15 16:46:35 -06002628 return false;
2629 }
bigbiffce8f83c2015-12-12 18:30:21 -05002630 if (!TWFunc::Path_Exists(full_filename)) {
2631 gui_msg(Msg(msg::kError, "unable_to_locate=Unable to locate {1}.")(full_filename));
Ethan Yonkerb78fbdf2016-01-15 16:46:35 -06002632 return false;
2633 }
2634 }
Ethan Yonker96af84a2015-01-05 14:58:36 -06002635
Ethan Yonker53796e72019-01-11 22:49:52 -06002636 DataManager::GetValue("tw_flash_partition", Flash_List);
2637 Repack_Type repack = REPLACE_NONE;
2638 if (Flash_List == "/repack_ramdisk;") {
2639 repack = REPLACE_RAMDISK;
2640 } else if (Flash_List == "/repack_kernel;") {
2641 repack = REPLACE_KERNEL;
2642 }
2643 if (repack != REPLACE_NONE) {
2644 Repack_Options_struct Repack_Options;
2645 Repack_Options.Type = repack;
2646 Repack_Options.Disable_Verity = false;
2647 Repack_Options.Disable_Force_Encrypt = false;
2648 Repack_Options.Backup_First = DataManager::GetIntValue("tw_repack_backup_first") != 0;
bigbiffad58e1b2020-07-06 20:24:34 -04002649 return repacker.Repack_Image_And_Flash(full_filename, Repack_Options);
Ethan Yonker53796e72019-01-11 22:49:52 -06002650 }
Ethan Yonkere080c1f2016-09-19 13:50:25 -05002651 PartitionSettings part_settings;
2652 part_settings.Backup_Folder = path;
2653 unsigned long long total_bytes = TWFunc::Get_File_Size(full_filename);
2654 ProgressTracking progress(total_bytes);
2655 part_settings.progress = &progress;
2656 part_settings.adbbackup = false;
2657 part_settings.PM_Method = PM_RESTORE;
Ethan Yonker74db1572015-10-28 12:44:49 -05002658 gui_msg("calc_restore=Calculating restore details...");
Ethan Yonker96af84a2015-01-05 14:58:36 -06002659 if (!Flash_List.empty()) {
2660 end_pos = Flash_List.find(";", start_pos);
2661 while (end_pos != string::npos && start_pos < Flash_List.size()) {
2662 flash_path = Flash_List.substr(start_pos, end_pos - start_pos);
2663 flash_part = Find_Partition_By_Path(flash_path);
2664 if (flash_part != NULL) {
2665 partition_count++;
2666 if (partition_count > 1) {
Ethan Yonker74db1572015-10-28 12:44:49 -05002667 gui_err("too_many_flash=Too many partitions selected for flashing.");
Ethan Yonker96af84a2015-01-05 14:58:36 -06002668 return false;
2669 }
2670 } else {
Ethan Yonker74db1572015-10-28 12:44:49 -05002671 gui_msg(Msg(msg::kError, "flash_unable_locate=Unable to locate '{1}' partition for flashing.")(flash_path));
Ethan Yonker96af84a2015-01-05 14:58:36 -06002672 return false;
2673 }
2674 start_pos = end_pos + 1;
2675 end_pos = Flash_List.find(";", start_pos);
2676 }
2677 }
2678
2679 if (partition_count == 0) {
Ethan Yonker74db1572015-10-28 12:44:49 -05002680 gui_err("no_part_flash=No partitions selected for flashing.");
Ethan Yonker96af84a2015-01-05 14:58:36 -06002681 return false;
2682 }
2683
2684 DataManager::SetProgress(0.0);
2685 if (flash_part) {
Ethan Yonkere080c1f2016-09-19 13:50:25 -05002686 flash_part->Backup_FileName = filename;
2687 if (!flash_part->Flash_Image(&part_settings))
Ethan Yonker96af84a2015-01-05 14:58:36 -06002688 return false;
2689 } else {
Ethan Yonker74db1572015-10-28 12:44:49 -05002690 gui_err("invalid_flash=Invalid flash partition specified.");
Ethan Yonker96af84a2015-01-05 14:58:36 -06002691 return false;
2692 }
Ethan Yonker74db1572015-10-28 12:44:49 -05002693 gui_highlight("flash_done=IMAGE FLASH COMPLETED]");
Ethan Yonker96af84a2015-01-05 14:58:36 -06002694 return true;
2695}
Ethan Yonker74db1572015-10-28 12:44:49 -05002696
2697void TWPartitionManager::Translate_Partition(const char* path, const char* resource_name, const char* default_value) {
2698 TWPartition* part = PartitionManager.Find_Partition_By_Path(path);
2699 if (part) {
Ethan Yonker66a19492015-12-10 10:19:45 -06002700 if (part->Is_Adopted_Storage) {
2701 part->Display_Name = part->Display_Name + " - " + gui_lookup("data", "Data");
2702 part->Backup_Display_Name = part->Display_Name;
2703 part->Storage_Name = part->Storage_Name + " - " + gui_lookup("adopted_storage", "Adopted Storage");
2704 } else {
2705 part->Display_Name = gui_lookup(resource_name, default_value);
2706 part->Backup_Display_Name = part->Display_Name;
2707 }
Ethan Yonker74db1572015-10-28 12:44:49 -05002708 }
2709}
2710
2711void TWPartitionManager::Translate_Partition(const char* path, const char* resource_name, const char* default_value, const char* storage_resource_name, const char* storage_default_value) {
2712 TWPartition* part = PartitionManager.Find_Partition_By_Path(path);
2713 if (part) {
Ethan Yonker66a19492015-12-10 10:19:45 -06002714 if (part->Is_Adopted_Storage) {
Ethan Yonker01f4e032017-02-03 15:30:52 -06002715 part->Backup_Display_Name = part->Display_Name + " - " + gui_lookup("data_backup", "Data (excl. storage)");
Ethan Yonker66a19492015-12-10 10:19:45 -06002716 part->Display_Name = part->Display_Name + " - " + gui_lookup("data", "Data");
Ethan Yonker66a19492015-12-10 10:19:45 -06002717 part->Storage_Name = part->Storage_Name + " - " + gui_lookup("adopted_storage", "Adopted Storage");
2718 } else {
2719 part->Display_Name = gui_lookup(resource_name, default_value);
2720 part->Backup_Display_Name = part->Display_Name;
2721 if (part->Is_Storage)
2722 part->Storage_Name = gui_lookup(storage_resource_name, storage_default_value);
2723 }
Ethan Yonker74db1572015-10-28 12:44:49 -05002724 }
2725}
2726
Ethan Yonker01f4e032017-02-03 15:30:52 -06002727void 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) {
2728 TWPartition* part = PartitionManager.Find_Partition_By_Path(path);
2729 if (part) {
2730 if (part->Is_Adopted_Storage) {
2731 part->Backup_Display_Name = part->Display_Name + " - " + gui_lookup(backup_name, backup_default);
2732 part->Display_Name = part->Display_Name + " - " + gui_lookup("data", "Data");
2733 part->Storage_Name = part->Storage_Name + " - " + gui_lookup("adopted_storage", "Adopted Storage");
2734 } else {
2735 part->Display_Name = gui_lookup(resource_name, default_value);
2736 part->Backup_Display_Name = gui_lookup(backup_name, backup_default);
2737 if (part->Is_Storage)
2738 part->Storage_Name = gui_lookup(storage_resource_name, storage_default_value);
2739 }
2740 }
2741}
2742
Ethan Yonker74db1572015-10-28 12:44:49 -05002743void TWPartitionManager::Translate_Partition_Display_Names() {
Ethan Yonker66a19492015-12-10 10:19:45 -06002744 LOGINFO("Translating partition display names\n");
Ethan Yonker74db1572015-10-28 12:44:49 -05002745 Translate_Partition("/system", "system", "System");
2746 Translate_Partition("/system_image", "system_image", "System Image");
2747 Translate_Partition("/vendor", "vendor", "Vendor");
2748 Translate_Partition("/vendor_image", "vendor_image", "Vendor Image");
2749 Translate_Partition("/cache", "cache", "Cache");
Ethan Yonker74db1572015-10-28 12:44:49 -05002750 Translate_Partition("/boot", "boot", "Boot");
2751 Translate_Partition("/recovery", "recovery", "Recovery");
2752 if (!datamedia) {
Ethan Yonker01f4e032017-02-03 15:30:52 -06002753 Translate_Partition("/data", "data", "Data", "internal", "Internal Storage");
Ethan Yonker74db1572015-10-28 12:44:49 -05002754 Translate_Partition("/sdcard", "sdcard", "SDCard", "sdcard", "SDCard");
2755 Translate_Partition("/internal_sd", "sdcard", "SDCard", "sdcard", "SDCard");
2756 Translate_Partition("/internal_sdcard", "sdcard", "SDCard", "sdcard", "SDCard");
2757 Translate_Partition("/emmc", "sdcard", "SDCard", "sdcard", "SDCard");
Ethan Yonker01f4e032017-02-03 15:30:52 -06002758 } else {
2759 Translate_Partition("/data", "data", "Data", "internal", "Internal Storage", "data_backup", "Data (excl. storage)");
Ethan Yonker74db1572015-10-28 12:44:49 -05002760 }
Ethan Yonker01f4e032017-02-03 15:30:52 -06002761 Translate_Partition("/external_sd", "microsd", "Micro SDCard", "microsd", "Micro SDCard", "data_backup", "Data (excl. storage)");
2762 Translate_Partition("/external_sdcard", "microsd", "Micro SDCard", "microsd", "Micro SDCard", "data_backup", "Data (excl. storage)");
Ethan Yonker74db1572015-10-28 12:44:49 -05002763 Translate_Partition("/usb-otg", "usbotg", "USB OTG", "usbotg", "USB OTG");
2764 Translate_Partition("/sd-ext", "sdext", "SD-EXT");
2765
2766 // Android secure is a special case
2767 TWPartition* part = PartitionManager.Find_Partition_By_Path("/and-sec");
2768 if (part)
2769 part->Backup_Display_Name = gui_lookup("android_secure", "Android Secure");
2770
Ethan Yonker6e8c27a2016-12-22 17:55:57 -06002771 std::vector<TWPartition*>::iterator sysfs;
2772 for (sysfs = Partitions.begin(); sysfs != Partitions.end(); sysfs++) {
2773 if (!(*sysfs)->Sysfs_Entry.empty()) {
2774 Translate_Partition((*sysfs)->Mount_Point.c_str(), "autostorage", "Storage", "autostorage", "Storage");
2775 }
2776 }
2777
Ethan Yonker74db1572015-10-28 12:44:49 -05002778 // This updates the text on all of the storage selection buttons in the GUI
2779 DataManager::SetBackupFolder();
2780}
Ethan Yonker66a19492015-12-10 10:19:45 -06002781
Ethan Yonker6e8c27a2016-12-22 17:55:57 -06002782bool TWPartitionManager::Decrypt_Adopted() {
Ethan Yonker66a19492015-12-10 10:19:45 -06002783#ifdef TW_INCLUDE_CRYPTO
Ethan Yonker6e8c27a2016-12-22 17:55:57 -06002784 bool ret = false;
Ethan Yonker66a19492015-12-10 10:19:45 -06002785 if (!Mount_By_Path("/data", false)) {
2786 LOGERR("Cannot decrypt adopted storage because /data will not mount\n");
Ethan Yonker6e8c27a2016-12-22 17:55:57 -06002787 return false;
Ethan Yonker66a19492015-12-10 10:19:45 -06002788 }
2789 LOGINFO("Decrypt adopted storage starting\n");
2790 char* xmlFile = PageManager::LoadFileToBuffer("/data/system/storage.xml", NULL);
2791 xml_document<> *doc = NULL;
2792 xml_node<>* volumes = NULL;
Ethan Yonker66a19492015-12-10 10:19:45 -06002793 string Primary_Storage_UUID = "";
2794 if (xmlFile != NULL) {
2795 LOGINFO("successfully loaded storage.xml\n");
2796 doc = new xml_document<>();
2797 doc->parse<0>(xmlFile);
2798 volumes = doc->first_node("volumes");
2799 if (volumes) {
2800 xml_attribute<>* psuuid = volumes->first_attribute("primaryStorageUuid");
2801 if (psuuid) {
2802 Primary_Storage_UUID = psuuid->value();
2803 }
2804 }
Ethan Yonker6e8c27a2016-12-22 17:55:57 -06002805 } else {
2806 LOGINFO("No /data/system/storage.xml for adopted storage\n");
2807 return false;
Ethan Yonker66a19492015-12-10 10:19:45 -06002808 }
2809 std::vector<TWPartition*>::iterator adopt;
2810 for (adopt = Partitions.begin(); adopt != Partitions.end(); adopt++) {
2811 if ((*adopt)->Removable && (*adopt)->Is_Present) {
2812 if ((*adopt)->Decrypt_Adopted() == 0) {
Ethan Yonker6e8c27a2016-12-22 17:55:57 -06002813 ret = true;
Ethan Yonker66a19492015-12-10 10:19:45 -06002814 if (volumes) {
2815 xml_node<>* volume = volumes->first_node("volume");
2816 while (volume) {
2817 xml_attribute<>* guid = volume->first_attribute("partGuid");
2818 if (guid) {
2819 string GUID = (*adopt)->Adopted_GUID.c_str();
2820 GUID.insert(8, "-");
2821 GUID.insert(13, "-");
2822 GUID.insert(18, "-");
2823 GUID.insert(23, "-");
2824
2825 if (strcasecmp(GUID.c_str(), guid->value()) == 0) {
2826 xml_attribute<>* attr = volume->first_attribute("nickname");
nkk71ffb02bd2017-06-04 23:12:16 +03002827 if (attr && attr->value() && strlen(attr->value()) > 0) {
Ethan Yonker66a19492015-12-10 10:19:45 -06002828 (*adopt)->Storage_Name = attr->value();
2829 (*adopt)->Display_Name = (*adopt)->Storage_Name;
2830 (*adopt)->Backup_Display_Name = (*adopt)->Storage_Name;
2831 LOGINFO("storage name from storage.xml is '%s'\n", attr->value());
2832 }
2833 attr = volume->first_attribute("fsUuid");
2834 if (attr && !Primary_Storage_UUID.empty() && strcmp(Primary_Storage_UUID.c_str(), attr->value()) == 0) {
2835 TWPartition* Dat = Find_Partition_By_Path("/data");
2836 if (Dat) {
2837 LOGINFO("Internal storage is found on adopted storage '%s'\n", (*adopt)->Display_Name.c_str());
2838 LOGINFO("Changing '%s' to point to '%s'\n", Dat->Symlink_Mount_Point.c_str(), (*adopt)->Storage_Path.c_str());
2839 (*adopt)->Symlink_Mount_Point = Dat->Symlink_Mount_Point;
2840 Dat->Symlink_Mount_Point = "";
2841 // Toggle mounts to ensure that the symlink mount point (probably /sdcard) is mounted to the right location
2842 Dat->UnMount(false);
2843 Dat->Mount(false);
2844 (*adopt)->UnMount(false);
2845 (*adopt)->Mount(false);
Ethan Yonker66a19492015-12-10 10:19:45 -06002846 }
2847 }
2848 break;
2849 }
2850 }
2851 volume = volume->next_sibling("volume");
2852 }
2853 }
nkk71ffb02bd2017-06-04 23:12:16 +03002854 Update_System_Details();
2855 Output_Partition((*adopt));
Ethan Yonker66a19492015-12-10 10:19:45 -06002856 }
2857 }
2858 }
2859 if (xmlFile) {
2860 doc->clear();
2861 delete doc;
2862 free(xmlFile);
2863 }
Ethan Yonker6e8c27a2016-12-22 17:55:57 -06002864 return ret;
Ethan Yonker66a19492015-12-10 10:19:45 -06002865#else
2866 LOGINFO("Decrypt_Adopted: no crypto support\n");
Ethan Yonker6e8c27a2016-12-22 17:55:57 -06002867 return false;
Ethan Yonker66a19492015-12-10 10:19:45 -06002868#endif
2869}
Ethan Yonkerfcf3f242016-02-16 12:30:26 -06002870
2871void TWPartitionManager::Remove_Partition_By_Path(string Path) {
2872 std::vector<TWPartition*>::iterator iter;
2873 string Local_Path = TWFunc::Get_Root_Path(Path);
2874
2875 for (iter = Partitions.begin(); iter != Partitions.end(); iter++) {
2876 if ((*iter)->Mount_Point == Local_Path || (!(*iter)->Symlink_Mount_Point.empty() && (*iter)->Symlink_Mount_Point == Local_Path)) {
2877 LOGINFO("Found and erasing '%s' from partition list\n", Local_Path.c_str());
2878 Partitions.erase(iter);
2879 return;
2880 }
2881 }
2882}
Ethan Yonker1b190162016-12-05 15:25:19 -06002883
2884void TWPartitionManager::Set_Active_Slot(const string& Slot) {
2885 if (Slot != "A" && Slot != "B") {
2886 LOGERR("Set_Active_Slot invalid slot '%s'\n", Slot.c_str());
2887 return;
2888 }
2889 if (Active_Slot_Display == Slot)
2890 return;
2891 LOGINFO("Setting active slot %s\n", Slot.c_str());
2892#ifdef AB_OTA_UPDATER
2893 if (!Active_Slot_Display.empty()) {
2894 const hw_module_t *hw_module;
2895 boot_control_module_t *module;
2896 int ret;
2897 ret = hw_get_module("bootctrl", &hw_module);
2898 if (ret != 0) {
2899 LOGERR("Error getting bootctrl module.\n");
2900 } else {
2901 module = (boot_control_module_t*) hw_module;
2902 module->init(module);
2903 int slot_number = 0;
2904 if (Slot == "B")
2905 slot_number = 1;
2906 if (module->setActiveBootSlot(module, slot_number))
2907 gui_msg(Msg(msg::kError, "unable_set_boot_slot=Error changing bootloader boot slot to {1}")(Slot));
2908 }
2909 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
2910 }
2911#else
2912 LOGERR("Boot slot feature not present\n");
2913#endif
2914 Active_Slot_Display = Slot;
2915 if (Fstab_Processed())
2916 Update_System_Details();
2917}
2918string TWPartitionManager::Get_Active_Slot_Suffix() {
2919 if (Active_Slot_Display == "A")
2920 return "_a";
2921 return "_b";
2922}
2923string TWPartitionManager::Get_Active_Slot_Display() {
2924 return Active_Slot_Display;
2925}
Ethan Yonker6e8c27a2016-12-22 17:55:57 -06002926
Captain Throwback9d6feb52018-07-27 10:05:24 -04002927string TWPartitionManager::Get_Android_Root_Path() {
bigbiff8da46fa2020-09-08 16:42:34 -04002928 return "/system_root";
Captain Throwback9d6feb52018-07-27 10:05:24 -04002929}
2930
Ethan Yonker6e8c27a2016-12-22 17:55:57 -06002931void TWPartitionManager::Remove_Uevent_Devices(const string& Mount_Point) {
2932 std::vector<TWPartition*>::iterator iter;
2933
2934 for (iter = Partitions.begin(); iter != Partitions.end(); ) {
2935 if ((*iter)->Is_SubPartition && (*iter)->SubPartition_Of == Mount_Point) {
2936 TWPartition *part = *iter;
2937 LOGINFO("%s was removed by uevent data\n", (*iter)->Mount_Point.c_str());
2938 (*iter)->UnMount(false);
2939 rmdir((*iter)->Mount_Point.c_str());
2940 iter = Partitions.erase(iter);
2941 delete part;
2942 } else {
2943 iter++;
2944 }
2945 }
2946}
2947
2948void TWPartitionManager::Handle_Uevent(const Uevent_Block_Data& uevent_data) {
2949 std::vector<TWPartition*>::iterator iter;
2950
2951 for (iter = Partitions.begin(); iter != Partitions.end(); iter++) {
2952 if (!(*iter)->Sysfs_Entry.empty()) {
2953 string device;
2954 size_t wildcard = (*iter)->Sysfs_Entry.find("*");
2955 if (wildcard != string::npos) {
2956 device = (*iter)->Sysfs_Entry.substr(0, wildcard);
2957 } else {
2958 device = (*iter)->Sysfs_Entry;
2959 }
2960 if (device == uevent_data.sysfs_path.substr(0, device.size())) {
2961 // Found a match
2962 if (uevent_data.action == "add") {
2963 (*iter)->Primary_Block_Device = "/dev/block/" + uevent_data.block_device;
2964 (*iter)->Alternate_Block_Device = (*iter)->Primary_Block_Device;
2965 (*iter)->Is_Present = true;
2966 LOGINFO("Found a match '%s' '%s'\n", uevent_data.block_device.c_str(), device.c_str());
2967 if (!Decrypt_Adopted()) {
2968 LOGINFO("No adopted storage so finding actual block device\n");
2969 (*iter)->Find_Actual_Block_Device();
2970 }
2971 return;
2972 } else if (uevent_data.action == "remove") {
2973 (*iter)->Is_Present = false;
2974 (*iter)->Primary_Block_Device = "";
2975 (*iter)->Actual_Block_Device = "";
2976 Remove_Uevent_Devices((*iter)->Mount_Point);
2977 return;
2978 }
2979 }
2980 }
2981 }
bigbiffee7b7ff2020-03-23 15:08:27 -04002982
2983 if (!PartitionManager.Get_Super_Status())
2984 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 -06002985}
2986
2987void TWPartitionManager::setup_uevent() {
2988 struct sockaddr_nl nls;
2989
2990 if (uevent_pfd.fd >= 0) {
2991 LOGINFO("uevent already set up\n");
2992 return;
2993 }
2994
2995 // Open hotplug event netlink socket
2996 memset(&nls,0,sizeof(struct sockaddr_nl));
2997 nls.nl_family = AF_NETLINK;
2998 nls.nl_pid = getpid();
2999 nls.nl_groups = -1;
3000 uevent_pfd.events = POLLIN;
3001 uevent_pfd.fd = socket(PF_NETLINK, SOCK_DGRAM, NETLINK_KOBJECT_UEVENT);
3002 if (uevent_pfd.fd==-1) {
3003 LOGERR("uevent not root\n");
3004 return;
3005 }
3006
3007 // Listen to netlink socket
3008 if (::bind(uevent_pfd.fd, (struct sockaddr *) &nls, sizeof(struct sockaddr_nl)) < 0) {
3009 LOGERR("Bind failed\n");
3010 return;
3011 }
3012 set_select_fd();
3013 Coldboot();
3014}
3015
3016Uevent_Block_Data TWPartitionManager::get_event_block_values(char *buf, int len) {
3017 Uevent_Block_Data ret;
3018 ret.subsystem = "";
3019 char *ptr = buf;
3020 const char *end = buf + len;
3021
3022 buf[len - 1] = '\0';
3023 while (ptr < end) {
3024 if (strncmp(ptr, "ACTION=", strlen("ACTION=")) == 0) {
3025 ptr += strlen("ACTION=");
3026 ret.action = ptr;
3027 } else if (strncmp(ptr, "SUBSYSTEM=", strlen("SUBSYSTEM=")) == 0) {
3028 ptr += strlen("SUBSYSTEM=");
3029 ret.subsystem = ptr;
3030 } else if (strncmp(ptr, "DEVTYPE=", strlen("DEVTYPE=")) == 0) {
3031 ptr += strlen("DEVTYPE=");
3032 ret.type = ptr;
3033 } else if (strncmp(ptr, "DEVPATH=", strlen("DEVPATH=")) == 0) {
3034 ptr += strlen("DEVPATH=");
3035 ret.sysfs_path += ptr;
3036 } else if (strncmp(ptr, "DEVNAME=", strlen("DEVNAME=")) == 0) {
3037 ptr += strlen("DEVNAME=");
3038 ret.block_device += ptr;
3039 } else if (strncmp(ptr, "MAJOR=", strlen("MAJOR=")) == 0) {
3040 ptr += strlen("MAJOR=");
3041 ret.major = atoi(ptr);
3042 } else if (strncmp(ptr, "MINOR=", strlen("MINOR=")) == 0) {
3043 ptr += strlen("MINOR=");
3044 ret.minor = atoi(ptr);
3045 }
3046 ptr += strlen(ptr) + 1;
3047 }
3048 return ret;
3049}
3050
3051void TWPartitionManager::read_uevent() {
3052 char buf[1024];
3053
3054 int len = recv(uevent_pfd.fd, buf, sizeof(buf), MSG_DONTWAIT);
3055 if (len == -1) {
Mauronofrio Matarresec1bb76e2019-08-04 17:02:41 +01003056 LOGINFO("recv error on uevent\n");
Ethan Yonker6e8c27a2016-12-22 17:55:57 -06003057 return;
3058 }
3059 /*int i = 0; // Print all uevent output for test /debug
3060 while (i<len) {
3061 printf("%s\n", buf+i);
3062 i += strlen(buf+i)+1;
3063 }*/
3064 Uevent_Block_Data uevent_data = get_event_block_values(buf, len);
3065 if (uevent_data.subsystem == "block" && uevent_data.type == "disk") {
3066 PartitionManager.Handle_Uevent(uevent_data);
3067 }
3068}
3069
3070void TWPartitionManager::close_uevent() {
3071 if (uevent_pfd.fd > 0)
3072 close(uevent_pfd.fd);
3073 uevent_pfd.fd = -1;
3074}
3075
3076void TWPartitionManager::Add_Partition(TWPartition* Part) {
3077 Partitions.push_back(Part);
3078}
3079
3080void TWPartitionManager::Coldboot_Scan(std::vector<string> *sysfs_entries, const string& Path, int depth) {
3081 string Real_Path = Path;
3082 char real_path[PATH_MAX];
3083 if (realpath(Path.c_str(), &real_path[0])) {
3084 string Real_Path = real_path;
3085 std::vector<string>::iterator iter;
3086 for (iter = sysfs_entries->begin(); iter != sysfs_entries->end(); iter++) {
3087 if (Real_Path.find((*iter)) != string::npos) {
3088 string Write_Path = Real_Path + "/uevent";
3089 if (TWFunc::Path_Exists(Write_Path)) {
3090 const char* write_val = "add\n";
3091 TWFunc::write_to_file(Write_Path, write_val);
3092 break;
3093 }
3094 }
3095 }
3096 }
3097
3098 DIR* d = opendir(Path.c_str());
3099 if (d != NULL) {
3100 struct dirent* de;
3101 while ((de = readdir(d)) != NULL) {
3102 if (de->d_name[0] == '.' || (de->d_type != DT_DIR && depth > 0))
3103 continue;
3104 if (strlen(de->d_name) >= 4 && (strncmp(de->d_name, "ram", 3) == 0 || strncmp(de->d_name, "loop", 4) == 0))
3105 continue;
3106
3107 string item = Path + "/";
3108 item.append(de->d_name);
3109 Coldboot_Scan(sysfs_entries, item, depth + 1);
3110 }
3111 closedir(d);
3112 }
3113}
3114
3115void TWPartitionManager::Coldboot() {
3116 std::vector<TWPartition*>::iterator iter;
3117 std::vector<string> sysfs_entries;
3118
3119 for (iter = Partitions.begin(); iter != Partitions.end(); iter++) {
3120 if (!(*iter)->Sysfs_Entry.empty()) {
3121 size_t wildcard_pos = (*iter)->Sysfs_Entry.find("*");
3122 if (wildcard_pos == string::npos)
3123 wildcard_pos = (*iter)->Sysfs_Entry.size();
3124 sysfs_entries.push_back((*iter)->Sysfs_Entry.substr(0, wildcard_pos));
3125 }
3126 }
3127
3128 if (sysfs_entries.size() > 0)
3129 Coldboot_Scan(&sysfs_entries, "/sys/block", 0);
3130}
Ethan Yonker53796e72019-01-11 22:49:52 -06003131
3132bool TWPartitionManager::Prepare_Empty_Folder(const std::string& Folder) {
3133 if (TWFunc::Path_Exists(Folder))
3134 TWFunc::removeDir(Folder, false);
3135 return TWFunc::Recursive_Mkdir(Folder);
3136}
3137
bigbiffee7b7ff2020-03-23 15:08:27 -04003138bool TWPartitionManager::Prepare_Super_Volume(TWPartition* twrpPart) {
3139 Fstab fstab;
3140 std::string bare_partition_name;
3141
3142 if (twrpPart->Get_Mount_Point() == "/system_root")
3143 bare_partition_name = "system";
3144 else
3145 bare_partition_name = TWFunc::Remove_Beginning_Slash(twrpPart->Get_Mount_Point());
3146
3147 LOGINFO("Trying to prepare %s from super partition\n", bare_partition_name.c_str());
3148
3149 std::string blk_device_partition;
3150#ifdef AB_OTA_UPDATER
3151 blk_device_partition = bare_partition_name + PartitionManager.Get_Active_Slot_Suffix();
3152#else
3153 blk_device_partition = bare_partition_name;
3154#endif
3155
3156 FstabEntry fstabEntry = {
3157 .blk_device = blk_device_partition,
3158 .mount_point = twrpPart->Get_Mount_Point(),
3159 .fs_type = twrpPart->Current_File_System,
3160 .fs_mgr_flags.logical = twrpPart->Is_Super,
3161 };
3162
3163 fstab.emplace_back(fstabEntry);
3164 if (!fs_mgr_update_logical_partition(&fstabEntry)) {
3165 LOGERR("unable to update logical partition: %s\n", twrpPart->Get_Mount_Point().c_str());
3166 return false;
3167 }
3168
bigbiff32cbabe2020-04-12 19:16:19 -04003169 while (access(fstabEntry.blk_device.c_str(), F_OK) != 0) {
3170 usleep(100);
3171 }
3172
bigbiffee7b7ff2020-03-23 15:08:27 -04003173 twrpPart->Set_Block_Device(fstabEntry.blk_device);
3174 twrpPart->Update_Size(true);
3175 twrpPart->Change_Mount_Read_Only(true);
3176 twrpPart->Set_Can_Be_Backed_Up(false);
3177 twrpPart->Set_Can_Be_Wiped(false);
3178 return true;
3179}
3180
3181bool TWPartitionManager::Prepare_All_Super_Volumes() {
3182 bool status = true;
3183 std::vector<TWPartition*>::iterator iter;
3184
3185 for (iter = Partitions.begin(); iter != Partitions.end(); iter++) {
3186 if ((*iter)->Is_Super) {
3187 if (!Prepare_Super_Volume(*iter)) {
3188 status = false;
3189 }
3190 PartitionManager.Output_Partition(*iter);
3191 }
3192 }
3193 Update_System_Details();
3194 return status;
3195}
3196
3197bool TWPartitionManager::Is_Super_Partition(const char* fstab_line) {
Mohd Faraze3948ec2020-08-14 01:40:59 +00003198 if (!Get_Super_Status())
3199 return false;
bigbiffee7b7ff2020-03-23 15:08:27 -04003200 std::vector<std::string> super_partition_list = {"system", "vendor", "odm", "product", "system_ext"};
3201
3202 for (auto&& fstab_partition_check: super_partition_list) {
3203 if (strncmp(fstab_line, fstab_partition_check.c_str(), fstab_partition_check.size()) == 0) {
3204 DataManager::SetValue(TW_IS_SUPER, "1");
3205 return true;
3206 }
3207 }
3208 return false;
3209}
3210
3211std::string TWPartitionManager::Get_Super_Partition() {
3212 int slot_number = Get_Active_Slot_Display() == "A" ? 0 : 1;
3213 std::string super_device = fs_mgr_get_super_partition_name(slot_number);
3214 return "/dev/block/by-name/" + super_device;
3215}
3216
3217void TWPartitionManager::Setup_Super_Devices() {
3218 std::string superPart = Get_Super_Partition();
3219 android::fs_mgr::CreateLogicalPartitions(superPart);
bigbiff7ba75002020-04-11 20:47:09 -04003220}
3221
3222void TWPartitionManager::Setup_Super_Partition() {
bigbiffee7b7ff2020-03-23 15:08:27 -04003223 TWPartition* superPartition = new TWPartition();
bigbiff7ba75002020-04-11 20:47:09 -04003224 std::string superPart = Get_Super_Partition();
3225
3226 superPartition->Backup_Path = "/super";
3227 superPartition->Mount_Point = "/super";
bigbiffee7b7ff2020-03-23 15:08:27 -04003228 superPartition->Actual_Block_Device = superPart;
3229 superPartition->Alternate_Block_Device = superPart;
3230 superPartition->Backup_Display_Name = "super";
3231 superPartition->Can_Flash_Img = true;
bigbiffee7b7ff2020-03-23 15:08:27 -04003232 superPartition->Current_File_System = "emmc";
3233 superPartition->Can_Be_Backed_Up = true;
3234 superPartition->Is_Present = true;
3235 superPartition->Is_SubPartition = false;
bigbiff7ba75002020-04-11 20:47:09 -04003236 superPartition->Setup_Image();
bigbiffee7b7ff2020-03-23 15:08:27 -04003237 Add_Partition(superPartition);
3238 PartitionManager.Output_Partition(superPartition);
3239 Update_System_Details();
3240}
3241
3242bool TWPartitionManager::Get_Super_Status() {
3243 return access(Get_Super_Partition().c_str(), F_OK) == 0;
3244}
bigbiff25d25b92020-06-19 16:07:38 -04003245
3246bool TWPartitionManager::Recreate_Logs_Dir() {
3247#ifdef TW_INCLUDE_FBE
3248 struct passwd pd;
3249 struct passwd *pwdptr = &pd;
3250 struct passwd *tempPd;
3251 char pwdBuf[512];
3252 int uid = 0, gid = 0;
3253
3254 if ((getpwnam_r("system", pwdptr, pwdBuf, sizeof(pwdBuf), &tempPd)) != 0) {
3255 LOGERR("unable to get system user id\n");
3256 return false;
3257 } else {
3258 struct group grp;
3259 struct group *grpptr = &grp;
3260 struct group *tempGrp;
3261 char grpBuf[512];
3262
3263 if ((getgrnam_r("cache", grpptr, grpBuf, sizeof(grpBuf), &tempGrp)) != 0) {
3264 LOGERR("unable to get cache group id\n");
3265 return false;
3266 } else {
3267 uid = pd.pw_uid;
3268 gid = grp.gr_gid;
3269 std::string abLogsRecoveryDir(DATA_LOGS_DIR);
3270 abLogsRecoveryDir += "/recovery/";
3271
3272 if (!TWFunc::Create_Dir_Recursive(abLogsRecoveryDir, S_IRWXU | S_IRWXG | S_IWGRP | S_IXGRP, uid, gid)) {
3273 LOGERR("Unable to recreate %s\n", abLogsRecoveryDir.c_str());
3274 return false;
3275 }
3276 if (setfilecon(abLogsRecoveryDir.c_str(), "u:object_r:cache_file:s0") != 0) {
3277 LOGERR("Unable to set contexts for %s\n", abLogsRecoveryDir.c_str());
3278 return false;
3279 }
3280 }
3281 }
3282#endif
3283 return true;
3284}