blob: 79de55fc13aa34dd2d0b9db94e31292fcb6a507e [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) {
Ian Macdonald160e8d32020-09-29 20:47:31 +0200147 LOGINFO("Reading /etc/twrp.flags\n");
Ethan Yonker6e8c27a2016-12-22 17:55:57 -0600148 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;
bigbiffdf8436b2020-08-30 16:22:34 -0400274
Mohd Faraze3948ec2020-08-14 01:40:59 +0000275 if (Is_Super_Partition(TWFunc::Remove_Beginning_Slash((*iter)->Get_Mount_Point()).c_str()))
276 Prepare_Super_Volume((*iter));
277 }
278
279 //Setup Apex before decryption
280 TWPartition* sys = PartitionManager.Find_Partition_By_Path(PartitionManager.Get_Android_Root_Path());
281 TWPartition* ven = PartitionManager.Find_Partition_By_Path("/vendor");
282 if (sys) {
283 if (sys->Get_Super_Status()) {
284 sys->Mount(true);
285 if (ven) {
286 ven->Mount(true);
287 }
288 twrpApex apex;
289 if (!apex.loadApexImages()) {
290 LOGERR("Unable to load apex images from %s\n", APEX_DIR);
291 property_set("twrp.apex.loaded", "false");
292 } else {
293 property_set("twrp.apex.loaded", "true");
294 }
295 }
Matt Mower72c87ce2016-04-26 14:34:56 -0500296 }
297
Ethan Yonker6277c792014-09-15 14:54:30 -0500298 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) {
299 // Attempt to automatically identify /data/media emulated storage devices
300 TWPartition* Dat = Find_Partition_By_Path("/data");
301 if (Dat) {
302 LOGINFO("Using automatic handling for /data/media emulated storage device.\n");
303 datamedia = true;
that9e0593e2014-10-08 00:01:24 +0200304 Dat->Setup_Data_Media();
Ethan Yonker6277c792014-09-15 14:54:30 -0500305 settings_partition = Dat;
Ethan Yonker726a0202014-12-16 20:01:38 -0600306 // Since /data was not considered a storage partition earlier, we still need to assign an MTP ID
307 ++storageid;
308 Dat->MTP_Storage_ID = storageid;
Ethan Yonker6277c792014-09-15 14:54:30 -0500309 }
310 }
Dees Troy02a64532014-03-19 15:23:32 +0000311 if (!settings_partition) {
Dees_Troya13d74f2013-03-24 08:54:55 -0500312 for (iter = Partitions.begin(); iter != Partitions.end(); iter++) {
313 if ((*iter)->Is_Storage) {
Dees Troy02a64532014-03-19 15:23:32 +0000314 settings_partition = (*iter);
Dees_Troya13d74f2013-03-24 08:54:55 -0500315 break;
316 }
317 }
Dees Troy02a64532014-03-19 15:23:32 +0000318 if (!settings_partition)
Dees_Troy2673cec2013-04-02 20:22:16 +0000319 LOGERR("Unable to locate storage partition for storing settings file.\n");
Dees_Troya13d74f2013-03-24 08:54:55 -0500320 }
Dees_Troy5bf43922012-09-07 16:07:55 -0400321 if (!Write_Fstab()) {
322 if (Display_Error)
Dees_Troy2673cec2013-04-02 20:22:16 +0000323 LOGERR("Error creating fstab\n");
Dees_Troy5bf43922012-09-07 16:07:55 -0400324 else
Dees_Troy2673cec2013-04-02 20:22:16 +0000325 LOGINFO("Error creating fstab\n");
Dees_Troy5bf43922012-09-07 16:07:55 -0400326 }
Matt Mowered71fa32014-04-16 13:21:47 -0500327
Matt Mowerbf4efa32014-04-14 23:25:26 -0500328 if (andsec_partition) {
329 Setup_Android_Secure_Location(andsec_partition);
Matt Mowered71fa32014-04-16 13:21:47 -0500330 } else if (settings_partition) {
Matt Mowerbf4efa32014-04-14 23:25:26 -0500331 Setup_Android_Secure_Location(settings_partition);
332 }
Matt Mowered71fa32014-04-16 13:21:47 -0500333 if (settings_partition) {
334 Setup_Settings_Storage_Partition(settings_partition);
335 }
bigbiff7ba75002020-04-11 20:47:09 -0400336
Mohd Faraze3948ec2020-08-14 01:40:59 +0000337#ifdef TW_INCLUDE_CRYPTO
338 DataManager::SetValue(TW_IS_ENCRYPTED, 1);
339 Decrypt_Data();
340#endif
341
bigbiff7ba75002020-04-11 20:47:09 -0400342 Update_System_Details();
Mohd Faraze3948ec2020-08-14 01:40:59 +0000343 if (Get_Super_Status())
344 Setup_Super_Partition();
bigbiff7ba75002020-04-11 20:47:09 -0400345 UnMount_Main_Partitions();
346#ifdef AB_OTA_UPDATER
347 DataManager::SetValue("tw_active_slot", Get_Active_Slot_Display());
348#endif
349 setup_uevent();
350 return true;
351}
352
353int TWPartitionManager::Write_Fstab(void) {
354 FILE *fp;
355 std::vector<TWPartition*>::iterator iter;
356 string Line;
357
358 fp = fopen("/etc/fstab", "w");
359 if (fp == NULL) {
360 LOGINFO("Can not open /etc/fstab.\n");
361 return false;
362 }
363 for (iter = Partitions.begin(); iter != Partitions.end(); iter++) {
364 if ((*iter)->Can_Be_Mounted) {
Mohd Faraz2a1e3752020-09-30 10:55:48 +0530365 Line = (*iter)->Actual_Block_Device + " " + (*iter)->Mount_Point + " " + (*iter)->Current_File_System +
366 ((*iter)->Mount_Read_Only ? " ro " : " rw ") + "0 0\n";
bigbiff7ba75002020-04-11 20:47:09 -0400367 fputs(Line.c_str(), fp);
368 }
369 // Handle subpartition tracking
370 if ((*iter)->Is_SubPartition) {
371 TWPartition* ParentPartition = Find_Partition_By_Path((*iter)->SubPartition_Of);
372 if (ParentPartition)
373 ParentPartition->Has_SubPartition = true;
374 else
375 LOGERR("Unable to locate parent partition '%s' of '%s'\n", (*iter)->SubPartition_Of.c_str(), (*iter)->Mount_Point.c_str());
376 }
377 }
378 fclose(fp);
379 return true;
380}
381
382void TWPartitionManager::Decrypt_Data() {
383 #ifdef TW_INCLUDE_CRYPTO
Ethan Yonkercceebb82014-11-18 10:17:59 -0600384 TWPartition* Decrypt_Data = Find_Partition_By_Path("/data");
385 if (Decrypt_Data && Decrypt_Data->Is_Encrypted && !Decrypt_Data->Is_Decrypted) {
Ethan Yonker93382822018-11-01 15:25:31 -0500386 if (!Decrypt_Data->Key_Directory.empty() && Mount_By_Path(Decrypt_Data->Key_Directory, false)) {
387#ifdef TW_INCLUDE_FBE_METADATA_DECRYPT
bigbiff7ba75002020-04-11 20:47:09 -0400388#ifdef USE_FSCRYPT
389 if (fscrypt_mount_metadata_encrypted(Decrypt_Data->Actual_Block_Device, Decrypt_Data->Mount_Point, false)) {
Mohd Faraze3948ec2020-08-14 01:40:59 +0000390 std::string crypto_blkdev =android::base::GetProperty("ro.crypto.fs_crypto_blkdev", "error");
391 Decrypt_Data->Decrypted_Block_Device = crypto_blkdev;
bigbiff7ba75002020-04-11 20:47:09 -0400392 LOGINFO("Successfully decrypted metadata encrypted data partition with new block device: '%s'\n", crypto_blkdev.c_str());
393#else
Ethan Yonker93382822018-11-01 15:25:31 -0500394 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 -0400395 LOGINFO("Successfully decrypted metadata encrypted data partition with new block device: '%s'\n",
396 Decrypt_Data->Decrypted_Block_Device.c_str());
397#endif
Ethan Yonker93382822018-11-01 15:25:31 -0500398 property_set("ro.crypto.state", "encrypted");
399 Decrypt_Data->Is_Decrypted = true; // Needed to make the mount function work correctly
400 int retry_count = 10;
401 while (!Decrypt_Data->Mount(false) && --retry_count)
402 usleep(500);
403 if (Decrypt_Data->Mount(false)) {
bigbiff bigbiff0be03b32019-08-27 20:50:31 -0400404 if (!Decrypt_Data->Decrypt_FBE_DE()) {
mauronofriofc79aa62019-11-23 23:13:04 +0100405 char wrappedvalue[PROPERTY_VALUE_MAX];
406 property_get("fbe.data.wrappedkey", wrappedvalue, "");
407 std::string wrappedkeyvalue(wrappedvalue);
408 if (wrappedkeyvalue == "true") {
bigbiff bigbiff0be03b32019-08-27 20:50:31 -0400409 LOGERR("Unable to decrypt FBE device\n");
mauronofriofc79aa62019-11-23 23:13:04 +0100410 } else {
411 LOGINFO("Trying wrapped key.\n");
412 property_set("fbe.data.wrappedkey", "true");
413 if (!Decrypt_Data->Decrypt_FBE_DE()) {
414 LOGERR("Unable to decrypt FBE device\n");
415 }
bigbiff bigbiff0be03b32019-08-27 20:50:31 -0400416 }
417 }
418
Ethan Yonker93382822018-11-01 15:25:31 -0500419 } else {
420 LOGINFO("Failed to mount data after metadata decrypt\n");
421 }
422 } else {
423 LOGINFO("Unable to decrypt metadata encryption\n");
424 }
425#else
426 LOGERR("Metadata FBE decrypt support not present in this TWRP\n");
427#endif
428 }
Ethan Yonkerbd7492d2016-12-07 13:55:01 -0600429 if (Decrypt_Data->Is_FBE) {
430 if (DataManager::GetIntValue(TW_CRYPTO_PWTYPE) == 0) {
431 if (Decrypt_Device("!") == 0) {
432 gui_msg("decrypt_success=Successfully decrypted with default password.");
433 DataManager::SetValue(TW_IS_ENCRYPTED, 0);
434 } else {
435 gui_err("unable_to_decrypt=Unable to decrypt with default password.");
436 }
Ethan Yonkercceebb82014-11-18 10:17:59 -0600437 }
438 } else {
Ethan Yonkerbd7492d2016-12-07 13:55:01 -0600439 int password_type = cryptfs_get_password_type();
440 if (password_type == CRYPT_TYPE_DEFAULT) {
441 LOGINFO("Device is encrypted with the default password, attempting to decrypt.\n");
442 if (Decrypt_Device("default_password") == 0) {
443 gui_msg("decrypt_success=Successfully decrypted with default password.");
444 DataManager::SetValue(TW_IS_ENCRYPTED, 0);
445 } else {
446 gui_err("unable_to_decrypt=Unable to decrypt with default password.");
447 }
448 } else {
449 DataManager::SetValue("TW_CRYPTO_TYPE", password_type);
450 }
Ethan Yonkercceebb82014-11-18 10:17:59 -0600451 }
452 }
bigbiffadc599e2020-05-28 19:36:30 +0000453 if (Decrypt_Data && (!Decrypt_Data->Is_Encrypted || Decrypt_Data->Is_Decrypted) && Decrypt_Data->Mount(false)) {
Ethan Yonker66a19492015-12-10 10:19:45 -0600454 Decrypt_Adopted();
455 }
Ethan Yonkercceebb82014-11-18 10:17:59 -0600456#endif
Dees_Troy51a0e822012-09-05 15:24:24 -0400457}
458
Ethan Yonkerc05c5982014-03-13 09:19:56 -0500459void TWPartitionManager::Setup_Settings_Storage_Partition(TWPartition* Part) {
Ethan Yonkerc05c5982014-03-13 09:19:56 -0500460 DataManager::SetValue("tw_settings_path", Part->Storage_Path);
461 DataManager::SetValue("tw_storage_path", Part->Storage_Path);
462 LOGINFO("Settings storage is '%s'\n", Part->Storage_Path.c_str());
463}
464
Matt Mowerbf4efa32014-04-14 23:25:26 -0500465void TWPartitionManager::Setup_Android_Secure_Location(TWPartition* Part) {
466 if (Part->Has_Android_Secure)
467 Part->Setup_AndSec();
Ethan Yonker6277c792014-09-15 14:54:30 -0500468 else if (!datamedia)
Matt Mowerbf4efa32014-04-14 23:25:26 -0500469 Part->Setup_AndSec();
Matt Mowerbf4efa32014-04-14 23:25:26 -0500470}
471
Dees_Troy8170a922012-09-18 15:40:25 -0400472void TWPartitionManager::Output_Partition_Logging(void) {
473 std::vector<TWPartition*>::iterator iter;
474
475 printf("\n\nPartition Logs:\n");
476 for (iter = Partitions.begin(); iter != Partitions.end(); iter++)
477 Output_Partition((*iter));
478}
479
480void TWPartitionManager::Output_Partition(TWPartition* Part) {
481 unsigned long long mb = 1048576;
482
Gary Peck004d48b2012-11-21 16:28:18 -0800483 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 -0400484 if (Part->Can_Be_Mounted) {
Gary Peck004d48b2012-11-21 16:28:18 -0800485 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 -0400486 }
Gary Peck004d48b2012-11-21 16:28:18 -0800487 printf("\n Flags: ");
Dees_Troya13d74f2013-03-24 08:54:55 -0500488 if (Part->Can_Be_Mounted)
489 printf("Can_Be_Mounted ");
Gary Peck004d48b2012-11-21 16:28:18 -0800490 if (Part->Can_Be_Wiped)
491 printf("Can_Be_Wiped ");
Hashcodedabfd492013-08-29 22:45:30 -0700492 if (Part->Use_Rm_Rf)
493 printf("Use_Rm_Rf ");
Dees_Troya13d74f2013-03-24 08:54:55 -0500494 if (Part->Can_Be_Backed_Up)
495 printf("Can_Be_Backed_Up ");
Gary Peck004d48b2012-11-21 16:28:18 -0800496 if (Part->Wipe_During_Factory_Reset)
497 printf("Wipe_During_Factory_Reset ");
498 if (Part->Wipe_Available_in_GUI)
499 printf("Wipe_Available_in_GUI ");
500 if (Part->Is_SubPartition)
501 printf("Is_SubPartition ");
502 if (Part->Has_SubPartition)
503 printf("Has_SubPartition ");
504 if (Part->Removable)
505 printf("Removable ");
506 if (Part->Is_Present)
507 printf("IsPresent ");
508 if (Part->Can_Be_Encrypted)
509 printf("Can_Be_Encrypted ");
510 if (Part->Is_Encrypted)
511 printf("Is_Encrypted ");
512 if (Part->Is_Decrypted)
513 printf("Is_Decrypted ");
514 if (Part->Has_Data_Media)
515 printf("Has_Data_Media ");
Dees_Troy83bd4832013-05-04 12:39:56 +0000516 if (Part->Can_Encrypt_Backup)
517 printf("Can_Encrypt_Backup ");
518 if (Part->Use_Userdata_Encryption)
519 printf("Use_Userdata_Encryption ");
Gary Peck004d48b2012-11-21 16:28:18 -0800520 if (Part->Has_Android_Secure)
521 printf("Has_Android_Secure ");
522 if (Part->Is_Storage)
523 printf("Is_Storage ");
Dees_Troya13d74f2013-03-24 08:54:55 -0500524 if (Part->Is_Settings_Storage)
525 printf("Is_Settings_Storage ");
Dees_Troy68cab492012-12-12 19:29:35 +0000526 if (Part->Ignore_Blkid)
527 printf("Ignore_Blkid ");
Ethan Yonker253368a2014-11-25 15:00:52 -0600528 if (Part->Mount_To_Decrypt)
529 printf("Mount_To_Decrypt ");
Ethan Yonker96af84a2015-01-05 14:58:36 -0600530 if (Part->Can_Flash_Img)
531 printf("Can_Flash_Img ");
Ethan Yonker66a19492015-12-10 10:19:45 -0600532 if (Part->Is_Adopted_Storage)
533 printf("Is_Adopted_Storage ");
Ethan Yonker1b190162016-12-05 15:25:19 -0600534 if (Part->SlotSelect)
535 printf("SlotSelect ");
Ethan Yonker6e8c27a2016-12-22 17:55:57 -0600536 if (Part->Mount_Read_Only)
537 printf("Mount_Read_Only ");
Gary Peck004d48b2012-11-21 16:28:18 -0800538 printf("\n");
539 if (!Part->SubPartition_Of.empty())
540 printf(" SubPartition_Of: %s\n", Part->SubPartition_Of.c_str());
541 if (!Part->Symlink_Path.empty())
542 printf(" Symlink_Path: %s\n", Part->Symlink_Path.c_str());
543 if (!Part->Symlink_Mount_Point.empty())
544 printf(" Symlink_Mount_Point: %s\n", Part->Symlink_Mount_Point.c_str());
545 if (!Part->Primary_Block_Device.empty())
546 printf(" Primary_Block_Device: %s\n", Part->Primary_Block_Device.c_str());
547 if (!Part->Alternate_Block_Device.empty())
548 printf(" Alternate_Block_Device: %s\n", Part->Alternate_Block_Device.c_str());
549 if (!Part->Decrypted_Block_Device.empty())
550 printf(" Decrypted_Block_Device: %s\n", Part->Decrypted_Block_Device.c_str());
dianlujitao4879b372018-12-03 18:45:47 +0800551 if (!Part->Crypto_Key_Location.empty())
Ethan Yonker253368a2014-11-25 15:00:52 -0600552 printf(" Crypto_Key_Location: %s\n", Part->Crypto_Key_Location.c_str());
Gary Peck004d48b2012-11-21 16:28:18 -0800553 if (Part->Length != 0)
554 printf(" Length: %i\n", Part->Length);
555 if (!Part->Display_Name.empty())
556 printf(" Display_Name: %s\n", Part->Display_Name.c_str());
Dees_Troya13d74f2013-03-24 08:54:55 -0500557 if (!Part->Storage_Name.empty())
558 printf(" Storage_Name: %s\n", Part->Storage_Name.c_str());
Gary Peck004d48b2012-11-21 16:28:18 -0800559 if (!Part->Backup_Path.empty())
560 printf(" Backup_Path: %s\n", Part->Backup_Path.c_str());
561 if (!Part->Backup_Name.empty())
562 printf(" Backup_Name: %s\n", Part->Backup_Name.c_str());
Dees_Troya13d74f2013-03-24 08:54:55 -0500563 if (!Part->Backup_Display_Name.empty())
564 printf(" Backup_Display_Name: %s\n", Part->Backup_Display_Name.c_str());
Gary Peck004d48b2012-11-21 16:28:18 -0800565 if (!Part->Backup_FileName.empty())
566 printf(" Backup_FileName: %s\n", Part->Backup_FileName.c_str());
567 if (!Part->Storage_Path.empty())
568 printf(" Storage_Path: %s\n", Part->Storage_Path.c_str());
569 if (!Part->Current_File_System.empty())
570 printf(" Current_File_System: %s\n", Part->Current_File_System.c_str());
571 if (!Part->Fstab_File_System.empty())
572 printf(" Fstab_File_System: %s\n", Part->Fstab_File_System.c_str());
573 if (Part->Format_Block_Size != 0)
Ethan Yonkerc798c9c2015-10-09 11:15:26 -0500574 printf(" Format_Block_Size: %lu\n", Part->Format_Block_Size);
Dees_Troy094207a2012-09-26 12:00:39 -0400575 if (!Part->MTD_Name.empty())
576 printf(" MTD_Name: %s\n", Part->MTD_Name.c_str());
Matt Mower029a82d2017-01-08 13:12:38 -0600577 printf(" Backup_Method: %s\n", Part->Backup_Method_By_Name().c_str());
Hashcode62bd9e02013-11-19 21:59:42 -0800578 if (Part->Mount_Flags || !Part->Mount_Options.empty())
Ethan Yonker6e8c27a2016-12-22 17:55:57 -0600579 printf(" Mount_Flags: %i, Mount_Options: %s\n", Part->Mount_Flags, Part->Mount_Options.c_str());
Ethan Yonker726a0202014-12-16 20:01:38 -0600580 if (Part->MTP_Storage_ID)
581 printf(" MTP_Storage_ID: %i\n", Part->MTP_Storage_ID);
Ethan Yonker93382822018-11-01 15:25:31 -0500582 if (!Part->Key_Directory.empty())
583 printf(" Metadata Key Directory: %s\n", Part->Key_Directory.c_str());
Ethan Yonker6277c792014-09-15 14:54:30 -0500584 printf("\n");
Dees_Troy8170a922012-09-18 15:40:25 -0400585}
586
Dees_Troy51a0e822012-09-05 15:24:24 -0400587int TWPartitionManager::Mount_By_Path(string Path, bool Display_Error) {
Dees_Troy5bf43922012-09-07 16:07:55 -0400588 std::vector<TWPartition*>::iterator iter;
589 int ret = false;
590 bool found = false;
Dees_Troy38bd7602012-09-14 13:33:53 -0400591 string Local_Path = TWFunc::Get_Root_Path(Path);
Dees_Troy5bf43922012-09-07 16:07:55 -0400592
bigbiffd58ba182020-03-23 10:02:29 -0400593 if (Local_Path == "/tmp" || Local_Path == "/")
Dees_Troy43d8b002012-09-17 16:00:01 -0400594 return true;
595
Dees_Troy5bf43922012-09-07 16:07:55 -0400596 // Iterate through all partitions
597 for (iter = Partitions.begin(); iter != Partitions.end(); iter++) {
Dees_Troy657c3092012-09-10 20:32:10 -0400598 if ((*iter)->Mount_Point == Local_Path || (!(*iter)->Symlink_Mount_Point.empty() && (*iter)->Symlink_Mount_Point == Local_Path)) {
Dees_Troy5bf43922012-09-07 16:07:55 -0400599 ret = (*iter)->Mount(Display_Error);
600 found = true;
Dees_Troy51127312012-09-08 13:08:49 -0400601 } else if ((*iter)->Is_SubPartition && (*iter)->SubPartition_Of == Local_Path) {
Dees_Troy5bf43922012-09-07 16:07:55 -0400602 (*iter)->Mount(Display_Error);
Dees_Troy51127312012-09-08 13:08:49 -0400603 }
Dees_Troy5bf43922012-09-07 16:07:55 -0400604 }
605 if (found) {
606 return ret;
607 } else if (Display_Error) {
Ethan Yonker74db1572015-10-28 12:44:49 -0500608 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 -0400609 } else {
Dees_Troy2673cec2013-04-02 20:22:16 +0000610 LOGINFO("Mount: Unable to find partition for path '%s'\n", Local_Path.c_str());
Dees_Troy5bf43922012-09-07 16:07:55 -0400611 }
612 return false;
Dees_Troy51a0e822012-09-05 15:24:24 -0400613}
614
Dees_Troy51a0e822012-09-05 15:24:24 -0400615int TWPartitionManager::UnMount_By_Path(string Path, bool Display_Error) {
Dees_Troy51127312012-09-08 13:08:49 -0400616 std::vector<TWPartition*>::iterator iter;
617 int ret = false;
618 bool found = false;
Dees_Troy38bd7602012-09-14 13:33:53 -0400619 string Local_Path = TWFunc::Get_Root_Path(Path);
Dees_Troy51127312012-09-08 13:08:49 -0400620
621 // Iterate through all partitions
622 for (iter = Partitions.begin(); iter != Partitions.end(); iter++) {
Dees_Troy657c3092012-09-10 20:32:10 -0400623 if ((*iter)->Mount_Point == Local_Path || (!(*iter)->Symlink_Mount_Point.empty() && (*iter)->Symlink_Mount_Point == Local_Path)) {
Dees_Troy51127312012-09-08 13:08:49 -0400624 ret = (*iter)->UnMount(Display_Error);
625 found = true;
626 } else if ((*iter)->Is_SubPartition && (*iter)->SubPartition_Of == Local_Path) {
627 (*iter)->UnMount(Display_Error);
628 }
629 }
630 if (found) {
631 return ret;
632 } else if (Display_Error) {
Ethan Yonker74db1572015-10-28 12:44:49 -0500633 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 -0400634 } else {
Dees_Troy2673cec2013-04-02 20:22:16 +0000635 LOGINFO("UnMount: Unable to find partition for path '%s'\n", Local_Path.c_str());
Dees_Troy51127312012-09-08 13:08:49 -0400636 }
637 return false;
Dees_Troy51a0e822012-09-05 15:24:24 -0400638}
639
Dees_Troy51a0e822012-09-05 15:24:24 -0400640int TWPartitionManager::Is_Mounted_By_Path(string Path) {
Dees_Troy51127312012-09-08 13:08:49 -0400641 TWPartition* Part = Find_Partition_By_Path(Path);
642
643 if (Part)
644 return Part->Is_Mounted();
645 else
Dees_Troy2673cec2013-04-02 20:22:16 +0000646 LOGINFO("Is_Mounted: Unable to find partition for path '%s'\n", Path.c_str());
Dees_Troy51127312012-09-08 13:08:49 -0400647 return false;
Dees_Troy51a0e822012-09-05 15:24:24 -0400648}
649
Dees_Troy5bf43922012-09-07 16:07:55 -0400650int TWPartitionManager::Mount_Current_Storage(bool Display_Error) {
Dees_Troy51127312012-09-08 13:08:49 -0400651 string current_storage_path = DataManager::GetCurrentStoragePath();
652
653 if (Mount_By_Path(current_storage_path, Display_Error)) {
654 TWPartition* FreeStorage = Find_Partition_By_Path(current_storage_path);
655 if (FreeStorage)
656 DataManager::SetValue(TW_STORAGE_FREE_SIZE, (int)(FreeStorage->Free / 1048576LLU));
657 return true;
658 }
659 return false;
Dees_Troy51a0e822012-09-05 15:24:24 -0400660}
661
Dees_Troy5bf43922012-09-07 16:07:55 -0400662int TWPartitionManager::Mount_Settings_Storage(bool Display_Error) {
663 return Mount_By_Path(DataManager::GetSettingsStoragePath(), Display_Error);
664}
665
Ethan Yonker6e8c27a2016-12-22 17:55:57 -0600666TWPartition* TWPartitionManager::Find_Partition_By_Path(const string& Path) {
Dees_Troy5bf43922012-09-07 16:07:55 -0400667 std::vector<TWPartition*>::iterator iter;
Dees_Troy38bd7602012-09-14 13:33:53 -0400668 string Local_Path = TWFunc::Get_Root_Path(Path);
Dees_Troy5bf43922012-09-07 16:07:55 -0400669
dianlujitaob76a73a2020-04-30 20:33:20 +0800670 if (Local_Path == "/system")
671 Local_Path = Get_Android_Root_Path();
Dees_Troy5bf43922012-09-07 16:07:55 -0400672 for (iter = Partitions.begin(); iter != Partitions.end(); iter++) {
Dees_Troy657c3092012-09-10 20:32:10 -0400673 if ((*iter)->Mount_Point == Local_Path || (!(*iter)->Symlink_Mount_Point.empty() && (*iter)->Symlink_Mount_Point == Local_Path))
Dees_Troy5bf43922012-09-07 16:07:55 -0400674 return (*iter);
675 }
Dees_Troy51a0e822012-09-05 15:24:24 -0400676 return NULL;
677}
678
Ethan Yonker6e8c27a2016-12-22 17:55:57 -0600679TWPartition* TWPartitionManager::Find_Partition_By_Block_Device(const string& Block_Device) {
680 std::vector<TWPartition*>::iterator iter;
681
682 for (iter = Partitions.begin(); iter != Partitions.end(); iter++) {
683 if ((*iter)->Primary_Block_Device == Block_Device || (!(*iter)->Actual_Block_Device.empty() && (*iter)->Actual_Block_Device == Block_Device))
684 return (*iter);
685 }
686 return NULL;
687}
688
Ethan Yonker53796e72019-01-11 22:49:52 -0600689int TWPartitionManager::Check_Backup_Name(const std::string& Backup_Name, bool Display_Error, bool Must_Be_Unique) {
Dees_Troyc9ff7a32012-09-27 10:09:41 -0400690 // Check the backup name to ensure that it is the correct size and contains only valid characters
691 // and that a backup with that name doesn't already exist
692 char backup_name[MAX_BACKUP_NAME_LEN];
693 char backup_loc[255], tw_image_dir[255];
694 int copy_size;
695 int index, cur_char;
Ethan Yonker53796e72019-01-11 22:49:52 -0600696 string Backup_Loc;
Dees_Troyc9ff7a32012-09-27 10:09:41 -0400697
Dees_Troyc9ff7a32012-09-27 10:09:41 -0400698 copy_size = Backup_Name.size();
699 // Check size
700 if (copy_size > MAX_BACKUP_NAME_LEN) {
701 if (Display_Error)
Ethan Yonker74db1572015-10-28 12:44:49 -0500702 gui_err("backup_name_len=Backup name is too long.");
Dees_Troyc9ff7a32012-09-27 10:09:41 -0400703 return -2;
704 }
705
706 // Check each character
707 strncpy(backup_name, Backup_Name.c_str(), copy_size);
Dees_Troya13d74f2013-03-24 08:54:55 -0500708 if (copy_size == 1 && strncmp(backup_name, "0", 1) == 0)
Dees_Troyc9ff7a32012-09-27 10:09:41 -0400709 return 0; // A "0" (zero) means to use the current timestamp for the backup name
710 for (index=0; index<copy_size; index++) {
711 cur_char = (int)backup_name[index];
Matt Mowerfb1c4ff2014-04-16 13:43:36 -0500712 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 -0400713 // These are valid characters
714 // Numbers
715 // Upper case letters
716 // Lower case letters
717 // Space
718 // and -_.{}[]
719 } else {
720 if (Display_Error)
Ethan Yonker4adc33e2016-01-22 16:07:11 -0600721 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 -0400722 return -3;
723 }
724 }
725
Ethan Yonker53796e72019-01-11 22:49:52 -0600726 if (Must_Be_Unique) {
727 // Check to make sure that a backup with this name doesn't already exist
728 DataManager::GetValue(TW_BACKUPS_FOLDER_VAR, Backup_Loc);
729 strcpy(backup_loc, Backup_Loc.c_str());
730 sprintf(tw_image_dir,"%s/%s", backup_loc, Backup_Name.c_str());
731 if (TWFunc::Path_Exists(tw_image_dir)) {
732 if (Display_Error)
733 gui_err("backup_name_exists=A backup with that name already exists!");
bigbiffce8f83c2015-12-12 18:30:21 -0500734
Ethan Yonker53796e72019-01-11 22:49:52 -0600735 return -4;
736 }
737 // Backup is unique
Dees_Troyc9ff7a32012-09-27 10:09:41 -0400738 }
Ethan Yonker53796e72019-01-11 22:49:52 -0600739 // No problems found
Dees_Troyc9ff7a32012-09-27 10:09:41 -0400740 return 0;
741}
742
bigbiffce8f83c2015-12-12 18:30:21 -0500743bool TWPartitionManager::Backup_Partition(PartitionSettings *part_settings) {
Dees_Troy43d8b002012-09-17 16:00:01 -0400744 time_t start, stop;
Matt Mower23d8aae2017-01-06 14:30:33 -0600745 int use_compression;
bigbiffce8f83c2015-12-12 18:30:21 -0500746 string backup_log = part_settings->Backup_Folder + "/recovery.log";
Dees_Troy43d8b002012-09-17 16:00:01 -0400747
bigbiffce8f83c2015-12-12 18:30:21 -0500748 if (part_settings->Part == NULL)
Dees_Troy43d8b002012-09-17 16:00:01 -0400749 return true;
750
Dees_Troy093b7642012-09-21 15:59:38 -0400751 DataManager::GetValue(TW_USE_COMPRESSION_VAR, use_compression);
Dees_Troy093b7642012-09-21 15:59:38 -0400752
Tom Hite5a926722014-09-15 01:31:03 +0000753 TWFunc::SetPerformanceMode(true);
Dees_Troy43d8b002012-09-17 16:00:01 -0400754 time(&start);
755
bigbiffce8f83c2015-12-12 18:30:21 -0500756 if (part_settings->Part->Backup(part_settings, &tar_fork_pid)) {
Ethan Yonkercd00a8b2017-07-06 10:23:30 -0500757 sync();
758 sync();
bigbiff bigbiff56cf5642016-08-19 17:43:45 -0400759 string Full_Filename = part_settings->Backup_Folder + "/" + part_settings->Part->Backup_FileName;
Ethan Yonkercd00a8b2017-07-06 10:23:30 -0500760 if (!part_settings->adbbackup && part_settings->generate_digest) {
761 if (!twrpDigestDriver::Make_Digest(Full_Filename))
762 goto backup_error;
bigbiff bigbiff56cf5642016-08-19 17:43:45 -0400763 }
bigbiff bigbiff8fd4b092016-08-30 20:48:53 -0400764
bigbiffce8f83c2015-12-12 18:30:21 -0500765 if (part_settings->Part->Has_SubPartition) {
Dees_Troy8170a922012-09-18 15:40:25 -0400766 std::vector<TWPartition*>::iterator subpart;
bigbiff bigbiff8fd4b092016-08-30 20:48:53 -0400767 TWPartition *parentPart = part_settings->Part;
Dees_Troy8170a922012-09-18 15:40:25 -0400768
769 for (subpart = Partitions.begin(); subpart != Partitions.end(); subpart++) {
bigbiff bigbiff8fd4b092016-08-30 20:48:53 -0400770 if ((*subpart)->Can_Be_Backed_Up && (*subpart)->Is_SubPartition && (*subpart)->SubPartition_Of == parentPart->Mount_Point) {
Ethan Yonkerdcf2b672016-09-13 14:41:53 -0500771 part_settings->Part = *subpart;
bigbiffce8f83c2015-12-12 18:30:21 -0500772 if (!(*subpart)->Backup(part_settings, &tar_fork_pid)) {
Ethan Yonkercd00a8b2017-07-06 10:23:30 -0500773 goto backup_error;
Tom Hite5a926722014-09-15 01:31:03 +0000774 }
Dees_Troy2727b992013-08-14 20:09:30 +0000775 sync();
776 sync();
bigbiff bigbifff5955b12019-05-18 17:28:58 -0400777 string Full_Filename = part_settings->Backup_Folder + "/" + part_settings->Part->Backup_FileName;
bigbiff bigbiff56cf5642016-08-19 17:43:45 -0400778 if (!part_settings->adbbackup && part_settings->generate_digest) {
779 if (!twrpDigestDriver::Make_Digest(Full_Filename)) {
Ethan Yonkercd00a8b2017-07-06 10:23:30 -0500780 goto backup_error;
bigbiffce8f83c2015-12-12 18:30:21 -0500781 }
Tom Hite5a926722014-09-15 01:31:03 +0000782 }
Dees_Troy8170a922012-09-18 15:40:25 -0400783 }
784 }
785 }
bigbiff bigbiff56cf5642016-08-19 17:43:45 -0400786
Dees_Troy43d8b002012-09-17 16:00:01 -0400787 time(&stop);
that203bcc92015-05-09 17:27:33 +0200788 int backup_time = (int) difftime(stop, start);
Dees_Troy2673cec2013-04-02 20:22:16 +0000789 LOGINFO("Partition Backup time: %d\n", backup_time);
bigbiff bigbiff8fd4b092016-08-30 20:48:53 -0400790
bigbiffce8f83c2015-12-12 18:30:21 -0500791 if (part_settings->Part->Backup_Method == BM_FILES) {
792 part_settings->file_time += backup_time;
Dees_Troy43d8b002012-09-17 16:00:01 -0400793 } else {
bigbiffce8f83c2015-12-12 18:30:21 -0500794 part_settings->img_time += backup_time;
795
Dees_Troy43d8b002012-09-17 16:00:01 -0400796 }
Tom Hite5a926722014-09-15 01:31:03 +0000797
Matt Mower02899552016-12-30 18:13:51 -0600798 TWFunc::SetPerformanceMode(false);
Ethan Yonkercd00a8b2017-07-06 10:23:30 -0500799 return true;
Dees_Troy43d8b002012-09-17 16:00:01 -0400800 }
Ethan Yonkercd00a8b2017-07-06 10:23:30 -0500801backup_error:
802 Clean_Backup_Folder(part_settings->Backup_Folder);
803 TWFunc::copy_file("/tmp/recovery.log", backup_log, 0644);
804 tw_set_default_metadata(backup_log.c_str());
805 TWFunc::SetPerformanceMode(false);
806 return false;
bigbiff7abc5fe2015-01-17 16:53:12 -0500807}
808
bigbiffbf1d6722015-02-14 16:25:59 -0500809void TWPartitionManager::Clean_Backup_Folder(string Backup_Folder) {
810 DIR *d = opendir(Backup_Folder.c_str());
811 struct dirent *p;
812 int r;
bigbiff bigbiff56cf5642016-08-19 17:43:45 -0400813 vector<string> ext;
814
815 //extensions we should delete when cleaning
816 ext.push_back("win");
817 ext.push_back("md5");
818 ext.push_back("sha2");
819 ext.push_back("info");
bigbiffbf1d6722015-02-14 16:25:59 -0500820
Ethan Yonker74db1572015-10-28 12:44:49 -0500821 gui_msg("backup_clean=Backup Failed. Cleaning Backup Folder.");
bigbiffbf1d6722015-02-14 16:25:59 -0500822
823 if (d == NULL) {
Ethan Yonker74db1572015-10-28 12:44:49 -0500824 gui_msg(Msg(msg::kError, "error_opening_strerr=Error opening: '{1}' ({2})")(Backup_Folder)(strerror(errno)));
bigbiffbf1d6722015-02-14 16:25:59 -0500825 return;
826 }
827
Matt Mower2b18a532015-02-20 16:58:05 -0600828 while ((p = readdir(d))) {
bigbiffbf1d6722015-02-14 16:25:59 -0500829 if (!strcmp(p->d_name, ".") || !strcmp(p->d_name, ".."))
830 continue;
831
Ethan Yonkere080c1f2016-09-19 13:50:25 -0500832 string path = Backup_Folder + "/" + p->d_name;
bigbiffbf1d6722015-02-14 16:25:59 -0500833
834 size_t dot = path.find_last_of(".") + 1;
bigbiff bigbiff56cf5642016-08-19 17:43:45 -0400835 for (vector<string>::const_iterator i = ext.begin(); i != ext.end(); ++i) {
836 if (path.substr(dot) == *i) {
837 r = unlink(path.c_str());
838 if (r != 0)
839 LOGINFO("Unable to unlink '%s: %s'\n", path.c_str(), strerror(errno));
bigbiffbf1d6722015-02-14 16:25:59 -0500840 }
841 }
842 }
843 closedir(d);
844}
845
Ethan Yonker472f5062016-02-25 13:47:30 -0600846int TWPartitionManager::Check_Backup_Cancel() {
847 return stop_backup.get_value();
848}
849
bigbiff7abc5fe2015-01-17 16:53:12 -0500850int TWPartitionManager::Cancel_Backup() {
851 string Backup_Folder, Backup_Name, Full_Backup_Path;
852
853 stop_backup.set_value(1);
854
855 if (tar_fork_pid != 0) {
856 DataManager::GetValue(TW_BACKUP_NAME, Backup_Name);
857 DataManager::GetValue(TW_BACKUPS_FOLDER_VAR, Backup_Folder);
Ethan Yonkere080c1f2016-09-19 13:50:25 -0500858 Full_Backup_Path = Backup_Folder + "/" + Backup_Name;
bigbiff7abc5fe2015-01-17 16:53:12 -0500859 LOGINFO("Killing pid: %d\n", tar_fork_pid);
860 kill(tar_fork_pid, SIGUSR2);
861 while (kill(tar_fork_pid, 0) == 0) {
862 usleep(1000);
863 }
864 LOGINFO("Backup_Run stopped and returning false, backup cancelled.\n");
865 LOGINFO("Removing directory %s\n", Full_Backup_Path.c_str());
866 TWFunc::removeDir(Full_Backup_Path, false);
867 tar_fork_pid = 0;
868 }
869
870 return 0;
Dees_Troy43d8b002012-09-17 16:00:01 -0400871}
872
bigbiffce8f83c2015-12-12 18:30:21 -0500873int TWPartitionManager::Run_Backup(bool adbbackup) {
874 PartitionSettings part_settings;
bigbiff bigbiff56cf5642016-08-19 17:43:45 -0400875 int partition_count = 0, disable_free_space_check = 0, skip_digest = 0;
bigbiffce8f83c2015-12-12 18:30:21 -0500876 string Backup_Name, Backup_List, backup_path;
Matt Mower23d8aae2017-01-06 14:30:33 -0600877 unsigned long long total_bytes = 0, free_space = 0;
Dees_Troy43d8b002012-09-17 16:00:01 -0400878 TWPartition* storage = NULL;
879 struct tm *t;
Matt Mower23d8aae2017-01-06 14:30:33 -0600880 time_t seconds, total_start, total_stop;
Dees_Troya13d74f2013-03-24 08:54:55 -0500881 size_t start_pos = 0, end_pos = 0;
bigbiff7abc5fe2015-01-17 16:53:12 -0500882 stop_backup.set_value(0);
Dees_Troy43d8b002012-09-17 16:00:01 -0400883 seconds = time(0);
Matt Mowerfb1c4ff2014-04-16 13:43:36 -0500884 t = localtime(&seconds);
Dees_Troy43d8b002012-09-17 16:00:01 -0400885
bigbiffce8f83c2015-12-12 18:30:21 -0500886 part_settings.img_bytes_remaining = 0;
887 part_settings.file_bytes_remaining = 0;
888 part_settings.img_time = 0;
889 part_settings.file_time = 0;
890 part_settings.img_bytes = 0;
891 part_settings.file_bytes = 0;
892 part_settings.PM_Method = PM_BACKUP;
893
bigbiffce8f83c2015-12-12 18:30:21 -0500894 part_settings.adbbackup = adbbackup;
Dees_Troy43d8b002012-09-17 16:00:01 -0400895 time(&total_start);
896
897 Update_System_Details();
898
899 if (!Mount_Current_Storage(true))
900 return false;
901
bigbiff bigbiff56cf5642016-08-19 17:43:45 -0400902 DataManager::GetValue(TW_SKIP_DIGEST_GENERATE_VAR, skip_digest);
903 if (skip_digest == 0)
904 part_settings.generate_digest = true;
Dees_Troyc5865ab2012-09-24 15:08:04 -0400905 else
bigbiff bigbiff56cf5642016-08-19 17:43:45 -0400906 part_settings.generate_digest = false;
Dees_Troy4a2a1262012-09-18 09:33:47 -0400907
bigbiffce8f83c2015-12-12 18:30:21 -0500908 DataManager::GetValue(TW_BACKUPS_FOLDER_VAR, part_settings.Backup_Folder);
Ethan Yonkerdcf2b672016-09-13 14:41:53 -0500909 DataManager::GetValue(TW_BACKUP_NAME, Backup_Name);
910 if (Backup_Name == gui_lookup("curr_date", "(Current Date)")) {
911 Backup_Name = TWFunc::Get_Current_Date();
912 } else if (Backup_Name == gui_lookup("auto_generate", "(Auto Generate)") || Backup_Name == "0" || Backup_Name.empty()) {
Dees Troyb21cc642013-09-10 17:36:41 +0000913 TWFunc::Auto_Generate_Backup_Name();
Ethan Yonkerdcf2b672016-09-13 14:41:53 -0500914 DataManager::GetValue(TW_BACKUP_NAME, Backup_Name);
Dees_Troy43d8b002012-09-17 16:00:01 -0400915 }
bigbiffce8f83c2015-12-12 18:30:21 -0500916
Ethan Yonkerdcf2b672016-09-13 14:41:53 -0500917 LOGINFO("Backup Name is: '%s'\n", Backup_Name.c_str());
Ethan Yonkere080c1f2016-09-19 13:50:25 -0500918 part_settings.Backup_Folder = part_settings.Backup_Folder + "/" + Backup_Name;
bigbiffce8f83c2015-12-12 18:30:21 -0500919
Ethan Yonkere080c1f2016-09-19 13:50:25 -0500920 LOGINFO("Backup_Folder is: '%s'\n", part_settings.Backup_Folder.c_str());
Dees_Troy43d8b002012-09-17 16:00:01 -0400921
Dees_Troy2673cec2013-04-02 20:22:16 +0000922 LOGINFO("Calculating backup details...\n");
Dees_Troya13d74f2013-03-24 08:54:55 -0500923 DataManager::GetValue("tw_backup_list", Backup_List);
bigbiff7ba75002020-04-11 20:47:09 -0400924 LOGINFO("Backup_List: %s\n", Backup_List.c_str());
Dees_Troya13d74f2013-03-24 08:54:55 -0500925 if (!Backup_List.empty()) {
926 end_pos = Backup_List.find(";", start_pos);
927 while (end_pos != string::npos && start_pos < Backup_List.size()) {
928 backup_path = Backup_List.substr(start_pos, end_pos - start_pos);
bigbiff7ba75002020-04-11 20:47:09 -0400929 LOGINFO("backup_path: %s\n", backup_path.c_str());
bigbiffce8f83c2015-12-12 18:30:21 -0500930 part_settings.Part = Find_Partition_By_Path(backup_path);
931 if (part_settings.Part != NULL) {
Dees_Troya13d74f2013-03-24 08:54:55 -0500932 partition_count++;
bigbiffce8f83c2015-12-12 18:30:21 -0500933 if (part_settings.Part->Backup_Method == BM_FILES)
934 part_settings.file_bytes += part_settings.Part->Backup_Size;
Dees_Troya13d74f2013-03-24 08:54:55 -0500935 else
bigbiffce8f83c2015-12-12 18:30:21 -0500936 part_settings.img_bytes += part_settings.Part->Backup_Size;
937 if (part_settings.Part->Has_SubPartition) {
Dees_Troya13d74f2013-03-24 08:54:55 -0500938 std::vector<TWPartition*>::iterator subpart;
939
940 for (subpart = Partitions.begin(); subpart != Partitions.end(); subpart++) {
bigbiffce8f83c2015-12-12 18:30:21 -0500941 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 -0500942 partition_count++;
bigbiffce8f83c2015-12-12 18:30:21 -0500943 if ((*subpart)->Backup_Method == BM_FILES)
944 part_settings.file_bytes += (*subpart)->Backup_Size;
Dees_Troya13d74f2013-03-24 08:54:55 -0500945 else
bigbiffce8f83c2015-12-12 18:30:21 -0500946 part_settings.img_bytes += (*subpart)->Backup_Size;
Dees_Troya13d74f2013-03-24 08:54:55 -0500947 }
948 }
Dees_Troy8170a922012-09-18 15:40:25 -0400949 }
Dees_Troya13d74f2013-03-24 08:54:55 -0500950 } else {
Ethan Yonker74db1572015-10-28 12:44:49 -0500951 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 -0400952 }
Dees_Troya13d74f2013-03-24 08:54:55 -0500953 start_pos = end_pos + 1;
954 end_pos = Backup_List.find(";", start_pos);
Dees_Troy43d8b002012-09-17 16:00:01 -0400955 }
956 }
Dees_Troy43d8b002012-09-17 16:00:01 -0400957
958 if (partition_count == 0) {
Ethan Yonker74db1572015-10-28 12:44:49 -0500959 gui_msg("no_partition_selected=No partitions selected for backup.");
Dees_Troy43d8b002012-09-17 16:00:01 -0400960 return false;
961 }
bigbiffce8f83c2015-12-12 18:30:21 -0500962 if (adbbackup) {
963 if (twadbbu::Write_ADB_Stream_Header(partition_count) == false) {
964 return false;
965 }
966 }
967 total_bytes = part_settings.file_bytes + part_settings.img_bytes;
Ethan Yonker472f5062016-02-25 13:47:30 -0600968 ProgressTracking progress(total_bytes);
bigbiffce8f83c2015-12-12 18:30:21 -0500969 part_settings.progress = &progress;
970
Ethan Yonker74db1572015-10-28 12:44:49 -0500971 gui_msg(Msg("total_partitions_backup= * Total number of partitions to back up: {1}")(partition_count));
972 gui_msg(Msg("total_backup_size= * Total size of all data: {1}MB")(total_bytes / 1024 / 1024));
Dees_Troy43d8b002012-09-17 16:00:01 -0400973 storage = Find_Partition_By_Path(DataManager::GetCurrentStoragePath());
974 if (storage != NULL) {
975 free_space = storage->Free;
Ethan Yonker74db1572015-10-28 12:44:49 -0500976 gui_msg(Msg("available_space= * Available space: {1}MB")(free_space / 1024 / 1024));
Dees_Troy43d8b002012-09-17 16:00:01 -0400977 } else {
Ethan Yonker74db1572015-10-28 12:44:49 -0500978 gui_err("unable_locate_storage=Unable to locate storage device.");
Dees_Troy43d8b002012-09-17 16:00:01 -0400979 return false;
980 }
bigbiffbf1d6722015-02-14 16:25:59 -0500981
Matt Mowerbfccfb82016-04-25 23:22:31 -0500982 DataManager::GetValue(TW_DISABLE_FREE_SPACE_VAR, disable_free_space_check);
bigbiffce8f83c2015-12-12 18:30:21 -0500983
984 if (adbbackup)
985 disable_free_space_check = true;
986
bigbiffbf1d6722015-02-14 16:25:59 -0500987 if (!disable_free_space_check) {
988 if (free_space - (32 * 1024 * 1024) < total_bytes) {
989 // We require an extra 32MB just in case
Ethan Yonker74db1572015-10-28 12:44:49 -0500990 gui_err("no_space=Not enough free space on storage.");
bigbiffbf1d6722015-02-14 16:25:59 -0500991 return false;
992 }
Dees_Troy43d8b002012-09-17 16:00:01 -0400993 }
bigbiffce8f83c2015-12-12 18:30:21 -0500994 part_settings.img_bytes_remaining = part_settings.img_bytes;
995 part_settings.file_bytes_remaining = part_settings.file_bytes;
Dees_Troy43d8b002012-09-17 16:00:01 -0400996
Ethan Yonker74db1572015-10-28 12:44:49 -0500997 gui_msg("backup_started=[BACKUP STARTED]");
bigbiff bigbiffcdd97c72019-03-29 19:12:33 -0400998
999 int is_decrypted = 0;
1000 int is_encrypted = 0;
1001
1002 DataManager::GetValue(TW_IS_DECRYPTED, is_decrypted);
1003 DataManager::GetValue(TW_IS_ENCRYPTED, is_encrypted);
1004 if (!adbbackup || (!is_encrypted || (is_encrypted && is_decrypted))) {
1005 gui_msg(Msg("backup_folder= * Backup Folder: {1}")(part_settings.Backup_Folder));
1006 if (!TWFunc::Recursive_Mkdir(part_settings.Backup_Folder)) {
1007 gui_err("fail_backup_folder=Failed to make backup folder.");
1008 return false;
1009 }
Dees_Troyd4b22b02013-01-18 17:17:58 +00001010 }
1011
Dees_Troy2673cec2013-04-02 20:22:16 +00001012 DataManager::SetProgress(0.0);
Dees_Troy093b7642012-09-21 15:59:38 -04001013
Dees_Troya13d74f2013-03-24 08:54:55 -05001014 start_pos = 0;
1015 end_pos = Backup_List.find(";", start_pos);
1016 while (end_pos != string::npos && start_pos < Backup_List.size()) {
bigbiff7abc5fe2015-01-17 16:53:12 -05001017 if (stop_backup.get_value() != 0)
1018 return -1;
Dees_Troya13d74f2013-03-24 08:54:55 -05001019 backup_path = Backup_List.substr(start_pos, end_pos - start_pos);
bigbiffce8f83c2015-12-12 18:30:21 -05001020 part_settings.Part = Find_Partition_By_Path(backup_path);
1021 if (part_settings.Part != NULL) {
1022 if (!Backup_Partition(&part_settings))
Dees_Troya13d74f2013-03-24 08:54:55 -05001023 return false;
1024 } else {
Ethan Yonker74db1572015-10-28 12:44:49 -05001025 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 -05001026 }
1027 start_pos = end_pos + 1;
1028 end_pos = Backup_List.find(";", start_pos);
1029 }
Dees_Troy43d8b002012-09-17 16:00:01 -04001030
1031 // Average BPS
bigbiffce8f83c2015-12-12 18:30:21 -05001032 if (part_settings.img_time == 0)
1033 part_settings.img_time = 1;
1034 if (part_settings.file_time == 0)
1035 part_settings.file_time = 1;
1036 int img_bps = (int)part_settings.img_bytes / (int)part_settings.img_time;
1037 unsigned long long file_bps = part_settings.file_bytes / (int)part_settings.file_time;
Dees_Troy43d8b002012-09-17 16:00:01 -04001038
bigbiffce8f83c2015-12-12 18:30:21 -05001039 if (part_settings.file_bytes != 0)
Ethan Yonker472f5062016-02-25 13:47:30 -06001040 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 -05001041 if (part_settings.img_bytes != 0)
Ethan Yonker472f5062016-02-25 13:47:30 -06001042 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 -04001043
1044 time(&total_stop);
1045 int total_time = (int) difftime(total_stop, total_start);
bigbiffce8f83c2015-12-12 18:30:21 -05001046
1047 uint64_t actual_backup_size;
Ethan Yonker3fdcda42016-11-30 12:29:37 -06001048 if (!adbbackup) {
1049 TWExclude twe;
1050 actual_backup_size = twe.Get_Folder_Size(part_settings.Backup_Folder);
1051 } else
bigbiffce8f83c2015-12-12 18:30:21 -05001052 actual_backup_size = part_settings.file_bytes + part_settings.img_bytes;
Matt Mowerfb1c4ff2014-04-16 13:43:36 -05001053 actual_backup_size /= (1024LLU * 1024LLU);
Dees_Troy43d8b002012-09-17 16:00:01 -04001054
bigbiffce8f83c2015-12-12 18:30:21 -05001055 int prev_img_bps = 0, use_compression = 0;
1056 unsigned long long prev_file_bps = 0;
Matt Mower173cdb92016-12-31 02:49:19 -06001057 DataManager::GetValue(TW_BACKUP_AVG_IMG_RATE, prev_img_bps);
Dees_Troy093b7642012-09-21 15:59:38 -04001058 img_bps += (prev_img_bps * 4);
Matt Mowerfb1c4ff2014-04-16 13:43:36 -05001059 img_bps /= 5;
Dees_Troy093b7642012-09-21 15:59:38 -04001060
Matt Mowerfb1c4ff2014-04-16 13:43:36 -05001061 DataManager::GetValue(TW_USE_COMPRESSION_VAR, use_compression);
Dees_Troy093b7642012-09-21 15:59:38 -04001062 if (use_compression)
1063 DataManager::GetValue(TW_BACKUP_AVG_FILE_COMP_RATE, prev_file_bps);
Matt Mowerfb1c4ff2014-04-16 13:43:36 -05001064 else
Dees_Troy093b7642012-09-21 15:59:38 -04001065 DataManager::GetValue(TW_BACKUP_AVG_FILE_RATE, prev_file_bps);
1066 file_bps += (prev_file_bps * 4);
Matt Mowerfb1c4ff2014-04-16 13:43:36 -05001067 file_bps /= 5;
Dees_Troy093b7642012-09-21 15:59:38 -04001068
Matt Mowerfb1c4ff2014-04-16 13:43:36 -05001069 DataManager::SetValue(TW_BACKUP_AVG_IMG_RATE, img_bps);
Dees_Troy093b7642012-09-21 15:59:38 -04001070 if (use_compression)
1071 DataManager::SetValue(TW_BACKUP_AVG_FILE_COMP_RATE, file_bps);
1072 else
1073 DataManager::SetValue(TW_BACKUP_AVG_FILE_RATE, file_bps);
1074
Ethan Yonker74db1572015-10-28 12:44:49 -05001075 gui_msg(Msg("total_backed_size=[{1} MB TOTAL BACKED UP]")(actual_backup_size));
Dees_Troy43d8b002012-09-17 16:00:01 -04001076 Update_System_Details();
Dees_Troyd0384ef2012-10-12 12:15:42 -04001077 UnMount_Main_Partitions();
Ethan Yonker56db1c42015-12-20 22:49:00 -06001078 gui_msg(Msg(msg::kHighlight, "backup_completed=[BACKUP COMPLETED IN {1} SECONDS]")(total_time)); // the end
Ethan Yonkere080c1f2016-09-19 13:50:25 -05001079 string backup_log = part_settings.Backup_Folder + "/recovery.log";
Dees_Troy3f5c4e82013-02-01 15:16:59 +00001080 TWFunc::copy_file("/tmp/recovery.log", backup_log, 0644);
Ethan Yonker4b94cfd2014-12-11 10:00:45 -06001081 tw_set_default_metadata(backup_log.c_str());
bigbiffce8f83c2015-12-12 18:30:21 -05001082
1083 if (part_settings.adbbackup) {
1084 if (twadbbu::Write_ADB_Stream_Trailer() == false) {
1085 return false;
1086 }
1087 }
1088 part_settings.adbbackup = false;
1089 DataManager::SetValue("tw_enable_adb_backup", 0);
1090
Dees_Troy3f5c4e82013-02-01 15:16:59 +00001091 return true;
Dees_Troy51a0e822012-09-05 15:24:24 -04001092}
1093
bigbiffce8f83c2015-12-12 18:30:21 -05001094bool TWPartitionManager::Restore_Partition(PartitionSettings *part_settings) {
Dees_Troy4a2a1262012-09-18 09:33:47 -04001095 time_t Start, Stop;
bigbiffce8f83c2015-12-12 18:30:21 -05001096
bigbiff bigbiffb5ecaad2017-03-20 18:53:53 -04001097 if (part_settings->adbbackup) {
bigbiff bigbiff19fb79c2016-09-05 21:04:51 -04001098 std::string partName = part_settings->Part->Backup_Name + "." + part_settings->Part->Current_File_System + ".win";
1099 LOGINFO("setting backup name: %s\n", partName.c_str());
bigbiff bigbiffb5ecaad2017-03-20 18:53:53 -04001100 part_settings->Part->Set_Backup_FileName(part_settings->Part->Backup_Name + "." + part_settings->Part->Current_File_System + ".win");
1101 }
1102
Tom Hite5a926722014-09-15 01:31:03 +00001103 TWFunc::SetPerformanceMode(true);
bigbiffce8f83c2015-12-12 18:30:21 -05001104
Dees_Troy4a2a1262012-09-18 09:33:47 -04001105 time(&Start);
Ethan Yonker472f5062016-02-25 13:47:30 -06001106
bigbiffce8f83c2015-12-12 18:30:21 -05001107 if (!part_settings->Part->Restore(part_settings)) {
Tom Hite5a926722014-09-15 01:31:03 +00001108 TWFunc::SetPerformanceMode(false);
Dees_Troy4a2a1262012-09-18 09:33:47 -04001109 return false;
Tom Hite5a926722014-09-15 01:31:03 +00001110 }
bigbiff bigbiff19fb79c2016-09-05 21:04:51 -04001111 if (part_settings->Part->Has_SubPartition && !part_settings->adbbackup) {
Dees_Troy8170a922012-09-18 15:40:25 -04001112 std::vector<TWPartition*>::iterator subpart;
bigbiff bigbiff8fd4b092016-08-30 20:48:53 -04001113 TWPartition *parentPart = part_settings->Part;
Dees_Troy8170a922012-09-18 15:40:25 -04001114
1115 for (subpart = Partitions.begin(); subpart != Partitions.end(); subpart++) {
bigbiff bigbiff8fd4b092016-08-30 20:48:53 -04001116 part_settings->Part = *subpart;
1117 if ((*subpart)->Is_SubPartition && (*subpart)->SubPartition_Of == parentPart->Mount_Point) {
1118 part_settings->Part = (*subpart);
bigbiff bigbiff19fb79c2016-09-05 21:04:51 -04001119 part_settings->Part->Set_Backup_FileName(part_settings->Part->Backup_Name + "." + part_settings->Part->Current_File_System + ".win");
bigbiffce8f83c2015-12-12 18:30:21 -05001120 if (!(*subpart)->Restore(part_settings)) {
Tom Hite5a926722014-09-15 01:31:03 +00001121 TWFunc::SetPerformanceMode(false);
Dees_Troy8170a922012-09-18 15:40:25 -04001122 return false;
Tom Hite5a926722014-09-15 01:31:03 +00001123 }
Dees_Troy8170a922012-09-18 15:40:25 -04001124 }
1125 }
1126 }
Dees_Troy4a2a1262012-09-18 09:33:47 -04001127 time(&Stop);
Tom Hite5a926722014-09-15 01:31:03 +00001128 TWFunc::SetPerformanceMode(false);
bigbiffce8f83c2015-12-12 18:30:21 -05001129 gui_msg(Msg("restore_part_done=[{1} done ({2} seconds)]")(part_settings->Part->Backup_Display_Name)((int)difftime(Stop, Start)));
1130
Dees_Troy4a2a1262012-09-18 09:33:47 -04001131 return true;
1132}
1133
Ethan Yonker472f5062016-02-25 13:47:30 -06001134int TWPartitionManager::Run_Restore(const string& Restore_Name) {
bigbiffce8f83c2015-12-12 18:30:21 -05001135 PartitionSettings part_settings;
bigbiff bigbiff56cf5642016-08-19 17:43:45 -04001136 int check_digest;
bigbiffce8f83c2015-12-12 18:30:21 -05001137
Dees_Troy4a2a1262012-09-18 09:33:47 -04001138 time_t rStart, rStop;
1139 time(&rStart);
Dees_Troya13d74f2013-03-24 08:54:55 -05001140 string Restore_List, restore_path;
1141 size_t start_pos = 0, end_pos;
bigbiffce8f83c2015-12-12 18:30:21 -05001142
Ethan Yonkerdcf2b672016-09-13 14:41:53 -05001143 part_settings.Backup_Folder = Restore_Name;
bigbiffce8f83c2015-12-12 18:30:21 -05001144 part_settings.Part = NULL;
1145 part_settings.partition_count = 0;
1146 part_settings.total_restore_size = 0;
1147 part_settings.adbbackup = false;
1148 part_settings.PM_Method = PM_RESTORE;
Dees_Troy43d8b002012-09-17 16:00:01 -04001149
Ethan Yonker74db1572015-10-28 12:44:49 -05001150 gui_msg("restore_started=[RESTORE STARTED]");
1151 gui_msg(Msg("restore_folder=Restore folder: '{1}'")(Restore_Name));
Dees_Troy43d8b002012-09-17 16:00:01 -04001152
Dees_Troy4a2a1262012-09-18 09:33:47 -04001153 if (!Mount_Current_Storage(true))
1154 return false;
1155
bigbiff bigbiff56cf5642016-08-19 17:43:45 -04001156 DataManager::GetValue(TW_SKIP_DIGEST_CHECK_VAR, check_digest);
1157 if (check_digest > 0) {
1158 // Check Digest files first before restoring to ensure that all of them match before starting a restore
1159 TWFunc::GUI_Operation_Text(TW_VERIFY_DIGEST_TEXT, gui_parse_text("{@verifying_digest}"));
1160 gui_msg("verifying_digest=Verifying Digest");
Dees_Troya13d74f2013-03-24 08:54:55 -05001161 } else {
bigbiff bigbiff56cf5642016-08-19 17:43:45 -04001162 gui_msg("skip_digest=Skipping Digest check based on user setting.");
Dees_Troya13d74f2013-03-24 08:54:55 -05001163 }
Ethan Yonker74db1572015-10-28 12:44:49 -05001164 gui_msg("calc_restore=Calculating restore details...");
Dees_Troya13d74f2013-03-24 08:54:55 -05001165 DataManager::GetValue("tw_restore_selected", Restore_List);
bigbiffce8f83c2015-12-12 18:30:21 -05001166
Dees_Troya13d74f2013-03-24 08:54:55 -05001167 if (!Restore_List.empty()) {
1168 end_pos = Restore_List.find(";", start_pos);
1169 while (end_pos != string::npos && start_pos < Restore_List.size()) {
1170 restore_path = Restore_List.substr(start_pos, end_pos - start_pos);
bigbiffce8f83c2015-12-12 18:30:21 -05001171 part_settings.Part = Find_Partition_By_Path(restore_path);
1172 if (part_settings.Part != NULL) {
bigbiffce8f83c2015-12-12 18:30:21 -05001173 if (part_settings.Part->Mount_Read_Only) {
1174 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 -05001175 return false;
1176 }
bigbiffce8f83c2015-12-12 18:30:21 -05001177
bigbiff bigbiff56cf5642016-08-19 17:43:45 -04001178 string Full_Filename = part_settings.Backup_Folder + "/" + part_settings.Part->Backup_FileName;
1179
1180 if (check_digest > 0 && !twrpDigestDriver::Check_Digest(Full_Filename))
Dees_Troya13d74f2013-03-24 08:54:55 -05001181 return false;
bigbiffce8f83c2015-12-12 18:30:21 -05001182 part_settings.partition_count++;
1183 part_settings.total_restore_size += part_settings.Part->Get_Restore_Size(&part_settings);
1184 if (part_settings.Part->Has_SubPartition) {
bigbiff bigbiff8fd4b092016-08-30 20:48:53 -04001185 TWPartition *parentPart = part_settings.Part;
Dees_Troya13d74f2013-03-24 08:54:55 -05001186 std::vector<TWPartition*>::iterator subpart;
1187
1188 for (subpart = Partitions.begin(); subpart != Partitions.end(); subpart++) {
bigbiff bigbiff8fd4b092016-08-30 20:48:53 -04001189 part_settings.Part = *subpart;
1190 if ((*subpart)->Is_SubPartition && (*subpart)->SubPartition_Of == parentPart->Mount_Point) {
bigbiff bigbiff56cf5642016-08-19 17:43:45 -04001191 if (check_digest > 0 && !twrpDigestDriver::Check_Digest(Full_Filename))
Dees_Troya13d74f2013-03-24 08:54:55 -05001192 return false;
bigbiffce8f83c2015-12-12 18:30:21 -05001193 part_settings.total_restore_size += (*subpart)->Get_Restore_Size(&part_settings);
Dees_Troya13d74f2013-03-24 08:54:55 -05001194 }
1195 }
1196 }
1197 } else {
Ethan Yonker74db1572015-10-28 12:44:49 -05001198 gui_msg(Msg(msg::kError, "restore_unable_locate=Unable to locate '{1}' partition for restoring.")(restore_path));
Dees_Troya13d74f2013-03-24 08:54:55 -05001199 }
1200 start_pos = end_pos + 1;
1201 end_pos = Restore_List.find(";", start_pos);
Dees_Troy4a2a1262012-09-18 09:33:47 -04001202 }
Dees_Troy4a2a1262012-09-18 09:33:47 -04001203 }
Dees_Troy4a2a1262012-09-18 09:33:47 -04001204
bigbiffce8f83c2015-12-12 18:30:21 -05001205 if (part_settings.partition_count == 0) {
Ethan Yonker74db1572015-10-28 12:44:49 -05001206 gui_err("no_part_restore=No partitions selected for restore.");
Dees_Troy4a2a1262012-09-18 09:33:47 -04001207 return false;
1208 }
1209
bigbiffce8f83c2015-12-12 18:30:21 -05001210 gui_msg(Msg("restore_part_count=Restoring {1} partitions...")(part_settings.partition_count));
1211 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 +00001212 DataManager::SetProgress(0.0);
bigbiffce8f83c2015-12-12 18:30:21 -05001213 ProgressTracking progress(part_settings.total_restore_size);
1214 part_settings.progress = &progress;
Ethan Yonker1b7a31b2014-07-03 15:09:22 -05001215
Dees_Troya13d74f2013-03-24 08:54:55 -05001216 start_pos = 0;
1217 if (!Restore_List.empty()) {
1218 end_pos = Restore_List.find(";", start_pos);
1219 while (end_pos != string::npos && start_pos < Restore_List.size()) {
1220 restore_path = Restore_List.substr(start_pos, end_pos - start_pos);
bigbiffce8f83c2015-12-12 18:30:21 -05001221
1222 part_settings.Part = Find_Partition_By_Path(restore_path);
1223 if (part_settings.Part != NULL) {
1224 part_settings.partition_count++;
bigbiffce8f83c2015-12-12 18:30:21 -05001225 if (!Restore_Partition(&part_settings))
Dees_Troya13d74f2013-03-24 08:54:55 -05001226 return false;
1227 } else {
Ethan Yonker74db1572015-10-28 12:44:49 -05001228 gui_msg(Msg(msg::kError, "restore_unable_locate=Unable to locate '{1}' partition for restoring.")(restore_path));
Dees_Troya13d74f2013-03-24 08:54:55 -05001229 }
1230 start_pos = end_pos + 1;
1231 end_pos = Restore_List.find(";", start_pos);
1232 }
1233 }
Ethan Yonker74db1572015-10-28 12:44:49 -05001234 TWFunc::GUI_Operation_Text(TW_UPDATE_SYSTEM_DETAILS_TEXT, gui_parse_text("{@updating_system_details}"));
Captain Throwback9d6feb52018-07-27 10:05:24 -04001235 UnMount_By_Path(Get_Android_Root_Path(), false);
Dees_Troy43d8b002012-09-17 16:00:01 -04001236 Update_System_Details();
Dees_Troyd0384ef2012-10-12 12:15:42 -04001237 UnMount_Main_Partitions();
Dees_Troy4a2a1262012-09-18 09:33:47 -04001238 time(&rStop);
Matt Mower3c366972015-12-25 19:28:31 -06001239 gui_msg(Msg(msg::kHighlight, "restore_completed=[RESTORE COMPLETED IN {1} SECONDS]")((int)difftime(rStop,rStart)));
Ethan Yonker1b7a31b2014-07-03 15:09:22 -05001240 DataManager::SetValue("tw_file_progress", "");
bigbiffce8f83c2015-12-12 18:30:21 -05001241
Dees_Troy63c8df72012-09-10 14:02:05 -04001242 return true;
Dees_Troy51a0e822012-09-05 15:24:24 -04001243}
1244
1245void TWPartitionManager::Set_Restore_Files(string Restore_Name) {
Dees_Troy63c8df72012-09-10 14:02:05 -04001246 // Start with the default values
Dees_Troya13d74f2013-03-24 08:54:55 -05001247 string Restore_List;
Dees_Troy83bd4832013-05-04 12:39:56 +00001248 bool get_date = true, check_encryption = true;
bigbiff bigbiff19fb79c2016-09-05 21:04:51 -04001249 bool adbbackup = false;
Dees_Troy83bd4832013-05-04 12:39:56 +00001250
1251 DataManager::SetValue("tw_restore_encrypted", 0);
bigbiff bigbiff19fb79c2016-09-05 21:04:51 -04001252 if (twadbbu::Check_ADB_Backup_File(Restore_Name)) {
1253 vector<string> adb_files;
1254 adb_files = twadbbu::Get_ADB_Backup_Files(Restore_Name);
1255 for (unsigned int i = 0; i < adb_files.size(); ++i) {
1256 string adb_restore_file = adb_files.at(i);
1257 std::size_t pos = adb_restore_file.find_first_of(".");
1258 std::string path = "/" + adb_restore_file.substr(0, pos);
1259 Restore_List = path + ";";
1260 TWPartition* Part = Find_Partition_By_Path(path);
1261 Part->Backup_FileName = TWFunc::Get_Filename(adb_restore_file);
1262 adbbackup = true;
1263 }
1264 DataManager::SetValue("tw_enable_adb_backup", 1);
Dees_Troy63c8df72012-09-10 14:02:05 -04001265 }
bigbiff bigbiff19fb79c2016-09-05 21:04:51 -04001266 else {
1267 DIR* d;
1268 d = opendir(Restore_Name.c_str());
1269 if (d == NULL)
Dees_Troy63c8df72012-09-10 14:02:05 -04001270 {
bigbiff bigbiff19fb79c2016-09-05 21:04:51 -04001271 gui_msg(Msg(msg::kError, "error_opening_strerr=Error opening: '{1}' ({2})")(Restore_Name)(strerror(errno)));
1272 return;
Dees_Troy63c8df72012-09-10 14:02:05 -04001273 }
bigbiff bigbiff19fb79c2016-09-05 21:04:51 -04001274
1275 struct dirent* de;
1276 while ((de = readdir(d)) != NULL)
Dees_Troy63c8df72012-09-10 14:02:05 -04001277 {
bigbiff bigbiff19fb79c2016-09-05 21:04:51 -04001278 // Strip off three components
1279 char str[256];
1280 char* label;
1281 char* fstype = NULL;
1282 char* extn = NULL;
1283 char* ptr;
Dees_Troy63c8df72012-09-10 14:02:05 -04001284
bigbiff bigbiff19fb79c2016-09-05 21:04:51 -04001285 strcpy(str, de->d_name);
1286 if (strlen(str) <= 2)
1287 continue;
Dees_Troy83bd4832013-05-04 12:39:56 +00001288
bigbiff bigbiff19fb79c2016-09-05 21:04:51 -04001289 if (get_date) {
1290 char file_path[255];
1291 struct stat st;
1292
1293 strcpy(file_path, Restore_Name.c_str());
1294 strcat(file_path, "/");
1295 strcat(file_path, str);
1296 stat(file_path, &st);
1297 string backup_date = ctime((const time_t*)(&st.st_mtime));
1298 DataManager::SetValue(TW_RESTORE_FILE_DATE, backup_date);
1299 get_date = false;
Dees_Troy83bd4832013-05-04 12:39:56 +00001300 }
Dees_Troy63c8df72012-09-10 14:02:05 -04001301
bigbiff bigbiff19fb79c2016-09-05 21:04:51 -04001302 label = str;
1303 ptr = label;
1304 while (*ptr && *ptr != '.') ptr++;
1305 if (*ptr == '.')
1306 {
1307 *ptr = 0x00;
1308 ptr++;
1309 fstype = ptr;
1310 }
1311 while (*ptr && *ptr != '.') ptr++;
1312 if (*ptr == '.')
1313 {
1314 *ptr = 0x00;
1315 ptr++;
1316 extn = ptr;
1317 }
Dees_Troy63c8df72012-09-10 14:02:05 -04001318
bigbiff bigbiff19fb79c2016-09-05 21:04:51 -04001319 if (fstype == NULL || extn == NULL || strcmp(fstype, "log") == 0) continue;
1320 int extnlength = strlen(extn);
1321 if (extnlength != 3 && extnlength != 6) continue;
1322 if (extnlength >= 3 && strncmp(extn, "win", 3) != 0) continue;
1323 //if (extnlength == 6 && strncmp(extn, "win000", 6) != 0) continue;
Dees_Troy63c8df72012-09-10 14:02:05 -04001324
bigbiff bigbiff19fb79c2016-09-05 21:04:51 -04001325 if (check_encryption) {
1326 string filename = Restore_Name + "/";
1327 filename += de->d_name;
1328 if (TWFunc::Get_File_Type(filename) == 2) {
1329 LOGINFO("'%s' is encrypted\n", filename.c_str());
1330 DataManager::SetValue("tw_restore_encrypted", 1);
1331 }
1332 }
1333 if (extnlength == 6 && strncmp(extn, "win000", 6) != 0) continue;
1334
1335 TWPartition* Part = Find_Partition_By_Path(label);
1336 if (Part == NULL)
1337 {
1338 gui_msg(Msg(msg::kError, "unable_locate_part_backup_name=Unable to locate partition by backup name: '{1}'")(label));
1339 continue;
1340 }
1341
1342 Part->Backup_FileName = de->d_name;
1343 if (strlen(extn) > 3) {
1344 Part->Backup_FileName.resize(Part->Backup_FileName.size() - strlen(extn) + 3);
1345 }
1346
dianlujitaob76a73a2020-04-30 20:33:20 +08001347 if (!Part->Is_SubPartition) {
1348 if (Part->Backup_Path == Get_Android_Root_Path())
1349 Restore_List += "/system;";
1350 else
1351 Restore_List += Part->Backup_Path + ";";
1352 }
bigbiff bigbiff19fb79c2016-09-05 21:04:51 -04001353 }
1354 closedir(d);
Dees_Troy63c8df72012-09-10 14:02:05 -04001355 }
bigbiff bigbiff19fb79c2016-09-05 21:04:51 -04001356
1357 if (adbbackup) {
1358 Restore_List = "ADB_Backup;";
1359 adbbackup = false;
1360 }
Dees_Troy63c8df72012-09-10 14:02:05 -04001361
Dees_Troya13d74f2013-03-24 08:54:55 -05001362 // Set the final value
1363 DataManager::SetValue("tw_restore_list", Restore_List);
1364 DataManager::SetValue("tw_restore_selected", Restore_List);
Dees_Troy51a0e822012-09-05 15:24:24 -04001365 return;
1366}
1367
1368int TWPartitionManager::Wipe_By_Path(string Path) {
Dees_Troy63c8df72012-09-10 14:02:05 -04001369 std::vector<TWPartition*>::iterator iter;
Mohd Farazfdd49bb2020-04-21 18:56:44 +05301370 std::vector < TWPartition * >::iterator iter1;
Dees_Troy63c8df72012-09-10 14:02:05 -04001371 int ret = false;
1372 bool found = false;
Dees_Troy38bd7602012-09-14 13:33:53 -04001373 string Local_Path = TWFunc::Get_Root_Path(Path);
Dees_Troy63c8df72012-09-10 14:02:05 -04001374
dianlujitaob76a73a2020-04-30 20:33:20 +08001375 if (Local_Path == "/system")
1376 Local_Path = Get_Android_Root_Path();
Dees_Troy63c8df72012-09-10 14:02:05 -04001377 // Iterate through all partitions
1378 for (iter = Partitions.begin(); iter != Partitions.end(); iter++) {
Dees_Troy657c3092012-09-10 20:32:10 -04001379 if ((*iter)->Mount_Point == Local_Path || (!(*iter)->Symlink_Mount_Point.empty() && (*iter)->Symlink_Mount_Point == Local_Path)) {
Mohd Farazfdd49bb2020-04-21 18:56:44 +05301380 // iterate through all partitions since some legacy devices uses other partitions as vendor causes issues while wiping
1381 (*iter)->Find_Actual_Block_Device();
1382 for (iter1 = Partitions.begin (); iter1 != Partitions.end (); iter1++)
1383 {
1384 (*iter1)->Find_Actual_Block_Device();
1385 if ((*iter)->Actual_Block_Device == (*iter1)->Actual_Block_Device && (*iter)->Mount_Point != (*iter1)->Mount_Point)
1386 (*iter1)->UnMount(false);
1387 }
Dees_Troye58d5262012-09-21 12:27:57 -04001388 if (Path == "/and-sec")
1389 ret = (*iter)->Wipe_AndSec();
1390 else
1391 ret = (*iter)->Wipe();
Dees_Troy63c8df72012-09-10 14:02:05 -04001392 found = true;
1393 } else if ((*iter)->Is_SubPartition && (*iter)->SubPartition_Of == Local_Path) {
1394 (*iter)->Wipe();
1395 }
1396 }
1397 if (found) {
1398 return ret;
1399 } else
Ethan Yonker74db1572015-10-28 12:44:49 -05001400 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 -04001401 return false;
Dees_Troy51a0e822012-09-05 15:24:24 -04001402}
1403
Ethan Yonker87c7bac2014-05-25 21:41:08 -05001404int TWPartitionManager::Wipe_By_Path(string Path, string New_File_System) {
1405 std::vector<TWPartition*>::iterator iter;
1406 int ret = false;
1407 bool found = false;
1408 string Local_Path = TWFunc::Get_Root_Path(Path);
1409
1410 // Iterate through all partitions
1411 for (iter = Partitions.begin(); iter != Partitions.end(); iter++) {
1412 if ((*iter)->Mount_Point == Local_Path || (!(*iter)->Symlink_Mount_Point.empty() && (*iter)->Symlink_Mount_Point == Local_Path)) {
1413 if (Path == "/and-sec")
1414 ret = (*iter)->Wipe_AndSec();
1415 else
1416 ret = (*iter)->Wipe(New_File_System);
1417 found = true;
1418 } else if ((*iter)->Is_SubPartition && (*iter)->SubPartition_Of == Local_Path) {
1419 (*iter)->Wipe(New_File_System);
1420 }
1421 }
1422 if (found) {
1423 return ret;
1424 } else
Ethan Yonker74db1572015-10-28 12:44:49 -05001425 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 -05001426 return false;
1427}
1428
Dees_Troy51a0e822012-09-05 15:24:24 -04001429int TWPartitionManager::Factory_Reset(void) {
Dees_Troy63c8df72012-09-10 14:02:05 -04001430 std::vector<TWPartition*>::iterator iter;
1431 int ret = true;
1432
1433 for (iter = Partitions.begin(); iter != Partitions.end(); iter++) {
Dees_Troy38bd7602012-09-14 13:33:53 -04001434 if ((*iter)->Wipe_During_Factory_Reset && (*iter)->Is_Present) {
Ethan Yonker89583ef2015-08-26 09:01:59 -05001435#ifdef TW_OEM_BUILD
1436 if ((*iter)->Mount_Point == "/data") {
1437 if (!(*iter)->Wipe_Encryption())
1438 ret = false;
1439 } else {
1440#endif
1441 if (!(*iter)->Wipe())
1442 ret = false;
1443#ifdef TW_OEM_BUILD
1444 }
1445#endif
Dees_Troy094207a2012-09-26 12:00:39 -04001446 } else if ((*iter)->Has_Android_Secure) {
1447 if (!(*iter)->Wipe_AndSec())
1448 ret = false;
Dees_Troy63c8df72012-09-10 14:02:05 -04001449 }
1450 }
bigbiffad58e1b2020-07-06 20:24:34 -04001451 TWFunc::check_and_run_script("/system/bin/factoryreset.sh", "Factory Reset Script");
Dees_Troy63c8df72012-09-10 14:02:05 -04001452 return ret;
Dees_Troy51a0e822012-09-05 15:24:24 -04001453}
1454
Dees_Troy38bd7602012-09-14 13:33:53 -04001455int TWPartitionManager::Wipe_Dalvik_Cache(void) {
1456 struct stat st;
bigbiff bigbiff9c754052013-01-09 09:09:08 -05001457 vector <string> dir;
Dees_Troy38bd7602012-09-14 13:33:53 -04001458
1459 if (!Mount_By_Path("/data", true))
1460 return false;
1461
bigbiff bigbiff9c754052013-01-09 09:09:08 -05001462 dir.push_back("/data/dalvik-cache");
bigbiff bigbiff19874f12019-01-08 20:06:57 -05001463
bigbiff25d25b92020-06-19 16:07:38 -04001464 std::string cacheDir = TWFunc::get_log_dir();
1465 if (cacheDir == CACHE_LOGS_DIR) {
1466 if (!PartitionManager.Mount_By_Path(CACHE_LOGS_DIR, false)) {
1467 LOGINFO("Unable to mount %s for wiping cache.\n", CACHE_LOGS_DIR);
bigbiff bigbiff19874f12019-01-08 20:06:57 -05001468 }
1469 dir.push_back(cacheDir + "dalvik-cache");
1470 dir.push_back(cacheDir + "/dc");
bigbiff bigbiff9c754052013-01-09 09:09:08 -05001471 }
Ethan Yonkerff2b7882016-12-10 09:04:41 -06001472
Dees_Troy38bd7602012-09-14 13:33:53 -04001473 TWPartition* sdext = Find_Partition_By_Path("/sd-ext");
Vojtech Bocekfafb0c52013-07-25 22:53:02 +02001474 if (sdext && sdext->Is_Present && sdext->Mount(false))
1475 {
1476 if (stat("/sd-ext/dalvik-cache", &st) == 0)
1477 {
Ethan Yonkerff2b7882016-12-10 09:04:41 -06001478 dir.push_back("/sd-ext/dalvik-cache");
1479 }
1480 }
1481
bigbiff25d25b92020-06-19 16:07:38 -04001482 if (cacheDir == CACHE_LOGS_DIR) {
bigbiff bigbiff19874f12019-01-08 20:06:57 -05001483 gui_msg("wiping_cache_dalvik=Wiping Dalvik Cache Directories...");
1484 } else {
1485 gui_msg("wiping_dalvik=Wiping Dalvik Directory...");
1486 }
Ethan Yonkerff2b7882016-12-10 09:04:41 -06001487 for (unsigned i = 0; i < dir.size(); ++i) {
1488 if (stat(dir.at(i).c_str(), &st) == 0) {
1489 TWFunc::removeDir(dir.at(i), false);
1490 gui_msg(Msg("cleaned=Cleaned: {1}...")(dir.at(i)));
bigbiff bigbiff9c754052013-01-09 09:09:08 -05001491 }
Vojtech Bocekfafb0c52013-07-25 22:53:02 +02001492 }
bigbiff bigbiff19874f12019-01-08 20:06:57 -05001493
bigbiff25d25b92020-06-19 16:07:38 -04001494 if (cacheDir == CACHE_LOGS_DIR) {
bigbiff bigbiff19874f12019-01-08 20:06:57 -05001495 gui_msg("cache_dalvik_done=-- Dalvik Cache Directories Wipe Complete!");
1496 } else {
1497 gui_msg("dalvik_done=-- Dalvik Directory Wipe Complete!");
1498 }
1499
Dees_Troy38bd7602012-09-14 13:33:53 -04001500 return true;
1501}
1502
1503int TWPartitionManager::Wipe_Rotate_Data(void) {
1504 if (!Mount_By_Path("/data", true))
1505 return false;
1506
bigbiff bigbiff9c754052013-01-09 09:09:08 -05001507 unlink("/data/misc/akmd*");
1508 unlink("/data/misc/rild*");
Dees_Troy2673cec2013-04-02 20:22:16 +00001509 gui_print("Rotation data wiped.\n");
Dees_Troy38bd7602012-09-14 13:33:53 -04001510 return true;
1511}
1512
1513int TWPartitionManager::Wipe_Battery_Stats(void) {
1514 struct stat st;
1515
1516 if (!Mount_By_Path("/data", true))
1517 return false;
1518
1519 if (0 != stat("/data/system/batterystats.bin", &st)) {
Dees_Troy2673cec2013-04-02 20:22:16 +00001520 gui_print("No Battery Stats Found. No Need To Wipe.\n");
Dees_Troy38bd7602012-09-14 13:33:53 -04001521 } else {
1522 remove("/data/system/batterystats.bin");
Dees_Troy2673cec2013-04-02 20:22:16 +00001523 gui_print("Cleared battery stats.\n");
Dees_Troy38bd7602012-09-14 13:33:53 -04001524 }
1525 return true;
1526}
1527
Dees_Troy2ff5a8d2012-09-26 14:53:02 -04001528int TWPartitionManager::Wipe_Android_Secure(void) {
1529 std::vector<TWPartition*>::iterator iter;
1530 int ret = false;
1531 bool found = false;
1532
1533 // Iterate through all partitions
1534 for (iter = Partitions.begin(); iter != Partitions.end(); iter++) {
1535 if ((*iter)->Has_Android_Secure) {
1536 ret = (*iter)->Wipe_AndSec();
1537 found = true;
1538 }
1539 }
1540 if (found) {
1541 return ret;
1542 } else {
Ethan Yonker74db1572015-10-28 12:44:49 -05001543 gui_err("no_andsec=No android secure partitions found.");
Dees_Troy2ff5a8d2012-09-26 14:53:02 -04001544 }
1545 return false;
1546}
1547
Dees_Troy38bd7602012-09-14 13:33:53 -04001548int TWPartitionManager::Format_Data(void) {
1549 TWPartition* dat = Find_Partition_By_Path("/data");
1550
1551 if (dat != NULL) {
Dees_Troy38bd7602012-09-14 13:33:53 -04001552 return dat->Wipe_Encryption();
1553 } else {
Matt Mower3c366972015-12-25 19:28:31 -06001554 gui_msg(Msg(msg::kError, "unable_to_locate=Unable to locate {1}.")("/data"));
Dees_Troy38bd7602012-09-14 13:33:53 -04001555 return false;
1556 }
1557 return false;
1558}
1559
1560int TWPartitionManager::Wipe_Media_From_Data(void) {
1561 TWPartition* dat = Find_Partition_By_Path("/data");
1562
1563 if (dat != NULL) {
1564 if (!dat->Has_Data_Media) {
Dees_Troy2673cec2013-04-02 20:22:16 +00001565 LOGERR("This device does not have /data/media\n");
Dees_Troy38bd7602012-09-14 13:33:53 -04001566 return false;
1567 }
1568 if (!dat->Mount(true))
1569 return false;
1570
Ethan Yonker74db1572015-10-28 12:44:49 -05001571 gui_msg("wiping_datamedia=Wiping internal storage -- /data/media...");
Ethan Yonker726a0202014-12-16 20:01:38 -06001572 Remove_MTP_Storage(dat->MTP_Storage_ID);
bigbiff bigbiff9c754052013-01-09 09:09:08 -05001573 TWFunc::removeDir("/data/media", false);
xiaolu9416f4f2015-06-04 08:22:23 +08001574 dat->Recreate_Media_Folder();
Ethan Yonker726a0202014-12-16 20:01:38 -06001575 Add_MTP_Storage(dat->MTP_Storage_ID);
Dees_Troy38bd7602012-09-14 13:33:53 -04001576 return true;
1577 } else {
Matt Mower3c366972015-12-25 19:28:31 -06001578 gui_msg(Msg(msg::kError, "unable_to_locate=Unable to locate {1}.")("/data"));
Dees_Troy38bd7602012-09-14 13:33:53 -04001579 return false;
1580 }
1581 return false;
1582}
1583
Ethan Yonker87c7bac2014-05-25 21:41:08 -05001584int TWPartitionManager::Repair_By_Path(string Path, bool Display_Error) {
1585 std::vector<TWPartition*>::iterator iter;
1586 int ret = false;
1587 bool found = false;
1588 string Local_Path = TWFunc::Get_Root_Path(Path);
1589
1590 if (Local_Path == "/tmp" || Local_Path == "/")
1591 return true;
1592
1593 // Iterate through all partitions
1594 for (iter = Partitions.begin(); iter != Partitions.end(); iter++) {
1595 if ((*iter)->Mount_Point == Local_Path || (!(*iter)->Symlink_Mount_Point.empty() && (*iter)->Symlink_Mount_Point == Local_Path)) {
1596 ret = (*iter)->Repair();
1597 found = true;
1598 } else if ((*iter)->Is_SubPartition && (*iter)->SubPartition_Of == Local_Path) {
1599 (*iter)->Repair();
1600 }
1601 }
1602 if (found) {
1603 return ret;
1604 } else if (Display_Error) {
Ethan Yonker74db1572015-10-28 12:44:49 -05001605 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 -05001606 } else {
1607 LOGINFO("Repair: Unable to find partition for path '%s'\n", Local_Path.c_str());
1608 }
1609 return false;
1610}
1611
Ethan Yonkera2719152015-05-28 09:44:41 -05001612int TWPartitionManager::Resize_By_Path(string Path, bool Display_Error) {
1613 std::vector<TWPartition*>::iterator iter;
1614 int ret = false;
1615 bool found = false;
1616 string Local_Path = TWFunc::Get_Root_Path(Path);
1617
1618 if (Local_Path == "/tmp" || Local_Path == "/")
1619 return true;
1620
1621 // Iterate through all partitions
1622 for (iter = Partitions.begin(); iter != Partitions.end(); iter++) {
1623 if ((*iter)->Mount_Point == Local_Path || (!(*iter)->Symlink_Mount_Point.empty() && (*iter)->Symlink_Mount_Point == Local_Path)) {
1624 ret = (*iter)->Resize();
1625 found = true;
1626 } else if ((*iter)->Is_SubPartition && (*iter)->SubPartition_Of == Local_Path) {
1627 (*iter)->Resize();
1628 }
1629 }
1630 if (found) {
1631 return ret;
1632 } else if (Display_Error) {
Ethan Yonker74db1572015-10-28 12:44:49 -05001633 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 -05001634 } else {
1635 LOGINFO("Resize: Unable to find partition for path '%s'\n", Local_Path.c_str());
1636 }
1637 return false;
1638}
1639
Dees_Troy51a0e822012-09-05 15:24:24 -04001640void TWPartitionManager::Update_System_Details(void) {
Dees_Troy5bf43922012-09-07 16:07:55 -04001641 std::vector<TWPartition*>::iterator iter;
Dees_Troy51127312012-09-08 13:08:49 -04001642 int data_size = 0;
Dees_Troy5bf43922012-09-07 16:07:55 -04001643
Ethan Yonker74db1572015-10-28 12:44:49 -05001644 gui_msg("update_part_details=Updating partition details...");
Dees_Troy5bf43922012-09-07 16:07:55 -04001645 for (iter = Partitions.begin(); iter != Partitions.end(); iter++) {
Ethan Yonker1b190162016-12-05 15:25:19 -06001646 (*iter)->Update_Size(true);
Dees_Troy51127312012-09-08 13:08:49 -04001647 if ((*iter)->Can_Be_Mounted) {
Captain Throwback9d6feb52018-07-27 10:05:24 -04001648 if ((*iter)->Mount_Point == Get_Android_Root_Path()) {
Dees_Troy51127312012-09-08 13:08:49 -04001649 int backup_display_size = (int)((*iter)->Backup_Size / 1048576LLU);
1650 DataManager::SetValue(TW_BACKUP_SYSTEM_SIZE, backup_display_size);
Ethan Yonker76bbd3a2019-05-10 10:50:04 -05001651 TWFunc::Is_TWRP_App_In_System();
Dees_Troy51127312012-09-08 13:08:49 -04001652 } else if ((*iter)->Mount_Point == "/data" || (*iter)->Mount_Point == "/datadata") {
1653 data_size += (int)((*iter)->Backup_Size / 1048576LLU);
1654 } else if ((*iter)->Mount_Point == "/cache") {
1655 int backup_display_size = (int)((*iter)->Backup_Size / 1048576LLU);
1656 DataManager::SetValue(TW_BACKUP_CACHE_SIZE, backup_display_size);
1657 } else if ((*iter)->Mount_Point == "/sd-ext") {
1658 int backup_display_size = (int)((*iter)->Backup_Size / 1048576LLU);
1659 DataManager::SetValue(TW_BACKUP_SDEXT_SIZE, backup_display_size);
1660 if ((*iter)->Backup_Size == 0) {
1661 DataManager::SetValue(TW_HAS_SDEXT_PARTITION, 0);
1662 DataManager::SetValue(TW_BACKUP_SDEXT_VAR, 0);
1663 } else
1664 DataManager::SetValue(TW_HAS_SDEXT_PARTITION, 1);
Dees_Troye58d5262012-09-21 12:27:57 -04001665 } else if ((*iter)->Has_Android_Secure) {
Dees_Troy8170a922012-09-18 15:40:25 -04001666 int backup_display_size = (int)((*iter)->Backup_Size / 1048576LLU);
Dees_Troye58d5262012-09-21 12:27:57 -04001667 DataManager::SetValue(TW_BACKUP_ANDSEC_SIZE, backup_display_size);
Dees_Troy8170a922012-09-18 15:40:25 -04001668 if ((*iter)->Backup_Size == 0) {
1669 DataManager::SetValue(TW_HAS_ANDROID_SECURE, 0);
1670 DataManager::SetValue(TW_BACKUP_ANDSEC_VAR, 0);
1671 } else
1672 DataManager::SetValue(TW_HAS_ANDROID_SECURE, 1);
Dees_Troy2c50e182012-09-26 20:05:28 -04001673 } else if ((*iter)->Mount_Point == "/boot") {
1674 int backup_display_size = (int)((*iter)->Backup_Size / 1048576LLU);
1675 DataManager::SetValue(TW_BACKUP_BOOT_SIZE, backup_display_size);
1676 if ((*iter)->Backup_Size == 0) {
1677 DataManager::SetValue("tw_has_boot_partition", 0);
1678 DataManager::SetValue(TW_BACKUP_BOOT_VAR, 0);
1679 } else
1680 DataManager::SetValue("tw_has_boot_partition", 1);
Dees_Troy51127312012-09-08 13:08:49 -04001681 }
Dees_Troyaa9cc402012-10-13 12:14:05 -04001682 } else {
1683 // Handle unmountable partitions in case we reset defaults
1684 if ((*iter)->Mount_Point == "/boot") {
1685 int backup_display_size = (int)((*iter)->Backup_Size / 1048576LLU);
1686 DataManager::SetValue(TW_BACKUP_BOOT_SIZE, backup_display_size);
1687 if ((*iter)->Backup_Size == 0) {
1688 DataManager::SetValue(TW_HAS_BOOT_PARTITION, 0);
1689 DataManager::SetValue(TW_BACKUP_BOOT_VAR, 0);
1690 } else
1691 DataManager::SetValue(TW_HAS_BOOT_PARTITION, 1);
1692 } else if ((*iter)->Mount_Point == "/recovery") {
1693 int backup_display_size = (int)((*iter)->Backup_Size / 1048576LLU);
1694 DataManager::SetValue(TW_BACKUP_RECOVERY_SIZE, backup_display_size);
1695 if ((*iter)->Backup_Size == 0) {
1696 DataManager::SetValue(TW_HAS_RECOVERY_PARTITION, 0);
1697 DataManager::SetValue(TW_BACKUP_RECOVERY_VAR, 0);
1698 } else
1699 DataManager::SetValue(TW_HAS_RECOVERY_PARTITION, 1);
Gary Peck82599a82012-11-21 16:23:12 -08001700 } else if ((*iter)->Mount_Point == "/data") {
1701 data_size += (int)((*iter)->Backup_Size / 1048576LLU);
Dees_Troyaa9cc402012-10-13 12:14:05 -04001702 }
Dees_Troy51127312012-09-08 13:08:49 -04001703 }
Dees_Troy5bf43922012-09-07 16:07:55 -04001704 }
Ethan Yonker74db1572015-10-28 12:44:49 -05001705 gui_msg("update_part_details_done=...done");
Dees_Troy51127312012-09-08 13:08:49 -04001706 DataManager::SetValue(TW_BACKUP_DATA_SIZE, data_size);
1707 string current_storage_path = DataManager::GetCurrentStoragePath();
1708 TWPartition* FreeStorage = Find_Partition_By_Path(current_storage_path);
Dees_Troy8170a922012-09-18 15:40:25 -04001709 if (FreeStorage != NULL) {
1710 // Attempt to mount storage
bigbiff25d25b92020-06-19 16:07:38 -04001711 if (!FreeStorage->Mount(false)) {
1712 gui_msg(Msg(msg::kWarning, "unable_to_mount_storage=Unable to mount storage"));
1713 DataManager::SetValue(TW_STORAGE_FREE_SIZE, 0);
1714 } else {
1715 DataManager::SetValue(TW_STORAGE_FREE_SIZE, (int)(FreeStorage->Free / 1048576LLU));
Dees_Troy8170a922012-09-18 15:40:25 -04001716 }
1717 } else {
Dees_Troy2673cec2013-04-02 20:22:16 +00001718 LOGINFO("Unable to find storage partition '%s'.\n", current_storage_path.c_str());
Dees_Troy8170a922012-09-18 15:40:25 -04001719 }
Dees_Troy5bf43922012-09-07 16:07:55 -04001720 if (!Write_Fstab())
Dees_Troy2673cec2013-04-02 20:22:16 +00001721 LOGERR("Error creating fstab\n");
Dees_Troy51a0e822012-09-05 15:24:24 -04001722 return;
1723}
1724
Ethan Yonkerbd7492d2016-12-07 13:55:01 -06001725void TWPartitionManager::Post_Decrypt(const string& Block_Device) {
1726 TWPartition* dat = Find_Partition_By_Path("/data");
bigbiffc2cb3852020-09-11 14:03:31 -04001727
Ethan Yonkerbd7492d2016-12-07 13:55:01 -06001728 if (dat != NULL) {
1729 DataManager::SetValue(TW_IS_DECRYPTED, 1);
1730 dat->Is_Decrypted = true;
1731 if (!Block_Device.empty()) {
1732 dat->Decrypted_Block_Device = Block_Device;
1733 gui_msg(Msg("decrypt_success_dev=Data successfully decrypted, new block device: '{1}'")(Block_Device));
1734 } else {
1735 gui_msg("decrypt_success_nodev=Data successfully decrypted");
1736 }
1737 dat->Setup_File_System(false);
bigbiffadc599e2020-05-28 19:36:30 +00001738 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 -06001739
bigbiffadc599e2020-05-28 19:36:30 +00001740 // Sleep for a bit so that the device will be ready
1741 sleep(1);
Ethan Yonkerbd7492d2016-12-07 13:55:01 -06001742 if (dat->Has_Data_Media && dat->Mount(false) && TWFunc::Path_Exists("/data/media/0")) {
1743 dat->Storage_Path = "/data/media/0";
1744 dat->Symlink_Path = dat->Storage_Path;
1745 DataManager::SetValue("tw_storage_path", "/data/media/0");
1746 DataManager::SetValue("tw_settings_path", "/data/media/0");
1747 dat->UnMount(false);
Ethan Yonkerbd7492d2016-12-07 13:55:01 -06001748 }
1749 Update_System_Details();
nkk71ffb02bd2017-06-04 23:12:16 +03001750 Output_Partition(dat);
Ethan Yonkerbd7492d2016-12-07 13:55:01 -06001751 UnMount_Main_Partitions();
1752 } else
1753 LOGERR("Unable to locate data partition.\n");
1754}
1755
bigbiffadc599e2020-05-28 19:36:30 +00001756int TWPartitionManager::Decrypt_Device(string Password) {
Dees_Troy5bf43922012-09-07 16:07:55 -04001757#ifdef TW_INCLUDE_CRYPTO
Ethan Yonkerddb63e22017-01-19 14:01:57 -06001758 char crypto_state[PROPERTY_VALUE_MAX], crypto_blkdev[PROPERTY_VALUE_MAX];
Ethan Yonker253368a2014-11-25 15:00:52 -06001759 std::vector<TWPartition*>::iterator iter;
Dees_Troy5bf43922012-09-07 16:07:55 -04001760
Ethan Yonker253368a2014-11-25 15:00:52 -06001761 // Mount any partitions that need to be mounted for decrypt
1762 for (iter = Partitions.begin(); iter != Partitions.end(); iter++) {
1763 if ((*iter)->Mount_To_Decrypt) {
1764 (*iter)->Mount(true);
1765 }
a39552696ff55ce2013-01-08 16:14:56 +00001766 }
oshmouna82a7542018-04-10 17:45:55 +02001767 property_set("twrp.mount_to_decrypt", "1");
a39552696ff55ce2013-01-08 16:14:56 +00001768
Ethan Yonkera1de1492015-11-04 11:58:27 -06001769 property_get("ro.crypto.state", crypto_state, "error");
1770 if (strcmp(crypto_state, "error") == 0) {
1771 property_set("ro.crypto.state", "encrypted");
1772 // Sleep for a bit so that services can start if needed
1773 sleep(1);
1774 }
1775
Ethan Yonkerbd7492d2016-12-07 13:55:01 -06001776 if (DataManager::GetIntValue(TW_IS_FBE)) {
1777#ifdef TW_INCLUDE_FBE
1778 if (!Mount_By_Path("/data", true)) // /data has to be mounted for FBE
1779 return -1;
1780 int retry_count = 10;
1781 while (!TWFunc::Path_Exists("/data/system/users/gatekeeper.password.key") && --retry_count)
bigbiffadc599e2020-05-28 19:36:30 +00001782 usleep(2000); // A small sleep is needed after mounting /data to ensure reliable decrypt... maybe because of DE?
1783 int user_id = DataManager::GetIntValue("tw_decrypt_user_id");
1784 LOGINFO("Decrypting FBE for user %i\n", user_id);
Ethan Yonkerbd7492d2016-12-07 13:55:01 -06001785 if (Decrypt_User(user_id, Password)) {
bigbiffadc599e2020-05-28 19:36:30 +00001786 Post_Decrypt("");
Ethan Yonkerbd7492d2016-12-07 13:55:01 -06001787 return 0;
1788 }
1789#else
1790 LOGERR("FBE support is not present\n");
1791#endif
1792 return -1;
1793 }
1794
Ethan Yonkerddb63e22017-01-19 14:01:57 -06001795 int pwret = -1;
1796 pid_t pid = fork();
1797 if (pid < 0) {
1798 LOGERR("fork failed\n");
1799 return -1;
1800 } else if (pid == 0) {
1801 // Child process
1802 char cPassword[255];
1803 strcpy(cPassword, Password.c_str());
1804 int ret = cryptfs_check_passwd(cPassword);
1805 exit(ret);
1806 } else {
1807 // Parent
1808 int status;
1809 if (TWFunc::Wait_For_Child_Timeout(pid, &status, "Decrypt", 30))
1810 pwret = -1;
1811 else
1812 pwret = WEXITSTATUS(status) ? -1 : 0;
1813 }
a39552696ff55ce2013-01-08 16:14:56 +00001814
nkk7171c6c502017-01-05 23:55:05 +02001815#ifdef TW_CRYPTO_USE_SYSTEM_VOLD
1816 if (pwret != 0) {
1817 pwret = vold_decrypt(Password);
nkk717d1222a2017-11-06 17:27:21 +02001818 switch (pwret) {
1819 case VD_SUCCESS:
1820 break;
1821 case VD_ERR_MISSING_VDC:
1822 gui_msg(Msg(msg::kError, "decrypt_data_vold_os_missing=Missing files needed for vold decrypt: {1}")("/system/bin/vdc"));
1823 break;
1824 case VD_ERR_MISSING_VOLD:
1825 gui_msg(Msg(msg::kError, "decrypt_data_vold_os_missing=Missing files needed for vold decrypt: {1}")("/system/bin/vold"));
1826 break;
1827 }
nkk7171c6c502017-01-05 23:55:05 +02001828 }
1829#endif // TW_CRYPTO_USE_SYSTEM_VOLD
1830
Ethan Yonker253368a2014-11-25 15:00:52 -06001831 // Unmount any partitions that were needed for decrypt
1832 for (iter = Partitions.begin(); iter != Partitions.end(); iter++) {
1833 if ((*iter)->Mount_To_Decrypt) {
1834 (*iter)->UnMount(false);
1835 }
1836 }
oshmouna82a7542018-04-10 17:45:55 +02001837 property_set("twrp.mount_to_decrypt", "0");
Ethan Yonker253368a2014-11-25 15:00:52 -06001838
a39552696ff55ce2013-01-08 16:14:56 +00001839 if (pwret != 0) {
Ethan Yonker74db1572015-10-28 12:44:49 -05001840 gui_err("fail_decrypt=Failed to decrypt data.");
Dees_Troy5bf43922012-09-07 16:07:55 -04001841 return -1;
1842 }
a39552696ff55ce2013-01-08 16:14:56 +00001843
Dees_Troy5bf43922012-09-07 16:07:55 -04001844 property_get("ro.crypto.fs_crypto_blkdev", crypto_blkdev, "error");
1845 if (strcmp(crypto_blkdev, "error") == 0) {
Dees_Troy2673cec2013-04-02 20:22:16 +00001846 LOGERR("Error retrieving decrypted data block device.\n");
Dees_Troy5bf43922012-09-07 16:07:55 -04001847 } else {
Ethan Yonkerbd7492d2016-12-07 13:55:01 -06001848 Post_Decrypt(crypto_blkdev);
Dees_Troy5bf43922012-09-07 16:07:55 -04001849 }
1850 return 0;
1851#else
Ethan Yonker74db1572015-10-28 12:44:49 -05001852 gui_err("no_crypto_support=No crypto support was compiled into this build.");
Dees_Troy5bf43922012-09-07 16:07:55 -04001853 return -1;
1854#endif
Dees_Troy51a0e822012-09-05 15:24:24 -04001855 return 1;
Dees_Troy51127312012-09-08 13:08:49 -04001856}
1857
Ethan Yonkerb5fab762016-01-28 14:03:33 -06001858int TWPartitionManager::Fix_Contexts(void) {
Ethan Yonkerb5fab762016-01-28 14:03:33 -06001859 std::vector<TWPartition*>::iterator iter;
1860 for (iter = Partitions.begin(); iter != Partitions.end(); iter++) {
1861 if ((*iter)->Has_Data_Media) {
1862 if ((*iter)->Mount(true)) {
1863 if (fixContexts::fixDataMediaContexts((*iter)->Mount_Point) != 0)
1864 return -1;
1865 }
1866 }
1867 }
Dees_Troy1a650e62012-10-19 20:54:32 -04001868 UnMount_Main_Partitions();
Ethan Yonker74db1572015-10-28 12:44:49 -05001869 gui_msg("done=Done.");
Ethan Yonkerb5fab762016-01-28 14:03:33 -06001870 return 0;
bigbiff bigbiffa0f8a592012-10-09 21:01:03 -04001871}
1872
Ethan Yonker66a19492015-12-10 10:19:45 -06001873TWPartition* TWPartitionManager::Find_Next_Storage(string Path, bool Exclude_Data_Media) {
Ethan Yonker47360be2014-04-01 10:34:34 -05001874 std::vector<TWPartition*>::iterator iter = Partitions.begin();
1875
1876 if (!Path.empty()) {
1877 string Search_Path = TWFunc::Get_Root_Path(Path);
1878 for (; iter != Partitions.end(); iter++) {
Matt Mower9a561dd2016-02-22 21:25:51 -06001879 if ((*iter)->Mount_Point == Search_Path) {
Ethan Yonker47360be2014-04-01 10:34:34 -05001880 iter++;
1881 break;
1882 }
1883 }
1884 }
1885
1886 for (; iter != Partitions.end(); iter++) {
Ethan Yonker66a19492015-12-10 10:19:45 -06001887 if (Exclude_Data_Media && (*iter)->Has_Data_Media) {
1888 // do nothing, do not return this type of partition
1889 } else if ((*iter)->Is_Storage && (*iter)->Is_Present) {
Ethan Yonker47360be2014-04-01 10:34:34 -05001890 return (*iter);
1891 }
1892 }
1893
1894 return NULL;
1895}
1896
Dees_Troyd21618c2012-10-14 18:48:49 -04001897int TWPartitionManager::Open_Lun_File(string Partition_Path, string Lun_File) {
Dees_Troyd21618c2012-10-14 18:48:49 -04001898 TWPartition* Part = Find_Partition_By_Path(Partition_Path);
1899
1900 if (Part == NULL) {
Ethan Yonker74db1572015-10-28 12:44:49 -05001901 LOGINFO("Unable to locate '%s' for USB storage mode.", Partition_Path.c_str());
1902 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 -04001903 return false;
1904 }
Ethan Yonker47360be2014-04-01 10:34:34 -05001905 LOGINFO("USB mount '%s', '%s' > '%s'\n", Partition_Path.c_str(), Part->Actual_Block_Device.c_str(), Lun_File.c_str());
1906 if (!Part->UnMount(true) || !Part->Is_Present)
Dees_Troyd21618c2012-10-14 18:48:49 -04001907 return false;
1908
Ethan Yonker6e8c27a2016-12-22 17:55:57 -06001909 if (TWFunc::write_to_file(Lun_File, Part->Actual_Block_Device)) {
Dees_Troy2673cec2013-04-02 20:22:16 +00001910 LOGERR("Unable to write to ums lunfile '%s': (%s)\n", Lun_File.c_str(), strerror(errno));
Dees_Troyd21618c2012-10-14 18:48:49 -04001911 return false;
1912 }
Dees_Troyd21618c2012-10-14 18:48:49 -04001913 return true;
1914}
1915
Dees_Troy8170a922012-09-18 15:40:25 -04001916int TWPartitionManager::usb_storage_enable(void) {
Dees_Troy8170a922012-09-18 15:40:25 -04001917 char lun_file[255];
Dees_Troyd21618c2012-10-14 18:48:49 -04001918 bool has_multiple_lun = false;
Dees_Troy8170a922012-09-18 15:40:25 -04001919
Ethan Yonker47360be2014-04-01 10:34:34 -05001920 string Lun_File_str = CUSTOM_LUN_FILE;
1921 size_t found = Lun_File_str.find("%");
1922 if (found != string::npos) {
1923 sprintf(lun_file, CUSTOM_LUN_FILE, 1);
1924 if (TWFunc::Path_Exists(lun_file))
1925 has_multiple_lun = true;
1926 }
Ethan Yonker726a0202014-12-16 20:01:38 -06001927 mtp_was_enabled = TWFunc::Toggle_MTP(false); // Must disable MTP for USB Storage
Ethan Yonker47360be2014-04-01 10:34:34 -05001928 if (!has_multiple_lun) {
1929 LOGINFO("Device doesn't have multiple lun files, mount current storage\n");
1930 sprintf(lun_file, CUSTOM_LUN_FILE, 0);
1931 if (TWFunc::Get_Root_Path(DataManager::GetCurrentStoragePath()) == "/data") {
Ethan Yonker66a19492015-12-10 10:19:45 -06001932 TWPartition* Mount = Find_Next_Storage("", true);
Ethan Yonker47360be2014-04-01 10:34:34 -05001933 if (Mount) {
bigbiff bigbiffc7eee6f2014-09-02 18:59:01 -04001934 if (!Open_Lun_File(Mount->Mount_Point, lun_file)) {
1935 goto error_handle;
1936 }
Ethan Yonker47360be2014-04-01 10:34:34 -05001937 } else {
Ethan Yonker74db1572015-10-28 12:44:49 -05001938 gui_err("unable_locate_storage=Unable to locate storage device.");
bigbiff bigbiffc7eee6f2014-09-02 18:59:01 -04001939 goto error_handle;
Ethan Yonker47360be2014-04-01 10:34:34 -05001940 }
1941 } else if (!Open_Lun_File(DataManager::GetCurrentStoragePath(), lun_file)) {
bigbiff bigbiffc7eee6f2014-09-02 18:59:01 -04001942 goto error_handle;
Dees_Troy8170a922012-09-18 15:40:25 -04001943 }
Dees_Troy8170a922012-09-18 15:40:25 -04001944 } else {
Ethan Yonker47360be2014-04-01 10:34:34 -05001945 LOGINFO("Device has multiple lun files\n");
1946 TWPartition* Mount1;
1947 TWPartition* Mount2;
Dees_Troy8170a922012-09-18 15:40:25 -04001948 sprintf(lun_file, CUSTOM_LUN_FILE, 0);
Ethan Yonker66a19492015-12-10 10:19:45 -06001949 Mount1 = Find_Next_Storage("", true);
Ethan Yonker47360be2014-04-01 10:34:34 -05001950 if (Mount1) {
bigbiff bigbiffc7eee6f2014-09-02 18:59:01 -04001951 if (!Open_Lun_File(Mount1->Mount_Point, lun_file)) {
1952 goto error_handle;
1953 }
Matt Moweree717062014-04-26 01:46:46 -05001954 sprintf(lun_file, CUSTOM_LUN_FILE, 1);
Ethan Yonker66a19492015-12-10 10:19:45 -06001955 Mount2 = Find_Next_Storage(Mount1->Mount_Point, true);
Matt Mower1fdcdb72016-01-25 20:53:47 -06001956 if (Mount2 && Mount2->Mount_Point != Mount1->Mount_Point) {
Matt Moweree717062014-04-26 01:46:46 -05001957 Open_Lun_File(Mount2->Mount_Point, lun_file);
Ethan Yonker47360be2014-04-01 10:34:34 -05001958 }
1959 } else {
Ethan Yonker74db1572015-10-28 12:44:49 -05001960 gui_err("unable_locate_storage=Unable to locate storage device.");
bigbiff bigbiffc7eee6f2014-09-02 18:59:01 -04001961 goto error_handle;
Ethan Yonker47360be2014-04-01 10:34:34 -05001962 }
Dees_Troy8170a922012-09-18 15:40:25 -04001963 }
Matt Mowerb6ef4782014-11-06 02:24:36 -06001964 property_set("sys.storage.ums_enabled", "1");
HandyMenny37d42992014-10-26 22:15:59 +01001965 property_set("sys.usb.config", "mass_storage,adb");
Dees_Troy8170a922012-09-18 15:40:25 -04001966 return true;
bigbiff bigbiffc7eee6f2014-09-02 18:59:01 -04001967error_handle:
1968 if (mtp_was_enabled)
1969 if (!Enable_MTP())
1970 Disable_MTP();
1971 return false;
Dees_Troy8170a922012-09-18 15:40:25 -04001972}
1973
1974int TWPartitionManager::usb_storage_disable(void) {
Dees_Troy2673cec2013-04-02 20:22:16 +00001975 int index, ret;
1976 char lun_file[255], ch[2] = {0, 0};
1977 string str = ch;
Dees_Troy8170a922012-09-18 15:40:25 -04001978
1979 for (index=0; index<2; index++) {
1980 sprintf(lun_file, CUSTOM_LUN_FILE, index);
Ethan Yonker6e8c27a2016-12-22 17:55:57 -06001981 ret = TWFunc::write_to_file(lun_file, str);
Dees_Troy2673cec2013-04-02 20:22:16 +00001982 if (ret < 0) {
1983 break;
Dees_Troy8170a922012-09-18 15:40:25 -04001984 }
Dees_Troy8170a922012-09-18 15:40:25 -04001985 }
Dees_Troye58d5262012-09-21 12:27:57 -04001986 Mount_All_Storage();
1987 Update_System_Details();
Dees_Troycfd73ef2012-10-12 16:52:00 -04001988 UnMount_Main_Partitions();
Matt Mowerd9cb9062013-12-14 20:34:45 -06001989 property_set("sys.storage.ums_enabled", "0");
HandyMenny37d42992014-10-26 22:15:59 +01001990 property_set("sys.usb.config", "adb");
bigbiff bigbiffc7eee6f2014-09-02 18:59:01 -04001991 if (mtp_was_enabled)
1992 if (!Enable_MTP())
1993 Disable_MTP();
Dees_Troy2673cec2013-04-02 20:22:16 +00001994 if (ret < 0 && index == 0) {
1995 LOGERR("Unable to write to ums lunfile '%s'.", lun_file);
1996 return false;
1997 } else {
1998 return true;
1999 }
Dees_Troy8170a922012-09-18 15:40:25 -04002000 return true;
Dees_Troy812660f2012-09-20 09:55:17 -04002001}
2002
2003void TWPartitionManager::Mount_All_Storage(void) {
2004 std::vector<TWPartition*>::iterator iter;
2005
2006 for (iter = Partitions.begin(); iter != Partitions.end(); iter++) {
2007 if ((*iter)->Is_Storage)
2008 (*iter)->Mount(false);
2009 }
Dees_Troy2c50e182012-09-26 20:05:28 -04002010}
Dees_Troy9350b8d2012-09-27 12:38:38 -04002011
Dees_Troyd0384ef2012-10-12 12:15:42 -04002012void TWPartitionManager::UnMount_Main_Partitions(void) {
2013 // Unmounts system and data if data is not data/media
2014 // Also unmounts boot if boot is mountable
Dees_Troy2673cec2013-04-02 20:22:16 +00002015 LOGINFO("Unmounting main partitions...\n");
Dees_Troyd0384ef2012-10-12 12:15:42 -04002016
Mohd Faraze3948ec2020-08-14 01:40:59 +00002017 TWPartition *Partition = Find_Partition_By_Path ("/vendor");
Dees_Troyd0384ef2012-10-12 12:15:42 -04002018
Mohd Faraze3948ec2020-08-14 01:40:59 +00002019 if (Partition != NULL) UnMount_By_Path("/vendor", false);
2020 UnMount_By_Path (Get_Android_Root_Path(), true);
2021 Partition = Find_Partition_By_Path ("/product");
2022 if (Partition != NULL) UnMount_By_Path("/product", false);
Ethan Yonker6277c792014-09-15 14:54:30 -05002023 if (!datamedia)
2024 UnMount_By_Path("/data", true);
2025
Mohd Faraze3948ec2020-08-14 01:40:59 +00002026 Partition = Find_Partition_By_Path ("/boot");
2027 if (Partition != NULL && Partition->Can_Be_Mounted)
2028 Partition->UnMount(true);
Dees_Troyd0384ef2012-10-12 12:15:42 -04002029}
2030
Dees_Troy9350b8d2012-09-27 12:38:38 -04002031int TWPartitionManager::Partition_SDCard(void) {
Matt Mower23d8aae2017-01-06 14:30:33 -06002032 char temp[255];
Ethan Yonker483e9f42016-01-11 22:21:18 -06002033 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 -04002034 int ext, swap, total_size = 0, fat_size;
Dees_Troy9350b8d2012-09-27 12:38:38 -04002035
Ethan Yonker74db1572015-10-28 12:44:49 -05002036 gui_msg("start_partition_sd=Partitioning SD Card...");
Ethan Yonker483e9f42016-01-11 22:21:18 -06002037
2038 // Locate and validate device to partition
2039 TWPartition* SDCard = Find_Partition_By_Path(DataManager::GetCurrentStoragePath());
2040
Ethan Yonker66a19492015-12-10 10:19:45 -06002041 if (SDCard->Is_Adopted_Storage)
2042 SDCard->Revert_Adopted();
2043
Ethan Yonker1eff6cd2014-09-15 13:30:42 -05002044 if (SDCard == NULL || !SDCard->Removable || SDCard->Has_Data_Media) {
Ethan Yonker74db1572015-10-28 12:44:49 -05002045 gui_err("partition_sd_locate=Unable to locate device to partition.");
Dees_Troy9350b8d2012-09-27 12:38:38 -04002046 return false;
2047 }
Ethan Yonker483e9f42016-01-11 22:21:18 -06002048
2049 // Unmount everything
Dees_Troy9350b8d2012-09-27 12:38:38 -04002050 if (!SDCard->UnMount(true))
2051 return false;
2052 TWPartition* SDext = Find_Partition_By_Path("/sd-ext");
2053 if (SDext != NULL) {
2054 if (!SDext->UnMount(true))
2055 return false;
2056 }
Ethan Yonker483e9f42016-01-11 22:21:18 -06002057 char* swappath = getenv("SWAPPATH");
2058 if (swappath != NULL) {
2059 LOGINFO("Unmounting swap at '%s'\n", swappath);
2060 umount(swappath);
2061 }
Vojtech Bocek05534202013-09-11 08:11:56 +02002062
Ethan Yonker483e9f42016-01-11 22:21:18 -06002063 // Determine block device
2064 if (SDCard->Alternate_Block_Device.empty()) {
2065 SDCard->Find_Actual_Block_Device();
2066 Device = SDCard->Actual_Block_Device;
2067 // Just use the root block device
2068 Device.resize(strlen("/dev/block/mmcblkX"));
2069 } else {
2070 Device = SDCard->Alternate_Block_Device;
2071 }
Dees_Troy9350b8d2012-09-27 12:38:38 -04002072
2073 // Find the size of the block device:
Ethan Yonker483e9f42016-01-11 22:21:18 -06002074 total_size = (int)(TWFunc::IOCTL_Get_Block_Size(Device.c_str()) / (1048576));
Dees_Troy9350b8d2012-09-27 12:38:38 -04002075
2076 DataManager::GetValue("tw_sdext_size", ext);
2077 DataManager::GetValue("tw_swap_size", swap);
2078 DataManager::GetValue("tw_sdpart_file_system", ext_format);
2079 fat_size = total_size - ext - swap;
Ethan Yonker483e9f42016-01-11 22:21:18 -06002080 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);
2081
2082 // Determine partition sizes
2083 if (swap == 0 && ext == 0) {
2084 fat_str = "-0";
2085 } else {
2086 memset(temp, 0, sizeof(temp));
2087 sprintf(temp, "%i", fat_size);
2088 fat_str = temp;
2089 fat_str += "MB";
2090 }
2091 if (swap == 0) {
2092 ext_str = "-0";
2093 } else {
2094 memset(temp, 0, sizeof(temp));
2095 sprintf(temp, "%i", ext);
2096 ext_str = "+";
2097 ext_str += temp;
2098 ext_str += "MB";
2099 }
2100
Dees_Troy9350b8d2012-09-27 12:38:38 -04002101 if (ext + swap > total_size) {
Ethan Yonker74db1572015-10-28 12:44:49 -05002102 gui_err("ext_swap_size=EXT + Swap size is larger than sdcard size.");
Dees_Troy9350b8d2012-09-27 12:38:38 -04002103 return false;
2104 }
Ethan Yonker483e9f42016-01-11 22:21:18 -06002105
Ethan Yonker74db1572015-10-28 12:44:49 -05002106 gui_msg("remove_part_table=Removing partition table...");
Ethan Yonker483e9f42016-01-11 22:21:18 -06002107 Command = "sgdisk --zap-all " + Device;
Dees_Troy2673cec2013-04-02 20:22:16 +00002108 LOGINFO("Command is: '%s'\n", Command.c_str());
Vojtech Bocek05534202013-09-11 08:11:56 +02002109 if (TWFunc::Exec_Cmd(Command) != 0) {
Ethan Yonker74db1572015-10-28 12:44:49 -05002110 gui_err("unable_rm_part=Unable to remove partition table.");
Dees_Troy9350b8d2012-09-27 12:38:38 -04002111 Update_System_Details();
2112 return false;
2113 }
Ethan Yonker74db1572015-10-28 12:44:49 -05002114 gui_msg(Msg("create_part=Creating {1} partition...")("FAT32"));
Captain Throwback9643a802016-05-27 11:44:51 -04002115 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 +00002116 LOGINFO("Command is: '%s'\n", Command.c_str());
Vojtech Bocek05534202013-09-11 08:11:56 +02002117 if (TWFunc::Exec_Cmd(Command) != 0) {
Ethan Yonker74db1572015-10-28 12:44:49 -05002118 gui_msg(Msg(msg::kError, "unable_to_create_part=Unable to create {1} partition.")("FAT32"));
Dees_Troy9350b8d2012-09-27 12:38:38 -04002119 return false;
2120 }
2121 if (ext > 0) {
Ethan Yonker74db1572015-10-28 12:44:49 -05002122 gui_msg(Msg("create_part=Creating {1} partition...")("EXT"));
Ethan Yonker483e9f42016-01-11 22:21:18 -06002123 Command = "sgdisk --new=0:0:" + ext_str + " --change-name=0:\"Linux filesystem\" " + Device;
Dees_Troy2673cec2013-04-02 20:22:16 +00002124 LOGINFO("Command is: '%s'\n", Command.c_str());
Vojtech Bocek05534202013-09-11 08:11:56 +02002125 if (TWFunc::Exec_Cmd(Command) != 0) {
Ethan Yonker74db1572015-10-28 12:44:49 -05002126 gui_msg(Msg(msg::kError, "unable_to_create_part=Unable to create {1} partition.")("EXT"));
Dees_Troy9350b8d2012-09-27 12:38:38 -04002127 Update_System_Details();
2128 return false;
2129 }
2130 }
2131 if (swap > 0) {
Ethan Yonker74db1572015-10-28 12:44:49 -05002132 gui_msg(Msg("create_part=Creating {1} partition...")("swap"));
Ethan Yonker483e9f42016-01-11 22:21:18 -06002133 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 +00002134 LOGINFO("Command is: '%s'\n", Command.c_str());
Vojtech Bocek05534202013-09-11 08:11:56 +02002135 if (TWFunc::Exec_Cmd(Command) != 0) {
Ethan Yonker74db1572015-10-28 12:44:49 -05002136 gui_msg(Msg(msg::kError, "unable_to_create_part=Unable to create {1} partition.")("swap"));
Dees_Troy9350b8d2012-09-27 12:38:38 -04002137 Update_System_Details();
2138 return false;
2139 }
2140 }
Ethan Yonker483e9f42016-01-11 22:21:18 -06002141
2142 // Convert GPT to MBR
2143 Command = "sgdisk --gpttombr " + Device;
2144 if (TWFunc::Exec_Cmd(Command) != 0)
2145 LOGINFO("Failed to covert partition GPT to MBR\n");
2146
2147 // Tell the kernel to rescan the partition table
2148 int fd = open(Device.c_str(), O_RDONLY);
2149 ioctl(fd, BLKRRPART, 0);
2150 close(fd);
2151
2152 string format_device = Device;
2153 if (Device.substr(0, 17) == "/dev/block/mmcblk")
2154 format_device += "p";
2155
2156 // Format new partitions to proper file system
2157 if (fat_size > 0) {
2158 Command = "mkfs.fat " + format_device + "1";
2159 TWFunc::Exec_Cmd(Command);
2160 }
Dees_Troy9350b8d2012-09-27 12:38:38 -04002161 if (ext > 0) {
2162 if (SDext == NULL) {
Ethan Yonker483e9f42016-01-11 22:21:18 -06002163 Command = "mke2fs -t " + ext_format + " -m 0 " + format_device + "2";
2164 gui_msg(Msg("format_sdext_as=Formatting sd-ext as {1}...")(ext_format));
2165 LOGINFO("Formatting sd-ext after partitioning, command: '%s'\n", Command.c_str());
2166 TWFunc::Exec_Cmd(Command);
2167 } else {
2168 SDext->Wipe(ext_format);
Dees_Troy9350b8d2012-09-27 12:38:38 -04002169 }
Ethan Yonker483e9f42016-01-11 22:21:18 -06002170 }
2171 if (swap > 0) {
2172 Command = "mkswap " + format_device;
2173 if (ext > 0)
2174 Command += "3";
2175 else
2176 Command += "2";
Vojtech Bocek05534202013-09-11 08:11:56 +02002177 TWFunc::Exec_Cmd(Command);
Dees_Troy9350b8d2012-09-27 12:38:38 -04002178 }
2179
Ethan Yonker483e9f42016-01-11 22:21:18 -06002180 // recreate TWRP folder and rewrite settings - these will be gone after sdcard is partitioned
2181 if (SDCard->Mount(true)) {
2182 string TWRP_Folder = SDCard->Mount_Point + "/TWRP";
2183 mkdir(TWRP_Folder.c_str(), 0777);
2184 DataManager::Flush();
2185 }
2186
Dees_Troy9350b8d2012-09-27 12:38:38 -04002187 Update_System_Details();
Ethan Yonker74db1572015-10-28 12:44:49 -05002188 gui_msg("part_complete=Partitioning complete.");
Dees_Troy9350b8d2012-09-27 12:38:38 -04002189 return true;
bigbiff bigbiffa0f8a592012-10-09 21:01:03 -04002190}
Dees_Troya13d74f2013-03-24 08:54:55 -05002191
2192void TWPartitionManager::Get_Partition_List(string ListType, std::vector<PartitionList> *Partition_List) {
2193 std::vector<TWPartition*>::iterator iter;
2194 if (ListType == "mount") {
2195 for (iter = Partitions.begin(); iter != Partitions.end(); iter++) {
Ethan Yonker6e8c27a2016-12-22 17:55:57 -06002196 if ((*iter)->Can_Be_Mounted) {
Dees_Troya13d74f2013-03-24 08:54:55 -05002197 struct PartitionList part;
2198 part.Display_Name = (*iter)->Display_Name;
2199 part.Mount_Point = (*iter)->Mount_Point;
2200 part.selected = (*iter)->Is_Mounted();
2201 Partition_List->push_back(part);
2202 }
2203 }
2204 } else if (ListType == "storage") {
2205 char free_space[255];
2206 string Current_Storage = DataManager::GetCurrentStoragePath();
2207 for (iter = Partitions.begin(); iter != Partitions.end(); iter++) {
2208 if ((*iter)->Is_Storage) {
2209 struct PartitionList part;
2210 sprintf(free_space, "%llu", (*iter)->Free / 1024 / 1024);
2211 part.Display_Name = (*iter)->Storage_Name + " (";
2212 part.Display_Name += free_space;
2213 part.Display_Name += "MB)";
2214 part.Mount_Point = (*iter)->Storage_Path;
2215 if ((*iter)->Storage_Path == Current_Storage)
2216 part.selected = 1;
2217 else
2218 part.selected = 0;
2219 Partition_List->push_back(part);
2220 }
2221 }
2222 } else if (ListType == "backup") {
2223 char backup_size[255];
Dees_Troy9e0b71c2013-04-08 13:35:37 +00002224 unsigned long long Backup_Size;
Dees_Troya13d74f2013-03-24 08:54:55 -05002225 for (iter = Partitions.begin(); iter != Partitions.end(); iter++) {
Dees_Troy9e0b71c2013-04-08 13:35:37 +00002226 if ((*iter)->Can_Be_Backed_Up && !(*iter)->Is_SubPartition && (*iter)->Is_Present) {
Dees_Troya13d74f2013-03-24 08:54:55 -05002227 struct PartitionList part;
Dees_Troy9e0b71c2013-04-08 13:35:37 +00002228 Backup_Size = (*iter)->Backup_Size;
2229 if ((*iter)->Has_SubPartition) {
2230 std::vector<TWPartition*>::iterator subpart;
2231
2232 for (subpart = Partitions.begin(); subpart != Partitions.end(); subpart++) {
2233 if ((*subpart)->Is_SubPartition && (*subpart)->Can_Be_Backed_Up && (*subpart)->Is_Present && (*subpart)->SubPartition_Of == (*iter)->Mount_Point)
2234 Backup_Size += (*subpart)->Backup_Size;
2235 }
2236 }
2237 sprintf(backup_size, "%llu", Backup_Size / 1024 / 1024);
Dees_Troya13d74f2013-03-24 08:54:55 -05002238 part.Display_Name = (*iter)->Backup_Display_Name + " (";
2239 part.Display_Name += backup_size;
2240 part.Display_Name += "MB)";
2241 part.Mount_Point = (*iter)->Backup_Path;
2242 part.selected = 0;
2243 Partition_List->push_back(part);
2244 }
2245 }
2246 } else if (ListType == "restore") {
2247 string Restore_List, restore_path;
2248 TWPartition* restore_part = NULL;
2249
2250 DataManager::GetValue("tw_restore_list", Restore_List);
2251 if (!Restore_List.empty()) {
2252 size_t start_pos = 0, end_pos = Restore_List.find(";", start_pos);
2253 while (end_pos != string::npos && start_pos < Restore_List.size()) {
2254 restore_path = Restore_List.substr(start_pos, end_pos - start_pos);
bigbiff bigbiff19fb79c2016-09-05 21:04:51 -04002255 struct PartitionList part;
2256 if (restore_path.compare("ADB_Backup") == 0) {
2257 part.Display_Name = "ADB Backup";
2258 part.Mount_Point = "ADB Backup";
2259 part.selected = 1;
2260 Partition_List->push_back(part);
2261 break;
2262 }
Dees_Troy59df9262013-06-19 14:53:57 -05002263 if ((restore_part = Find_Partition_By_Path(restore_path)) != NULL) {
Dees Troy4159aed2014-02-28 17:24:43 +00002264 if ((restore_part->Backup_Name == "recovery" && !restore_part->Can_Be_Backed_Up) || restore_part->Is_SubPartition) {
Dees_Troya13d74f2013-03-24 08:54:55 -05002265 // Don't allow restore of recovery (causes problems on some devices)
Dees_Troy59df9262013-06-19 14:53:57 -05002266 // Don't add subpartitions to the list of items
Dees_Troya13d74f2013-03-24 08:54:55 -05002267 } else {
Dees_Troya13d74f2013-03-24 08:54:55 -05002268 part.Display_Name = restore_part->Backup_Display_Name;
2269 part.Mount_Point = restore_part->Backup_Path;
2270 part.selected = 1;
2271 Partition_List->push_back(part);
2272 }
2273 } else {
Ethan Yonker74db1572015-10-28 12:44:49 -05002274 gui_msg(Msg(msg::kError, "restore_unable_locate=Unable to locate '{1}' partition for restoring.")(restore_path));
Dees_Troya13d74f2013-03-24 08:54:55 -05002275 }
2276 start_pos = end_pos + 1;
2277 end_pos = Restore_List.find(";", start_pos);
2278 }
2279 }
2280 } else if (ListType == "wipe") {
2281 struct PartitionList dalvik;
Ethan Yonker74db1572015-10-28 12:44:49 -05002282 dalvik.Display_Name = gui_parse_text("{@dalvik}");
Dees_Troya13d74f2013-03-24 08:54:55 -05002283 dalvik.Mount_Point = "DALVIK";
2284 dalvik.selected = 0;
2285 Partition_List->push_back(dalvik);
2286 for (iter = Partitions.begin(); iter != Partitions.end(); iter++) {
2287 if ((*iter)->Wipe_Available_in_GUI && !(*iter)->Is_SubPartition) {
2288 struct PartitionList part;
2289 part.Display_Name = (*iter)->Display_Name;
2290 part.Mount_Point = (*iter)->Mount_Point;
2291 part.selected = 0;
2292 Partition_List->push_back(part);
2293 }
2294 if ((*iter)->Has_Android_Secure) {
2295 struct PartitionList part;
2296 part.Display_Name = (*iter)->Backup_Display_Name;
2297 part.Mount_Point = (*iter)->Backup_Path;
2298 part.selected = 0;
2299 Partition_List->push_back(part);
2300 }
Dees_Troy74fb2e92013-04-15 14:35:47 +00002301 if ((*iter)->Has_Data_Media) {
2302 struct PartitionList datamedia;
2303 datamedia.Display_Name = (*iter)->Storage_Name;
2304 datamedia.Mount_Point = "INTERNAL";
2305 datamedia.selected = 0;
2306 Partition_List->push_back(datamedia);
2307 }
Dees_Troya13d74f2013-03-24 08:54:55 -05002308 }
Ethan Yonker96af84a2015-01-05 14:58:36 -06002309 } else if (ListType == "flashimg") {
2310 for (iter = Partitions.begin(); iter != Partitions.end(); iter++) {
2311 if ((*iter)->Can_Flash_Img && (*iter)->Is_Present) {
2312 struct PartitionList part;
2313 part.Display_Name = (*iter)->Backup_Display_Name;
2314 part.Mount_Point = (*iter)->Backup_Path;
2315 part.selected = 0;
2316 Partition_List->push_back(part);
2317 }
2318 }
Ethan Yonker53796e72019-01-11 22:49:52 -06002319 if (DataManager::GetIntValue("tw_has_repack_tools") != 0 && DataManager::GetIntValue("tw_has_boot_slots") != 0) {
2320 TWPartition* boot = Find_Partition_By_Path("/boot");
2321 if (boot) {
2322 // Allow flashing kernels and ramdisks
2323 struct PartitionList repack_ramdisk;
2324 repack_ramdisk.Display_Name = gui_lookup("install_twrp_ramdisk", "Install Recovery Ramdisk");
2325 repack_ramdisk.Mount_Point = "/repack_ramdisk";
2326 repack_ramdisk.selected = 0;
2327 Partition_List->push_back(repack_ramdisk);
2328 /*struct PartitionList repack_kernel; For now let's leave repacking kernels under advanced only
2329 repack_kernel.Display_Name = gui_lookup("install_kernel", "Install Kernel");
2330 repack_kernel.Mount_Point = "/repack_kernel";
2331 repack_kernel.selected = 0;
2332 Partition_List->push_back(repack_kernel);*/
2333 }
2334 }
Dees_Troya13d74f2013-03-24 08:54:55 -05002335 } else {
Dees_Troy2673cec2013-04-02 20:22:16 +00002336 LOGERR("Unknown list type '%s' requested for TWPartitionManager::Get_Partition_List\n", ListType.c_str());
Dees_Troya13d74f2013-03-24 08:54:55 -05002337 }
2338}
2339
2340int TWPartitionManager::Fstab_Processed(void) {
2341 return Partitions.size();
2342}
Dees_Troyd93bda52013-07-03 19:55:19 +00002343
2344void TWPartitionManager::Output_Storage_Fstab(void) {
2345 std::vector<TWPartition*>::iterator iter;
2346 char storage_partition[255];
bigbiff bigbiffe4bdb152019-03-23 18:33:17 -04002347 std::string Temp;
bigbiff25d25b92020-06-19 16:07:38 -04002348 std::string cacheDir = TWFunc::get_log_dir();
bigbiff bigbiffe4bdb152019-03-23 18:33:17 -04002349
2350 if (cacheDir.empty()) {
2351 LOGINFO("Unable to find cache directory\n");
2352 return;
2353 }
bigbiff bigbiff19874f12019-01-08 20:06:57 -05002354
bigbiff25d25b92020-06-19 16:07:38 -04002355 std::string storageFstab = TWFunc::get_log_dir() + "recovery/storage.fstab";
bigbiff bigbiff19874f12019-01-08 20:06:57 -05002356 FILE *fp = fopen(storageFstab.c_str(), "w");
Dees_Troyd93bda52013-07-03 19:55:19 +00002357
2358 if (fp == NULL) {
bigbiff bigbiff19874f12019-01-08 20:06:57 -05002359 gui_msg(Msg(msg::kError, "unable_to_open=Unable to open '{1}'.")(storageFstab));
Dees_Troyd93bda52013-07-03 19:55:19 +00002360 return;
2361 }
2362
2363 // Iterate through all partitions
2364 for (iter = Partitions.begin(); iter != Partitions.end(); iter++) {
2365 if ((*iter)->Is_Storage) {
2366 Temp = (*iter)->Storage_Path + ";" + (*iter)->Storage_Name + ";\n";
2367 strcpy(storage_partition, Temp.c_str());
2368 fwrite(storage_partition, sizeof(storage_partition[0]), strlen(storage_partition) / sizeof(storage_partition[0]), fp);
2369 }
2370 }
2371 fclose(fp);
Vojtech Bocekfafb0c52013-07-25 22:53:02 +02002372}
Vojtech Bocek93cb1ef2014-05-12 15:41:52 +02002373
2374TWPartition *TWPartitionManager::Get_Default_Storage_Partition()
2375{
2376 TWPartition *res = NULL;
2377 for (std::vector<TWPartition*>::iterator iter = Partitions.begin(); iter != Partitions.end(); ++iter) {
Matt Mowera8a89d12016-12-30 18:10:37 -06002378 if (!(*iter)->Is_Storage)
Vojtech Bocek93cb1ef2014-05-12 15:41:52 +02002379 continue;
2380
Matt Mowera8a89d12016-12-30 18:10:37 -06002381 if ((*iter)->Is_Settings_Storage)
Vojtech Bocek93cb1ef2014-05-12 15:41:52 +02002382 return *iter;
2383
Matt Mowera8a89d12016-12-30 18:10:37 -06002384 if (!res)
Vojtech Bocek93cb1ef2014-05-12 15:41:52 +02002385 res = *iter;
2386 }
2387 return res;
2388}
bigbiff bigbiffc7eee6f2014-09-02 18:59:01 -04002389
2390bool TWPartitionManager::Enable_MTP(void) {
2391#ifdef TW_HAS_MTP
Ethan Yonker8dfa7772014-09-04 21:48:41 -05002392 if (mtppid) {
Ethan Yonker74db1572015-10-28 12:44:49 -05002393 gui_err("mtp_already_enabled=MTP already enabled");
bigbiff bigbiffc7eee6f2014-09-02 18:59:01 -04002394 return true;
2395 }
Ethan Yonker726a0202014-12-16 20:01:38 -06002396
2397 int mtppipe[2];
2398
2399 if (pipe(mtppipe) < 0) {
2400 LOGERR("Error creating MTP pipe\n");
2401 return false;
2402 }
2403
Ethan Yonkerdf7abac2014-12-29 10:48:17 -06002404 char old_value[PROPERTY_VALUE_MAX];
Matt Mowere07f0102017-02-23 17:40:00 -06002405 property_get("sys.usb.config", old_value, "");
2406 if (strcmp(old_value, "mtp,adb") != 0) {
Ethan Yonkerdf7abac2014-12-29 10:48:17 -06002407 char vendor[PROPERTY_VALUE_MAX];
2408 char product[PROPERTY_VALUE_MAX];
2409 property_set("sys.usb.config", "none");
2410 property_get("usb.vendor", vendor, "18D1");
2411 property_get("usb.product.mtpadb", product, "4EE2");
2412 string vendorstr = vendor;
2413 string productstr = product;
Ethan Yonker6e8c27a2016-12-22 17:55:57 -06002414 TWFunc::write_to_file("/sys/class/android_usb/android0/idVendor", vendorstr);
2415 TWFunc::write_to_file("/sys/class/android_usb/android0/idProduct", productstr);
Ethan Yonkerdf7abac2014-12-29 10:48:17 -06002416 property_set("sys.usb.config", "mtp,adb");
2417 }
Matt Mower653a1702017-02-16 10:38:52 -06002418 /* To enable MTP debug, use the twrp command line feature:
Ethan Yonker6d154c42014-09-03 14:19:43 -05002419 * twrp set tw_mtp_debug 1
2420 */
2421 twrpMtp *mtp = new twrpMtp(DataManager::GetIntValue("tw_mtp_debug"));
Ethan Yonker1b039202015-01-30 10:08:48 -06002422 mtppid = mtp->forkserver(mtppipe);
2423 if (mtppid) {
2424 close(mtppipe[0]); // Host closes read side
2425 mtp_write_fd = mtppipe[1];
2426 DataManager::SetValue("tw_mtp_enabled", 1);
2427 Add_All_MTP_Storage();
2428 return true;
Ethan Yonker726a0202014-12-16 20:01:38 -06002429 } else {
2430 close(mtppipe[0]);
2431 close(mtppipe[1]);
Ethan Yonker74db1572015-10-28 12:44:49 -05002432 gui_err("mtp_fail=Failed to enable MTP");
Ethan Yonker1b039202015-01-30 10:08:48 -06002433 return false;
bigbiff bigbiffc7eee6f2014-09-02 18:59:01 -04002434 }
bigbiff bigbiffc7eee6f2014-09-02 18:59:01 -04002435#else
Ethan Yonker74db1572015-10-28 12:44:49 -05002436 gui_err("no_mtp=MTP support not included");
bigbiff bigbiffc7eee6f2014-09-02 18:59:01 -04002437#endif
2438 DataManager::SetValue("tw_mtp_enabled", 0);
2439 return false;
2440}
2441
Ethan Yonker1b039202015-01-30 10:08:48 -06002442void TWPartitionManager::Add_All_MTP_Storage(void) {
2443#ifdef TW_HAS_MTP
2444 std::vector<TWPartition*>::iterator iter;
2445
2446 if (!mtppid)
2447 return; // MTP is not enabled
2448
2449 for (iter = Partitions.begin(); iter != Partitions.end(); iter++) {
2450 if ((*iter)->Is_Storage && (*iter)->Is_Present && (*iter)->Mount(false))
2451 Add_Remove_MTP_Storage((*iter), MTP_MESSAGE_ADD_STORAGE);
2452 }
2453#else
2454 return;
2455#endif
2456}
2457
bigbiff bigbiffc7eee6f2014-09-02 18:59:01 -04002458bool TWPartitionManager::Disable_MTP(void) {
Ethan Yonkerdf7abac2014-12-29 10:48:17 -06002459 char old_value[PROPERTY_VALUE_MAX];
bigbiff bigbiffaf32bb92018-12-18 18:39:53 -05002460 property_set("sys.usb.ffs.mtp.ready", "0");
Matt Mowere07f0102017-02-23 17:40:00 -06002461 property_get("sys.usb.config", old_value, "");
Ethan Yonkerdf7abac2014-12-29 10:48:17 -06002462 if (strcmp(old_value, "adb") != 0) {
2463 char vendor[PROPERTY_VALUE_MAX];
2464 char product[PROPERTY_VALUE_MAX];
2465 property_set("sys.usb.config", "none");
2466 property_get("usb.vendor", vendor, "18D1");
Matt Mowere07f0102017-02-23 17:40:00 -06002467 property_get("usb.product.adb", product, "D001");
Ethan Yonkerdf7abac2014-12-29 10:48:17 -06002468 string vendorstr = vendor;
2469 string productstr = product;
Ethan Yonker6e8c27a2016-12-22 17:55:57 -06002470 TWFunc::write_to_file("/sys/class/android_usb/android0/idVendor", vendorstr);
2471 TWFunc::write_to_file("/sys/class/android_usb/android0/idProduct", productstr);
Ethan Yonkerdf7abac2014-12-29 10:48:17 -06002472 usleep(2000);
2473 }
bigbiff bigbiffc7eee6f2014-09-02 18:59:01 -04002474#ifdef TW_HAS_MTP
Ethan Yonker8dfa7772014-09-04 21:48:41 -05002475 if (mtppid) {
Ethan Yonker8613dc02014-09-11 09:28:20 -05002476 LOGINFO("Disabling MTP\n");
2477 int status;
2478 kill(mtppid, SIGKILL);
Ethan Yonker8dfa7772014-09-04 21:48:41 -05002479 mtppid = 0;
Ethan Yonker8613dc02014-09-11 09:28:20 -05002480 // We don't care about the exit value, but this prevents a zombie process
2481 waitpid(mtppid, &status, 0);
Ethan Yonker726a0202014-12-16 20:01:38 -06002482 close(mtp_write_fd);
2483 mtp_write_fd = -1;
bigbiff bigbiffc7eee6f2014-09-02 18:59:01 -04002484 }
Ethan Yonkerdf7abac2014-12-29 10:48:17 -06002485#endif
bigbiff bigbiffc7eee6f2014-09-02 18:59:01 -04002486 property_set("sys.usb.config", "adb");
Ethan Yonkerdf7abac2014-12-29 10:48:17 -06002487#ifdef TW_HAS_MTP
bigbiff bigbiffc7eee6f2014-09-02 18:59:01 -04002488 DataManager::SetValue("tw_mtp_enabled", 0);
2489 return true;
bigbiff bigbiffc7eee6f2014-09-02 18:59:01 -04002490#endif
Ethan Yonkerdf7abac2014-12-29 10:48:17 -06002491 return false;
bigbiff bigbiffc7eee6f2014-09-02 18:59:01 -04002492}
Ethan Yonker726a0202014-12-16 20:01:38 -06002493
2494TWPartition* TWPartitionManager::Find_Partition_By_MTP_Storage_ID(unsigned int Storage_ID) {
2495 std::vector<TWPartition*>::iterator iter;
2496
2497 for (iter = Partitions.begin(); iter != Partitions.end(); iter++) {
2498 if ((*iter)->MTP_Storage_ID == Storage_ID)
2499 return (*iter);
2500 }
2501 return NULL;
2502}
2503
2504bool TWPartitionManager::Add_Remove_MTP_Storage(TWPartition* Part, int message_type) {
2505#ifdef TW_HAS_MTP
2506 struct mtpmsg mtp_message;
2507
2508 if (!mtppid)
2509 return false; // MTP is disabled
2510
2511 if (mtp_write_fd < 0) {
Ethan Yonkerd9ff3c52015-01-21 21:51:20 -06002512 LOGINFO("MTP: mtp_write_fd is not set\n");
Ethan Yonker726a0202014-12-16 20:01:38 -06002513 return false;
2514 }
2515
2516 if (Part) {
Ethan Yonker4bfabab2014-12-29 09:15:37 -06002517 if (Part->MTP_Storage_ID == 0)
2518 return false;
Ethan Yonker726a0202014-12-16 20:01:38 -06002519 if (message_type == MTP_MESSAGE_REMOVE_STORAGE) {
2520 mtp_message.message_type = MTP_MESSAGE_REMOVE_STORAGE; // Remove
2521 LOGINFO("sending message to remove %i\n", Part->MTP_Storage_ID);
2522 mtp_message.storage_id = Part->MTP_Storage_ID;
2523 if (write(mtp_write_fd, &mtp_message, sizeof(mtp_message)) <= 0) {
Ethan Yonkerd9ff3c52015-01-21 21:51:20 -06002524 LOGINFO("error sending message to remove storage %i\n", Part->MTP_Storage_ID);
Ethan Yonker726a0202014-12-16 20:01:38 -06002525 return false;
2526 } else {
2527 LOGINFO("Message sent, remove storage ID: %i\n", Part->MTP_Storage_ID);
2528 return true;
2529 }
2530 } else if (message_type == MTP_MESSAGE_ADD_STORAGE && Part->Is_Mounted()) {
2531 mtp_message.message_type = MTP_MESSAGE_ADD_STORAGE; // Add
2532 mtp_message.storage_id = Part->MTP_Storage_ID;
Ethan Yonker6e8c27a2016-12-22 17:55:57 -06002533 if (Part->Storage_Path.size() >= sizeof(mtp_message.path)) {
2534 LOGERR("Storage path '%s' too large for mtpmsg\n", Part->Storage_Path.c_str());
2535 return false;
2536 }
2537 strcpy(mtp_message.path, Part->Storage_Path.c_str());
2538 if (Part->Storage_Name.size() >= sizeof(mtp_message.display)) {
2539 LOGERR("Storage name '%s' too large for mtpmsg\n", Part->Storage_Name.c_str());
2540 return false;
2541 }
2542 strcpy(mtp_message.display, Part->Storage_Name.c_str());
Ethan Yonker726a0202014-12-16 20:01:38 -06002543 mtp_message.maxFileSize = Part->Get_Max_FileSize();
Ethan Yonker1b039202015-01-30 10:08:48 -06002544 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 -06002545 if (write(mtp_write_fd, &mtp_message, sizeof(mtp_message)) <= 0) {
Ethan Yonkerd9ff3c52015-01-21 21:51:20 -06002546 LOGINFO("error sending message to add storage %i\n", Part->MTP_Storage_ID);
Ethan Yonker726a0202014-12-16 20:01:38 -06002547 return false;
2548 } else {
Ethan Yonker6e8c27a2016-12-22 17:55:57 -06002549 LOGINFO("Message sent, add storage ID: %i '%s'\n", Part->MTP_Storage_ID, mtp_message.path);
Ethan Yonker726a0202014-12-16 20:01:38 -06002550 return true;
2551 }
2552 } else {
2553 LOGERR("Unknown MTP message type: %i\n", message_type);
2554 }
2555 } else {
2556 // This hopefully never happens as the error handling should
2557 // occur in the calling function.
Ethan Yonkerd9ff3c52015-01-21 21:51:20 -06002558 LOGINFO("TWPartitionManager::Add_Remove_MTP_Storage NULL partition given\n");
Ethan Yonker726a0202014-12-16 20:01:38 -06002559 }
2560 return true;
2561#else
Ethan Yonker74db1572015-10-28 12:44:49 -05002562 gui_err("no_mtp=MTP support not included");
Ethan Yonker726a0202014-12-16 20:01:38 -06002563 DataManager::SetValue("tw_mtp_enabled", 0);
2564 return false;
2565#endif
2566}
2567
2568bool TWPartitionManager::Add_MTP_Storage(string Mount_Point) {
2569#ifdef TW_HAS_MTP
2570 TWPartition* Part = PartitionManager.Find_Partition_By_Path(Mount_Point);
2571 if (Part) {
2572 return PartitionManager.Add_Remove_MTP_Storage(Part, MTP_MESSAGE_ADD_STORAGE);
2573 } else {
Ethan Yonkerd9ff3c52015-01-21 21:51:20 -06002574 LOGINFO("TWFunc::Add_MTP_Storage unable to locate partition for '%s'\n", Mount_Point.c_str());
Ethan Yonker726a0202014-12-16 20:01:38 -06002575 }
2576#endif
2577 return false;
2578}
2579
2580bool TWPartitionManager::Add_MTP_Storage(unsigned int Storage_ID) {
2581#ifdef TW_HAS_MTP
2582 TWPartition* Part = PartitionManager.Find_Partition_By_MTP_Storage_ID(Storage_ID);
2583 if (Part) {
2584 return PartitionManager.Add_Remove_MTP_Storage(Part, MTP_MESSAGE_ADD_STORAGE);
2585 } else {
Ethan Yonkerd9ff3c52015-01-21 21:51:20 -06002586 LOGINFO("TWFunc::Add_MTP_Storage unable to locate partition for %i\n", Storage_ID);
Ethan Yonker726a0202014-12-16 20:01:38 -06002587 }
2588#endif
2589 return false;
2590}
2591
2592bool TWPartitionManager::Remove_MTP_Storage(string Mount_Point) {
2593#ifdef TW_HAS_MTP
2594 TWPartition* Part = PartitionManager.Find_Partition_By_Path(Mount_Point);
2595 if (Part) {
2596 return PartitionManager.Add_Remove_MTP_Storage(Part, MTP_MESSAGE_REMOVE_STORAGE);
2597 } else {
Ethan Yonkerd9ff3c52015-01-21 21:51:20 -06002598 LOGINFO("TWFunc::Remove_MTP_Storage unable to locate partition for '%s'\n", Mount_Point.c_str());
Ethan Yonker726a0202014-12-16 20:01:38 -06002599 }
2600#endif
2601 return false;
2602}
2603
2604bool TWPartitionManager::Remove_MTP_Storage(unsigned int Storage_ID) {
2605#ifdef TW_HAS_MTP
2606 TWPartition* Part = PartitionManager.Find_Partition_By_MTP_Storage_ID(Storage_ID);
2607 if (Part) {
2608 return PartitionManager.Add_Remove_MTP_Storage(Part, MTP_MESSAGE_REMOVE_STORAGE);
2609 } else {
Ethan Yonkerd9ff3c52015-01-21 21:51:20 -06002610 LOGINFO("TWFunc::Remove_MTP_Storage unable to locate partition for %i\n", Storage_ID);
Ethan Yonker726a0202014-12-16 20:01:38 -06002611 }
2612#endif
2613 return false;
2614}
Ethan Yonker96af84a2015-01-05 14:58:36 -06002615
Ethan Yonkere080c1f2016-09-19 13:50:25 -05002616bool TWPartitionManager::Flash_Image(string& path, string& filename) {
bigbiffad58e1b2020-07-06 20:24:34 -04002617 twrpRepacker repacker;
Matt Mower23d8aae2017-01-06 14:30:33 -06002618 int partition_count = 0;
Ethan Yonker96af84a2015-01-05 14:58:36 -06002619 TWPartition* flash_part = NULL;
bigbiffce8f83c2015-12-12 18:30:21 -05002620 string Flash_List, flash_path, full_filename;
Ethan Yonker96af84a2015-01-05 14:58:36 -06002621 size_t start_pos = 0, end_pos = 0;
2622
Ethan Yonkere080c1f2016-09-19 13:50:25 -05002623 full_filename = path + "/" + filename;
Ethan Yonker96af84a2015-01-05 14:58:36 -06002624
bigbiffce8f83c2015-12-12 18:30:21 -05002625 gui_msg("image_flash_start=[IMAGE FLASH STARTED]");
2626 gui_msg(Msg("img_to_flash=Image to flash: '{1}'")(full_filename));
2627
2628 if (!TWFunc::Path_Exists(full_filename)) {
2629 if (!Mount_By_Path(full_filename, true)) {
Ethan Yonkerb78fbdf2016-01-15 16:46:35 -06002630 return false;
2631 }
bigbiffce8f83c2015-12-12 18:30:21 -05002632 if (!TWFunc::Path_Exists(full_filename)) {
2633 gui_msg(Msg(msg::kError, "unable_to_locate=Unable to locate {1}.")(full_filename));
Ethan Yonkerb78fbdf2016-01-15 16:46:35 -06002634 return false;
2635 }
2636 }
Ethan Yonker96af84a2015-01-05 14:58:36 -06002637
Ethan Yonker53796e72019-01-11 22:49:52 -06002638 DataManager::GetValue("tw_flash_partition", Flash_List);
2639 Repack_Type repack = REPLACE_NONE;
2640 if (Flash_List == "/repack_ramdisk;") {
2641 repack = REPLACE_RAMDISK;
2642 } else if (Flash_List == "/repack_kernel;") {
2643 repack = REPLACE_KERNEL;
2644 }
2645 if (repack != REPLACE_NONE) {
2646 Repack_Options_struct Repack_Options;
2647 Repack_Options.Type = repack;
2648 Repack_Options.Disable_Verity = false;
2649 Repack_Options.Disable_Force_Encrypt = false;
2650 Repack_Options.Backup_First = DataManager::GetIntValue("tw_repack_backup_first") != 0;
bigbiffad58e1b2020-07-06 20:24:34 -04002651 return repacker.Repack_Image_And_Flash(full_filename, Repack_Options);
Ethan Yonker53796e72019-01-11 22:49:52 -06002652 }
Ethan Yonkere080c1f2016-09-19 13:50:25 -05002653 PartitionSettings part_settings;
2654 part_settings.Backup_Folder = path;
2655 unsigned long long total_bytes = TWFunc::Get_File_Size(full_filename);
2656 ProgressTracking progress(total_bytes);
2657 part_settings.progress = &progress;
2658 part_settings.adbbackup = false;
2659 part_settings.PM_Method = PM_RESTORE;
Ethan Yonker74db1572015-10-28 12:44:49 -05002660 gui_msg("calc_restore=Calculating restore details...");
Ethan Yonker96af84a2015-01-05 14:58:36 -06002661 if (!Flash_List.empty()) {
2662 end_pos = Flash_List.find(";", start_pos);
2663 while (end_pos != string::npos && start_pos < Flash_List.size()) {
2664 flash_path = Flash_List.substr(start_pos, end_pos - start_pos);
2665 flash_part = Find_Partition_By_Path(flash_path);
2666 if (flash_part != NULL) {
2667 partition_count++;
2668 if (partition_count > 1) {
Ethan Yonker74db1572015-10-28 12:44:49 -05002669 gui_err("too_many_flash=Too many partitions selected for flashing.");
Ethan Yonker96af84a2015-01-05 14:58:36 -06002670 return false;
2671 }
2672 } else {
Ethan Yonker74db1572015-10-28 12:44:49 -05002673 gui_msg(Msg(msg::kError, "flash_unable_locate=Unable to locate '{1}' partition for flashing.")(flash_path));
Ethan Yonker96af84a2015-01-05 14:58:36 -06002674 return false;
2675 }
2676 start_pos = end_pos + 1;
2677 end_pos = Flash_List.find(";", start_pos);
2678 }
2679 }
2680
2681 if (partition_count == 0) {
Ethan Yonker74db1572015-10-28 12:44:49 -05002682 gui_err("no_part_flash=No partitions selected for flashing.");
Ethan Yonker96af84a2015-01-05 14:58:36 -06002683 return false;
2684 }
2685
2686 DataManager::SetProgress(0.0);
2687 if (flash_part) {
Ethan Yonkere080c1f2016-09-19 13:50:25 -05002688 flash_part->Backup_FileName = filename;
2689 if (!flash_part->Flash_Image(&part_settings))
Ethan Yonker96af84a2015-01-05 14:58:36 -06002690 return false;
2691 } else {
Ethan Yonker74db1572015-10-28 12:44:49 -05002692 gui_err("invalid_flash=Invalid flash partition specified.");
Ethan Yonker96af84a2015-01-05 14:58:36 -06002693 return false;
2694 }
Ethan Yonker74db1572015-10-28 12:44:49 -05002695 gui_highlight("flash_done=IMAGE FLASH COMPLETED]");
Ethan Yonker96af84a2015-01-05 14:58:36 -06002696 return true;
2697}
Ethan Yonker74db1572015-10-28 12:44:49 -05002698
2699void TWPartitionManager::Translate_Partition(const char* path, const char* resource_name, const char* default_value) {
2700 TWPartition* part = PartitionManager.Find_Partition_By_Path(path);
2701 if (part) {
Ethan Yonker66a19492015-12-10 10:19:45 -06002702 if (part->Is_Adopted_Storage) {
2703 part->Display_Name = part->Display_Name + " - " + gui_lookup("data", "Data");
2704 part->Backup_Display_Name = part->Display_Name;
2705 part->Storage_Name = part->Storage_Name + " - " + gui_lookup("adopted_storage", "Adopted Storage");
2706 } else {
2707 part->Display_Name = gui_lookup(resource_name, default_value);
2708 part->Backup_Display_Name = part->Display_Name;
2709 }
Ethan Yonker74db1572015-10-28 12:44:49 -05002710 }
2711}
2712
2713void TWPartitionManager::Translate_Partition(const char* path, const char* resource_name, const char* default_value, const char* storage_resource_name, const char* storage_default_value) {
2714 TWPartition* part = PartitionManager.Find_Partition_By_Path(path);
2715 if (part) {
Ethan Yonker66a19492015-12-10 10:19:45 -06002716 if (part->Is_Adopted_Storage) {
Ethan Yonker01f4e032017-02-03 15:30:52 -06002717 part->Backup_Display_Name = part->Display_Name + " - " + gui_lookup("data_backup", "Data (excl. storage)");
Ethan Yonker66a19492015-12-10 10:19:45 -06002718 part->Display_Name = part->Display_Name + " - " + gui_lookup("data", "Data");
Ethan Yonker66a19492015-12-10 10:19:45 -06002719 part->Storage_Name = part->Storage_Name + " - " + gui_lookup("adopted_storage", "Adopted Storage");
2720 } else {
2721 part->Display_Name = gui_lookup(resource_name, default_value);
2722 part->Backup_Display_Name = part->Display_Name;
2723 if (part->Is_Storage)
2724 part->Storage_Name = gui_lookup(storage_resource_name, storage_default_value);
2725 }
Ethan Yonker74db1572015-10-28 12:44:49 -05002726 }
2727}
2728
Ethan Yonker01f4e032017-02-03 15:30:52 -06002729void 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) {
2730 TWPartition* part = PartitionManager.Find_Partition_By_Path(path);
2731 if (part) {
2732 if (part->Is_Adopted_Storage) {
2733 part->Backup_Display_Name = part->Display_Name + " - " + gui_lookup(backup_name, backup_default);
2734 part->Display_Name = part->Display_Name + " - " + gui_lookup("data", "Data");
2735 part->Storage_Name = part->Storage_Name + " - " + gui_lookup("adopted_storage", "Adopted Storage");
2736 } else {
2737 part->Display_Name = gui_lookup(resource_name, default_value);
2738 part->Backup_Display_Name = gui_lookup(backup_name, backup_default);
2739 if (part->Is_Storage)
2740 part->Storage_Name = gui_lookup(storage_resource_name, storage_default_value);
2741 }
2742 }
2743}
2744
Ethan Yonker74db1572015-10-28 12:44:49 -05002745void TWPartitionManager::Translate_Partition_Display_Names() {
Ethan Yonker66a19492015-12-10 10:19:45 -06002746 LOGINFO("Translating partition display names\n");
Ethan Yonker74db1572015-10-28 12:44:49 -05002747 Translate_Partition("/system", "system", "System");
2748 Translate_Partition("/system_image", "system_image", "System Image");
2749 Translate_Partition("/vendor", "vendor", "Vendor");
2750 Translate_Partition("/vendor_image", "vendor_image", "Vendor Image");
2751 Translate_Partition("/cache", "cache", "Cache");
Ethan Yonker74db1572015-10-28 12:44:49 -05002752 Translate_Partition("/boot", "boot", "Boot");
2753 Translate_Partition("/recovery", "recovery", "Recovery");
2754 if (!datamedia) {
Ethan Yonker01f4e032017-02-03 15:30:52 -06002755 Translate_Partition("/data", "data", "Data", "internal", "Internal Storage");
Ethan Yonker74db1572015-10-28 12:44:49 -05002756 Translate_Partition("/sdcard", "sdcard", "SDCard", "sdcard", "SDCard");
2757 Translate_Partition("/internal_sd", "sdcard", "SDCard", "sdcard", "SDCard");
2758 Translate_Partition("/internal_sdcard", "sdcard", "SDCard", "sdcard", "SDCard");
2759 Translate_Partition("/emmc", "sdcard", "SDCard", "sdcard", "SDCard");
Ethan Yonker01f4e032017-02-03 15:30:52 -06002760 } else {
2761 Translate_Partition("/data", "data", "Data", "internal", "Internal Storage", "data_backup", "Data (excl. storage)");
Ethan Yonker74db1572015-10-28 12:44:49 -05002762 }
Ethan Yonker01f4e032017-02-03 15:30:52 -06002763 Translate_Partition("/external_sd", "microsd", "Micro SDCard", "microsd", "Micro SDCard", "data_backup", "Data (excl. storage)");
2764 Translate_Partition("/external_sdcard", "microsd", "Micro SDCard", "microsd", "Micro SDCard", "data_backup", "Data (excl. storage)");
Ethan Yonker74db1572015-10-28 12:44:49 -05002765 Translate_Partition("/usb-otg", "usbotg", "USB OTG", "usbotg", "USB OTG");
2766 Translate_Partition("/sd-ext", "sdext", "SD-EXT");
2767
2768 // Android secure is a special case
2769 TWPartition* part = PartitionManager.Find_Partition_By_Path("/and-sec");
2770 if (part)
2771 part->Backup_Display_Name = gui_lookup("android_secure", "Android Secure");
2772
Ethan Yonker6e8c27a2016-12-22 17:55:57 -06002773 std::vector<TWPartition*>::iterator sysfs;
2774 for (sysfs = Partitions.begin(); sysfs != Partitions.end(); sysfs++) {
2775 if (!(*sysfs)->Sysfs_Entry.empty()) {
2776 Translate_Partition((*sysfs)->Mount_Point.c_str(), "autostorage", "Storage", "autostorage", "Storage");
2777 }
2778 }
2779
Ethan Yonker74db1572015-10-28 12:44:49 -05002780 // This updates the text on all of the storage selection buttons in the GUI
2781 DataManager::SetBackupFolder();
2782}
Ethan Yonker66a19492015-12-10 10:19:45 -06002783
Ethan Yonker6e8c27a2016-12-22 17:55:57 -06002784bool TWPartitionManager::Decrypt_Adopted() {
Ethan Yonker66a19492015-12-10 10:19:45 -06002785#ifdef TW_INCLUDE_CRYPTO
Ethan Yonker6e8c27a2016-12-22 17:55:57 -06002786 bool ret = false;
Ethan Yonker66a19492015-12-10 10:19:45 -06002787 if (!Mount_By_Path("/data", false)) {
2788 LOGERR("Cannot decrypt adopted storage because /data will not mount\n");
Ethan Yonker6e8c27a2016-12-22 17:55:57 -06002789 return false;
Ethan Yonker66a19492015-12-10 10:19:45 -06002790 }
2791 LOGINFO("Decrypt adopted storage starting\n");
2792 char* xmlFile = PageManager::LoadFileToBuffer("/data/system/storage.xml", NULL);
2793 xml_document<> *doc = NULL;
2794 xml_node<>* volumes = NULL;
Ethan Yonker66a19492015-12-10 10:19:45 -06002795 string Primary_Storage_UUID = "";
2796 if (xmlFile != NULL) {
2797 LOGINFO("successfully loaded storage.xml\n");
2798 doc = new xml_document<>();
2799 doc->parse<0>(xmlFile);
2800 volumes = doc->first_node("volumes");
2801 if (volumes) {
2802 xml_attribute<>* psuuid = volumes->first_attribute("primaryStorageUuid");
2803 if (psuuid) {
2804 Primary_Storage_UUID = psuuid->value();
2805 }
2806 }
Ethan Yonker6e8c27a2016-12-22 17:55:57 -06002807 } else {
2808 LOGINFO("No /data/system/storage.xml for adopted storage\n");
2809 return false;
Ethan Yonker66a19492015-12-10 10:19:45 -06002810 }
2811 std::vector<TWPartition*>::iterator adopt;
2812 for (adopt = Partitions.begin(); adopt != Partitions.end(); adopt++) {
2813 if ((*adopt)->Removable && (*adopt)->Is_Present) {
2814 if ((*adopt)->Decrypt_Adopted() == 0) {
Ethan Yonker6e8c27a2016-12-22 17:55:57 -06002815 ret = true;
Ethan Yonker66a19492015-12-10 10:19:45 -06002816 if (volumes) {
2817 xml_node<>* volume = volumes->first_node("volume");
2818 while (volume) {
2819 xml_attribute<>* guid = volume->first_attribute("partGuid");
2820 if (guid) {
2821 string GUID = (*adopt)->Adopted_GUID.c_str();
2822 GUID.insert(8, "-");
2823 GUID.insert(13, "-");
2824 GUID.insert(18, "-");
2825 GUID.insert(23, "-");
2826
2827 if (strcasecmp(GUID.c_str(), guid->value()) == 0) {
2828 xml_attribute<>* attr = volume->first_attribute("nickname");
nkk71ffb02bd2017-06-04 23:12:16 +03002829 if (attr && attr->value() && strlen(attr->value()) > 0) {
Ethan Yonker66a19492015-12-10 10:19:45 -06002830 (*adopt)->Storage_Name = attr->value();
2831 (*adopt)->Display_Name = (*adopt)->Storage_Name;
2832 (*adopt)->Backup_Display_Name = (*adopt)->Storage_Name;
2833 LOGINFO("storage name from storage.xml is '%s'\n", attr->value());
2834 }
2835 attr = volume->first_attribute("fsUuid");
2836 if (attr && !Primary_Storage_UUID.empty() && strcmp(Primary_Storage_UUID.c_str(), attr->value()) == 0) {
2837 TWPartition* Dat = Find_Partition_By_Path("/data");
2838 if (Dat) {
2839 LOGINFO("Internal storage is found on adopted storage '%s'\n", (*adopt)->Display_Name.c_str());
2840 LOGINFO("Changing '%s' to point to '%s'\n", Dat->Symlink_Mount_Point.c_str(), (*adopt)->Storage_Path.c_str());
2841 (*adopt)->Symlink_Mount_Point = Dat->Symlink_Mount_Point;
2842 Dat->Symlink_Mount_Point = "";
2843 // Toggle mounts to ensure that the symlink mount point (probably /sdcard) is mounted to the right location
2844 Dat->UnMount(false);
2845 Dat->Mount(false);
2846 (*adopt)->UnMount(false);
2847 (*adopt)->Mount(false);
Ethan Yonker66a19492015-12-10 10:19:45 -06002848 }
2849 }
2850 break;
2851 }
2852 }
2853 volume = volume->next_sibling("volume");
2854 }
2855 }
nkk71ffb02bd2017-06-04 23:12:16 +03002856 Update_System_Details();
2857 Output_Partition((*adopt));
Ethan Yonker66a19492015-12-10 10:19:45 -06002858 }
2859 }
2860 }
2861 if (xmlFile) {
2862 doc->clear();
2863 delete doc;
2864 free(xmlFile);
2865 }
Ethan Yonker6e8c27a2016-12-22 17:55:57 -06002866 return ret;
Ethan Yonker66a19492015-12-10 10:19:45 -06002867#else
2868 LOGINFO("Decrypt_Adopted: no crypto support\n");
Ethan Yonker6e8c27a2016-12-22 17:55:57 -06002869 return false;
Ethan Yonker66a19492015-12-10 10:19:45 -06002870#endif
2871}
Ethan Yonkerfcf3f242016-02-16 12:30:26 -06002872
2873void TWPartitionManager::Remove_Partition_By_Path(string Path) {
2874 std::vector<TWPartition*>::iterator iter;
2875 string Local_Path = TWFunc::Get_Root_Path(Path);
2876
2877 for (iter = Partitions.begin(); iter != Partitions.end(); iter++) {
2878 if ((*iter)->Mount_Point == Local_Path || (!(*iter)->Symlink_Mount_Point.empty() && (*iter)->Symlink_Mount_Point == Local_Path)) {
2879 LOGINFO("Found and erasing '%s' from partition list\n", Local_Path.c_str());
2880 Partitions.erase(iter);
2881 return;
2882 }
2883 }
2884}
Ethan Yonker1b190162016-12-05 15:25:19 -06002885
2886void TWPartitionManager::Set_Active_Slot(const string& Slot) {
2887 if (Slot != "A" && Slot != "B") {
2888 LOGERR("Set_Active_Slot invalid slot '%s'\n", Slot.c_str());
2889 return;
2890 }
2891 if (Active_Slot_Display == Slot)
2892 return;
2893 LOGINFO("Setting active slot %s\n", Slot.c_str());
2894#ifdef AB_OTA_UPDATER
2895 if (!Active_Slot_Display.empty()) {
2896 const hw_module_t *hw_module;
2897 boot_control_module_t *module;
2898 int ret;
2899 ret = hw_get_module("bootctrl", &hw_module);
2900 if (ret != 0) {
2901 LOGERR("Error getting bootctrl module.\n");
2902 } else {
2903 module = (boot_control_module_t*) hw_module;
2904 module->init(module);
2905 int slot_number = 0;
2906 if (Slot == "B")
2907 slot_number = 1;
2908 if (module->setActiveBootSlot(module, slot_number))
2909 gui_msg(Msg(msg::kError, "unable_set_boot_slot=Error changing bootloader boot slot to {1}")(Slot));
2910 }
2911 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
2912 }
2913#else
2914 LOGERR("Boot slot feature not present\n");
2915#endif
2916 Active_Slot_Display = Slot;
2917 if (Fstab_Processed())
2918 Update_System_Details();
2919}
2920string TWPartitionManager::Get_Active_Slot_Suffix() {
2921 if (Active_Slot_Display == "A")
2922 return "_a";
2923 return "_b";
2924}
2925string TWPartitionManager::Get_Active_Slot_Display() {
2926 return Active_Slot_Display;
2927}
Ethan Yonker6e8c27a2016-12-22 17:55:57 -06002928
Captain Throwback9d6feb52018-07-27 10:05:24 -04002929string TWPartitionManager::Get_Android_Root_Path() {
bigbiff8da46fa2020-09-08 16:42:34 -04002930 return "/system_root";
Captain Throwback9d6feb52018-07-27 10:05:24 -04002931}
2932
Ethan Yonker6e8c27a2016-12-22 17:55:57 -06002933void TWPartitionManager::Remove_Uevent_Devices(const string& Mount_Point) {
2934 std::vector<TWPartition*>::iterator iter;
2935
2936 for (iter = Partitions.begin(); iter != Partitions.end(); ) {
2937 if ((*iter)->Is_SubPartition && (*iter)->SubPartition_Of == Mount_Point) {
2938 TWPartition *part = *iter;
2939 LOGINFO("%s was removed by uevent data\n", (*iter)->Mount_Point.c_str());
2940 (*iter)->UnMount(false);
2941 rmdir((*iter)->Mount_Point.c_str());
2942 iter = Partitions.erase(iter);
2943 delete part;
2944 } else {
2945 iter++;
2946 }
2947 }
2948}
2949
2950void TWPartitionManager::Handle_Uevent(const Uevent_Block_Data& uevent_data) {
2951 std::vector<TWPartition*>::iterator iter;
2952
2953 for (iter = Partitions.begin(); iter != Partitions.end(); iter++) {
2954 if (!(*iter)->Sysfs_Entry.empty()) {
2955 string device;
2956 size_t wildcard = (*iter)->Sysfs_Entry.find("*");
2957 if (wildcard != string::npos) {
2958 device = (*iter)->Sysfs_Entry.substr(0, wildcard);
2959 } else {
2960 device = (*iter)->Sysfs_Entry;
2961 }
2962 if (device == uevent_data.sysfs_path.substr(0, device.size())) {
2963 // Found a match
2964 if (uevent_data.action == "add") {
2965 (*iter)->Primary_Block_Device = "/dev/block/" + uevent_data.block_device;
2966 (*iter)->Alternate_Block_Device = (*iter)->Primary_Block_Device;
2967 (*iter)->Is_Present = true;
2968 LOGINFO("Found a match '%s' '%s'\n", uevent_data.block_device.c_str(), device.c_str());
2969 if (!Decrypt_Adopted()) {
2970 LOGINFO("No adopted storage so finding actual block device\n");
2971 (*iter)->Find_Actual_Block_Device();
2972 }
2973 return;
2974 } else if (uevent_data.action == "remove") {
2975 (*iter)->Is_Present = false;
2976 (*iter)->Primary_Block_Device = "";
2977 (*iter)->Actual_Block_Device = "";
2978 Remove_Uevent_Devices((*iter)->Mount_Point);
2979 return;
2980 }
2981 }
2982 }
2983 }
bigbiffee7b7ff2020-03-23 15:08:27 -04002984
2985 if (!PartitionManager.Get_Super_Status())
2986 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 -06002987}
2988
2989void TWPartitionManager::setup_uevent() {
2990 struct sockaddr_nl nls;
2991
2992 if (uevent_pfd.fd >= 0) {
2993 LOGINFO("uevent already set up\n");
2994 return;
2995 }
2996
2997 // Open hotplug event netlink socket
2998 memset(&nls,0,sizeof(struct sockaddr_nl));
2999 nls.nl_family = AF_NETLINK;
3000 nls.nl_pid = getpid();
3001 nls.nl_groups = -1;
3002 uevent_pfd.events = POLLIN;
3003 uevent_pfd.fd = socket(PF_NETLINK, SOCK_DGRAM, NETLINK_KOBJECT_UEVENT);
3004 if (uevent_pfd.fd==-1) {
3005 LOGERR("uevent not root\n");
3006 return;
3007 }
3008
3009 // Listen to netlink socket
3010 if (::bind(uevent_pfd.fd, (struct sockaddr *) &nls, sizeof(struct sockaddr_nl)) < 0) {
3011 LOGERR("Bind failed\n");
3012 return;
3013 }
3014 set_select_fd();
3015 Coldboot();
3016}
3017
3018Uevent_Block_Data TWPartitionManager::get_event_block_values(char *buf, int len) {
3019 Uevent_Block_Data ret;
3020 ret.subsystem = "";
3021 char *ptr = buf;
3022 const char *end = buf + len;
3023
3024 buf[len - 1] = '\0';
3025 while (ptr < end) {
3026 if (strncmp(ptr, "ACTION=", strlen("ACTION=")) == 0) {
3027 ptr += strlen("ACTION=");
3028 ret.action = ptr;
3029 } else if (strncmp(ptr, "SUBSYSTEM=", strlen("SUBSYSTEM=")) == 0) {
3030 ptr += strlen("SUBSYSTEM=");
3031 ret.subsystem = ptr;
3032 } else if (strncmp(ptr, "DEVTYPE=", strlen("DEVTYPE=")) == 0) {
3033 ptr += strlen("DEVTYPE=");
3034 ret.type = ptr;
3035 } else if (strncmp(ptr, "DEVPATH=", strlen("DEVPATH=")) == 0) {
3036 ptr += strlen("DEVPATH=");
3037 ret.sysfs_path += ptr;
3038 } else if (strncmp(ptr, "DEVNAME=", strlen("DEVNAME=")) == 0) {
3039 ptr += strlen("DEVNAME=");
3040 ret.block_device += ptr;
3041 } else if (strncmp(ptr, "MAJOR=", strlen("MAJOR=")) == 0) {
3042 ptr += strlen("MAJOR=");
3043 ret.major = atoi(ptr);
3044 } else if (strncmp(ptr, "MINOR=", strlen("MINOR=")) == 0) {
3045 ptr += strlen("MINOR=");
3046 ret.minor = atoi(ptr);
3047 }
3048 ptr += strlen(ptr) + 1;
3049 }
3050 return ret;
3051}
3052
3053void TWPartitionManager::read_uevent() {
3054 char buf[1024];
3055
3056 int len = recv(uevent_pfd.fd, buf, sizeof(buf), MSG_DONTWAIT);
3057 if (len == -1) {
Mauronofrio Matarresec1bb76e2019-08-04 17:02:41 +01003058 LOGINFO("recv error on uevent\n");
Ethan Yonker6e8c27a2016-12-22 17:55:57 -06003059 return;
3060 }
3061 /*int i = 0; // Print all uevent output for test /debug
3062 while (i<len) {
3063 printf("%s\n", buf+i);
3064 i += strlen(buf+i)+1;
3065 }*/
3066 Uevent_Block_Data uevent_data = get_event_block_values(buf, len);
3067 if (uevent_data.subsystem == "block" && uevent_data.type == "disk") {
3068 PartitionManager.Handle_Uevent(uevent_data);
3069 }
3070}
3071
3072void TWPartitionManager::close_uevent() {
3073 if (uevent_pfd.fd > 0)
3074 close(uevent_pfd.fd);
3075 uevent_pfd.fd = -1;
3076}
3077
3078void TWPartitionManager::Add_Partition(TWPartition* Part) {
3079 Partitions.push_back(Part);
3080}
3081
3082void TWPartitionManager::Coldboot_Scan(std::vector<string> *sysfs_entries, const string& Path, int depth) {
3083 string Real_Path = Path;
3084 char real_path[PATH_MAX];
3085 if (realpath(Path.c_str(), &real_path[0])) {
3086 string Real_Path = real_path;
3087 std::vector<string>::iterator iter;
3088 for (iter = sysfs_entries->begin(); iter != sysfs_entries->end(); iter++) {
3089 if (Real_Path.find((*iter)) != string::npos) {
3090 string Write_Path = Real_Path + "/uevent";
3091 if (TWFunc::Path_Exists(Write_Path)) {
3092 const char* write_val = "add\n";
3093 TWFunc::write_to_file(Write_Path, write_val);
3094 break;
3095 }
3096 }
3097 }
3098 }
3099
3100 DIR* d = opendir(Path.c_str());
3101 if (d != NULL) {
3102 struct dirent* de;
3103 while ((de = readdir(d)) != NULL) {
3104 if (de->d_name[0] == '.' || (de->d_type != DT_DIR && depth > 0))
3105 continue;
3106 if (strlen(de->d_name) >= 4 && (strncmp(de->d_name, "ram", 3) == 0 || strncmp(de->d_name, "loop", 4) == 0))
3107 continue;
3108
3109 string item = Path + "/";
3110 item.append(de->d_name);
3111 Coldboot_Scan(sysfs_entries, item, depth + 1);
3112 }
3113 closedir(d);
3114 }
3115}
3116
3117void TWPartitionManager::Coldboot() {
3118 std::vector<TWPartition*>::iterator iter;
3119 std::vector<string> sysfs_entries;
3120
3121 for (iter = Partitions.begin(); iter != Partitions.end(); iter++) {
3122 if (!(*iter)->Sysfs_Entry.empty()) {
3123 size_t wildcard_pos = (*iter)->Sysfs_Entry.find("*");
3124 if (wildcard_pos == string::npos)
3125 wildcard_pos = (*iter)->Sysfs_Entry.size();
3126 sysfs_entries.push_back((*iter)->Sysfs_Entry.substr(0, wildcard_pos));
3127 }
3128 }
3129
3130 if (sysfs_entries.size() > 0)
3131 Coldboot_Scan(&sysfs_entries, "/sys/block", 0);
3132}
Ethan Yonker53796e72019-01-11 22:49:52 -06003133
3134bool TWPartitionManager::Prepare_Empty_Folder(const std::string& Folder) {
3135 if (TWFunc::Path_Exists(Folder))
3136 TWFunc::removeDir(Folder, false);
3137 return TWFunc::Recursive_Mkdir(Folder);
3138}
3139
bigbiffee7b7ff2020-03-23 15:08:27 -04003140bool TWPartitionManager::Prepare_Super_Volume(TWPartition* twrpPart) {
3141 Fstab fstab;
3142 std::string bare_partition_name;
3143
3144 if (twrpPart->Get_Mount_Point() == "/system_root")
3145 bare_partition_name = "system";
3146 else
3147 bare_partition_name = TWFunc::Remove_Beginning_Slash(twrpPart->Get_Mount_Point());
3148
3149 LOGINFO("Trying to prepare %s from super partition\n", bare_partition_name.c_str());
3150
3151 std::string blk_device_partition;
3152#ifdef AB_OTA_UPDATER
3153 blk_device_partition = bare_partition_name + PartitionManager.Get_Active_Slot_Suffix();
3154#else
3155 blk_device_partition = bare_partition_name;
3156#endif
3157
3158 FstabEntry fstabEntry = {
3159 .blk_device = blk_device_partition,
3160 .mount_point = twrpPart->Get_Mount_Point(),
3161 .fs_type = twrpPart->Current_File_System,
3162 .fs_mgr_flags.logical = twrpPart->Is_Super,
3163 };
3164
3165 fstab.emplace_back(fstabEntry);
3166 if (!fs_mgr_update_logical_partition(&fstabEntry)) {
3167 LOGERR("unable to update logical partition: %s\n", twrpPart->Get_Mount_Point().c_str());
3168 return false;
3169 }
3170
bigbiff32cbabe2020-04-12 19:16:19 -04003171 while (access(fstabEntry.blk_device.c_str(), F_OK) != 0) {
3172 usleep(100);
3173 }
3174
bigbiffee7b7ff2020-03-23 15:08:27 -04003175 twrpPart->Set_Block_Device(fstabEntry.blk_device);
3176 twrpPart->Update_Size(true);
3177 twrpPart->Change_Mount_Read_Only(true);
3178 twrpPart->Set_Can_Be_Backed_Up(false);
3179 twrpPart->Set_Can_Be_Wiped(false);
3180 return true;
3181}
3182
3183bool TWPartitionManager::Prepare_All_Super_Volumes() {
3184 bool status = true;
3185 std::vector<TWPartition*>::iterator iter;
3186
3187 for (iter = Partitions.begin(); iter != Partitions.end(); iter++) {
3188 if ((*iter)->Is_Super) {
3189 if (!Prepare_Super_Volume(*iter)) {
3190 status = false;
3191 }
3192 PartitionManager.Output_Partition(*iter);
3193 }
3194 }
3195 Update_System_Details();
3196 return status;
3197}
3198
3199bool TWPartitionManager::Is_Super_Partition(const char* fstab_line) {
Mohd Faraze3948ec2020-08-14 01:40:59 +00003200 if (!Get_Super_Status())
3201 return false;
bigbiffee7b7ff2020-03-23 15:08:27 -04003202 std::vector<std::string> super_partition_list = {"system", "vendor", "odm", "product", "system_ext"};
3203
3204 for (auto&& fstab_partition_check: super_partition_list) {
3205 if (strncmp(fstab_line, fstab_partition_check.c_str(), fstab_partition_check.size()) == 0) {
3206 DataManager::SetValue(TW_IS_SUPER, "1");
3207 return true;
3208 }
3209 }
3210 return false;
3211}
3212
3213std::string TWPartitionManager::Get_Super_Partition() {
3214 int slot_number = Get_Active_Slot_Display() == "A" ? 0 : 1;
3215 std::string super_device = fs_mgr_get_super_partition_name(slot_number);
3216 return "/dev/block/by-name/" + super_device;
3217}
3218
3219void TWPartitionManager::Setup_Super_Devices() {
3220 std::string superPart = Get_Super_Partition();
3221 android::fs_mgr::CreateLogicalPartitions(superPart);
bigbiff7ba75002020-04-11 20:47:09 -04003222}
3223
3224void TWPartitionManager::Setup_Super_Partition() {
bigbiffee7b7ff2020-03-23 15:08:27 -04003225 TWPartition* superPartition = new TWPartition();
bigbiff7ba75002020-04-11 20:47:09 -04003226 std::string superPart = Get_Super_Partition();
3227
3228 superPartition->Backup_Path = "/super";
3229 superPartition->Mount_Point = "/super";
bigbiffee7b7ff2020-03-23 15:08:27 -04003230 superPartition->Actual_Block_Device = superPart;
3231 superPartition->Alternate_Block_Device = superPart;
Ian Macdonald160e8d32020-09-29 20:47:31 +02003232#ifdef BOARD_DYNAMIC_PARTITIONS_PARTITION_LIST
3233 superPartition->Backup_Display_Name = "Super (" BOARD_DYNAMIC_PARTITIONS_PARTITION_LIST ")";
3234#else
3235 superPartition->Backup_Display_Name = "Super";
3236#endif
bigbiffee7b7ff2020-03-23 15:08:27 -04003237 superPartition->Can_Flash_Img = true;
bigbiffee7b7ff2020-03-23 15:08:27 -04003238 superPartition->Current_File_System = "emmc";
3239 superPartition->Can_Be_Backed_Up = true;
3240 superPartition->Is_Present = true;
3241 superPartition->Is_SubPartition = false;
bigbiff7ba75002020-04-11 20:47:09 -04003242 superPartition->Setup_Image();
bigbiffee7b7ff2020-03-23 15:08:27 -04003243 Add_Partition(superPartition);
3244 PartitionManager.Output_Partition(superPartition);
3245 Update_System_Details();
3246}
3247
3248bool TWPartitionManager::Get_Super_Status() {
bigbiffdf8436b2020-08-30 16:22:34 -04003249 std::string fastboot_mode = android::base::GetProperty("sys.usb.config", "");
3250 if (fastboot_mode == "fastboot") {
3251 return false;
3252 }
3253 else
3254 return access(Get_Super_Partition().c_str(), F_OK) == 0;
bigbiffee7b7ff2020-03-23 15:08:27 -04003255}
bigbiff25d25b92020-06-19 16:07:38 -04003256
3257bool TWPartitionManager::Recreate_Logs_Dir() {
3258#ifdef TW_INCLUDE_FBE
3259 struct passwd pd;
3260 struct passwd *pwdptr = &pd;
3261 struct passwd *tempPd;
3262 char pwdBuf[512];
3263 int uid = 0, gid = 0;
3264
3265 if ((getpwnam_r("system", pwdptr, pwdBuf, sizeof(pwdBuf), &tempPd)) != 0) {
3266 LOGERR("unable to get system user id\n");
3267 return false;
3268 } else {
3269 struct group grp;
3270 struct group *grpptr = &grp;
3271 struct group *tempGrp;
3272 char grpBuf[512];
3273
3274 if ((getgrnam_r("cache", grpptr, grpBuf, sizeof(grpBuf), &tempGrp)) != 0) {
3275 LOGERR("unable to get cache group id\n");
3276 return false;
3277 } else {
3278 uid = pd.pw_uid;
3279 gid = grp.gr_gid;
3280 std::string abLogsRecoveryDir(DATA_LOGS_DIR);
3281 abLogsRecoveryDir += "/recovery/";
3282
3283 if (!TWFunc::Create_Dir_Recursive(abLogsRecoveryDir, S_IRWXU | S_IRWXG | S_IWGRP | S_IXGRP, uid, gid)) {
3284 LOGERR("Unable to recreate %s\n", abLogsRecoveryDir.c_str());
3285 return false;
3286 }
3287 if (setfilecon(abLogsRecoveryDir.c_str(), "u:object_r:cache_file:s0") != 0) {
3288 LOGERR("Unable to set contexts for %s\n", abLogsRecoveryDir.c_str());
3289 return false;
3290 }
3291 }
3292 }
3293#endif
3294 return true;
3295}