blob: 00fd1c2d3df31213335c358d5d55a476e214ce97 [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#include <sys/poll.h>
40#include <sys/socket.h>
bigbiffcfa875c2021-06-20 16:20:27 -040041#include <sys/stat.h>
42#include <sys/types.h>
Ethan Yonker6e8c27a2016-12-22 17:55:57 -060043#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>
bigbiffcfa875c2021-06-20 16:20:27 -040055#include <fs_mgr/roots.h>
bigbiffee7b7ff2020-03-23 15:08:27 -040056#include <libgsi/libgsi.h>
57#include <liblp/liblp.h>
bigbiffcfa875c2021-06-20 16:20:27 -040058#include <libgsi/libgsi.h>
59#include <liblp/builder.h>
60#include <libsnapshot/snapshot.h>
Ethan Yonker6e8c27a2016-12-22 17:55:57 -060061
Dees_Troy51a0e822012-09-05 15:24:24 -040062#include "variables.h"
Dees_Troy2673cec2013-04-02 20:22:16 +000063#include "twcommon.h"
Dees_Troy51a0e822012-09-05 15:24:24 -040064#include "partitions.hpp"
Dees_Troy5bf43922012-09-07 16:07:55 -040065#include "data.hpp"
Dees_Troy38bd7602012-09-14 13:33:53 -040066#include "twrp-functions.hpp"
Ethan Yonkerb5fab762016-01-28 14:03:33 -060067#include "fixContexts.hpp"
Ethan Yonker3fdcda42016-11-30 12:29:37 -060068#include "exclude.hpp"
Ethan Yonker4b94cfd2014-12-11 10:00:45 -060069#include "set_metadata.h"
bigbiff7abc5fe2015-01-17 16:53:12 -050070#include "tw_atomic.hpp"
Ethan Yonker74db1572015-10-28 12:44:49 -050071#include "gui/gui.hpp"
Ethan Yonker472f5062016-02-25 13:47:30 -060072#include "progresstracking.hpp"
bigbiff bigbiff56cf5642016-08-19 17:43:45 -040073#include "twrpDigestDriver.hpp"
bigbiffad58e1b2020-07-06 20:24:34 -040074#include "twrpRepacker.hpp"
bigbiffce8f83c2015-12-12 18:30:21 -050075#include "adbbu/libtwadbbu.hpp"
Dees_Troy38bd7602012-09-14 13:33:53 -040076
bigbiff bigbiffc7eee6f2014-09-02 18:59:01 -040077#ifdef TW_HAS_MTP
bigbiff bigbiffaf32bb92018-12-18 18:39:53 -050078#ifdef TW_HAS_LEGACY_MTP
79#include "mtp/legacy/mtp_MtpServer.hpp"
80#include "mtp/legacy/twrpMtp.hpp"
81#include "mtp/legacy/MtpMessage.hpp"
82#else
83#include "mtp/ffs/mtp_MtpServer.hpp"
84#include "mtp/ffs/twrpMtp.hpp"
85#include "mtp/ffs/MtpMessage.hpp"
86#endif
bigbiff bigbiffc7eee6f2014-09-02 18:59:01 -040087#endif
88
Dees Troy6f6441d2014-01-23 02:07:03 +000089extern "C" {
90 #include "cutils/properties.h"
Ethan Yonker74db1572015-10-28 12:44:49 -050091 #include "gui/gui.h"
Dees Troy6f6441d2014-01-23 02:07:03 +000092}
93
Dees_Troy5bf43922012-09-07 16:07:55 -040094#ifdef TW_INCLUDE_CRYPTO
bigbiff7ba75002020-04-11 20:47:09 -040095#include "crypto/fde/cryptfs.h"
96#include "gui/rapidxml.hpp"
97#include "gui/pages.hpp"
98#ifdef TW_INCLUDE_FBE
bigbiffa957f072021-03-07 18:20:29 -050099#include "Decrypt.h"
bigbiff7ba75002020-04-11 20:47:09 -0400100#ifdef TW_INCLUDE_FBE_METADATA_DECRYPT
101 #ifdef USE_FSCRYPT
bigbiffa957f072021-03-07 18:20:29 -0500102 #include "MetadataCrypt.h"
bigbiffadc599e2020-05-28 19:36:30 +0000103 #endif
bigbiff7ba75002020-04-11 20:47:09 -0400104#endif
105#endif
106#ifdef TW_CRYPTO_USE_SYSTEM_VOLD
107#include "crypto/vold_decrypt/vold_decrypt.h"
108#endif
Dees_Troy5bf43922012-09-07 16:07:55 -0400109#endif
Dees_Troy51a0e822012-09-05 15:24:24 -0400110
Ethan Yonker1b190162016-12-05 15:25:19 -0600111#ifdef AB_OTA_UPDATER
112#include <hardware/hardware.h>
113#include <hardware/boot_control.h>
114#endif
115
bigbiffcfa875c2021-06-20 16:20:27 -0400116using android::fs_mgr::DestroyLogicalPartition;
bigbiffee7b7ff2020-03-23 15:08:27 -0400117using android::fs_mgr::Fstab;
118using android::fs_mgr::FstabEntry;
bigbiffcfa875c2021-06-20 16:20:27 -0400119using android::fs_mgr::MetadataBuilder;
Ethan Yonker6277c792014-09-15 14:54:30 -0500120
bigbiffee7b7ff2020-03-23 15:08:27 -0400121extern bool datamedia;
Noah Jacobson81d638d2019-04-28 00:10:07 -0400122std::vector<users_struct> Users_List;
123
bigbiff bigbiff34684ff2013-12-01 21:03:45 -0500124TWPartitionManager::TWPartitionManager(void) {
bigbiff bigbiffc7eee6f2014-09-02 18:59:01 -0400125 mtp_was_enabled = false;
Ethan Yonker726a0202014-12-16 20:01:38 -0600126 mtp_write_fd = -1;
Ethan Yonker6e8c27a2016-12-22 17:55:57 -0600127 uevent_pfd.fd = -1;
bigbiff7abc5fe2015-01-17 16:53:12 -0500128 stop_backup.set_value(0);
Ethan Yonker1b190162016-12-05 15:25:19 -0600129#ifdef AB_OTA_UPDATER
130 char slot_suffix[PROPERTY_VALUE_MAX];
Ethan Yonkerfefe5912017-09-30 22:22:13 -0500131 property_get("ro.boot.slot_suffix", slot_suffix, "error");
132 if (strcmp(slot_suffix, "error") == 0)
133 property_get("ro.boot.slot", slot_suffix, "error");
Ethan Yonker1b190162016-12-05 15:25:19 -0600134 Active_Slot_Display = "";
Ethan Yonkerfefe5912017-09-30 22:22:13 -0500135 if (strcmp(slot_suffix, "_a") == 0 || strcmp(slot_suffix, "a") == 0)
Ethan Yonker1b190162016-12-05 15:25:19 -0600136 Set_Active_Slot("A");
137 else
138 Set_Active_Slot("B");
139#endif
bigbiff bigbiff34684ff2013-12-01 21:03:45 -0500140}
141
Captain Throwback18aea272020-10-29 12:43:17 -0400142int TWPartitionManager::Set_FDE_Encrypt_Status(void) {
143 property_set("ro.crypto.state", "encrypted");
144 property_set("ro.crypto.type", "block");
145 // Sleep for a bit so that services can start if needed
146 sleep(1);
147 return 0;
148}
149
bigbiff8da46fa2020-09-08 16:42:34 -0400150int TWPartitionManager::Process_Fstab(string Fstab_Filename, bool Display_Error) {
Dees_Troy5bf43922012-09-07 16:07:55 -0400151 FILE *fstabFile;
152 char fstab_line[MAX_FSTAB_LINE_LENGTH];
Dees Troy02a64532014-03-19 15:23:32 +0000153 TWPartition* settings_partition = NULL;
Matt Mowerbf4efa32014-04-14 23:25:26 -0500154 TWPartition* andsec_partition = NULL;
Ethan Yonker726a0202014-12-16 20:01:38 -0600155 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 -0600156 std::map<string, Flags_Map> twrp_flags;
157
158 fstabFile = fopen("/etc/twrp.flags", "rt");
159 if (fstabFile != NULL) {
Ian Macdonald160e8d32020-09-29 20:47:31 +0200160 LOGINFO("Reading /etc/twrp.flags\n");
Ethan Yonker6e8c27a2016-12-22 17:55:57 -0600161 while (fgets(fstab_line, sizeof(fstab_line), fstabFile) != NULL) {
Ethan Yonker6e8c27a2016-12-22 17:55:57 -0600162 size_t line_size = strlen(fstab_line);
163 if (fstab_line[line_size - 1] != '\n')
164 fstab_line[line_size] = '\n';
165 Flags_Map line_flags;
166 line_flags.Primary_Block_Device = "";
167 line_flags.Alternate_Block_Device = "";
168 line_flags.fstab_line = (char*)malloc(MAX_FSTAB_LINE_LENGTH);
169 if (!line_flags.fstab_line) {
170 LOGERR("malloc error on line_flags.fstab_line\n");
171 return false;
172 }
173 memcpy(line_flags.fstab_line, fstab_line, MAX_FSTAB_LINE_LENGTH);
174 bool found_separator = false;
175 char *fs_loc = NULL;
176 char *block_loc = NULL;
177 char *flags_loc = NULL;
178 size_t index, item_index = 0;
179 for (index = 0; index < line_size; index++) {
180 if (fstab_line[index] <= 32) {
181 fstab_line[index] = '\0';
182 found_separator = true;
183 } else if (found_separator) {
184 if (item_index == 0) {
185 fs_loc = fstab_line + index;
186 } else if (item_index == 1) {
187 block_loc = fstab_line + index;
188 } else if (item_index > 1) {
189 char *ptr = fstab_line + index;
190 if (*ptr == '/') {
191 line_flags.Alternate_Block_Device = ptr;
192 } else if (strlen(ptr) > strlen("flags=") && strncmp(ptr, "flags=", strlen("flags=")) == 0) {
193 flags_loc = ptr;
194 // Once we find the flags=, we're done scanning the line
195 break;
196 }
197 }
198 found_separator = false;
199 item_index++;
200 }
201 }
202 if (block_loc)
203 line_flags.Primary_Block_Device = block_loc;
204 if (fs_loc)
205 line_flags.File_System = fs_loc;
206 if (flags_loc)
207 line_flags.Flags = flags_loc;
208 string Mount_Point = fstab_line;
209 twrp_flags[Mount_Point] = line_flags;
210 memset(fstab_line, 0, sizeof(fstab_line));
211 }
212 fclose(fstabFile);
213 }
Dees_Troy5bf43922012-09-07 16:07:55 -0400214
215 fstabFile = fopen(Fstab_Filename.c_str(), "rt");
216 if (fstabFile == NULL) {
Dees_Troy2673cec2013-04-02 20:22:16 +0000217 LOGERR("Critical Error: Unable to open fstab at '%s'.\n", Fstab_Filename.c_str());
Dees_Troy5bf43922012-09-07 16:07:55 -0400218 return false;
Ethan Yonker6e8c27a2016-12-22 17:55:57 -0600219 } else
220 LOGINFO("Reading %s\n", Fstab_Filename.c_str());
Dees_Troy5bf43922012-09-07 16:07:55 -0400221
222 while (fgets(fstab_line, sizeof(fstab_line), fstabFile) != NULL) {
Ethan Yonker6e8c27a2016-12-22 17:55:57 -0600223 if (strstr(fstab_line, "swap"))
224 continue; // Skip swap in recovery
225
bigbiff998f8392021-08-06 19:19:33 -0400226 if (fstab_line[0] == '#')
227 continue;
228
Ethan Yonker6e8c27a2016-12-22 17:55:57 -0600229 size_t line_size = strlen(fstab_line);
230 if (fstab_line[line_size - 1] != '\n')
231 fstab_line[line_size] = '\n';
Dees_Troy2a923582012-09-20 12:13:34 -0400232
Matt Mower2b2dd152016-04-26 11:24:08 -0500233 TWPartition* partition = new TWPartition();
bigbiff8da46fa2020-09-08 16:42:34 -0400234 if (partition->Process_Fstab_Line(fstab_line, Display_Error, &twrp_flags))
Ethan Yonkerc05c5982014-03-13 09:19:56 -0500235 Partitions.push_back(partition);
Matt Mower72c87ce2016-04-26 14:34:56 -0500236 else
Dees_Troy5bf43922012-09-07 16:07:55 -0400237 delete partition;
Matt Mower2b2dd152016-04-26 11:24:08 -0500238
239 memset(fstab_line, 0, sizeof(fstab_line));
Dees_Troy5bf43922012-09-07 16:07:55 -0400240 }
241 fclose(fstabFile);
Matt Mower72c87ce2016-04-26 14:34:56 -0500242
Ethan Yonker6e8c27a2016-12-22 17:55:57 -0600243 if (twrp_flags.size() > 0) {
244 LOGINFO("Processing remaining twrp.flags\n");
245 // Add any items from twrp.flags that did not exist in the recovery.fstab
246 for (std::map<string, Flags_Map>::iterator mapit=twrp_flags.begin(); mapit!=twrp_flags.end(); mapit++) {
247 if (Find_Partition_By_Path(mapit->first) == NULL) {
248 TWPartition* partition = new TWPartition();
bigbiff8da46fa2020-09-08 16:42:34 -0400249 if (partition->Process_Fstab_Line(mapit->second.fstab_line, Display_Error, NULL))
Ethan Yonker6e8c27a2016-12-22 17:55:57 -0600250 Partitions.push_back(partition);
251 else
252 delete partition;
253 }
254 if (mapit->second.fstab_line)
255 free(mapit->second.fstab_line);
256 mapit->second.fstab_line = NULL;
257 }
258 }
Mohd Faraze3948ec2020-08-14 01:40:59 +0000259 if (Get_Super_Status()) {
260 Setup_Super_Devices();
261 }
Ethan Yonker6e8c27a2016-12-22 17:55:57 -0600262 LOGINFO("Done processing fstab files\n");
263
Matt Mower72c87ce2016-04-26 14:34:56 -0500264 std::vector<TWPartition*>::iterator iter;
265 for (iter = Partitions.begin(); iter != Partitions.end(); iter++) {
266 (*iter)->Partition_Post_Processing(Display_Error);
267
268 if ((*iter)->Is_Storage) {
269 ++storageid;
270 (*iter)->MTP_Storage_ID = storageid;
271 }
272
273 if (!settings_partition && (*iter)->Is_Settings_Storage && (*iter)->Is_Present)
274 settings_partition = (*iter);
275 else
276 (*iter)->Is_Settings_Storage = false;
277
278 if (!andsec_partition && (*iter)->Has_Android_Secure && (*iter)->Is_Present)
279 andsec_partition = (*iter);
280 else
281 (*iter)->Has_Android_Secure = false;
bigbiffdf8436b2020-08-30 16:22:34 -0400282
bigbiff998f8392021-08-06 19:19:33 -0400283 if ((*iter)->Is_Super)
Mohd Faraze3948ec2020-08-14 01:40:59 +0000284 Prepare_Super_Volume((*iter));
285 }
286
287 //Setup Apex before decryption
288 TWPartition* sys = PartitionManager.Find_Partition_By_Path(PartitionManager.Get_Android_Root_Path());
289 TWPartition* ven = PartitionManager.Find_Partition_By_Path("/vendor");
290 if (sys) {
291 if (sys->Get_Super_Status()) {
292 sys->Mount(true);
293 if (ven) {
294 ven->Mount(true);
295 }
bigbiff79924302021-05-02 20:06:09 -0400296#ifdef TW_EXCLUDE_APEX
297 LOGINFO("Apex is disabled in this build\n");
298#else
Mohd Faraze3948ec2020-08-14 01:40:59 +0000299 twrpApex apex;
300 if (!apex.loadApexImages()) {
301 LOGERR("Unable to load apex images from %s\n", APEX_DIR);
302 property_set("twrp.apex.loaded", "false");
303 } else {
304 property_set("twrp.apex.loaded", "true");
305 }
Mohd Farazd9e66712020-10-28 20:42:57 +0530306 TWFunc::check_and_run_script("/sbin/resyncapex.sh", "apex");
bigbiff79924302021-05-02 20:06:09 -0400307#endif
Mohd Faraze3948ec2020-08-14 01:40:59 +0000308 }
Matt Mower72c87ce2016-04-26 14:34:56 -0500309 }
Mohd Faraz9a4ef262020-10-18 23:58:21 +0530310#ifndef USE_VENDOR_LIBS
311 if (ven)
312 ven->UnMount(true);
313 if (sys)
314 sys->UnMount(true);
315#endif
Matt Mower72c87ce2016-04-26 14:34:56 -0500316
Ethan Yonker6277c792014-09-15 14:54:30 -0500317 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) {
318 // Attempt to automatically identify /data/media emulated storage devices
319 TWPartition* Dat = Find_Partition_By_Path("/data");
320 if (Dat) {
321 LOGINFO("Using automatic handling for /data/media emulated storage device.\n");
322 datamedia = true;
that9e0593e2014-10-08 00:01:24 +0200323 Dat->Setup_Data_Media();
Ethan Yonker6277c792014-09-15 14:54:30 -0500324 settings_partition = Dat;
Ethan Yonker726a0202014-12-16 20:01:38 -0600325 // Since /data was not considered a storage partition earlier, we still need to assign an MTP ID
326 ++storageid;
327 Dat->MTP_Storage_ID = storageid;
Ethan Yonker6277c792014-09-15 14:54:30 -0500328 }
329 }
Dees Troy02a64532014-03-19 15:23:32 +0000330 if (!settings_partition) {
Dees_Troya13d74f2013-03-24 08:54:55 -0500331 for (iter = Partitions.begin(); iter != Partitions.end(); iter++) {
332 if ((*iter)->Is_Storage) {
Dees Troy02a64532014-03-19 15:23:32 +0000333 settings_partition = (*iter);
Dees_Troya13d74f2013-03-24 08:54:55 -0500334 break;
335 }
336 }
Dees Troy02a64532014-03-19 15:23:32 +0000337 if (!settings_partition)
Dees_Troy2673cec2013-04-02 20:22:16 +0000338 LOGERR("Unable to locate storage partition for storing settings file.\n");
Dees_Troya13d74f2013-03-24 08:54:55 -0500339 }
Dees_Troy5bf43922012-09-07 16:07:55 -0400340 if (!Write_Fstab()) {
341 if (Display_Error)
Dees_Troy2673cec2013-04-02 20:22:16 +0000342 LOGERR("Error creating fstab\n");
Dees_Troy5bf43922012-09-07 16:07:55 -0400343 else
Dees_Troy2673cec2013-04-02 20:22:16 +0000344 LOGINFO("Error creating fstab\n");
Dees_Troy5bf43922012-09-07 16:07:55 -0400345 }
Matt Mowered71fa32014-04-16 13:21:47 -0500346
Matt Mowerbf4efa32014-04-14 23:25:26 -0500347 if (andsec_partition) {
348 Setup_Android_Secure_Location(andsec_partition);
Matt Mowered71fa32014-04-16 13:21:47 -0500349 } else if (settings_partition) {
Matt Mowerbf4efa32014-04-14 23:25:26 -0500350 Setup_Android_Secure_Location(settings_partition);
351 }
Matt Mowered71fa32014-04-16 13:21:47 -0500352 if (settings_partition) {
353 Setup_Settings_Storage_Partition(settings_partition);
354 }
bigbiff7ba75002020-04-11 20:47:09 -0400355
Mohd Faraze3948ec2020-08-14 01:40:59 +0000356#ifdef TW_INCLUDE_CRYPTO
357 DataManager::SetValue(TW_IS_ENCRYPTED, 1);
358 Decrypt_Data();
359#endif
360
Captain Throwback878abc72021-08-27 19:21:36 -0400361 Update_System_Details();
Mohd Faraze3948ec2020-08-14 01:40:59 +0000362 if (Get_Super_Status())
363 Setup_Super_Partition();
bigbiff7ba75002020-04-11 20:47:09 -0400364 UnMount_Main_Partitions();
365#ifdef AB_OTA_UPDATER
366 DataManager::SetValue("tw_active_slot", Get_Active_Slot_Display());
367#endif
368 setup_uevent();
369 return true;
370}
371
372int TWPartitionManager::Write_Fstab(void) {
373 FILE *fp;
374 std::vector<TWPartition*>::iterator iter;
375 string Line;
376
377 fp = fopen("/etc/fstab", "w");
378 if (fp == NULL) {
379 LOGINFO("Can not open /etc/fstab.\n");
380 return false;
381 }
382 for (iter = Partitions.begin(); iter != Partitions.end(); iter++) {
383 if ((*iter)->Can_Be_Mounted) {
Mohd Faraz2a1e3752020-09-30 10:55:48 +0530384 Line = (*iter)->Actual_Block_Device + " " + (*iter)->Mount_Point + " " + (*iter)->Current_File_System +
385 ((*iter)->Mount_Read_Only ? " ro " : " rw ") + "0 0\n";
bigbiff7ba75002020-04-11 20:47:09 -0400386 fputs(Line.c_str(), fp);
387 }
388 // Handle subpartition tracking
389 if ((*iter)->Is_SubPartition) {
390 TWPartition* ParentPartition = Find_Partition_By_Path((*iter)->SubPartition_Of);
391 if (ParentPartition)
392 ParentPartition->Has_SubPartition = true;
393 else
394 LOGERR("Unable to locate parent partition '%s' of '%s'\n", (*iter)->SubPartition_Of.c_str(), (*iter)->Mount_Point.c_str());
395 }
396 }
397 fclose(fp);
398 return true;
399}
400
401void TWPartitionManager::Decrypt_Data() {
402 #ifdef TW_INCLUDE_CRYPTO
Ethan Yonkercceebb82014-11-18 10:17:59 -0600403 TWPartition* Decrypt_Data = Find_Partition_By_Path("/data");
404 if (Decrypt_Data && Decrypt_Data->Is_Encrypted && !Decrypt_Data->Is_Decrypted) {
nebrassyf74255e2020-10-24 21:08:20 +0200405 property_set("ro.crypto.state", "encrypted");
Ethan Yonker93382822018-11-01 15:25:31 -0500406 if (!Decrypt_Data->Key_Directory.empty() && Mount_By_Path(Decrypt_Data->Key_Directory, false)) {
nebrassyf74255e2020-10-24 21:08:20 +0200407 property_set("ro.crypto.type", "file");
Ethan Yonker93382822018-11-01 15:25:31 -0500408#ifdef TW_INCLUDE_FBE_METADATA_DECRYPT
bigbiff7ba75002020-04-11 20:47:09 -0400409#ifdef USE_FSCRYPT
410 if (fscrypt_mount_metadata_encrypted(Decrypt_Data->Actual_Block_Device, Decrypt_Data->Mount_Point, false)) {
bigbiffa957f072021-03-07 18:20:29 -0500411 std::string crypto_blkdev = android::base::GetProperty("ro.crypto.fs_crypto_blkdev", "error");
Mohd Faraze3948ec2020-08-14 01:40:59 +0000412 Decrypt_Data->Decrypted_Block_Device = crypto_blkdev;
bigbiff7ba75002020-04-11 20:47:09 -0400413 LOGINFO("Successfully decrypted metadata encrypted data partition with new block device: '%s'\n", crypto_blkdev.c_str());
bigbiff7ba75002020-04-11 20:47:09 -0400414#endif
Ethan Yonker93382822018-11-01 15:25:31 -0500415 Decrypt_Data->Is_Decrypted = true; // Needed to make the mount function work correctly
416 int retry_count = 10;
417 while (!Decrypt_Data->Mount(false) && --retry_count)
418 usleep(500);
419 if (Decrypt_Data->Mount(false)) {
bigbiff bigbiff0be03b32019-08-27 20:50:31 -0400420 if (!Decrypt_Data->Decrypt_FBE_DE()) {
mauronofriofc79aa62019-11-23 23:13:04 +0100421 char wrappedvalue[PROPERTY_VALUE_MAX];
422 property_get("fbe.data.wrappedkey", wrappedvalue, "");
423 std::string wrappedkeyvalue(wrappedvalue);
424 if (wrappedkeyvalue == "true") {
bigbiff bigbiff0be03b32019-08-27 20:50:31 -0400425 LOGERR("Unable to decrypt FBE device\n");
mauronofriofc79aa62019-11-23 23:13:04 +0100426 } else {
427 LOGINFO("Trying wrapped key.\n");
428 property_set("fbe.data.wrappedkey", "true");
429 if (!Decrypt_Data->Decrypt_FBE_DE()) {
430 LOGERR("Unable to decrypt FBE device\n");
431 }
bigbiff bigbiff0be03b32019-08-27 20:50:31 -0400432 }
433 }
434
Ethan Yonker93382822018-11-01 15:25:31 -0500435 } else {
436 LOGINFO("Failed to mount data after metadata decrypt\n");
437 }
438 } else {
439 LOGINFO("Unable to decrypt metadata encryption\n");
440 }
441#else
442 LOGERR("Metadata FBE decrypt support not present in this TWRP\n");
443#endif
444 }
Ethan Yonkerbd7492d2016-12-07 13:55:01 -0600445 if (Decrypt_Data->Is_FBE) {
446 if (DataManager::GetIntValue(TW_CRYPTO_PWTYPE) == 0) {
447 if (Decrypt_Device("!") == 0) {
448 gui_msg("decrypt_success=Successfully decrypted with default password.");
449 DataManager::SetValue(TW_IS_ENCRYPTED, 0);
450 } else {
451 gui_err("unable_to_decrypt=Unable to decrypt with default password.");
452 }
Ethan Yonkercceebb82014-11-18 10:17:59 -0600453 }
454 } else {
bigbiffbbbfe172021-05-30 15:52:41 -0400455 LOGINFO("FBE setup failed. Trying FDE...");
Captain Throwback18aea272020-10-29 12:43:17 -0400456 Set_FDE_Encrypt_Status();
Ethan Yonkerbd7492d2016-12-07 13:55:01 -0600457 int password_type = cryptfs_get_password_type();
458 if (password_type == CRYPT_TYPE_DEFAULT) {
459 LOGINFO("Device is encrypted with the default password, attempting to decrypt.\n");
460 if (Decrypt_Device("default_password") == 0) {
461 gui_msg("decrypt_success=Successfully decrypted with default password.");
462 DataManager::SetValue(TW_IS_ENCRYPTED, 0);
463 } else {
464 gui_err("unable_to_decrypt=Unable to decrypt with default password.");
465 }
466 } else {
467 DataManager::SetValue("TW_CRYPTO_TYPE", password_type);
Noah Jacobson81d638d2019-04-28 00:10:07 -0400468 DataManager::SetValue("tw_crypto_pwtype_0", password_type);
Ethan Yonkerbd7492d2016-12-07 13:55:01 -0600469 }
Ethan Yonkercceebb82014-11-18 10:17:59 -0600470 }
471 }
Noah Jacobson81d638d2019-04-28 00:10:07 -0400472 if (Decrypt_Data && (!Decrypt_Data->Is_Encrypted || Decrypt_Data->Is_Decrypted) &&
473 Decrypt_Data->Mount(false)) {
Ethan Yonker66a19492015-12-10 10:19:45 -0600474 Decrypt_Adopted();
475 }
Ethan Yonkercceebb82014-11-18 10:17:59 -0600476#endif
Dees_Troy51a0e822012-09-05 15:24:24 -0400477}
478
Ethan Yonkerc05c5982014-03-13 09:19:56 -0500479void TWPartitionManager::Setup_Settings_Storage_Partition(TWPartition* Part) {
Ethan Yonkerc05c5982014-03-13 09:19:56 -0500480 DataManager::SetValue("tw_settings_path", Part->Storage_Path);
481 DataManager::SetValue("tw_storage_path", Part->Storage_Path);
482 LOGINFO("Settings storage is '%s'\n", Part->Storage_Path.c_str());
483}
484
Matt Mowerbf4efa32014-04-14 23:25:26 -0500485void TWPartitionManager::Setup_Android_Secure_Location(TWPartition* Part) {
486 if (Part->Has_Android_Secure)
487 Part->Setup_AndSec();
Ethan Yonker6277c792014-09-15 14:54:30 -0500488 else if (!datamedia)
Matt Mowerbf4efa32014-04-14 23:25:26 -0500489 Part->Setup_AndSec();
Matt Mowerbf4efa32014-04-14 23:25:26 -0500490}
491
Dees_Troy8170a922012-09-18 15:40:25 -0400492void TWPartitionManager::Output_Partition_Logging(void) {
493 std::vector<TWPartition*>::iterator iter;
494
495 printf("\n\nPartition Logs:\n");
496 for (iter = Partitions.begin(); iter != Partitions.end(); iter++)
497 Output_Partition((*iter));
498}
499
500void TWPartitionManager::Output_Partition(TWPartition* Part) {
501 unsigned long long mb = 1048576;
502
Gary Peck004d48b2012-11-21 16:28:18 -0800503 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 -0400504 if (Part->Can_Be_Mounted) {
Gary Peck004d48b2012-11-21 16:28:18 -0800505 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 -0400506 }
Gary Peck004d48b2012-11-21 16:28:18 -0800507 printf("\n Flags: ");
Dees_Troya13d74f2013-03-24 08:54:55 -0500508 if (Part->Can_Be_Mounted)
509 printf("Can_Be_Mounted ");
Gary Peck004d48b2012-11-21 16:28:18 -0800510 if (Part->Can_Be_Wiped)
511 printf("Can_Be_Wiped ");
Hashcodedabfd492013-08-29 22:45:30 -0700512 if (Part->Use_Rm_Rf)
513 printf("Use_Rm_Rf ");
Dees_Troya13d74f2013-03-24 08:54:55 -0500514 if (Part->Can_Be_Backed_Up)
515 printf("Can_Be_Backed_Up ");
Gary Peck004d48b2012-11-21 16:28:18 -0800516 if (Part->Wipe_During_Factory_Reset)
517 printf("Wipe_During_Factory_Reset ");
518 if (Part->Wipe_Available_in_GUI)
519 printf("Wipe_Available_in_GUI ");
520 if (Part->Is_SubPartition)
521 printf("Is_SubPartition ");
522 if (Part->Has_SubPartition)
523 printf("Has_SubPartition ");
524 if (Part->Removable)
525 printf("Removable ");
526 if (Part->Is_Present)
527 printf("IsPresent ");
528 if (Part->Can_Be_Encrypted)
529 printf("Can_Be_Encrypted ");
530 if (Part->Is_Encrypted)
531 printf("Is_Encrypted ");
532 if (Part->Is_Decrypted)
533 printf("Is_Decrypted ");
534 if (Part->Has_Data_Media)
535 printf("Has_Data_Media ");
Dees_Troy83bd4832013-05-04 12:39:56 +0000536 if (Part->Can_Encrypt_Backup)
537 printf("Can_Encrypt_Backup ");
538 if (Part->Use_Userdata_Encryption)
539 printf("Use_Userdata_Encryption ");
Gary Peck004d48b2012-11-21 16:28:18 -0800540 if (Part->Has_Android_Secure)
541 printf("Has_Android_Secure ");
542 if (Part->Is_Storage)
543 printf("Is_Storage ");
Dees_Troya13d74f2013-03-24 08:54:55 -0500544 if (Part->Is_Settings_Storage)
545 printf("Is_Settings_Storage ");
Dees_Troy68cab492012-12-12 19:29:35 +0000546 if (Part->Ignore_Blkid)
547 printf("Ignore_Blkid ");
Ethan Yonker253368a2014-11-25 15:00:52 -0600548 if (Part->Mount_To_Decrypt)
549 printf("Mount_To_Decrypt ");
Ethan Yonker96af84a2015-01-05 14:58:36 -0600550 if (Part->Can_Flash_Img)
551 printf("Can_Flash_Img ");
Ethan Yonker66a19492015-12-10 10:19:45 -0600552 if (Part->Is_Adopted_Storage)
553 printf("Is_Adopted_Storage ");
Ethan Yonker1b190162016-12-05 15:25:19 -0600554 if (Part->SlotSelect)
555 printf("SlotSelect ");
Ethan Yonker6e8c27a2016-12-22 17:55:57 -0600556 if (Part->Mount_Read_Only)
557 printf("Mount_Read_Only ");
bigbiffcfa875c2021-06-20 16:20:27 -0400558 if (Part->Is_Super)
559 printf("Is_Super ");
Gary Peck004d48b2012-11-21 16:28:18 -0800560 printf("\n");
561 if (!Part->SubPartition_Of.empty())
562 printf(" SubPartition_Of: %s\n", Part->SubPartition_Of.c_str());
563 if (!Part->Symlink_Path.empty())
564 printf(" Symlink_Path: %s\n", Part->Symlink_Path.c_str());
565 if (!Part->Symlink_Mount_Point.empty())
566 printf(" Symlink_Mount_Point: %s\n", Part->Symlink_Mount_Point.c_str());
567 if (!Part->Primary_Block_Device.empty())
568 printf(" Primary_Block_Device: %s\n", Part->Primary_Block_Device.c_str());
569 if (!Part->Alternate_Block_Device.empty())
570 printf(" Alternate_Block_Device: %s\n", Part->Alternate_Block_Device.c_str());
571 if (!Part->Decrypted_Block_Device.empty())
572 printf(" Decrypted_Block_Device: %s\n", Part->Decrypted_Block_Device.c_str());
dianlujitao4879b372018-12-03 18:45:47 +0800573 if (!Part->Crypto_Key_Location.empty())
Ethan Yonker253368a2014-11-25 15:00:52 -0600574 printf(" Crypto_Key_Location: %s\n", Part->Crypto_Key_Location.c_str());
Gary Peck004d48b2012-11-21 16:28:18 -0800575 if (Part->Length != 0)
576 printf(" Length: %i\n", Part->Length);
577 if (!Part->Display_Name.empty())
578 printf(" Display_Name: %s\n", Part->Display_Name.c_str());
Dees_Troya13d74f2013-03-24 08:54:55 -0500579 if (!Part->Storage_Name.empty())
580 printf(" Storage_Name: %s\n", Part->Storage_Name.c_str());
Gary Peck004d48b2012-11-21 16:28:18 -0800581 if (!Part->Backup_Path.empty())
582 printf(" Backup_Path: %s\n", Part->Backup_Path.c_str());
583 if (!Part->Backup_Name.empty())
584 printf(" Backup_Name: %s\n", Part->Backup_Name.c_str());
Dees_Troya13d74f2013-03-24 08:54:55 -0500585 if (!Part->Backup_Display_Name.empty())
586 printf(" Backup_Display_Name: %s\n", Part->Backup_Display_Name.c_str());
Gary Peck004d48b2012-11-21 16:28:18 -0800587 if (!Part->Backup_FileName.empty())
588 printf(" Backup_FileName: %s\n", Part->Backup_FileName.c_str());
589 if (!Part->Storage_Path.empty())
590 printf(" Storage_Path: %s\n", Part->Storage_Path.c_str());
591 if (!Part->Current_File_System.empty())
592 printf(" Current_File_System: %s\n", Part->Current_File_System.c_str());
593 if (!Part->Fstab_File_System.empty())
594 printf(" Fstab_File_System: %s\n", Part->Fstab_File_System.c_str());
595 if (Part->Format_Block_Size != 0)
Ethan Yonkerc798c9c2015-10-09 11:15:26 -0500596 printf(" Format_Block_Size: %lu\n", Part->Format_Block_Size);
Dees_Troy094207a2012-09-26 12:00:39 -0400597 if (!Part->MTD_Name.empty())
598 printf(" MTD_Name: %s\n", Part->MTD_Name.c_str());
Matt Mower029a82d2017-01-08 13:12:38 -0600599 printf(" Backup_Method: %s\n", Part->Backup_Method_By_Name().c_str());
Hashcode62bd9e02013-11-19 21:59:42 -0800600 if (Part->Mount_Flags || !Part->Mount_Options.empty())
Ethan Yonker6e8c27a2016-12-22 17:55:57 -0600601 printf(" Mount_Flags: %i, Mount_Options: %s\n", Part->Mount_Flags, Part->Mount_Options.c_str());
Ethan Yonker726a0202014-12-16 20:01:38 -0600602 if (Part->MTP_Storage_ID)
603 printf(" MTP_Storage_ID: %i\n", Part->MTP_Storage_ID);
Ethan Yonker93382822018-11-01 15:25:31 -0500604 if (!Part->Key_Directory.empty())
605 printf(" Metadata Key Directory: %s\n", Part->Key_Directory.c_str());
Ethan Yonker6277c792014-09-15 14:54:30 -0500606 printf("\n");
Dees_Troy8170a922012-09-18 15:40:25 -0400607}
608
Dees_Troy51a0e822012-09-05 15:24:24 -0400609int TWPartitionManager::Mount_By_Path(string Path, bool Display_Error) {
Dees_Troy5bf43922012-09-07 16:07:55 -0400610 std::vector<TWPartition*>::iterator iter;
611 int ret = false;
612 bool found = false;
Dees_Troy38bd7602012-09-14 13:33:53 -0400613 string Local_Path = TWFunc::Get_Root_Path(Path);
Dees_Troy5bf43922012-09-07 16:07:55 -0400614
bigbiffd58ba182020-03-23 10:02:29 -0400615 if (Local_Path == "/tmp" || Local_Path == "/")
Dees_Troy43d8b002012-09-17 16:00:01 -0400616 return true;
617
Dees_Troy5bf43922012-09-07 16:07:55 -0400618 // Iterate through all partitions
619 for (iter = Partitions.begin(); iter != Partitions.end(); iter++) {
Dees_Troy657c3092012-09-10 20:32:10 -0400620 if ((*iter)->Mount_Point == Local_Path || (!(*iter)->Symlink_Mount_Point.empty() && (*iter)->Symlink_Mount_Point == Local_Path)) {
Dees_Troy5bf43922012-09-07 16:07:55 -0400621 ret = (*iter)->Mount(Display_Error);
622 found = true;
Dees_Troy51127312012-09-08 13:08:49 -0400623 } else if ((*iter)->Is_SubPartition && (*iter)->SubPartition_Of == Local_Path) {
Dees_Troy5bf43922012-09-07 16:07:55 -0400624 (*iter)->Mount(Display_Error);
Dees_Troy51127312012-09-08 13:08:49 -0400625 }
Dees_Troy5bf43922012-09-07 16:07:55 -0400626 }
627 if (found) {
628 return ret;
629 } else if (Display_Error) {
Ethan Yonker74db1572015-10-28 12:44:49 -0500630 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 -0400631 } else {
Dees_Troy2673cec2013-04-02 20:22:16 +0000632 LOGINFO("Mount: Unable to find partition for path '%s'\n", Local_Path.c_str());
Dees_Troy5bf43922012-09-07 16:07:55 -0400633 }
634 return false;
Dees_Troy51a0e822012-09-05 15:24:24 -0400635}
636
Dees_Troy51a0e822012-09-05 15:24:24 -0400637int TWPartitionManager::UnMount_By_Path(string Path, bool Display_Error) {
Dees_Troy51127312012-09-08 13:08:49 -0400638 std::vector<TWPartition*>::iterator iter;
639 int ret = false;
640 bool found = false;
Dees_Troy38bd7602012-09-14 13:33:53 -0400641 string Local_Path = TWFunc::Get_Root_Path(Path);
Dees_Troy51127312012-09-08 13:08:49 -0400642
643 // Iterate through all partitions
644 for (iter = Partitions.begin(); iter != Partitions.end(); iter++) {
Dees_Troy657c3092012-09-10 20:32:10 -0400645 if ((*iter)->Mount_Point == Local_Path || (!(*iter)->Symlink_Mount_Point.empty() && (*iter)->Symlink_Mount_Point == Local_Path)) {
Dees_Troy51127312012-09-08 13:08:49 -0400646 ret = (*iter)->UnMount(Display_Error);
647 found = true;
648 } else if ((*iter)->Is_SubPartition && (*iter)->SubPartition_Of == Local_Path) {
649 (*iter)->UnMount(Display_Error);
650 }
651 }
652 if (found) {
653 return ret;
654 } else if (Display_Error) {
Ethan Yonker74db1572015-10-28 12:44:49 -0500655 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 -0400656 } else {
Dees_Troy2673cec2013-04-02 20:22:16 +0000657 LOGINFO("UnMount: Unable to find partition for path '%s'\n", Local_Path.c_str());
Dees_Troy51127312012-09-08 13:08:49 -0400658 }
659 return false;
Dees_Troy51a0e822012-09-05 15:24:24 -0400660}
661
Dees_Troy51a0e822012-09-05 15:24:24 -0400662int TWPartitionManager::Is_Mounted_By_Path(string Path) {
Dees_Troy51127312012-09-08 13:08:49 -0400663 TWPartition* Part = Find_Partition_By_Path(Path);
664
665 if (Part)
666 return Part->Is_Mounted();
667 else
Dees_Troy2673cec2013-04-02 20:22:16 +0000668 LOGINFO("Is_Mounted: Unable to find partition for path '%s'\n", Path.c_str());
Dees_Troy51127312012-09-08 13:08:49 -0400669 return false;
Dees_Troy51a0e822012-09-05 15:24:24 -0400670}
671
Dees_Troy5bf43922012-09-07 16:07:55 -0400672int TWPartitionManager::Mount_Current_Storage(bool Display_Error) {
Dees_Troy51127312012-09-08 13:08:49 -0400673 string current_storage_path = DataManager::GetCurrentStoragePath();
674
675 if (Mount_By_Path(current_storage_path, Display_Error)) {
676 TWPartition* FreeStorage = Find_Partition_By_Path(current_storage_path);
677 if (FreeStorage)
678 DataManager::SetValue(TW_STORAGE_FREE_SIZE, (int)(FreeStorage->Free / 1048576LLU));
679 return true;
680 }
681 return false;
Dees_Troy51a0e822012-09-05 15:24:24 -0400682}
683
Dees_Troy5bf43922012-09-07 16:07:55 -0400684int TWPartitionManager::Mount_Settings_Storage(bool Display_Error) {
685 return Mount_By_Path(DataManager::GetSettingsStoragePath(), Display_Error);
686}
687
Ethan Yonker6e8c27a2016-12-22 17:55:57 -0600688TWPartition* TWPartitionManager::Find_Partition_By_Path(const string& Path) {
Dees_Troy5bf43922012-09-07 16:07:55 -0400689 std::vector<TWPartition*>::iterator iter;
Dees_Troy38bd7602012-09-14 13:33:53 -0400690 string Local_Path = TWFunc::Get_Root_Path(Path);
Dees_Troy5bf43922012-09-07 16:07:55 -0400691
dianlujitaob76a73a2020-04-30 20:33:20 +0800692 if (Local_Path == "/system")
693 Local_Path = Get_Android_Root_Path();
Dees_Troy5bf43922012-09-07 16:07:55 -0400694 for (iter = Partitions.begin(); iter != Partitions.end(); iter++) {
Dees_Troy657c3092012-09-10 20:32:10 -0400695 if ((*iter)->Mount_Point == Local_Path || (!(*iter)->Symlink_Mount_Point.empty() && (*iter)->Symlink_Mount_Point == Local_Path))
Dees_Troy5bf43922012-09-07 16:07:55 -0400696 return (*iter);
697 }
Dees_Troy51a0e822012-09-05 15:24:24 -0400698 return NULL;
699}
700
Ethan Yonker6e8c27a2016-12-22 17:55:57 -0600701TWPartition* TWPartitionManager::Find_Partition_By_Block_Device(const string& Block_Device) {
702 std::vector<TWPartition*>::iterator iter;
703
704 for (iter = Partitions.begin(); iter != Partitions.end(); iter++) {
705 if ((*iter)->Primary_Block_Device == Block_Device || (!(*iter)->Actual_Block_Device.empty() && (*iter)->Actual_Block_Device == Block_Device))
706 return (*iter);
707 }
708 return NULL;
709}
710
Ethan Yonker53796e72019-01-11 22:49:52 -0600711int TWPartitionManager::Check_Backup_Name(const std::string& Backup_Name, bool Display_Error, bool Must_Be_Unique) {
Dees_Troyc9ff7a32012-09-27 10:09:41 -0400712 // Check the backup name to ensure that it is the correct size and contains only valid characters
713 // and that a backup with that name doesn't already exist
714 char backup_name[MAX_BACKUP_NAME_LEN];
715 char backup_loc[255], tw_image_dir[255];
716 int copy_size;
717 int index, cur_char;
Ethan Yonker53796e72019-01-11 22:49:52 -0600718 string Backup_Loc;
Dees_Troyc9ff7a32012-09-27 10:09:41 -0400719
Dees_Troyc9ff7a32012-09-27 10:09:41 -0400720 copy_size = Backup_Name.size();
721 // Check size
722 if (copy_size > MAX_BACKUP_NAME_LEN) {
723 if (Display_Error)
Ethan Yonker74db1572015-10-28 12:44:49 -0500724 gui_err("backup_name_len=Backup name is too long.");
Dees_Troyc9ff7a32012-09-27 10:09:41 -0400725 return -2;
726 }
727
728 // Check each character
729 strncpy(backup_name, Backup_Name.c_str(), copy_size);
Dees_Troya13d74f2013-03-24 08:54:55 -0500730 if (copy_size == 1 && strncmp(backup_name, "0", 1) == 0)
Dees_Troyc9ff7a32012-09-27 10:09:41 -0400731 return 0; // A "0" (zero) means to use the current timestamp for the backup name
732 for (index=0; index<copy_size; index++) {
733 cur_char = (int)backup_name[index];
Matt Mowerfb1c4ff2014-04-16 13:43:36 -0500734 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 -0400735 // These are valid characters
736 // Numbers
737 // Upper case letters
738 // Lower case letters
739 // Space
740 // and -_.{}[]
741 } else {
742 if (Display_Error)
Ethan Yonker4adc33e2016-01-22 16:07:11 -0600743 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 -0400744 return -3;
745 }
746 }
747
Ethan Yonker53796e72019-01-11 22:49:52 -0600748 if (Must_Be_Unique) {
749 // Check to make sure that a backup with this name doesn't already exist
750 DataManager::GetValue(TW_BACKUPS_FOLDER_VAR, Backup_Loc);
751 strcpy(backup_loc, Backup_Loc.c_str());
752 sprintf(tw_image_dir,"%s/%s", backup_loc, Backup_Name.c_str());
753 if (TWFunc::Path_Exists(tw_image_dir)) {
754 if (Display_Error)
755 gui_err("backup_name_exists=A backup with that name already exists!");
bigbiffce8f83c2015-12-12 18:30:21 -0500756
Ethan Yonker53796e72019-01-11 22:49:52 -0600757 return -4;
758 }
759 // Backup is unique
Dees_Troyc9ff7a32012-09-27 10:09:41 -0400760 }
Ethan Yonker53796e72019-01-11 22:49:52 -0600761 // No problems found
Dees_Troyc9ff7a32012-09-27 10:09:41 -0400762 return 0;
763}
764
bigbiffce8f83c2015-12-12 18:30:21 -0500765bool TWPartitionManager::Backup_Partition(PartitionSettings *part_settings) {
Dees_Troy43d8b002012-09-17 16:00:01 -0400766 time_t start, stop;
Matt Mower23d8aae2017-01-06 14:30:33 -0600767 int use_compression;
bigbiffce8f83c2015-12-12 18:30:21 -0500768 string backup_log = part_settings->Backup_Folder + "/recovery.log";
Dees_Troy43d8b002012-09-17 16:00:01 -0400769
bigbiffce8f83c2015-12-12 18:30:21 -0500770 if (part_settings->Part == NULL)
Dees_Troy43d8b002012-09-17 16:00:01 -0400771 return true;
772
Dees_Troy093b7642012-09-21 15:59:38 -0400773 DataManager::GetValue(TW_USE_COMPRESSION_VAR, use_compression);
Dees_Troy093b7642012-09-21 15:59:38 -0400774
Tom Hite5a926722014-09-15 01:31:03 +0000775 TWFunc::SetPerformanceMode(true);
Dees_Troy43d8b002012-09-17 16:00:01 -0400776 time(&start);
777
bigbiffce8f83c2015-12-12 18:30:21 -0500778 if (part_settings->Part->Backup(part_settings, &tar_fork_pid)) {
Ethan Yonkercd00a8b2017-07-06 10:23:30 -0500779 sync();
780 sync();
bigbiff bigbiff56cf5642016-08-19 17:43:45 -0400781 string Full_Filename = part_settings->Backup_Folder + "/" + part_settings->Part->Backup_FileName;
Ethan Yonkercd00a8b2017-07-06 10:23:30 -0500782 if (!part_settings->adbbackup && part_settings->generate_digest) {
783 if (!twrpDigestDriver::Make_Digest(Full_Filename))
784 goto backup_error;
bigbiff bigbiff56cf5642016-08-19 17:43:45 -0400785 }
bigbiff bigbiff8fd4b092016-08-30 20:48:53 -0400786
bigbiffce8f83c2015-12-12 18:30:21 -0500787 if (part_settings->Part->Has_SubPartition) {
Dees_Troy8170a922012-09-18 15:40:25 -0400788 std::vector<TWPartition*>::iterator subpart;
bigbiff bigbiff8fd4b092016-08-30 20:48:53 -0400789 TWPartition *parentPart = part_settings->Part;
Dees_Troy8170a922012-09-18 15:40:25 -0400790
791 for (subpart = Partitions.begin(); subpart != Partitions.end(); subpart++) {
bigbiff bigbiff8fd4b092016-08-30 20:48:53 -0400792 if ((*subpart)->Can_Be_Backed_Up && (*subpart)->Is_SubPartition && (*subpart)->SubPartition_Of == parentPart->Mount_Point) {
Ethan Yonkerdcf2b672016-09-13 14:41:53 -0500793 part_settings->Part = *subpart;
bigbiffce8f83c2015-12-12 18:30:21 -0500794 if (!(*subpart)->Backup(part_settings, &tar_fork_pid)) {
Ethan Yonkercd00a8b2017-07-06 10:23:30 -0500795 goto backup_error;
Tom Hite5a926722014-09-15 01:31:03 +0000796 }
Dees_Troy2727b992013-08-14 20:09:30 +0000797 sync();
798 sync();
bigbiff bigbifff5955b12019-05-18 17:28:58 -0400799 string Full_Filename = part_settings->Backup_Folder + "/" + part_settings->Part->Backup_FileName;
bigbiff bigbiff56cf5642016-08-19 17:43:45 -0400800 if (!part_settings->adbbackup && part_settings->generate_digest) {
801 if (!twrpDigestDriver::Make_Digest(Full_Filename)) {
Ethan Yonkercd00a8b2017-07-06 10:23:30 -0500802 goto backup_error;
bigbiffce8f83c2015-12-12 18:30:21 -0500803 }
Tom Hite5a926722014-09-15 01:31:03 +0000804 }
Dees_Troy8170a922012-09-18 15:40:25 -0400805 }
806 }
807 }
bigbiff bigbiff56cf5642016-08-19 17:43:45 -0400808
Dees_Troy43d8b002012-09-17 16:00:01 -0400809 time(&stop);
that203bcc92015-05-09 17:27:33 +0200810 int backup_time = (int) difftime(stop, start);
Dees_Troy2673cec2013-04-02 20:22:16 +0000811 LOGINFO("Partition Backup time: %d\n", backup_time);
bigbiff bigbiff8fd4b092016-08-30 20:48:53 -0400812
bigbiffce8f83c2015-12-12 18:30:21 -0500813 if (part_settings->Part->Backup_Method == BM_FILES) {
814 part_settings->file_time += backup_time;
Dees_Troy43d8b002012-09-17 16:00:01 -0400815 } else {
bigbiffce8f83c2015-12-12 18:30:21 -0500816 part_settings->img_time += backup_time;
817
Dees_Troy43d8b002012-09-17 16:00:01 -0400818 }
Tom Hite5a926722014-09-15 01:31:03 +0000819
Matt Mower02899552016-12-30 18:13:51 -0600820 TWFunc::SetPerformanceMode(false);
Ethan Yonkercd00a8b2017-07-06 10:23:30 -0500821 return true;
Dees_Troy43d8b002012-09-17 16:00:01 -0400822 }
Ethan Yonkercd00a8b2017-07-06 10:23:30 -0500823backup_error:
824 Clean_Backup_Folder(part_settings->Backup_Folder);
825 TWFunc::copy_file("/tmp/recovery.log", backup_log, 0644);
826 tw_set_default_metadata(backup_log.c_str());
827 TWFunc::SetPerformanceMode(false);
828 return false;
bigbiff7abc5fe2015-01-17 16:53:12 -0500829}
830
bigbiffbf1d6722015-02-14 16:25:59 -0500831void TWPartitionManager::Clean_Backup_Folder(string Backup_Folder) {
832 DIR *d = opendir(Backup_Folder.c_str());
833 struct dirent *p;
834 int r;
bigbiff bigbiff56cf5642016-08-19 17:43:45 -0400835 vector<string> ext;
836
837 //extensions we should delete when cleaning
838 ext.push_back("win");
839 ext.push_back("md5");
840 ext.push_back("sha2");
841 ext.push_back("info");
bigbiffbf1d6722015-02-14 16:25:59 -0500842
Ethan Yonker74db1572015-10-28 12:44:49 -0500843 gui_msg("backup_clean=Backup Failed. Cleaning Backup Folder.");
bigbiffbf1d6722015-02-14 16:25:59 -0500844
845 if (d == NULL) {
Ethan Yonker74db1572015-10-28 12:44:49 -0500846 gui_msg(Msg(msg::kError, "error_opening_strerr=Error opening: '{1}' ({2})")(Backup_Folder)(strerror(errno)));
bigbiffbf1d6722015-02-14 16:25:59 -0500847 return;
848 }
849
Matt Mower2b18a532015-02-20 16:58:05 -0600850 while ((p = readdir(d))) {
bigbiffbf1d6722015-02-14 16:25:59 -0500851 if (!strcmp(p->d_name, ".") || !strcmp(p->d_name, ".."))
852 continue;
853
Ethan Yonkere080c1f2016-09-19 13:50:25 -0500854 string path = Backup_Folder + "/" + p->d_name;
bigbiffbf1d6722015-02-14 16:25:59 -0500855
856 size_t dot = path.find_last_of(".") + 1;
bigbiff bigbiff56cf5642016-08-19 17:43:45 -0400857 for (vector<string>::const_iterator i = ext.begin(); i != ext.end(); ++i) {
858 if (path.substr(dot) == *i) {
859 r = unlink(path.c_str());
860 if (r != 0)
861 LOGINFO("Unable to unlink '%s: %s'\n", path.c_str(), strerror(errno));
bigbiffbf1d6722015-02-14 16:25:59 -0500862 }
863 }
864 }
865 closedir(d);
866}
867
Ethan Yonker472f5062016-02-25 13:47:30 -0600868int TWPartitionManager::Check_Backup_Cancel() {
869 return stop_backup.get_value();
870}
871
bigbiff7abc5fe2015-01-17 16:53:12 -0500872int TWPartitionManager::Cancel_Backup() {
873 string Backup_Folder, Backup_Name, Full_Backup_Path;
874
875 stop_backup.set_value(1);
876
877 if (tar_fork_pid != 0) {
878 DataManager::GetValue(TW_BACKUP_NAME, Backup_Name);
879 DataManager::GetValue(TW_BACKUPS_FOLDER_VAR, Backup_Folder);
Ethan Yonkere080c1f2016-09-19 13:50:25 -0500880 Full_Backup_Path = Backup_Folder + "/" + Backup_Name;
bigbiff7abc5fe2015-01-17 16:53:12 -0500881 LOGINFO("Killing pid: %d\n", tar_fork_pid);
882 kill(tar_fork_pid, SIGUSR2);
883 while (kill(tar_fork_pid, 0) == 0) {
884 usleep(1000);
885 }
886 LOGINFO("Backup_Run stopped and returning false, backup cancelled.\n");
887 LOGINFO("Removing directory %s\n", Full_Backup_Path.c_str());
888 TWFunc::removeDir(Full_Backup_Path, false);
889 tar_fork_pid = 0;
890 }
891
892 return 0;
Dees_Troy43d8b002012-09-17 16:00:01 -0400893}
894
bigbiffce8f83c2015-12-12 18:30:21 -0500895int TWPartitionManager::Run_Backup(bool adbbackup) {
896 PartitionSettings part_settings;
bigbiff bigbiff56cf5642016-08-19 17:43:45 -0400897 int partition_count = 0, disable_free_space_check = 0, skip_digest = 0;
bigbiffce8f83c2015-12-12 18:30:21 -0500898 string Backup_Name, Backup_List, backup_path;
Matt Mower23d8aae2017-01-06 14:30:33 -0600899 unsigned long long total_bytes = 0, free_space = 0;
Dees_Troy43d8b002012-09-17 16:00:01 -0400900 TWPartition* storage = NULL;
901 struct tm *t;
Matt Mower23d8aae2017-01-06 14:30:33 -0600902 time_t seconds, total_start, total_stop;
Dees_Troya13d74f2013-03-24 08:54:55 -0500903 size_t start_pos = 0, end_pos = 0;
bigbiff7abc5fe2015-01-17 16:53:12 -0500904 stop_backup.set_value(0);
Dees_Troy43d8b002012-09-17 16:00:01 -0400905 seconds = time(0);
Matt Mowerfb1c4ff2014-04-16 13:43:36 -0500906 t = localtime(&seconds);
Dees_Troy43d8b002012-09-17 16:00:01 -0400907
bigbiffce8f83c2015-12-12 18:30:21 -0500908 part_settings.img_bytes_remaining = 0;
909 part_settings.file_bytes_remaining = 0;
910 part_settings.img_time = 0;
911 part_settings.file_time = 0;
912 part_settings.img_bytes = 0;
913 part_settings.file_bytes = 0;
914 part_settings.PM_Method = PM_BACKUP;
915
bigbiffce8f83c2015-12-12 18:30:21 -0500916 part_settings.adbbackup = adbbackup;
Dees_Troy43d8b002012-09-17 16:00:01 -0400917 time(&total_start);
918
919 Update_System_Details();
920
921 if (!Mount_Current_Storage(true))
922 return false;
923
bigbiff bigbiff56cf5642016-08-19 17:43:45 -0400924 DataManager::GetValue(TW_SKIP_DIGEST_GENERATE_VAR, skip_digest);
925 if (skip_digest == 0)
926 part_settings.generate_digest = true;
Dees_Troyc5865ab2012-09-24 15:08:04 -0400927 else
bigbiff bigbiff56cf5642016-08-19 17:43:45 -0400928 part_settings.generate_digest = false;
Dees_Troy4a2a1262012-09-18 09:33:47 -0400929
bigbiffce8f83c2015-12-12 18:30:21 -0500930 DataManager::GetValue(TW_BACKUPS_FOLDER_VAR, part_settings.Backup_Folder);
Ethan Yonkerdcf2b672016-09-13 14:41:53 -0500931 DataManager::GetValue(TW_BACKUP_NAME, Backup_Name);
932 if (Backup_Name == gui_lookup("curr_date", "(Current Date)")) {
933 Backup_Name = TWFunc::Get_Current_Date();
934 } else if (Backup_Name == gui_lookup("auto_generate", "(Auto Generate)") || Backup_Name == "0" || Backup_Name.empty()) {
Dees Troyb21cc642013-09-10 17:36:41 +0000935 TWFunc::Auto_Generate_Backup_Name();
Ethan Yonkerdcf2b672016-09-13 14:41:53 -0500936 DataManager::GetValue(TW_BACKUP_NAME, Backup_Name);
Dees_Troy43d8b002012-09-17 16:00:01 -0400937 }
bigbiffce8f83c2015-12-12 18:30:21 -0500938
Ethan Yonkerdcf2b672016-09-13 14:41:53 -0500939 LOGINFO("Backup Name is: '%s'\n", Backup_Name.c_str());
Ethan Yonkere080c1f2016-09-19 13:50:25 -0500940 part_settings.Backup_Folder = part_settings.Backup_Folder + "/" + Backup_Name;
bigbiffce8f83c2015-12-12 18:30:21 -0500941
Ethan Yonkere080c1f2016-09-19 13:50:25 -0500942 LOGINFO("Backup_Folder is: '%s'\n", part_settings.Backup_Folder.c_str());
Dees_Troy43d8b002012-09-17 16:00:01 -0400943
Dees_Troy2673cec2013-04-02 20:22:16 +0000944 LOGINFO("Calculating backup details...\n");
Dees_Troya13d74f2013-03-24 08:54:55 -0500945 DataManager::GetValue("tw_backup_list", Backup_List);
bigbiff7ba75002020-04-11 20:47:09 -0400946 LOGINFO("Backup_List: %s\n", Backup_List.c_str());
Dees_Troya13d74f2013-03-24 08:54:55 -0500947 if (!Backup_List.empty()) {
948 end_pos = Backup_List.find(";", start_pos);
949 while (end_pos != string::npos && start_pos < Backup_List.size()) {
950 backup_path = Backup_List.substr(start_pos, end_pos - start_pos);
bigbiff7ba75002020-04-11 20:47:09 -0400951 LOGINFO("backup_path: %s\n", backup_path.c_str());
bigbiffce8f83c2015-12-12 18:30:21 -0500952 part_settings.Part = Find_Partition_By_Path(backup_path);
953 if (part_settings.Part != NULL) {
Dees_Troya13d74f2013-03-24 08:54:55 -0500954 partition_count++;
bigbiffce8f83c2015-12-12 18:30:21 -0500955 if (part_settings.Part->Backup_Method == BM_FILES)
956 part_settings.file_bytes += part_settings.Part->Backup_Size;
Dees_Troya13d74f2013-03-24 08:54:55 -0500957 else
bigbiffce8f83c2015-12-12 18:30:21 -0500958 part_settings.img_bytes += part_settings.Part->Backup_Size;
959 if (part_settings.Part->Has_SubPartition) {
Dees_Troya13d74f2013-03-24 08:54:55 -0500960 std::vector<TWPartition*>::iterator subpart;
961
962 for (subpart = Partitions.begin(); subpart != Partitions.end(); subpart++) {
bigbiffce8f83c2015-12-12 18:30:21 -0500963 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 -0500964 partition_count++;
bigbiffce8f83c2015-12-12 18:30:21 -0500965 if ((*subpart)->Backup_Method == BM_FILES)
966 part_settings.file_bytes += (*subpart)->Backup_Size;
Dees_Troya13d74f2013-03-24 08:54:55 -0500967 else
bigbiffce8f83c2015-12-12 18:30:21 -0500968 part_settings.img_bytes += (*subpart)->Backup_Size;
Dees_Troya13d74f2013-03-24 08:54:55 -0500969 }
970 }
Dees_Troy8170a922012-09-18 15:40:25 -0400971 }
Dees_Troya13d74f2013-03-24 08:54:55 -0500972 } else {
Ethan Yonker74db1572015-10-28 12:44:49 -0500973 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 -0400974 }
Dees_Troya13d74f2013-03-24 08:54:55 -0500975 start_pos = end_pos + 1;
976 end_pos = Backup_List.find(";", start_pos);
Dees_Troy43d8b002012-09-17 16:00:01 -0400977 }
978 }
Dees_Troy43d8b002012-09-17 16:00:01 -0400979
980 if (partition_count == 0) {
Ethan Yonker74db1572015-10-28 12:44:49 -0500981 gui_msg("no_partition_selected=No partitions selected for backup.");
Dees_Troy43d8b002012-09-17 16:00:01 -0400982 return false;
983 }
bigbiffce8f83c2015-12-12 18:30:21 -0500984 if (adbbackup) {
985 if (twadbbu::Write_ADB_Stream_Header(partition_count) == false) {
986 return false;
987 }
988 }
989 total_bytes = part_settings.file_bytes + part_settings.img_bytes;
Ethan Yonker472f5062016-02-25 13:47:30 -0600990 ProgressTracking progress(total_bytes);
bigbiffce8f83c2015-12-12 18:30:21 -0500991 part_settings.progress = &progress;
992
Ethan Yonker74db1572015-10-28 12:44:49 -0500993 gui_msg(Msg("total_partitions_backup= * Total number of partitions to back up: {1}")(partition_count));
994 gui_msg(Msg("total_backup_size= * Total size of all data: {1}MB")(total_bytes / 1024 / 1024));
Dees_Troy43d8b002012-09-17 16:00:01 -0400995 storage = Find_Partition_By_Path(DataManager::GetCurrentStoragePath());
996 if (storage != NULL) {
997 free_space = storage->Free;
Ethan Yonker74db1572015-10-28 12:44:49 -0500998 gui_msg(Msg("available_space= * Available space: {1}MB")(free_space / 1024 / 1024));
Dees_Troy43d8b002012-09-17 16:00:01 -0400999 } else {
Ethan Yonker74db1572015-10-28 12:44:49 -05001000 gui_err("unable_locate_storage=Unable to locate storage device.");
Dees_Troy43d8b002012-09-17 16:00:01 -04001001 return false;
1002 }
bigbiffbf1d6722015-02-14 16:25:59 -05001003
Matt Mowerbfccfb82016-04-25 23:22:31 -05001004 DataManager::GetValue(TW_DISABLE_FREE_SPACE_VAR, disable_free_space_check);
bigbiffce8f83c2015-12-12 18:30:21 -05001005
1006 if (adbbackup)
1007 disable_free_space_check = true;
1008
bigbiffbf1d6722015-02-14 16:25:59 -05001009 if (!disable_free_space_check) {
1010 if (free_space - (32 * 1024 * 1024) < total_bytes) {
1011 // We require an extra 32MB just in case
Ethan Yonker74db1572015-10-28 12:44:49 -05001012 gui_err("no_space=Not enough free space on storage.");
bigbiffbf1d6722015-02-14 16:25:59 -05001013 return false;
1014 }
Dees_Troy43d8b002012-09-17 16:00:01 -04001015 }
bigbiffce8f83c2015-12-12 18:30:21 -05001016 part_settings.img_bytes_remaining = part_settings.img_bytes;
1017 part_settings.file_bytes_remaining = part_settings.file_bytes;
Dees_Troy43d8b002012-09-17 16:00:01 -04001018
Ethan Yonker74db1572015-10-28 12:44:49 -05001019 gui_msg("backup_started=[BACKUP STARTED]");
bigbiff bigbiffcdd97c72019-03-29 19:12:33 -04001020
1021 int is_decrypted = 0;
1022 int is_encrypted = 0;
1023
1024 DataManager::GetValue(TW_IS_DECRYPTED, is_decrypted);
1025 DataManager::GetValue(TW_IS_ENCRYPTED, is_encrypted);
1026 if (!adbbackup || (!is_encrypted || (is_encrypted && is_decrypted))) {
1027 gui_msg(Msg("backup_folder= * Backup Folder: {1}")(part_settings.Backup_Folder));
1028 if (!TWFunc::Recursive_Mkdir(part_settings.Backup_Folder)) {
1029 gui_err("fail_backup_folder=Failed to make backup folder.");
1030 return false;
1031 }
Dees_Troyd4b22b02013-01-18 17:17:58 +00001032 }
1033
Dees_Troy2673cec2013-04-02 20:22:16 +00001034 DataManager::SetProgress(0.0);
Dees_Troy093b7642012-09-21 15:59:38 -04001035
Dees_Troya13d74f2013-03-24 08:54:55 -05001036 start_pos = 0;
1037 end_pos = Backup_List.find(";", start_pos);
1038 while (end_pos != string::npos && start_pos < Backup_List.size()) {
bigbiff7abc5fe2015-01-17 16:53:12 -05001039 if (stop_backup.get_value() != 0)
1040 return -1;
Dees_Troya13d74f2013-03-24 08:54:55 -05001041 backup_path = Backup_List.substr(start_pos, end_pos - start_pos);
bigbiffce8f83c2015-12-12 18:30:21 -05001042 part_settings.Part = Find_Partition_By_Path(backup_path);
1043 if (part_settings.Part != NULL) {
1044 if (!Backup_Partition(&part_settings))
Dees_Troya13d74f2013-03-24 08:54:55 -05001045 return false;
1046 } else {
Ethan Yonker74db1572015-10-28 12:44:49 -05001047 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 -05001048 }
1049 start_pos = end_pos + 1;
1050 end_pos = Backup_List.find(";", start_pos);
1051 }
Dees_Troy43d8b002012-09-17 16:00:01 -04001052
1053 // Average BPS
bigbiffce8f83c2015-12-12 18:30:21 -05001054 if (part_settings.img_time == 0)
1055 part_settings.img_time = 1;
1056 if (part_settings.file_time == 0)
1057 part_settings.file_time = 1;
1058 int img_bps = (int)part_settings.img_bytes / (int)part_settings.img_time;
1059 unsigned long long file_bps = part_settings.file_bytes / (int)part_settings.file_time;
Dees_Troy43d8b002012-09-17 16:00:01 -04001060
bigbiffce8f83c2015-12-12 18:30:21 -05001061 if (part_settings.file_bytes != 0)
Ethan Yonker472f5062016-02-25 13:47:30 -06001062 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 -05001063 if (part_settings.img_bytes != 0)
Ethan Yonker472f5062016-02-25 13:47:30 -06001064 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 -04001065
1066 time(&total_stop);
1067 int total_time = (int) difftime(total_stop, total_start);
bigbiffce8f83c2015-12-12 18:30:21 -05001068
1069 uint64_t actual_backup_size;
Ethan Yonker3fdcda42016-11-30 12:29:37 -06001070 if (!adbbackup) {
1071 TWExclude twe;
1072 actual_backup_size = twe.Get_Folder_Size(part_settings.Backup_Folder);
1073 } else
bigbiffce8f83c2015-12-12 18:30:21 -05001074 actual_backup_size = part_settings.file_bytes + part_settings.img_bytes;
Matt Mowerfb1c4ff2014-04-16 13:43:36 -05001075 actual_backup_size /= (1024LLU * 1024LLU);
Dees_Troy43d8b002012-09-17 16:00:01 -04001076
bigbiffce8f83c2015-12-12 18:30:21 -05001077 int prev_img_bps = 0, use_compression = 0;
1078 unsigned long long prev_file_bps = 0;
Matt Mower173cdb92016-12-31 02:49:19 -06001079 DataManager::GetValue(TW_BACKUP_AVG_IMG_RATE, prev_img_bps);
Dees_Troy093b7642012-09-21 15:59:38 -04001080 img_bps += (prev_img_bps * 4);
Matt Mowerfb1c4ff2014-04-16 13:43:36 -05001081 img_bps /= 5;
Dees_Troy093b7642012-09-21 15:59:38 -04001082
Matt Mowerfb1c4ff2014-04-16 13:43:36 -05001083 DataManager::GetValue(TW_USE_COMPRESSION_VAR, use_compression);
Dees_Troy093b7642012-09-21 15:59:38 -04001084 if (use_compression)
1085 DataManager::GetValue(TW_BACKUP_AVG_FILE_COMP_RATE, prev_file_bps);
Matt Mowerfb1c4ff2014-04-16 13:43:36 -05001086 else
Dees_Troy093b7642012-09-21 15:59:38 -04001087 DataManager::GetValue(TW_BACKUP_AVG_FILE_RATE, prev_file_bps);
1088 file_bps += (prev_file_bps * 4);
Matt Mowerfb1c4ff2014-04-16 13:43:36 -05001089 file_bps /= 5;
Dees_Troy093b7642012-09-21 15:59:38 -04001090
Matt Mowerfb1c4ff2014-04-16 13:43:36 -05001091 DataManager::SetValue(TW_BACKUP_AVG_IMG_RATE, img_bps);
Dees_Troy093b7642012-09-21 15:59:38 -04001092 if (use_compression)
1093 DataManager::SetValue(TW_BACKUP_AVG_FILE_COMP_RATE, file_bps);
1094 else
1095 DataManager::SetValue(TW_BACKUP_AVG_FILE_RATE, file_bps);
1096
Ethan Yonker74db1572015-10-28 12:44:49 -05001097 gui_msg(Msg("total_backed_size=[{1} MB TOTAL BACKED UP]")(actual_backup_size));
Dees_Troy43d8b002012-09-17 16:00:01 -04001098 Update_System_Details();
Dees_Troyd0384ef2012-10-12 12:15:42 -04001099 UnMount_Main_Partitions();
Ethan Yonker56db1c42015-12-20 22:49:00 -06001100 gui_msg(Msg(msg::kHighlight, "backup_completed=[BACKUP COMPLETED IN {1} SECONDS]")(total_time)); // the end
Ethan Yonkere080c1f2016-09-19 13:50:25 -05001101 string backup_log = part_settings.Backup_Folder + "/recovery.log";
Dees_Troy3f5c4e82013-02-01 15:16:59 +00001102 TWFunc::copy_file("/tmp/recovery.log", backup_log, 0644);
Ethan Yonker4b94cfd2014-12-11 10:00:45 -06001103 tw_set_default_metadata(backup_log.c_str());
bigbiffce8f83c2015-12-12 18:30:21 -05001104
1105 if (part_settings.adbbackup) {
1106 if (twadbbu::Write_ADB_Stream_Trailer() == false) {
1107 return false;
1108 }
1109 }
1110 part_settings.adbbackup = false;
1111 DataManager::SetValue("tw_enable_adb_backup", 0);
1112
Dees_Troy3f5c4e82013-02-01 15:16:59 +00001113 return true;
Dees_Troy51a0e822012-09-05 15:24:24 -04001114}
1115
bigbiffce8f83c2015-12-12 18:30:21 -05001116bool TWPartitionManager::Restore_Partition(PartitionSettings *part_settings) {
Dees_Troy4a2a1262012-09-18 09:33:47 -04001117 time_t Start, Stop;
bigbiffce8f83c2015-12-12 18:30:21 -05001118
bigbiff bigbiffb5ecaad2017-03-20 18:53:53 -04001119 if (part_settings->adbbackup) {
bigbiff bigbiff19fb79c2016-09-05 21:04:51 -04001120 std::string partName = part_settings->Part->Backup_Name + "." + part_settings->Part->Current_File_System + ".win";
1121 LOGINFO("setting backup name: %s\n", partName.c_str());
bigbiff bigbiffb5ecaad2017-03-20 18:53:53 -04001122 part_settings->Part->Set_Backup_FileName(part_settings->Part->Backup_Name + "." + part_settings->Part->Current_File_System + ".win");
1123 }
1124
Tom Hite5a926722014-09-15 01:31:03 +00001125 TWFunc::SetPerformanceMode(true);
bigbiffce8f83c2015-12-12 18:30:21 -05001126
Dees_Troy4a2a1262012-09-18 09:33:47 -04001127 time(&Start);
Ethan Yonker472f5062016-02-25 13:47:30 -06001128
bigbiffce8f83c2015-12-12 18:30:21 -05001129 if (!part_settings->Part->Restore(part_settings)) {
Tom Hite5a926722014-09-15 01:31:03 +00001130 TWFunc::SetPerformanceMode(false);
Dees_Troy4a2a1262012-09-18 09:33:47 -04001131 return false;
Tom Hite5a926722014-09-15 01:31:03 +00001132 }
bigbiff bigbiff19fb79c2016-09-05 21:04:51 -04001133 if (part_settings->Part->Has_SubPartition && !part_settings->adbbackup) {
Dees_Troy8170a922012-09-18 15:40:25 -04001134 std::vector<TWPartition*>::iterator subpart;
bigbiff bigbiff8fd4b092016-08-30 20:48:53 -04001135 TWPartition *parentPart = part_settings->Part;
Dees_Troy8170a922012-09-18 15:40:25 -04001136
1137 for (subpart = Partitions.begin(); subpart != Partitions.end(); subpart++) {
bigbiff bigbiff8fd4b092016-08-30 20:48:53 -04001138 part_settings->Part = *subpart;
1139 if ((*subpart)->Is_SubPartition && (*subpart)->SubPartition_Of == parentPart->Mount_Point) {
1140 part_settings->Part = (*subpart);
bigbiff bigbiff19fb79c2016-09-05 21:04:51 -04001141 part_settings->Part->Set_Backup_FileName(part_settings->Part->Backup_Name + "." + part_settings->Part->Current_File_System + ".win");
bigbiffce8f83c2015-12-12 18:30:21 -05001142 if (!(*subpart)->Restore(part_settings)) {
Tom Hite5a926722014-09-15 01:31:03 +00001143 TWFunc::SetPerformanceMode(false);
Dees_Troy8170a922012-09-18 15:40:25 -04001144 return false;
Tom Hite5a926722014-09-15 01:31:03 +00001145 }
Dees_Troy8170a922012-09-18 15:40:25 -04001146 }
1147 }
1148 }
Dees_Troy4a2a1262012-09-18 09:33:47 -04001149 time(&Stop);
Tom Hite5a926722014-09-15 01:31:03 +00001150 TWFunc::SetPerformanceMode(false);
bigbiffce8f83c2015-12-12 18:30:21 -05001151 gui_msg(Msg("restore_part_done=[{1} done ({2} seconds)]")(part_settings->Part->Backup_Display_Name)((int)difftime(Stop, Start)));
1152
Dees_Troy4a2a1262012-09-18 09:33:47 -04001153 return true;
1154}
1155
Ethan Yonker472f5062016-02-25 13:47:30 -06001156int TWPartitionManager::Run_Restore(const string& Restore_Name) {
bigbiffce8f83c2015-12-12 18:30:21 -05001157 PartitionSettings part_settings;
bigbiff bigbiff56cf5642016-08-19 17:43:45 -04001158 int check_digest;
bigbiffce8f83c2015-12-12 18:30:21 -05001159
Dees_Troy4a2a1262012-09-18 09:33:47 -04001160 time_t rStart, rStop;
1161 time(&rStart);
Dees_Troya13d74f2013-03-24 08:54:55 -05001162 string Restore_List, restore_path;
1163 size_t start_pos = 0, end_pos;
bigbiffce8f83c2015-12-12 18:30:21 -05001164
Ethan Yonkerdcf2b672016-09-13 14:41:53 -05001165 part_settings.Backup_Folder = Restore_Name;
bigbiffce8f83c2015-12-12 18:30:21 -05001166 part_settings.Part = NULL;
1167 part_settings.partition_count = 0;
1168 part_settings.total_restore_size = 0;
1169 part_settings.adbbackup = false;
1170 part_settings.PM_Method = PM_RESTORE;
Dees_Troy43d8b002012-09-17 16:00:01 -04001171
Ethan Yonker74db1572015-10-28 12:44:49 -05001172 gui_msg("restore_started=[RESTORE STARTED]");
1173 gui_msg(Msg("restore_folder=Restore folder: '{1}'")(Restore_Name));
Dees_Troy43d8b002012-09-17 16:00:01 -04001174
Dees_Troy4a2a1262012-09-18 09:33:47 -04001175 if (!Mount_Current_Storage(true))
1176 return false;
1177
bigbiff bigbiff56cf5642016-08-19 17:43:45 -04001178 DataManager::GetValue(TW_SKIP_DIGEST_CHECK_VAR, check_digest);
1179 if (check_digest > 0) {
1180 // Check Digest files first before restoring to ensure that all of them match before starting a restore
1181 TWFunc::GUI_Operation_Text(TW_VERIFY_DIGEST_TEXT, gui_parse_text("{@verifying_digest}"));
1182 gui_msg("verifying_digest=Verifying Digest");
Dees_Troya13d74f2013-03-24 08:54:55 -05001183 } else {
bigbiff bigbiff56cf5642016-08-19 17:43:45 -04001184 gui_msg("skip_digest=Skipping Digest check based on user setting.");
Dees_Troya13d74f2013-03-24 08:54:55 -05001185 }
Ethan Yonker74db1572015-10-28 12:44:49 -05001186 gui_msg("calc_restore=Calculating restore details...");
Dees_Troya13d74f2013-03-24 08:54:55 -05001187 DataManager::GetValue("tw_restore_selected", Restore_List);
bigbiffce8f83c2015-12-12 18:30:21 -05001188
Dees_Troya13d74f2013-03-24 08:54:55 -05001189 if (!Restore_List.empty()) {
1190 end_pos = Restore_List.find(";", start_pos);
1191 while (end_pos != string::npos && start_pos < Restore_List.size()) {
1192 restore_path = Restore_List.substr(start_pos, end_pos - start_pos);
bigbiffce8f83c2015-12-12 18:30:21 -05001193 part_settings.Part = Find_Partition_By_Path(restore_path);
1194 if (part_settings.Part != NULL) {
bigbiffce8f83c2015-12-12 18:30:21 -05001195 if (part_settings.Part->Mount_Read_Only) {
1196 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 -05001197 return false;
1198 }
bigbiffce8f83c2015-12-12 18:30:21 -05001199
bigbiff bigbiff56cf5642016-08-19 17:43:45 -04001200 string Full_Filename = part_settings.Backup_Folder + "/" + part_settings.Part->Backup_FileName;
1201
bigbiff4a60bee2021-01-23 14:08:03 -05001202 if (tw_get_default_metadata(Get_Android_Root_Path().c_str()) != 0) {
1203 gui_msg(Msg(msg::kWarning, "restore_system_context=Unable to get default context for {1} -- Android may not boot.")(Get_Android_Root_Path()));
1204 }
1205
bigbiff bigbiff56cf5642016-08-19 17:43:45 -04001206 if (check_digest > 0 && !twrpDigestDriver::Check_Digest(Full_Filename))
Dees_Troya13d74f2013-03-24 08:54:55 -05001207 return false;
bigbiffce8f83c2015-12-12 18:30:21 -05001208 part_settings.partition_count++;
1209 part_settings.total_restore_size += part_settings.Part->Get_Restore_Size(&part_settings);
1210 if (part_settings.Part->Has_SubPartition) {
bigbiff bigbiff8fd4b092016-08-30 20:48:53 -04001211 TWPartition *parentPart = part_settings.Part;
Dees_Troya13d74f2013-03-24 08:54:55 -05001212 std::vector<TWPartition*>::iterator subpart;
1213
1214 for (subpart = Partitions.begin(); subpart != Partitions.end(); subpart++) {
bigbiff bigbiff8fd4b092016-08-30 20:48:53 -04001215 part_settings.Part = *subpart;
1216 if ((*subpart)->Is_SubPartition && (*subpart)->SubPartition_Of == parentPart->Mount_Point) {
bigbiff bigbiff56cf5642016-08-19 17:43:45 -04001217 if (check_digest > 0 && !twrpDigestDriver::Check_Digest(Full_Filename))
Dees_Troya13d74f2013-03-24 08:54:55 -05001218 return false;
bigbiffce8f83c2015-12-12 18:30:21 -05001219 part_settings.total_restore_size += (*subpart)->Get_Restore_Size(&part_settings);
Dees_Troya13d74f2013-03-24 08:54:55 -05001220 }
1221 }
1222 }
1223 } else {
Ethan Yonker74db1572015-10-28 12:44:49 -05001224 gui_msg(Msg(msg::kError, "restore_unable_locate=Unable to locate '{1}' partition for restoring.")(restore_path));
Dees_Troya13d74f2013-03-24 08:54:55 -05001225 }
1226 start_pos = end_pos + 1;
1227 end_pos = Restore_List.find(";", start_pos);
Dees_Troy4a2a1262012-09-18 09:33:47 -04001228 }
Dees_Troy4a2a1262012-09-18 09:33:47 -04001229 }
Dees_Troy4a2a1262012-09-18 09:33:47 -04001230
bigbiffce8f83c2015-12-12 18:30:21 -05001231 if (part_settings.partition_count == 0) {
Ethan Yonker74db1572015-10-28 12:44:49 -05001232 gui_err("no_part_restore=No partitions selected for restore.");
Dees_Troy4a2a1262012-09-18 09:33:47 -04001233 return false;
1234 }
1235
bigbiffce8f83c2015-12-12 18:30:21 -05001236 gui_msg(Msg("restore_part_count=Restoring {1} partitions...")(part_settings.partition_count));
1237 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 +00001238 DataManager::SetProgress(0.0);
bigbiffce8f83c2015-12-12 18:30:21 -05001239 ProgressTracking progress(part_settings.total_restore_size);
1240 part_settings.progress = &progress;
Ethan Yonker1b7a31b2014-07-03 15:09:22 -05001241
Dees_Troya13d74f2013-03-24 08:54:55 -05001242 start_pos = 0;
1243 if (!Restore_List.empty()) {
1244 end_pos = Restore_List.find(";", start_pos);
1245 while (end_pos != string::npos && start_pos < Restore_List.size()) {
1246 restore_path = Restore_List.substr(start_pos, end_pos - start_pos);
bigbiffce8f83c2015-12-12 18:30:21 -05001247
1248 part_settings.Part = Find_Partition_By_Path(restore_path);
1249 if (part_settings.Part != NULL) {
1250 part_settings.partition_count++;
bigbiffce8f83c2015-12-12 18:30:21 -05001251 if (!Restore_Partition(&part_settings))
Dees_Troya13d74f2013-03-24 08:54:55 -05001252 return false;
1253 } else {
Ethan Yonker74db1572015-10-28 12:44:49 -05001254 gui_msg(Msg(msg::kError, "restore_unable_locate=Unable to locate '{1}' partition for restoring.")(restore_path));
Dees_Troya13d74f2013-03-24 08:54:55 -05001255 }
1256 start_pos = end_pos + 1;
1257 end_pos = Restore_List.find(";", start_pos);
1258 }
1259 }
Ethan Yonker74db1572015-10-28 12:44:49 -05001260 TWFunc::GUI_Operation_Text(TW_UPDATE_SYSTEM_DETAILS_TEXT, gui_parse_text("{@updating_system_details}"));
bigbiff4a60bee2021-01-23 14:08:03 -05001261 tw_set_default_metadata(Get_Android_Root_Path().c_str());
Captain Throwback9d6feb52018-07-27 10:05:24 -04001262 UnMount_By_Path(Get_Android_Root_Path(), false);
Dees_Troy43d8b002012-09-17 16:00:01 -04001263 Update_System_Details();
Dees_Troyd0384ef2012-10-12 12:15:42 -04001264 UnMount_Main_Partitions();
Dees_Troy4a2a1262012-09-18 09:33:47 -04001265 time(&rStop);
Matt Mower3c366972015-12-25 19:28:31 -06001266 gui_msg(Msg(msg::kHighlight, "restore_completed=[RESTORE COMPLETED IN {1} SECONDS]")((int)difftime(rStop,rStart)));
Ethan Yonker1b7a31b2014-07-03 15:09:22 -05001267 DataManager::SetValue("tw_file_progress", "");
bigbiffce8f83c2015-12-12 18:30:21 -05001268
Dees_Troy63c8df72012-09-10 14:02:05 -04001269 return true;
Dees_Troy51a0e822012-09-05 15:24:24 -04001270}
1271
1272void TWPartitionManager::Set_Restore_Files(string Restore_Name) {
Dees_Troy63c8df72012-09-10 14:02:05 -04001273 // Start with the default values
Dees_Troya13d74f2013-03-24 08:54:55 -05001274 string Restore_List;
Dees_Troy83bd4832013-05-04 12:39:56 +00001275 bool get_date = true, check_encryption = true;
bigbiff bigbiff19fb79c2016-09-05 21:04:51 -04001276 bool adbbackup = false;
Dees_Troy83bd4832013-05-04 12:39:56 +00001277
1278 DataManager::SetValue("tw_restore_encrypted", 0);
bigbiff bigbiff19fb79c2016-09-05 21:04:51 -04001279 if (twadbbu::Check_ADB_Backup_File(Restore_Name)) {
1280 vector<string> adb_files;
1281 adb_files = twadbbu::Get_ADB_Backup_Files(Restore_Name);
1282 for (unsigned int i = 0; i < adb_files.size(); ++i) {
1283 string adb_restore_file = adb_files.at(i);
1284 std::size_t pos = adb_restore_file.find_first_of(".");
1285 std::string path = "/" + adb_restore_file.substr(0, pos);
1286 Restore_List = path + ";";
1287 TWPartition* Part = Find_Partition_By_Path(path);
1288 Part->Backup_FileName = TWFunc::Get_Filename(adb_restore_file);
1289 adbbackup = true;
1290 }
1291 DataManager::SetValue("tw_enable_adb_backup", 1);
Dees_Troy63c8df72012-09-10 14:02:05 -04001292 }
bigbiff bigbiff19fb79c2016-09-05 21:04:51 -04001293 else {
1294 DIR* d;
1295 d = opendir(Restore_Name.c_str());
1296 if (d == NULL)
Dees_Troy63c8df72012-09-10 14:02:05 -04001297 {
bigbiff bigbiff19fb79c2016-09-05 21:04:51 -04001298 gui_msg(Msg(msg::kError, "error_opening_strerr=Error opening: '{1}' ({2})")(Restore_Name)(strerror(errno)));
1299 return;
Dees_Troy63c8df72012-09-10 14:02:05 -04001300 }
bigbiff bigbiff19fb79c2016-09-05 21:04:51 -04001301
1302 struct dirent* de;
1303 while ((de = readdir(d)) != NULL)
Dees_Troy63c8df72012-09-10 14:02:05 -04001304 {
bigbiff bigbiff19fb79c2016-09-05 21:04:51 -04001305 // Strip off three components
1306 char str[256];
1307 char* label;
1308 char* fstype = NULL;
1309 char* extn = NULL;
1310 char* ptr;
Dees_Troy63c8df72012-09-10 14:02:05 -04001311
bigbiff bigbiff19fb79c2016-09-05 21:04:51 -04001312 strcpy(str, de->d_name);
1313 if (strlen(str) <= 2)
1314 continue;
Dees_Troy83bd4832013-05-04 12:39:56 +00001315
bigbiff bigbiff19fb79c2016-09-05 21:04:51 -04001316 if (get_date) {
1317 char file_path[255];
1318 struct stat st;
1319
1320 strcpy(file_path, Restore_Name.c_str());
1321 strcat(file_path, "/");
1322 strcat(file_path, str);
1323 stat(file_path, &st);
1324 string backup_date = ctime((const time_t*)(&st.st_mtime));
1325 DataManager::SetValue(TW_RESTORE_FILE_DATE, backup_date);
1326 get_date = false;
Dees_Troy83bd4832013-05-04 12:39:56 +00001327 }
Dees_Troy63c8df72012-09-10 14:02:05 -04001328
bigbiff bigbiff19fb79c2016-09-05 21:04:51 -04001329 label = str;
1330 ptr = label;
1331 while (*ptr && *ptr != '.') ptr++;
1332 if (*ptr == '.')
1333 {
1334 *ptr = 0x00;
1335 ptr++;
1336 fstype = ptr;
1337 }
1338 while (*ptr && *ptr != '.') ptr++;
1339 if (*ptr == '.')
1340 {
1341 *ptr = 0x00;
1342 ptr++;
1343 extn = ptr;
1344 }
Dees_Troy63c8df72012-09-10 14:02:05 -04001345
bigbiff bigbiff19fb79c2016-09-05 21:04:51 -04001346 if (fstype == NULL || extn == NULL || strcmp(fstype, "log") == 0) continue;
1347 int extnlength = strlen(extn);
1348 if (extnlength != 3 && extnlength != 6) continue;
1349 if (extnlength >= 3 && strncmp(extn, "win", 3) != 0) continue;
1350 //if (extnlength == 6 && strncmp(extn, "win000", 6) != 0) continue;
Dees_Troy63c8df72012-09-10 14:02:05 -04001351
bigbiff bigbiff19fb79c2016-09-05 21:04:51 -04001352 if (check_encryption) {
1353 string filename = Restore_Name + "/";
1354 filename += de->d_name;
1355 if (TWFunc::Get_File_Type(filename) == 2) {
1356 LOGINFO("'%s' is encrypted\n", filename.c_str());
1357 DataManager::SetValue("tw_restore_encrypted", 1);
1358 }
1359 }
1360 if (extnlength == 6 && strncmp(extn, "win000", 6) != 0) continue;
1361
1362 TWPartition* Part = Find_Partition_By_Path(label);
1363 if (Part == NULL)
1364 {
1365 gui_msg(Msg(msg::kError, "unable_locate_part_backup_name=Unable to locate partition by backup name: '{1}'")(label));
1366 continue;
1367 }
1368
1369 Part->Backup_FileName = de->d_name;
1370 if (strlen(extn) > 3) {
1371 Part->Backup_FileName.resize(Part->Backup_FileName.size() - strlen(extn) + 3);
1372 }
1373
dianlujitaob76a73a2020-04-30 20:33:20 +08001374 if (!Part->Is_SubPartition) {
1375 if (Part->Backup_Path == Get_Android_Root_Path())
1376 Restore_List += "/system;";
1377 else
1378 Restore_List += Part->Backup_Path + ";";
1379 }
bigbiff bigbiff19fb79c2016-09-05 21:04:51 -04001380 }
1381 closedir(d);
Dees_Troy63c8df72012-09-10 14:02:05 -04001382 }
bigbiff bigbiff19fb79c2016-09-05 21:04:51 -04001383
1384 if (adbbackup) {
1385 Restore_List = "ADB_Backup;";
1386 adbbackup = false;
1387 }
Dees_Troy63c8df72012-09-10 14:02:05 -04001388
Dees_Troya13d74f2013-03-24 08:54:55 -05001389 // Set the final value
1390 DataManager::SetValue("tw_restore_list", Restore_List);
1391 DataManager::SetValue("tw_restore_selected", Restore_List);
Dees_Troy51a0e822012-09-05 15:24:24 -04001392 return;
1393}
1394
1395int TWPartitionManager::Wipe_By_Path(string Path) {
Dees_Troy63c8df72012-09-10 14:02:05 -04001396 std::vector<TWPartition*>::iterator iter;
Mohd Farazfdd49bb2020-04-21 18:56:44 +05301397 std::vector < TWPartition * >::iterator iter1;
Dees_Troy63c8df72012-09-10 14:02:05 -04001398 int ret = false;
1399 bool found = false;
Dees_Troy38bd7602012-09-14 13:33:53 -04001400 string Local_Path = TWFunc::Get_Root_Path(Path);
Dees_Troy63c8df72012-09-10 14:02:05 -04001401
dianlujitaob76a73a2020-04-30 20:33:20 +08001402 if (Local_Path == "/system")
1403 Local_Path = Get_Android_Root_Path();
Dees_Troy63c8df72012-09-10 14:02:05 -04001404 // Iterate through all partitions
1405 for (iter = Partitions.begin(); iter != Partitions.end(); iter++) {
Dees_Troy657c3092012-09-10 20:32:10 -04001406 if ((*iter)->Mount_Point == Local_Path || (!(*iter)->Symlink_Mount_Point.empty() && (*iter)->Symlink_Mount_Point == Local_Path)) {
Mohd Farazfdd49bb2020-04-21 18:56:44 +05301407 // iterate through all partitions since some legacy devices uses other partitions as vendor causes issues while wiping
1408 (*iter)->Find_Actual_Block_Device();
1409 for (iter1 = Partitions.begin (); iter1 != Partitions.end (); iter1++)
1410 {
1411 (*iter1)->Find_Actual_Block_Device();
1412 if ((*iter)->Actual_Block_Device == (*iter1)->Actual_Block_Device && (*iter)->Mount_Point != (*iter1)->Mount_Point)
1413 (*iter1)->UnMount(false);
1414 }
Dees_Troye58d5262012-09-21 12:27:57 -04001415 if (Path == "/and-sec")
1416 ret = (*iter)->Wipe_AndSec();
1417 else
1418 ret = (*iter)->Wipe();
Dees_Troy63c8df72012-09-10 14:02:05 -04001419 found = true;
1420 } else if ((*iter)->Is_SubPartition && (*iter)->SubPartition_Of == Local_Path) {
1421 (*iter)->Wipe();
1422 }
1423 }
1424 if (found) {
1425 return ret;
1426 } else
Ethan Yonker74db1572015-10-28 12:44:49 -05001427 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 -04001428 return false;
Dees_Troy51a0e822012-09-05 15:24:24 -04001429}
1430
Ethan Yonker87c7bac2014-05-25 21:41:08 -05001431int TWPartitionManager::Wipe_By_Path(string Path, string New_File_System) {
1432 std::vector<TWPartition*>::iterator iter;
1433 int ret = false;
1434 bool found = false;
1435 string Local_Path = TWFunc::Get_Root_Path(Path);
1436
1437 // Iterate through all partitions
1438 for (iter = Partitions.begin(); iter != Partitions.end(); iter++) {
1439 if ((*iter)->Mount_Point == Local_Path || (!(*iter)->Symlink_Mount_Point.empty() && (*iter)->Symlink_Mount_Point == Local_Path)) {
1440 if (Path == "/and-sec")
1441 ret = (*iter)->Wipe_AndSec();
1442 else
1443 ret = (*iter)->Wipe(New_File_System);
1444 found = true;
1445 } else if ((*iter)->Is_SubPartition && (*iter)->SubPartition_Of == Local_Path) {
1446 (*iter)->Wipe(New_File_System);
1447 }
1448 }
1449 if (found) {
1450 return ret;
1451 } else
Ethan Yonker74db1572015-10-28 12:44:49 -05001452 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 -05001453 return false;
1454}
1455
Dees_Troy51a0e822012-09-05 15:24:24 -04001456int TWPartitionManager::Factory_Reset(void) {
Dees_Troy63c8df72012-09-10 14:02:05 -04001457 std::vector<TWPartition*>::iterator iter;
1458 int ret = true;
1459
1460 for (iter = Partitions.begin(); iter != Partitions.end(); iter++) {
Dees_Troy38bd7602012-09-14 13:33:53 -04001461 if ((*iter)->Wipe_During_Factory_Reset && (*iter)->Is_Present) {
Ethan Yonker89583ef2015-08-26 09:01:59 -05001462#ifdef TW_OEM_BUILD
1463 if ((*iter)->Mount_Point == "/data") {
1464 if (!(*iter)->Wipe_Encryption())
1465 ret = false;
1466 } else {
1467#endif
1468 if (!(*iter)->Wipe())
1469 ret = false;
1470#ifdef TW_OEM_BUILD
1471 }
1472#endif
Dees_Troy094207a2012-09-26 12:00:39 -04001473 } else if ((*iter)->Has_Android_Secure) {
1474 if (!(*iter)->Wipe_AndSec())
1475 ret = false;
Dees_Troy63c8df72012-09-10 14:02:05 -04001476 }
1477 }
bigbiffad58e1b2020-07-06 20:24:34 -04001478 TWFunc::check_and_run_script("/system/bin/factoryreset.sh", "Factory Reset Script");
Dees_Troy63c8df72012-09-10 14:02:05 -04001479 return ret;
Dees_Troy51a0e822012-09-05 15:24:24 -04001480}
1481
Dees_Troy38bd7602012-09-14 13:33:53 -04001482int TWPartitionManager::Wipe_Dalvik_Cache(void) {
1483 struct stat st;
bigbiff bigbiff9c754052013-01-09 09:09:08 -05001484 vector <string> dir;
Dees_Troy38bd7602012-09-14 13:33:53 -04001485
1486 if (!Mount_By_Path("/data", true))
1487 return false;
1488
bigbiff bigbiff9c754052013-01-09 09:09:08 -05001489 dir.push_back("/data/dalvik-cache");
bigbiff bigbiff19874f12019-01-08 20:06:57 -05001490
bigbiff25d25b92020-06-19 16:07:38 -04001491 std::string cacheDir = TWFunc::get_log_dir();
1492 if (cacheDir == CACHE_LOGS_DIR) {
1493 if (!PartitionManager.Mount_By_Path(CACHE_LOGS_DIR, false)) {
1494 LOGINFO("Unable to mount %s for wiping cache.\n", CACHE_LOGS_DIR);
bigbiff bigbiff19874f12019-01-08 20:06:57 -05001495 }
1496 dir.push_back(cacheDir + "dalvik-cache");
1497 dir.push_back(cacheDir + "/dc");
bigbiff bigbiff9c754052013-01-09 09:09:08 -05001498 }
Ethan Yonkerff2b7882016-12-10 09:04:41 -06001499
Dees_Troy38bd7602012-09-14 13:33:53 -04001500 TWPartition* sdext = Find_Partition_By_Path("/sd-ext");
Vojtech Bocekfafb0c52013-07-25 22:53:02 +02001501 if (sdext && sdext->Is_Present && sdext->Mount(false))
1502 {
1503 if (stat("/sd-ext/dalvik-cache", &st) == 0)
1504 {
Ethan Yonkerff2b7882016-12-10 09:04:41 -06001505 dir.push_back("/sd-ext/dalvik-cache");
1506 }
1507 }
1508
bigbiff25d25b92020-06-19 16:07:38 -04001509 if (cacheDir == CACHE_LOGS_DIR) {
bigbiff bigbiff19874f12019-01-08 20:06:57 -05001510 gui_msg("wiping_cache_dalvik=Wiping Dalvik Cache Directories...");
1511 } else {
1512 gui_msg("wiping_dalvik=Wiping Dalvik Directory...");
1513 }
Ethan Yonkerff2b7882016-12-10 09:04:41 -06001514 for (unsigned i = 0; i < dir.size(); ++i) {
1515 if (stat(dir.at(i).c_str(), &st) == 0) {
1516 TWFunc::removeDir(dir.at(i), false);
1517 gui_msg(Msg("cleaned=Cleaned: {1}...")(dir.at(i)));
bigbiff bigbiff9c754052013-01-09 09:09:08 -05001518 }
Vojtech Bocekfafb0c52013-07-25 22:53:02 +02001519 }
bigbiff bigbiff19874f12019-01-08 20:06:57 -05001520
bigbiff25d25b92020-06-19 16:07:38 -04001521 if (cacheDir == CACHE_LOGS_DIR) {
bigbiff bigbiff19874f12019-01-08 20:06:57 -05001522 gui_msg("cache_dalvik_done=-- Dalvik Cache Directories Wipe Complete!");
1523 } else {
1524 gui_msg("dalvik_done=-- Dalvik Directory Wipe Complete!");
1525 }
1526
Dees_Troy38bd7602012-09-14 13:33:53 -04001527 return true;
1528}
1529
1530int TWPartitionManager::Wipe_Rotate_Data(void) {
1531 if (!Mount_By_Path("/data", true))
1532 return false;
1533
bigbiff bigbiff9c754052013-01-09 09:09:08 -05001534 unlink("/data/misc/akmd*");
1535 unlink("/data/misc/rild*");
Dees_Troy2673cec2013-04-02 20:22:16 +00001536 gui_print("Rotation data wiped.\n");
Dees_Troy38bd7602012-09-14 13:33:53 -04001537 return true;
1538}
1539
1540int TWPartitionManager::Wipe_Battery_Stats(void) {
1541 struct stat st;
1542
1543 if (!Mount_By_Path("/data", true))
1544 return false;
1545
1546 if (0 != stat("/data/system/batterystats.bin", &st)) {
Dees_Troy2673cec2013-04-02 20:22:16 +00001547 gui_print("No Battery Stats Found. No Need To Wipe.\n");
Dees_Troy38bd7602012-09-14 13:33:53 -04001548 } else {
1549 remove("/data/system/batterystats.bin");
Dees_Troy2673cec2013-04-02 20:22:16 +00001550 gui_print("Cleared battery stats.\n");
Dees_Troy38bd7602012-09-14 13:33:53 -04001551 }
1552 return true;
1553}
1554
Dees_Troy2ff5a8d2012-09-26 14:53:02 -04001555int TWPartitionManager::Wipe_Android_Secure(void) {
1556 std::vector<TWPartition*>::iterator iter;
1557 int ret = false;
1558 bool found = false;
1559
1560 // Iterate through all partitions
1561 for (iter = Partitions.begin(); iter != Partitions.end(); iter++) {
1562 if ((*iter)->Has_Android_Secure) {
1563 ret = (*iter)->Wipe_AndSec();
1564 found = true;
1565 }
1566 }
1567 if (found) {
1568 return ret;
1569 } else {
Ethan Yonker74db1572015-10-28 12:44:49 -05001570 gui_err("no_andsec=No android secure partitions found.");
Dees_Troy2ff5a8d2012-09-26 14:53:02 -04001571 }
1572 return false;
1573}
1574
Dees_Troy38bd7602012-09-14 13:33:53 -04001575int TWPartitionManager::Format_Data(void) {
1576 TWPartition* dat = Find_Partition_By_Path("/data");
bigbiffcfa875c2021-06-20 16:20:27 -04001577 TWPartition* metadata = Find_Partition_By_Path("/metadata");
1578 if (metadata != NULL)
1579 metadata->UnMount(false);
Dees_Troy38bd7602012-09-14 13:33:53 -04001580
1581 if (dat != NULL) {
bigbiffcfa875c2021-06-20 16:20:27 -04001582 if (android::base::GetBoolProperty("ro.virtual_ab.enabled", true)) {
1583#ifndef TW_EXCLUDE_APEX
1584 twrpApex apex;
1585 apex.Unmount();
1586#endif
1587 if (metadata != NULL)
1588 metadata->Mount(true);
1589 if (!dat->Check_Pending_Merges())
1590 return false;
1591 }
Dees_Troy38bd7602012-09-14 13:33:53 -04001592 return dat->Wipe_Encryption();
1593 } else {
Matt Mower3c366972015-12-25 19:28:31 -06001594 gui_msg(Msg(msg::kError, "unable_to_locate=Unable to locate {1}.")("/data"));
Dees_Troy38bd7602012-09-14 13:33:53 -04001595 return false;
1596 }
1597 return false;
1598}
1599
1600int TWPartitionManager::Wipe_Media_From_Data(void) {
1601 TWPartition* dat = Find_Partition_By_Path("/data");
1602
1603 if (dat != NULL) {
1604 if (!dat->Has_Data_Media) {
Dees_Troy2673cec2013-04-02 20:22:16 +00001605 LOGERR("This device does not have /data/media\n");
Dees_Troy38bd7602012-09-14 13:33:53 -04001606 return false;
1607 }
1608 if (!dat->Mount(true))
1609 return false;
1610
Ethan Yonker74db1572015-10-28 12:44:49 -05001611 gui_msg("wiping_datamedia=Wiping internal storage -- /data/media...");
Ethan Yonker726a0202014-12-16 20:01:38 -06001612 Remove_MTP_Storage(dat->MTP_Storage_ID);
bigbiff bigbiff9c754052013-01-09 09:09:08 -05001613 TWFunc::removeDir("/data/media", false);
xiaolu9416f4f2015-06-04 08:22:23 +08001614 dat->Recreate_Media_Folder();
Ethan Yonker726a0202014-12-16 20:01:38 -06001615 Add_MTP_Storage(dat->MTP_Storage_ID);
Dees_Troy38bd7602012-09-14 13:33:53 -04001616 return true;
1617 } else {
Matt Mower3c366972015-12-25 19:28:31 -06001618 gui_msg(Msg(msg::kError, "unable_to_locate=Unable to locate {1}.")("/data"));
Dees_Troy38bd7602012-09-14 13:33:53 -04001619 return false;
1620 }
1621 return false;
1622}
1623
Ethan Yonker87c7bac2014-05-25 21:41:08 -05001624int TWPartitionManager::Repair_By_Path(string Path, bool Display_Error) {
1625 std::vector<TWPartition*>::iterator iter;
1626 int ret = false;
1627 bool found = false;
1628 string Local_Path = TWFunc::Get_Root_Path(Path);
1629
1630 if (Local_Path == "/tmp" || Local_Path == "/")
1631 return true;
1632
1633 // Iterate through all partitions
1634 for (iter = Partitions.begin(); iter != Partitions.end(); iter++) {
1635 if ((*iter)->Mount_Point == Local_Path || (!(*iter)->Symlink_Mount_Point.empty() && (*iter)->Symlink_Mount_Point == Local_Path)) {
1636 ret = (*iter)->Repair();
1637 found = true;
1638 } else if ((*iter)->Is_SubPartition && (*iter)->SubPartition_Of == Local_Path) {
1639 (*iter)->Repair();
1640 }
1641 }
1642 if (found) {
1643 return ret;
1644 } else if (Display_Error) {
Ethan Yonker74db1572015-10-28 12:44:49 -05001645 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 -05001646 } else {
1647 LOGINFO("Repair: Unable to find partition for path '%s'\n", Local_Path.c_str());
1648 }
1649 return false;
1650}
1651
Ethan Yonkera2719152015-05-28 09:44:41 -05001652int TWPartitionManager::Resize_By_Path(string Path, bool Display_Error) {
1653 std::vector<TWPartition*>::iterator iter;
1654 int ret = false;
1655 bool found = false;
1656 string Local_Path = TWFunc::Get_Root_Path(Path);
1657
1658 if (Local_Path == "/tmp" || Local_Path == "/")
1659 return true;
1660
1661 // Iterate through all partitions
1662 for (iter = Partitions.begin(); iter != Partitions.end(); iter++) {
1663 if ((*iter)->Mount_Point == Local_Path || (!(*iter)->Symlink_Mount_Point.empty() && (*iter)->Symlink_Mount_Point == Local_Path)) {
1664 ret = (*iter)->Resize();
1665 found = true;
1666 } else if ((*iter)->Is_SubPartition && (*iter)->SubPartition_Of == Local_Path) {
1667 (*iter)->Resize();
1668 }
1669 }
1670 if (found) {
1671 return ret;
1672 } else if (Display_Error) {
Ethan Yonker74db1572015-10-28 12:44:49 -05001673 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 -05001674 } else {
1675 LOGINFO("Resize: Unable to find partition for path '%s'\n", Local_Path.c_str());
1676 }
1677 return false;
1678}
1679
Dees_Troy51a0e822012-09-05 15:24:24 -04001680void TWPartitionManager::Update_System_Details(void) {
Dees_Troy5bf43922012-09-07 16:07:55 -04001681 std::vector<TWPartition*>::iterator iter;
Dees_Troy51127312012-09-08 13:08:49 -04001682 int data_size = 0;
Dees_Troy5bf43922012-09-07 16:07:55 -04001683
Ethan Yonker74db1572015-10-28 12:44:49 -05001684 gui_msg("update_part_details=Updating partition details...");
Dees_Troy5bf43922012-09-07 16:07:55 -04001685 for (iter = Partitions.begin(); iter != Partitions.end(); iter++) {
Ethan Yonker1b190162016-12-05 15:25:19 -06001686 (*iter)->Update_Size(true);
Dees_Troy51127312012-09-08 13:08:49 -04001687 if ((*iter)->Can_Be_Mounted) {
Captain Throwback9d6feb52018-07-27 10:05:24 -04001688 if ((*iter)->Mount_Point == Get_Android_Root_Path()) {
Dees_Troy51127312012-09-08 13:08:49 -04001689 int backup_display_size = (int)((*iter)->Backup_Size / 1048576LLU);
1690 DataManager::SetValue(TW_BACKUP_SYSTEM_SIZE, backup_display_size);
Ethan Yonker76bbd3a2019-05-10 10:50:04 -05001691 TWFunc::Is_TWRP_App_In_System();
Dees_Troy51127312012-09-08 13:08:49 -04001692 } else if ((*iter)->Mount_Point == "/data" || (*iter)->Mount_Point == "/datadata") {
1693 data_size += (int)((*iter)->Backup_Size / 1048576LLU);
1694 } else if ((*iter)->Mount_Point == "/cache") {
1695 int backup_display_size = (int)((*iter)->Backup_Size / 1048576LLU);
1696 DataManager::SetValue(TW_BACKUP_CACHE_SIZE, backup_display_size);
1697 } else if ((*iter)->Mount_Point == "/sd-ext") {
1698 int backup_display_size = (int)((*iter)->Backup_Size / 1048576LLU);
1699 DataManager::SetValue(TW_BACKUP_SDEXT_SIZE, backup_display_size);
1700 if ((*iter)->Backup_Size == 0) {
1701 DataManager::SetValue(TW_HAS_SDEXT_PARTITION, 0);
1702 DataManager::SetValue(TW_BACKUP_SDEXT_VAR, 0);
1703 } else
1704 DataManager::SetValue(TW_HAS_SDEXT_PARTITION, 1);
Dees_Troye58d5262012-09-21 12:27:57 -04001705 } else if ((*iter)->Has_Android_Secure) {
Dees_Troy8170a922012-09-18 15:40:25 -04001706 int backup_display_size = (int)((*iter)->Backup_Size / 1048576LLU);
Dees_Troye58d5262012-09-21 12:27:57 -04001707 DataManager::SetValue(TW_BACKUP_ANDSEC_SIZE, backup_display_size);
Dees_Troy8170a922012-09-18 15:40:25 -04001708 if ((*iter)->Backup_Size == 0) {
1709 DataManager::SetValue(TW_HAS_ANDROID_SECURE, 0);
1710 DataManager::SetValue(TW_BACKUP_ANDSEC_VAR, 0);
1711 } else
1712 DataManager::SetValue(TW_HAS_ANDROID_SECURE, 1);
Dees_Troy2c50e182012-09-26 20:05:28 -04001713 } else if ((*iter)->Mount_Point == "/boot") {
1714 int backup_display_size = (int)((*iter)->Backup_Size / 1048576LLU);
1715 DataManager::SetValue(TW_BACKUP_BOOT_SIZE, backup_display_size);
1716 if ((*iter)->Backup_Size == 0) {
1717 DataManager::SetValue("tw_has_boot_partition", 0);
1718 DataManager::SetValue(TW_BACKUP_BOOT_VAR, 0);
1719 } else
1720 DataManager::SetValue("tw_has_boot_partition", 1);
Dees_Troy51127312012-09-08 13:08:49 -04001721 }
Dees_Troyaa9cc402012-10-13 12:14:05 -04001722 } else {
1723 // Handle unmountable partitions in case we reset defaults
1724 if ((*iter)->Mount_Point == "/boot") {
1725 int backup_display_size = (int)((*iter)->Backup_Size / 1048576LLU);
1726 DataManager::SetValue(TW_BACKUP_BOOT_SIZE, backup_display_size);
1727 if ((*iter)->Backup_Size == 0) {
1728 DataManager::SetValue(TW_HAS_BOOT_PARTITION, 0);
1729 DataManager::SetValue(TW_BACKUP_BOOT_VAR, 0);
1730 } else
1731 DataManager::SetValue(TW_HAS_BOOT_PARTITION, 1);
1732 } else if ((*iter)->Mount_Point == "/recovery") {
1733 int backup_display_size = (int)((*iter)->Backup_Size / 1048576LLU);
1734 DataManager::SetValue(TW_BACKUP_RECOVERY_SIZE, backup_display_size);
1735 if ((*iter)->Backup_Size == 0) {
1736 DataManager::SetValue(TW_HAS_RECOVERY_PARTITION, 0);
1737 DataManager::SetValue(TW_BACKUP_RECOVERY_VAR, 0);
1738 } else
1739 DataManager::SetValue(TW_HAS_RECOVERY_PARTITION, 1);
Gary Peck82599a82012-11-21 16:23:12 -08001740 } else if ((*iter)->Mount_Point == "/data") {
1741 data_size += (int)((*iter)->Backup_Size / 1048576LLU);
Dees_Troyaa9cc402012-10-13 12:14:05 -04001742 }
Dees_Troy51127312012-09-08 13:08:49 -04001743 }
Dees_Troy5bf43922012-09-07 16:07:55 -04001744 }
Ethan Yonker74db1572015-10-28 12:44:49 -05001745 gui_msg("update_part_details_done=...done");
Dees_Troy51127312012-09-08 13:08:49 -04001746 DataManager::SetValue(TW_BACKUP_DATA_SIZE, data_size);
1747 string current_storage_path = DataManager::GetCurrentStoragePath();
1748 TWPartition* FreeStorage = Find_Partition_By_Path(current_storage_path);
Dees_Troy8170a922012-09-18 15:40:25 -04001749 if (FreeStorage != NULL) {
1750 // Attempt to mount storage
bigbiff25d25b92020-06-19 16:07:38 -04001751 if (!FreeStorage->Mount(false)) {
1752 gui_msg(Msg(msg::kWarning, "unable_to_mount_storage=Unable to mount storage"));
1753 DataManager::SetValue(TW_STORAGE_FREE_SIZE, 0);
1754 } else {
1755 DataManager::SetValue(TW_STORAGE_FREE_SIZE, (int)(FreeStorage->Free / 1048576LLU));
Dees_Troy8170a922012-09-18 15:40:25 -04001756 }
1757 } else {
Dees_Troy2673cec2013-04-02 20:22:16 +00001758 LOGINFO("Unable to find storage partition '%s'.\n", current_storage_path.c_str());
Dees_Troy8170a922012-09-18 15:40:25 -04001759 }
Dees_Troy5bf43922012-09-07 16:07:55 -04001760 if (!Write_Fstab())
Dees_Troy2673cec2013-04-02 20:22:16 +00001761 LOGERR("Error creating fstab\n");
Dees_Troy51a0e822012-09-05 15:24:24 -04001762 return;
1763}
1764
Ethan Yonkerbd7492d2016-12-07 13:55:01 -06001765void TWPartitionManager::Post_Decrypt(const string& Block_Device) {
1766 TWPartition* dat = Find_Partition_By_Path("/data");
bigbiffc2cb3852020-09-11 14:03:31 -04001767
Ethan Yonkerbd7492d2016-12-07 13:55:01 -06001768 if (dat != NULL) {
1769 DataManager::SetValue(TW_IS_DECRYPTED, 1);
1770 dat->Is_Decrypted = true;
1771 if (!Block_Device.empty()) {
1772 dat->Decrypted_Block_Device = Block_Device;
1773 gui_msg(Msg("decrypt_success_dev=Data successfully decrypted, new block device: '{1}'")(Block_Device));
1774 } else {
1775 gui_msg("decrypt_success_nodev=Data successfully decrypted");
1776 }
Noah Jacobson81d638d2019-04-28 00:10:07 -04001777 property_set("twrp.decrypt.done", "true");
Ethan Yonkerbd7492d2016-12-07 13:55:01 -06001778 dat->Setup_File_System(false);
Noah Jacobson81d638d2019-04-28 00:10:07 -04001779 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 -06001780
Noah Jacobson81d638d2019-04-28 00:10:07 -04001781 sleep(1); // Sleep for a bit so that the device will be ready
Ethan Yonkerbd7492d2016-12-07 13:55:01 -06001782 if (dat->Has_Data_Media && dat->Mount(false) && TWFunc::Path_Exists("/data/media/0")) {
1783 dat->Storage_Path = "/data/media/0";
1784 dat->Symlink_Path = dat->Storage_Path;
1785 DataManager::SetValue("tw_storage_path", "/data/media/0");
1786 DataManager::SetValue("tw_settings_path", "/data/media/0");
Ethan Yonkerbd7492d2016-12-07 13:55:01 -06001787 }
epicXa721f952021-01-04 13:01:31 +05301788 DataManager::LoadTWRPFolderInfo();
Ethan Yonkerbd7492d2016-12-07 13:55:01 -06001789 Update_System_Details();
nkk71ffb02bd2017-06-04 23:12:16 +03001790 Output_Partition(dat);
bigbiffbe4f46c2021-04-24 11:48:54 -04001791 if (!dat->Bind_Mount(false))
1792 LOGERR("Unable to bind mount /sdcard to %s\n", dat->Storage_Path.c_str());
Ethan Yonkerbd7492d2016-12-07 13:55:01 -06001793 } else
1794 LOGERR("Unable to locate data partition.\n");
1795}
1796
Noah Jacobson81d638d2019-04-28 00:10:07 -04001797void TWPartitionManager::Parse_Users() {
1798#ifdef TW_INCLUDE_FBE
1799 char user_check_result[PROPERTY_VALUE_MAX];
1800 for (int userId = 0; userId <= 9999; userId++) {
1801 string prop = "twrp.user." + to_string(userId) + ".decrypt";
1802 property_get(prop.c_str(), user_check_result, "-1");
1803 if (strcmp(user_check_result, "-1") != 0) {
1804 if (userId < 0 || userId > 9999) {
1805 LOGINFO("Incorrect user id %d\n", userId);
1806 continue;
1807 }
1808 struct users_struct user;
1809 user.userId = to_string(userId);
1810
1811 // Attempt to get name of user. Fallback to user ID if this fails.
1812 char* userFile = PageManager::LoadFileToBuffer("/data/system/users/" + to_string(userId) + ".xml", NULL);
bigbiffa957f072021-03-07 18:20:29 -05001813 if (userFile == NULL) {
Noah Jacobson81d638d2019-04-28 00:10:07 -04001814 user.userName = to_string(userId);
bigbiffa957f072021-03-07 18:20:29 -05001815 }
Noah Jacobson81d638d2019-04-28 00:10:07 -04001816 else {
1817 xml_document<> *userXml = new xml_document<>();
1818 userXml->parse<0>(userFile);
1819 xml_node<>* userNode = userXml->first_node("user");
1820 if (userNode == nullptr) {
1821 user.userName = to_string(userId);
1822 } else {
1823 xml_node<>* nameNode = userNode->first_node("name");
1824 if (nameNode == nullptr)
1825 user.userName = to_string(userId);
1826 else {
1827 string userName = nameNode->value();
1828 user.userName = userName + " (" + to_string(userId) + ")";
1829 }
1830 }
1831 }
1832
1833 string filename;
1834 user.type = Get_Password_Type(userId, filename);
1835
1836 user.isDecrypted = false;
1837 if (strcmp(user_check_result, "1") == 0)
1838 user.isDecrypted = true;
1839 Users_List.push_back(user);
1840 }
1841 }
1842 Check_Users_Decryption_Status();
1843#endif
1844}
1845
1846std::vector<users_struct>* TWPartitionManager::Get_Users_List() {
1847 return &Users_List;
1848}
1849
1850void TWPartitionManager::Mark_User_Decrypted(int userID) {
1851#ifdef TW_INCLUDE_FBE
1852 std::vector<users_struct>::iterator iter;
1853 for (iter = Users_List.begin(); iter != Users_List.end(); iter++) {
1854 if (atoi((*iter).userId.c_str()) == userID) {
1855 (*iter).isDecrypted = true;
1856 string user_prop_decrypted = "twrp.user." + to_string(userID) + ".decrypt";
1857 property_set(user_prop_decrypted.c_str(), "1");
1858 break;
1859 }
1860 }
1861 Check_Users_Decryption_Status();
1862#endif
1863}
1864
1865void TWPartitionManager::Check_Users_Decryption_Status() {
1866#ifdef TW_INCLUDE_FBE
1867 int all_is_decrypted = 1;
1868 std::vector<users_struct>::iterator iter;
1869 for (iter = Users_List.begin(); iter != Users_List.end(); iter++) {
1870 if (!(*iter).isDecrypted) {
1871 LOGINFO("User %s is not decrypted.\n", (*iter).userId.c_str());
1872 all_is_decrypted = 0;
1873 break;
1874 }
1875 }
1876 if (all_is_decrypted == 1) {
1877 LOGINFO("All found users are decrypted.\n");
1878 DataManager::SetValue("tw_all_users_decrypted", "1");
1879 property_set("twrp.all.users.decrypted", "true");
1880 } else
1881 DataManager::SetValue("tw_all_users_decrypted", "0");
1882#endif
1883}
1884
1885int TWPartitionManager::Decrypt_Device(string Password, int user_id) {
Dees_Troy5bf43922012-09-07 16:07:55 -04001886#ifdef TW_INCLUDE_CRYPTO
Ethan Yonkerddb63e22017-01-19 14:01:57 -06001887 char crypto_state[PROPERTY_VALUE_MAX], crypto_blkdev[PROPERTY_VALUE_MAX];
Ethan Yonker253368a2014-11-25 15:00:52 -06001888 std::vector<TWPartition*>::iterator iter;
Dees_Troy5bf43922012-09-07 16:07:55 -04001889
Ethan Yonker253368a2014-11-25 15:00:52 -06001890 // Mount any partitions that need to be mounted for decrypt
1891 for (iter = Partitions.begin(); iter != Partitions.end(); iter++) {
1892 if ((*iter)->Mount_To_Decrypt) {
1893 (*iter)->Mount(true);
1894 }
a39552696ff55ce2013-01-08 16:14:56 +00001895 }
oshmouna82a7542018-04-10 17:45:55 +02001896 property_set("twrp.mount_to_decrypt", "1");
a39552696ff55ce2013-01-08 16:14:56 +00001897
Ethan Yonkera1de1492015-11-04 11:58:27 -06001898 property_get("ro.crypto.state", crypto_state, "error");
1899 if (strcmp(crypto_state, "error") == 0) {
Captain Throwback18aea272020-10-29 12:43:17 -04001900 Set_FDE_Encrypt_Status();
Ethan Yonkera1de1492015-11-04 11:58:27 -06001901 }
1902
Ethan Yonkerbd7492d2016-12-07 13:55:01 -06001903 if (DataManager::GetIntValue(TW_IS_FBE)) {
1904#ifdef TW_INCLUDE_FBE
1905 if (!Mount_By_Path("/data", true)) // /data has to be mounted for FBE
1906 return -1;
Noah Jacobson81d638d2019-04-28 00:10:07 -04001907
1908 bool user_need_decrypt = false;
1909 std::vector<users_struct>::iterator iter;
1910 for (iter = Users_List.begin(); iter != Users_List.end(); iter++) {
1911 if (atoi((*iter).userId.c_str()) == user_id && !(*iter).isDecrypted) {
1912 user_need_decrypt = true;
1913 }
1914 }
1915 if (!user_need_decrypt) {
1916 LOGINFO("User %d does not require decryption\n", user_id);
1917 return 0;
1918 }
1919
Ethan Yonkerbd7492d2016-12-07 13:55:01 -06001920 int retry_count = 10;
1921 while (!TWFunc::Path_Exists("/data/system/users/gatekeeper.password.key") && --retry_count)
Noah Jacobson81d638d2019-04-28 00:10:07 -04001922 usleep(2000); // A small sleep is needed after mounting /data to ensure reliable decrypt...maybe because of DE?
1923 gui_msg(Msg("decrypting_user_fbe=Attempting to decrypt FBE for user {1}...")(user_id));
Ethan Yonkerbd7492d2016-12-07 13:55:01 -06001924 if (Decrypt_User(user_id, Password)) {
Noah Jacobson81d638d2019-04-28 00:10:07 -04001925 gui_msg(Msg("decrypt_user_success_fbe=User {1} Decrypted Successfully")(user_id));
1926 Mark_User_Decrypted(user_id);
1927 if (user_id == 0) {
1928 // When decrypting user 0 also try all other users
1929 std::vector<users_struct>::iterator iter;
1930 for (iter = Users_List.begin(); iter != Users_List.end(); iter++) {
1931 if ((*iter).userId == "0" || (*iter).isDecrypted)
1932 continue;
1933
1934 int tmp_user_id = atoi((*iter).userId.c_str());
1935 gui_msg(Msg("decrypting_user_fbe=Attempting to decrypt FBE for user {1}...")(tmp_user_id));
1936 if (Decrypt_User(tmp_user_id, Password) ||
1937 (Password != "!" && Decrypt_User(tmp_user_id, "!"))) { // "!" means default password
1938 gui_msg(Msg("decrypt_user_success_fbe=User {1} Decrypted Successfully")(tmp_user_id));
1939 Mark_User_Decrypted(tmp_user_id);
1940 } else {
1941 gui_msg(Msg("decrypt_user_fail_fbe=Failed to decrypt user {1}")(tmp_user_id));
1942 }
1943 }
1944 Post_Decrypt("");
1945 }
1946
Ethan Yonkerbd7492d2016-12-07 13:55:01 -06001947 return 0;
Noah Jacobson81d638d2019-04-28 00:10:07 -04001948 } else {
1949 gui_msg(Msg(msg::kError, "decrypt_user_fail_fbe=Failed to decrypt user {1}")(user_id));
Ethan Yonkerbd7492d2016-12-07 13:55:01 -06001950 }
1951#else
1952 LOGERR("FBE support is not present\n");
1953#endif
1954 return -1;
1955 }
1956
Noah Jacobson81d638d2019-04-28 00:10:07 -04001957 char isdecrypteddata[PROPERTY_VALUE_MAX];
1958 property_get("twrp.decrypt.done", isdecrypteddata, "");
1959 if (strcmp(isdecrypteddata, "true") == 0) {
1960 LOGINFO("Data has no decryption required\n");
1961 return 0;
1962 }
1963
Ethan Yonkerddb63e22017-01-19 14:01:57 -06001964 int pwret = -1;
1965 pid_t pid = fork();
1966 if (pid < 0) {
1967 LOGERR("fork failed\n");
1968 return -1;
1969 } else if (pid == 0) {
1970 // Child process
1971 char cPassword[255];
1972 strcpy(cPassword, Password.c_str());
1973 int ret = cryptfs_check_passwd(cPassword);
1974 exit(ret);
1975 } else {
1976 // Parent
1977 int status;
1978 if (TWFunc::Wait_For_Child_Timeout(pid, &status, "Decrypt", 30))
1979 pwret = -1;
1980 else
1981 pwret = WEXITSTATUS(status) ? -1 : 0;
1982 }
a39552696ff55ce2013-01-08 16:14:56 +00001983
nkk7171c6c502017-01-05 23:55:05 +02001984#ifdef TW_CRYPTO_USE_SYSTEM_VOLD
1985 if (pwret != 0) {
1986 pwret = vold_decrypt(Password);
nkk717d1222a2017-11-06 17:27:21 +02001987 switch (pwret) {
1988 case VD_SUCCESS:
1989 break;
1990 case VD_ERR_MISSING_VDC:
1991 gui_msg(Msg(msg::kError, "decrypt_data_vold_os_missing=Missing files needed for vold decrypt: {1}")("/system/bin/vdc"));
1992 break;
1993 case VD_ERR_MISSING_VOLD:
1994 gui_msg(Msg(msg::kError, "decrypt_data_vold_os_missing=Missing files needed for vold decrypt: {1}")("/system/bin/vold"));
1995 break;
1996 }
nkk7171c6c502017-01-05 23:55:05 +02001997 }
1998#endif // TW_CRYPTO_USE_SYSTEM_VOLD
1999
Ethan Yonker253368a2014-11-25 15:00:52 -06002000 // Unmount any partitions that were needed for decrypt
2001 for (iter = Partitions.begin(); iter != Partitions.end(); iter++) {
2002 if ((*iter)->Mount_To_Decrypt) {
2003 (*iter)->UnMount(false);
2004 }
2005 }
oshmouna82a7542018-04-10 17:45:55 +02002006 property_set("twrp.mount_to_decrypt", "0");
Ethan Yonker253368a2014-11-25 15:00:52 -06002007
a39552696ff55ce2013-01-08 16:14:56 +00002008 if (pwret != 0) {
Ethan Yonker74db1572015-10-28 12:44:49 -05002009 gui_err("fail_decrypt=Failed to decrypt data.");
Dees_Troy5bf43922012-09-07 16:07:55 -04002010 return -1;
2011 }
a39552696ff55ce2013-01-08 16:14:56 +00002012
Dees_Troy5bf43922012-09-07 16:07:55 -04002013 property_get("ro.crypto.fs_crypto_blkdev", crypto_blkdev, "error");
2014 if (strcmp(crypto_blkdev, "error") == 0) {
Dees_Troy2673cec2013-04-02 20:22:16 +00002015 LOGERR("Error retrieving decrypted data block device.\n");
Dees_Troy5bf43922012-09-07 16:07:55 -04002016 } else {
Ethan Yonkerbd7492d2016-12-07 13:55:01 -06002017 Post_Decrypt(crypto_blkdev);
Dees_Troy5bf43922012-09-07 16:07:55 -04002018 }
2019 return 0;
2020#else
Ethan Yonker74db1572015-10-28 12:44:49 -05002021 gui_err("no_crypto_support=No crypto support was compiled into this build.");
Dees_Troy5bf43922012-09-07 16:07:55 -04002022 return -1;
2023#endif
Dees_Troy51a0e822012-09-05 15:24:24 -04002024 return 1;
Dees_Troy51127312012-09-08 13:08:49 -04002025}
2026
Ethan Yonkerb5fab762016-01-28 14:03:33 -06002027int TWPartitionManager::Fix_Contexts(void) {
Ethan Yonkerb5fab762016-01-28 14:03:33 -06002028 std::vector<TWPartition*>::iterator iter;
2029 for (iter = Partitions.begin(); iter != Partitions.end(); iter++) {
2030 if ((*iter)->Has_Data_Media) {
2031 if ((*iter)->Mount(true)) {
2032 if (fixContexts::fixDataMediaContexts((*iter)->Mount_Point) != 0)
2033 return -1;
2034 }
2035 }
2036 }
Dees_Troy1a650e62012-10-19 20:54:32 -04002037 UnMount_Main_Partitions();
Ethan Yonker74db1572015-10-28 12:44:49 -05002038 gui_msg("done=Done.");
Ethan Yonkerb5fab762016-01-28 14:03:33 -06002039 return 0;
bigbiff bigbiffa0f8a592012-10-09 21:01:03 -04002040}
2041
Ethan Yonker66a19492015-12-10 10:19:45 -06002042TWPartition* TWPartitionManager::Find_Next_Storage(string Path, bool Exclude_Data_Media) {
Ethan Yonker47360be2014-04-01 10:34:34 -05002043 std::vector<TWPartition*>::iterator iter = Partitions.begin();
2044
2045 if (!Path.empty()) {
2046 string Search_Path = TWFunc::Get_Root_Path(Path);
2047 for (; iter != Partitions.end(); iter++) {
Matt Mower9a561dd2016-02-22 21:25:51 -06002048 if ((*iter)->Mount_Point == Search_Path) {
Ethan Yonker47360be2014-04-01 10:34:34 -05002049 iter++;
2050 break;
2051 }
2052 }
2053 }
2054
2055 for (; iter != Partitions.end(); iter++) {
Ethan Yonker66a19492015-12-10 10:19:45 -06002056 if (Exclude_Data_Media && (*iter)->Has_Data_Media) {
2057 // do nothing, do not return this type of partition
2058 } else if ((*iter)->Is_Storage && (*iter)->Is_Present) {
Ethan Yonker47360be2014-04-01 10:34:34 -05002059 return (*iter);
2060 }
2061 }
2062
2063 return NULL;
2064}
2065
Dees_Troyd21618c2012-10-14 18:48:49 -04002066int TWPartitionManager::Open_Lun_File(string Partition_Path, string Lun_File) {
Dees_Troyd21618c2012-10-14 18:48:49 -04002067 TWPartition* Part = Find_Partition_By_Path(Partition_Path);
2068
2069 if (Part == NULL) {
Ethan Yonker74db1572015-10-28 12:44:49 -05002070 LOGINFO("Unable to locate '%s' for USB storage mode.", Partition_Path.c_str());
2071 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 -04002072 return false;
2073 }
Ethan Yonker47360be2014-04-01 10:34:34 -05002074 LOGINFO("USB mount '%s', '%s' > '%s'\n", Partition_Path.c_str(), Part->Actual_Block_Device.c_str(), Lun_File.c_str());
2075 if (!Part->UnMount(true) || !Part->Is_Present)
Dees_Troyd21618c2012-10-14 18:48:49 -04002076 return false;
2077
Ethan Yonker6e8c27a2016-12-22 17:55:57 -06002078 if (TWFunc::write_to_file(Lun_File, Part->Actual_Block_Device)) {
Dees_Troy2673cec2013-04-02 20:22:16 +00002079 LOGERR("Unable to write to ums lunfile '%s': (%s)\n", Lun_File.c_str(), strerror(errno));
Dees_Troyd21618c2012-10-14 18:48:49 -04002080 return false;
2081 }
Dees_Troyd21618c2012-10-14 18:48:49 -04002082 return true;
2083}
2084
Dees_Troy8170a922012-09-18 15:40:25 -04002085int TWPartitionManager::usb_storage_enable(void) {
Dees_Troy8170a922012-09-18 15:40:25 -04002086 char lun_file[255];
Dees_Troyd21618c2012-10-14 18:48:49 -04002087 bool has_multiple_lun = false;
Dees_Troy8170a922012-09-18 15:40:25 -04002088
Ethan Yonker47360be2014-04-01 10:34:34 -05002089 string Lun_File_str = CUSTOM_LUN_FILE;
2090 size_t found = Lun_File_str.find("%");
2091 if (found != string::npos) {
2092 sprintf(lun_file, CUSTOM_LUN_FILE, 1);
2093 if (TWFunc::Path_Exists(lun_file))
2094 has_multiple_lun = true;
2095 }
Ethan Yonker726a0202014-12-16 20:01:38 -06002096 mtp_was_enabled = TWFunc::Toggle_MTP(false); // Must disable MTP for USB Storage
Ethan Yonker47360be2014-04-01 10:34:34 -05002097 if (!has_multiple_lun) {
2098 LOGINFO("Device doesn't have multiple lun files, mount current storage\n");
2099 sprintf(lun_file, CUSTOM_LUN_FILE, 0);
2100 if (TWFunc::Get_Root_Path(DataManager::GetCurrentStoragePath()) == "/data") {
Ethan Yonker66a19492015-12-10 10:19:45 -06002101 TWPartition* Mount = Find_Next_Storage("", true);
Ethan Yonker47360be2014-04-01 10:34:34 -05002102 if (Mount) {
bigbiff bigbiffc7eee6f2014-09-02 18:59:01 -04002103 if (!Open_Lun_File(Mount->Mount_Point, lun_file)) {
2104 goto error_handle;
2105 }
Ethan Yonker47360be2014-04-01 10:34:34 -05002106 } else {
Ethan Yonker74db1572015-10-28 12:44:49 -05002107 gui_err("unable_locate_storage=Unable to locate storage device.");
bigbiff bigbiffc7eee6f2014-09-02 18:59:01 -04002108 goto error_handle;
Ethan Yonker47360be2014-04-01 10:34:34 -05002109 }
2110 } else if (!Open_Lun_File(DataManager::GetCurrentStoragePath(), lun_file)) {
bigbiff bigbiffc7eee6f2014-09-02 18:59:01 -04002111 goto error_handle;
Dees_Troy8170a922012-09-18 15:40:25 -04002112 }
Dees_Troy8170a922012-09-18 15:40:25 -04002113 } else {
Ethan Yonker47360be2014-04-01 10:34:34 -05002114 LOGINFO("Device has multiple lun files\n");
2115 TWPartition* Mount1;
2116 TWPartition* Mount2;
Dees_Troy8170a922012-09-18 15:40:25 -04002117 sprintf(lun_file, CUSTOM_LUN_FILE, 0);
Ethan Yonker66a19492015-12-10 10:19:45 -06002118 Mount1 = Find_Next_Storage("", true);
Ethan Yonker47360be2014-04-01 10:34:34 -05002119 if (Mount1) {
bigbiff bigbiffc7eee6f2014-09-02 18:59:01 -04002120 if (!Open_Lun_File(Mount1->Mount_Point, lun_file)) {
2121 goto error_handle;
2122 }
Matt Moweree717062014-04-26 01:46:46 -05002123 sprintf(lun_file, CUSTOM_LUN_FILE, 1);
Ethan Yonker66a19492015-12-10 10:19:45 -06002124 Mount2 = Find_Next_Storage(Mount1->Mount_Point, true);
Matt Mower1fdcdb72016-01-25 20:53:47 -06002125 if (Mount2 && Mount2->Mount_Point != Mount1->Mount_Point) {
Matt Moweree717062014-04-26 01:46:46 -05002126 Open_Lun_File(Mount2->Mount_Point, lun_file);
Ethan Yonker47360be2014-04-01 10:34:34 -05002127 }
2128 } else {
Ethan Yonker74db1572015-10-28 12:44:49 -05002129 gui_err("unable_locate_storage=Unable to locate storage device.");
bigbiff bigbiffc7eee6f2014-09-02 18:59:01 -04002130 goto error_handle;
Ethan Yonker47360be2014-04-01 10:34:34 -05002131 }
Dees_Troy8170a922012-09-18 15:40:25 -04002132 }
Matt Mowerb6ef4782014-11-06 02:24:36 -06002133 property_set("sys.storage.ums_enabled", "1");
HandyMenny37d42992014-10-26 22:15:59 +01002134 property_set("sys.usb.config", "mass_storage,adb");
Dees_Troy8170a922012-09-18 15:40:25 -04002135 return true;
bigbiff bigbiffc7eee6f2014-09-02 18:59:01 -04002136error_handle:
2137 if (mtp_was_enabled)
2138 if (!Enable_MTP())
2139 Disable_MTP();
2140 return false;
Dees_Troy8170a922012-09-18 15:40:25 -04002141}
2142
2143int TWPartitionManager::usb_storage_disable(void) {
Dees_Troy2673cec2013-04-02 20:22:16 +00002144 int index, ret;
2145 char lun_file[255], ch[2] = {0, 0};
2146 string str = ch;
Dees_Troy8170a922012-09-18 15:40:25 -04002147
2148 for (index=0; index<2; index++) {
2149 sprintf(lun_file, CUSTOM_LUN_FILE, index);
Ethan Yonker6e8c27a2016-12-22 17:55:57 -06002150 ret = TWFunc::write_to_file(lun_file, str);
Dees_Troy2673cec2013-04-02 20:22:16 +00002151 if (ret < 0) {
2152 break;
Dees_Troy8170a922012-09-18 15:40:25 -04002153 }
Dees_Troy8170a922012-09-18 15:40:25 -04002154 }
Dees_Troye58d5262012-09-21 12:27:57 -04002155 Mount_All_Storage();
2156 Update_System_Details();
Dees_Troycfd73ef2012-10-12 16:52:00 -04002157 UnMount_Main_Partitions();
Matt Mowerd9cb9062013-12-14 20:34:45 -06002158 property_set("sys.storage.ums_enabled", "0");
HandyMenny37d42992014-10-26 22:15:59 +01002159 property_set("sys.usb.config", "adb");
bigbiff bigbiffc7eee6f2014-09-02 18:59:01 -04002160 if (mtp_was_enabled)
2161 if (!Enable_MTP())
2162 Disable_MTP();
Dees_Troy2673cec2013-04-02 20:22:16 +00002163 if (ret < 0 && index == 0) {
2164 LOGERR("Unable to write to ums lunfile '%s'.", lun_file);
2165 return false;
2166 } else {
2167 return true;
2168 }
Dees_Troy8170a922012-09-18 15:40:25 -04002169 return true;
Dees_Troy812660f2012-09-20 09:55:17 -04002170}
2171
2172void TWPartitionManager::Mount_All_Storage(void) {
2173 std::vector<TWPartition*>::iterator iter;
2174
2175 for (iter = Partitions.begin(); iter != Partitions.end(); iter++) {
2176 if ((*iter)->Is_Storage)
2177 (*iter)->Mount(false);
2178 }
Dees_Troy2c50e182012-09-26 20:05:28 -04002179}
Dees_Troy9350b8d2012-09-27 12:38:38 -04002180
Dees_Troyd0384ef2012-10-12 12:15:42 -04002181void TWPartitionManager::UnMount_Main_Partitions(void) {
2182 // Unmounts system and data if data is not data/media
2183 // Also unmounts boot if boot is mountable
Dees_Troy2673cec2013-04-02 20:22:16 +00002184 LOGINFO("Unmounting main partitions...\n");
Dees_Troyd0384ef2012-10-12 12:15:42 -04002185
Mohd Faraze3948ec2020-08-14 01:40:59 +00002186 TWPartition *Partition = Find_Partition_By_Path ("/vendor");
Dees_Troyd0384ef2012-10-12 12:15:42 -04002187
Mohd Faraze3948ec2020-08-14 01:40:59 +00002188 if (Partition != NULL) UnMount_By_Path("/vendor", false);
2189 UnMount_By_Path (Get_Android_Root_Path(), true);
2190 Partition = Find_Partition_By_Path ("/product");
2191 if (Partition != NULL) UnMount_By_Path("/product", false);
Ethan Yonker6277c792014-09-15 14:54:30 -05002192 if (!datamedia)
2193 UnMount_By_Path("/data", true);
2194
Mohd Faraze3948ec2020-08-14 01:40:59 +00002195 Partition = Find_Partition_By_Path ("/boot");
2196 if (Partition != NULL && Partition->Can_Be_Mounted)
2197 Partition->UnMount(true);
Dees_Troyd0384ef2012-10-12 12:15:42 -04002198}
2199
Dees_Troy9350b8d2012-09-27 12:38:38 -04002200int TWPartitionManager::Partition_SDCard(void) {
Matt Mower23d8aae2017-01-06 14:30:33 -06002201 char temp[255];
Ethan Yonker483e9f42016-01-11 22:21:18 -06002202 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 -04002203 int ext, swap, total_size = 0, fat_size;
Dees_Troy9350b8d2012-09-27 12:38:38 -04002204
Ethan Yonker74db1572015-10-28 12:44:49 -05002205 gui_msg("start_partition_sd=Partitioning SD Card...");
Ethan Yonker483e9f42016-01-11 22:21:18 -06002206
2207 // Locate and validate device to partition
2208 TWPartition* SDCard = Find_Partition_By_Path(DataManager::GetCurrentStoragePath());
2209
Ethan Yonker66a19492015-12-10 10:19:45 -06002210 if (SDCard->Is_Adopted_Storage)
2211 SDCard->Revert_Adopted();
2212
Ethan Yonker1eff6cd2014-09-15 13:30:42 -05002213 if (SDCard == NULL || !SDCard->Removable || SDCard->Has_Data_Media) {
Ethan Yonker74db1572015-10-28 12:44:49 -05002214 gui_err("partition_sd_locate=Unable to locate device to partition.");
Dees_Troy9350b8d2012-09-27 12:38:38 -04002215 return false;
2216 }
Ethan Yonker483e9f42016-01-11 22:21:18 -06002217
2218 // Unmount everything
Dees_Troy9350b8d2012-09-27 12:38:38 -04002219 if (!SDCard->UnMount(true))
2220 return false;
2221 TWPartition* SDext = Find_Partition_By_Path("/sd-ext");
2222 if (SDext != NULL) {
2223 if (!SDext->UnMount(true))
2224 return false;
2225 }
Ethan Yonker483e9f42016-01-11 22:21:18 -06002226 char* swappath = getenv("SWAPPATH");
2227 if (swappath != NULL) {
2228 LOGINFO("Unmounting swap at '%s'\n", swappath);
2229 umount(swappath);
2230 }
Vojtech Bocek05534202013-09-11 08:11:56 +02002231
Ethan Yonker483e9f42016-01-11 22:21:18 -06002232 // Determine block device
2233 if (SDCard->Alternate_Block_Device.empty()) {
2234 SDCard->Find_Actual_Block_Device();
2235 Device = SDCard->Actual_Block_Device;
2236 // Just use the root block device
2237 Device.resize(strlen("/dev/block/mmcblkX"));
2238 } else {
2239 Device = SDCard->Alternate_Block_Device;
2240 }
Dees_Troy9350b8d2012-09-27 12:38:38 -04002241
2242 // Find the size of the block device:
Ethan Yonker483e9f42016-01-11 22:21:18 -06002243 total_size = (int)(TWFunc::IOCTL_Get_Block_Size(Device.c_str()) / (1048576));
Dees_Troy9350b8d2012-09-27 12:38:38 -04002244
2245 DataManager::GetValue("tw_sdext_size", ext);
2246 DataManager::GetValue("tw_swap_size", swap);
2247 DataManager::GetValue("tw_sdpart_file_system", ext_format);
2248 fat_size = total_size - ext - swap;
Ethan Yonker483e9f42016-01-11 22:21:18 -06002249 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);
2250
2251 // Determine partition sizes
2252 if (swap == 0 && ext == 0) {
2253 fat_str = "-0";
2254 } else {
2255 memset(temp, 0, sizeof(temp));
2256 sprintf(temp, "%i", fat_size);
2257 fat_str = temp;
2258 fat_str += "MB";
2259 }
2260 if (swap == 0) {
2261 ext_str = "-0";
2262 } else {
2263 memset(temp, 0, sizeof(temp));
2264 sprintf(temp, "%i", ext);
2265 ext_str = "+";
2266 ext_str += temp;
2267 ext_str += "MB";
2268 }
2269
Dees_Troy9350b8d2012-09-27 12:38:38 -04002270 if (ext + swap > total_size) {
Ethan Yonker74db1572015-10-28 12:44:49 -05002271 gui_err("ext_swap_size=EXT + Swap size is larger than sdcard size.");
Dees_Troy9350b8d2012-09-27 12:38:38 -04002272 return false;
2273 }
Ethan Yonker483e9f42016-01-11 22:21:18 -06002274
Ethan Yonker74db1572015-10-28 12:44:49 -05002275 gui_msg("remove_part_table=Removing partition table...");
Ethan Yonker483e9f42016-01-11 22:21:18 -06002276 Command = "sgdisk --zap-all " + Device;
Dees_Troy2673cec2013-04-02 20:22:16 +00002277 LOGINFO("Command is: '%s'\n", Command.c_str());
Vojtech Bocek05534202013-09-11 08:11:56 +02002278 if (TWFunc::Exec_Cmd(Command) != 0) {
Ethan Yonker74db1572015-10-28 12:44:49 -05002279 gui_err("unable_rm_part=Unable to remove partition table.");
Dees_Troy9350b8d2012-09-27 12:38:38 -04002280 Update_System_Details();
2281 return false;
2282 }
Ethan Yonker74db1572015-10-28 12:44:49 -05002283 gui_msg(Msg("create_part=Creating {1} partition...")("FAT32"));
Captain Throwback9643a802016-05-27 11:44:51 -04002284 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 +00002285 LOGINFO("Command is: '%s'\n", Command.c_str());
Vojtech Bocek05534202013-09-11 08:11:56 +02002286 if (TWFunc::Exec_Cmd(Command) != 0) {
Ethan Yonker74db1572015-10-28 12:44:49 -05002287 gui_msg(Msg(msg::kError, "unable_to_create_part=Unable to create {1} partition.")("FAT32"));
Dees_Troy9350b8d2012-09-27 12:38:38 -04002288 return false;
2289 }
2290 if (ext > 0) {
Ethan Yonker74db1572015-10-28 12:44:49 -05002291 gui_msg(Msg("create_part=Creating {1} partition...")("EXT"));
Ethan Yonker483e9f42016-01-11 22:21:18 -06002292 Command = "sgdisk --new=0:0:" + ext_str + " --change-name=0:\"Linux filesystem\" " + Device;
Dees_Troy2673cec2013-04-02 20:22:16 +00002293 LOGINFO("Command is: '%s'\n", Command.c_str());
Vojtech Bocek05534202013-09-11 08:11:56 +02002294 if (TWFunc::Exec_Cmd(Command) != 0) {
Ethan Yonker74db1572015-10-28 12:44:49 -05002295 gui_msg(Msg(msg::kError, "unable_to_create_part=Unable to create {1} partition.")("EXT"));
Dees_Troy9350b8d2012-09-27 12:38:38 -04002296 Update_System_Details();
2297 return false;
2298 }
2299 }
2300 if (swap > 0) {
Ethan Yonker74db1572015-10-28 12:44:49 -05002301 gui_msg(Msg("create_part=Creating {1} partition...")("swap"));
Ethan Yonker483e9f42016-01-11 22:21:18 -06002302 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 +00002303 LOGINFO("Command is: '%s'\n", Command.c_str());
Vojtech Bocek05534202013-09-11 08:11:56 +02002304 if (TWFunc::Exec_Cmd(Command) != 0) {
Ethan Yonker74db1572015-10-28 12:44:49 -05002305 gui_msg(Msg(msg::kError, "unable_to_create_part=Unable to create {1} partition.")("swap"));
Dees_Troy9350b8d2012-09-27 12:38:38 -04002306 Update_System_Details();
2307 return false;
2308 }
2309 }
Ethan Yonker483e9f42016-01-11 22:21:18 -06002310
2311 // Convert GPT to MBR
2312 Command = "sgdisk --gpttombr " + Device;
2313 if (TWFunc::Exec_Cmd(Command) != 0)
2314 LOGINFO("Failed to covert partition GPT to MBR\n");
2315
2316 // Tell the kernel to rescan the partition table
2317 int fd = open(Device.c_str(), O_RDONLY);
2318 ioctl(fd, BLKRRPART, 0);
2319 close(fd);
2320
2321 string format_device = Device;
2322 if (Device.substr(0, 17) == "/dev/block/mmcblk")
2323 format_device += "p";
2324
2325 // Format new partitions to proper file system
2326 if (fat_size > 0) {
2327 Command = "mkfs.fat " + format_device + "1";
2328 TWFunc::Exec_Cmd(Command);
2329 }
Dees_Troy9350b8d2012-09-27 12:38:38 -04002330 if (ext > 0) {
2331 if (SDext == NULL) {
Ethan Yonker483e9f42016-01-11 22:21:18 -06002332 Command = "mke2fs -t " + ext_format + " -m 0 " + format_device + "2";
2333 gui_msg(Msg("format_sdext_as=Formatting sd-ext as {1}...")(ext_format));
2334 LOGINFO("Formatting sd-ext after partitioning, command: '%s'\n", Command.c_str());
2335 TWFunc::Exec_Cmd(Command);
2336 } else {
2337 SDext->Wipe(ext_format);
Dees_Troy9350b8d2012-09-27 12:38:38 -04002338 }
Ethan Yonker483e9f42016-01-11 22:21:18 -06002339 }
2340 if (swap > 0) {
2341 Command = "mkswap " + format_device;
2342 if (ext > 0)
2343 Command += "3";
2344 else
2345 Command += "2";
Vojtech Bocek05534202013-09-11 08:11:56 +02002346 TWFunc::Exec_Cmd(Command);
Dees_Troy9350b8d2012-09-27 12:38:38 -04002347 }
2348
Ethan Yonker483e9f42016-01-11 22:21:18 -06002349 // recreate TWRP folder and rewrite settings - these will be gone after sdcard is partitioned
2350 if (SDCard->Mount(true)) {
2351 string TWRP_Folder = SDCard->Mount_Point + "/TWRP";
2352 mkdir(TWRP_Folder.c_str(), 0777);
2353 DataManager::Flush();
2354 }
2355
Dees_Troy9350b8d2012-09-27 12:38:38 -04002356 Update_System_Details();
Ethan Yonker74db1572015-10-28 12:44:49 -05002357 gui_msg("part_complete=Partitioning complete.");
Dees_Troy9350b8d2012-09-27 12:38:38 -04002358 return true;
bigbiff bigbiffa0f8a592012-10-09 21:01:03 -04002359}
Dees_Troya13d74f2013-03-24 08:54:55 -05002360
2361void TWPartitionManager::Get_Partition_List(string ListType, std::vector<PartitionList> *Partition_List) {
2362 std::vector<TWPartition*>::iterator iter;
2363 if (ListType == "mount") {
2364 for (iter = Partitions.begin(); iter != Partitions.end(); iter++) {
Ethan Yonker6e8c27a2016-12-22 17:55:57 -06002365 if ((*iter)->Can_Be_Mounted) {
Dees_Troya13d74f2013-03-24 08:54:55 -05002366 struct PartitionList part;
2367 part.Display_Name = (*iter)->Display_Name;
2368 part.Mount_Point = (*iter)->Mount_Point;
2369 part.selected = (*iter)->Is_Mounted();
2370 Partition_List->push_back(part);
2371 }
2372 }
2373 } else if (ListType == "storage") {
2374 char free_space[255];
2375 string Current_Storage = DataManager::GetCurrentStoragePath();
2376 for (iter = Partitions.begin(); iter != Partitions.end(); iter++) {
2377 if ((*iter)->Is_Storage) {
2378 struct PartitionList part;
2379 sprintf(free_space, "%llu", (*iter)->Free / 1024 / 1024);
2380 part.Display_Name = (*iter)->Storage_Name + " (";
2381 part.Display_Name += free_space;
2382 part.Display_Name += "MB)";
2383 part.Mount_Point = (*iter)->Storage_Path;
2384 if ((*iter)->Storage_Path == Current_Storage)
2385 part.selected = 1;
2386 else
2387 part.selected = 0;
2388 Partition_List->push_back(part);
2389 }
2390 }
2391 } else if (ListType == "backup") {
2392 char backup_size[255];
Dees_Troy9e0b71c2013-04-08 13:35:37 +00002393 unsigned long long Backup_Size;
Dees_Troya13d74f2013-03-24 08:54:55 -05002394 for (iter = Partitions.begin(); iter != Partitions.end(); iter++) {
Dees_Troy9e0b71c2013-04-08 13:35:37 +00002395 if ((*iter)->Can_Be_Backed_Up && !(*iter)->Is_SubPartition && (*iter)->Is_Present) {
Dees_Troya13d74f2013-03-24 08:54:55 -05002396 struct PartitionList part;
Dees_Troy9e0b71c2013-04-08 13:35:37 +00002397 Backup_Size = (*iter)->Backup_Size;
2398 if ((*iter)->Has_SubPartition) {
2399 std::vector<TWPartition*>::iterator subpart;
2400
2401 for (subpart = Partitions.begin(); subpart != Partitions.end(); subpart++) {
2402 if ((*subpart)->Is_SubPartition && (*subpart)->Can_Be_Backed_Up && (*subpart)->Is_Present && (*subpart)->SubPartition_Of == (*iter)->Mount_Point)
2403 Backup_Size += (*subpart)->Backup_Size;
2404 }
2405 }
2406 sprintf(backup_size, "%llu", Backup_Size / 1024 / 1024);
Dees_Troya13d74f2013-03-24 08:54:55 -05002407 part.Display_Name = (*iter)->Backup_Display_Name + " (";
2408 part.Display_Name += backup_size;
2409 part.Display_Name += "MB)";
2410 part.Mount_Point = (*iter)->Backup_Path;
2411 part.selected = 0;
2412 Partition_List->push_back(part);
2413 }
2414 }
2415 } else if (ListType == "restore") {
2416 string Restore_List, restore_path;
2417 TWPartition* restore_part = NULL;
2418
2419 DataManager::GetValue("tw_restore_list", Restore_List);
2420 if (!Restore_List.empty()) {
2421 size_t start_pos = 0, end_pos = Restore_List.find(";", start_pos);
2422 while (end_pos != string::npos && start_pos < Restore_List.size()) {
2423 restore_path = Restore_List.substr(start_pos, end_pos - start_pos);
bigbiff bigbiff19fb79c2016-09-05 21:04:51 -04002424 struct PartitionList part;
2425 if (restore_path.compare("ADB_Backup") == 0) {
2426 part.Display_Name = "ADB Backup";
2427 part.Mount_Point = "ADB Backup";
2428 part.selected = 1;
2429 Partition_List->push_back(part);
2430 break;
2431 }
Dees_Troy59df9262013-06-19 14:53:57 -05002432 if ((restore_part = Find_Partition_By_Path(restore_path)) != NULL) {
Dees Troy4159aed2014-02-28 17:24:43 +00002433 if ((restore_part->Backup_Name == "recovery" && !restore_part->Can_Be_Backed_Up) || restore_part->Is_SubPartition) {
Dees_Troya13d74f2013-03-24 08:54:55 -05002434 // Don't allow restore of recovery (causes problems on some devices)
Dees_Troy59df9262013-06-19 14:53:57 -05002435 // Don't add subpartitions to the list of items
Dees_Troya13d74f2013-03-24 08:54:55 -05002436 } else {
Dees_Troya13d74f2013-03-24 08:54:55 -05002437 part.Display_Name = restore_part->Backup_Display_Name;
2438 part.Mount_Point = restore_part->Backup_Path;
2439 part.selected = 1;
2440 Partition_List->push_back(part);
2441 }
2442 } else {
Ethan Yonker74db1572015-10-28 12:44:49 -05002443 gui_msg(Msg(msg::kError, "restore_unable_locate=Unable to locate '{1}' partition for restoring.")(restore_path));
Dees_Troya13d74f2013-03-24 08:54:55 -05002444 }
2445 start_pos = end_pos + 1;
2446 end_pos = Restore_List.find(";", start_pos);
2447 }
2448 }
2449 } else if (ListType == "wipe") {
2450 struct PartitionList dalvik;
Ethan Yonker74db1572015-10-28 12:44:49 -05002451 dalvik.Display_Name = gui_parse_text("{@dalvik}");
Dees_Troya13d74f2013-03-24 08:54:55 -05002452 dalvik.Mount_Point = "DALVIK";
2453 dalvik.selected = 0;
2454 Partition_List->push_back(dalvik);
2455 for (iter = Partitions.begin(); iter != Partitions.end(); iter++) {
2456 if ((*iter)->Wipe_Available_in_GUI && !(*iter)->Is_SubPartition) {
2457 struct PartitionList part;
2458 part.Display_Name = (*iter)->Display_Name;
2459 part.Mount_Point = (*iter)->Mount_Point;
2460 part.selected = 0;
2461 Partition_List->push_back(part);
2462 }
2463 if ((*iter)->Has_Android_Secure) {
2464 struct PartitionList part;
2465 part.Display_Name = (*iter)->Backup_Display_Name;
2466 part.Mount_Point = (*iter)->Backup_Path;
2467 part.selected = 0;
2468 Partition_List->push_back(part);
2469 }
Dees_Troy74fb2e92013-04-15 14:35:47 +00002470 if ((*iter)->Has_Data_Media) {
2471 struct PartitionList datamedia;
2472 datamedia.Display_Name = (*iter)->Storage_Name;
2473 datamedia.Mount_Point = "INTERNAL";
2474 datamedia.selected = 0;
2475 Partition_List->push_back(datamedia);
2476 }
Dees_Troya13d74f2013-03-24 08:54:55 -05002477 }
Ethan Yonker96af84a2015-01-05 14:58:36 -06002478 } else if (ListType == "flashimg") {
2479 for (iter = Partitions.begin(); iter != Partitions.end(); iter++) {
2480 if ((*iter)->Can_Flash_Img && (*iter)->Is_Present) {
2481 struct PartitionList part;
2482 part.Display_Name = (*iter)->Backup_Display_Name;
2483 part.Mount_Point = (*iter)->Backup_Path;
2484 part.selected = 0;
2485 Partition_List->push_back(part);
2486 }
2487 }
Ethan Yonker53796e72019-01-11 22:49:52 -06002488 if (DataManager::GetIntValue("tw_has_repack_tools") != 0 && DataManager::GetIntValue("tw_has_boot_slots") != 0) {
2489 TWPartition* boot = Find_Partition_By_Path("/boot");
2490 if (boot) {
2491 // Allow flashing kernels and ramdisks
2492 struct PartitionList repack_ramdisk;
2493 repack_ramdisk.Display_Name = gui_lookup("install_twrp_ramdisk", "Install Recovery Ramdisk");
2494 repack_ramdisk.Mount_Point = "/repack_ramdisk";
2495 repack_ramdisk.selected = 0;
2496 Partition_List->push_back(repack_ramdisk);
2497 /*struct PartitionList repack_kernel; For now let's leave repacking kernels under advanced only
2498 repack_kernel.Display_Name = gui_lookup("install_kernel", "Install Kernel");
2499 repack_kernel.Mount_Point = "/repack_kernel";
2500 repack_kernel.selected = 0;
2501 Partition_List->push_back(repack_kernel);*/
2502 }
2503 }
Dees_Troya13d74f2013-03-24 08:54:55 -05002504 } else {
Dees_Troy2673cec2013-04-02 20:22:16 +00002505 LOGERR("Unknown list type '%s' requested for TWPartitionManager::Get_Partition_List\n", ListType.c_str());
Dees_Troya13d74f2013-03-24 08:54:55 -05002506 }
2507}
2508
2509int TWPartitionManager::Fstab_Processed(void) {
2510 return Partitions.size();
2511}
Dees_Troyd93bda52013-07-03 19:55:19 +00002512
2513void TWPartitionManager::Output_Storage_Fstab(void) {
2514 std::vector<TWPartition*>::iterator iter;
2515 char storage_partition[255];
bigbiff bigbiffe4bdb152019-03-23 18:33:17 -04002516 std::string Temp;
bigbiff25d25b92020-06-19 16:07:38 -04002517 std::string cacheDir = TWFunc::get_log_dir();
bigbiff bigbiffe4bdb152019-03-23 18:33:17 -04002518
2519 if (cacheDir.empty()) {
2520 LOGINFO("Unable to find cache directory\n");
2521 return;
2522 }
bigbiff bigbiff19874f12019-01-08 20:06:57 -05002523
bigbiff25d25b92020-06-19 16:07:38 -04002524 std::string storageFstab = TWFunc::get_log_dir() + "recovery/storage.fstab";
bigbiff bigbiff19874f12019-01-08 20:06:57 -05002525 FILE *fp = fopen(storageFstab.c_str(), "w");
Dees_Troyd93bda52013-07-03 19:55:19 +00002526
2527 if (fp == NULL) {
bigbiff bigbiff19874f12019-01-08 20:06:57 -05002528 gui_msg(Msg(msg::kError, "unable_to_open=Unable to open '{1}'.")(storageFstab));
Dees_Troyd93bda52013-07-03 19:55:19 +00002529 return;
2530 }
2531
2532 // Iterate through all partitions
2533 for (iter = Partitions.begin(); iter != Partitions.end(); iter++) {
2534 if ((*iter)->Is_Storage) {
2535 Temp = (*iter)->Storage_Path + ";" + (*iter)->Storage_Name + ";\n";
2536 strcpy(storage_partition, Temp.c_str());
2537 fwrite(storage_partition, sizeof(storage_partition[0]), strlen(storage_partition) / sizeof(storage_partition[0]), fp);
2538 }
2539 }
2540 fclose(fp);
Vojtech Bocekfafb0c52013-07-25 22:53:02 +02002541}
Vojtech Bocek93cb1ef2014-05-12 15:41:52 +02002542
2543TWPartition *TWPartitionManager::Get_Default_Storage_Partition()
2544{
2545 TWPartition *res = NULL;
2546 for (std::vector<TWPartition*>::iterator iter = Partitions.begin(); iter != Partitions.end(); ++iter) {
Matt Mowera8a89d12016-12-30 18:10:37 -06002547 if (!(*iter)->Is_Storage)
Vojtech Bocek93cb1ef2014-05-12 15:41:52 +02002548 continue;
2549
Matt Mowera8a89d12016-12-30 18:10:37 -06002550 if ((*iter)->Is_Settings_Storage)
Vojtech Bocek93cb1ef2014-05-12 15:41:52 +02002551 return *iter;
2552
Matt Mowera8a89d12016-12-30 18:10:37 -06002553 if (!res)
Vojtech Bocek93cb1ef2014-05-12 15:41:52 +02002554 res = *iter;
2555 }
2556 return res;
2557}
bigbiff bigbiffc7eee6f2014-09-02 18:59:01 -04002558
2559bool TWPartitionManager::Enable_MTP(void) {
2560#ifdef TW_HAS_MTP
Ethan Yonker8dfa7772014-09-04 21:48:41 -05002561 if (mtppid) {
Ethan Yonker74db1572015-10-28 12:44:49 -05002562 gui_err("mtp_already_enabled=MTP already enabled");
bigbiff bigbiffc7eee6f2014-09-02 18:59:01 -04002563 return true;
2564 }
Ethan Yonker726a0202014-12-16 20:01:38 -06002565
2566 int mtppipe[2];
2567
2568 if (pipe(mtppipe) < 0) {
2569 LOGERR("Error creating MTP pipe\n");
2570 return false;
2571 }
2572
Ethan Yonkerdf7abac2014-12-29 10:48:17 -06002573 char old_value[PROPERTY_VALUE_MAX];
Matt Mowere07f0102017-02-23 17:40:00 -06002574 property_get("sys.usb.config", old_value, "");
2575 if (strcmp(old_value, "mtp,adb") != 0) {
Ethan Yonkerdf7abac2014-12-29 10:48:17 -06002576 char vendor[PROPERTY_VALUE_MAX];
2577 char product[PROPERTY_VALUE_MAX];
2578 property_set("sys.usb.config", "none");
2579 property_get("usb.vendor", vendor, "18D1");
2580 property_get("usb.product.mtpadb", product, "4EE2");
2581 string vendorstr = vendor;
2582 string productstr = product;
Ethan Yonker6e8c27a2016-12-22 17:55:57 -06002583 TWFunc::write_to_file("/sys/class/android_usb/android0/idVendor", vendorstr);
2584 TWFunc::write_to_file("/sys/class/android_usb/android0/idProduct", productstr);
Ethan Yonkerdf7abac2014-12-29 10:48:17 -06002585 property_set("sys.usb.config", "mtp,adb");
2586 }
Matt Mower653a1702017-02-16 10:38:52 -06002587 /* To enable MTP debug, use the twrp command line feature:
Ethan Yonker6d154c42014-09-03 14:19:43 -05002588 * twrp set tw_mtp_debug 1
2589 */
2590 twrpMtp *mtp = new twrpMtp(DataManager::GetIntValue("tw_mtp_debug"));
Ethan Yonker1b039202015-01-30 10:08:48 -06002591 mtppid = mtp->forkserver(mtppipe);
2592 if (mtppid) {
2593 close(mtppipe[0]); // Host closes read side
2594 mtp_write_fd = mtppipe[1];
2595 DataManager::SetValue("tw_mtp_enabled", 1);
2596 Add_All_MTP_Storage();
2597 return true;
Ethan Yonker726a0202014-12-16 20:01:38 -06002598 } else {
2599 close(mtppipe[0]);
2600 close(mtppipe[1]);
Ethan Yonker74db1572015-10-28 12:44:49 -05002601 gui_err("mtp_fail=Failed to enable MTP");
Ethan Yonker1b039202015-01-30 10:08:48 -06002602 return false;
bigbiff bigbiffc7eee6f2014-09-02 18:59:01 -04002603 }
bigbiff bigbiffc7eee6f2014-09-02 18:59:01 -04002604#else
Ethan Yonker74db1572015-10-28 12:44:49 -05002605 gui_err("no_mtp=MTP support not included");
bigbiff bigbiffc7eee6f2014-09-02 18:59:01 -04002606#endif
2607 DataManager::SetValue("tw_mtp_enabled", 0);
2608 return false;
2609}
2610
Ethan Yonker1b039202015-01-30 10:08:48 -06002611void TWPartitionManager::Add_All_MTP_Storage(void) {
2612#ifdef TW_HAS_MTP
2613 std::vector<TWPartition*>::iterator iter;
2614
2615 if (!mtppid)
2616 return; // MTP is not enabled
2617
2618 for (iter = Partitions.begin(); iter != Partitions.end(); iter++) {
2619 if ((*iter)->Is_Storage && (*iter)->Is_Present && (*iter)->Mount(false))
2620 Add_Remove_MTP_Storage((*iter), MTP_MESSAGE_ADD_STORAGE);
2621 }
2622#else
2623 return;
2624#endif
2625}
2626
bigbiff bigbiffc7eee6f2014-09-02 18:59:01 -04002627bool TWPartitionManager::Disable_MTP(void) {
Ethan Yonkerdf7abac2014-12-29 10:48:17 -06002628 char old_value[PROPERTY_VALUE_MAX];
bigbiff bigbiffaf32bb92018-12-18 18:39:53 -05002629 property_set("sys.usb.ffs.mtp.ready", "0");
Matt Mowere07f0102017-02-23 17:40:00 -06002630 property_get("sys.usb.config", old_value, "");
Ethan Yonkerdf7abac2014-12-29 10:48:17 -06002631 if (strcmp(old_value, "adb") != 0) {
2632 char vendor[PROPERTY_VALUE_MAX];
2633 char product[PROPERTY_VALUE_MAX];
2634 property_set("sys.usb.config", "none");
2635 property_get("usb.vendor", vendor, "18D1");
Matt Mowere07f0102017-02-23 17:40:00 -06002636 property_get("usb.product.adb", product, "D001");
Ethan Yonkerdf7abac2014-12-29 10:48:17 -06002637 string vendorstr = vendor;
2638 string productstr = product;
Ethan Yonker6e8c27a2016-12-22 17:55:57 -06002639 TWFunc::write_to_file("/sys/class/android_usb/android0/idVendor", vendorstr);
2640 TWFunc::write_to_file("/sys/class/android_usb/android0/idProduct", productstr);
Ethan Yonkerdf7abac2014-12-29 10:48:17 -06002641 usleep(2000);
2642 }
bigbiff bigbiffc7eee6f2014-09-02 18:59:01 -04002643#ifdef TW_HAS_MTP
Ethan Yonker8dfa7772014-09-04 21:48:41 -05002644 if (mtppid) {
Ethan Yonker8613dc02014-09-11 09:28:20 -05002645 LOGINFO("Disabling MTP\n");
2646 int status;
2647 kill(mtppid, SIGKILL);
Ethan Yonker8dfa7772014-09-04 21:48:41 -05002648 mtppid = 0;
Ethan Yonker8613dc02014-09-11 09:28:20 -05002649 // We don't care about the exit value, but this prevents a zombie process
2650 waitpid(mtppid, &status, 0);
Ethan Yonker726a0202014-12-16 20:01:38 -06002651 close(mtp_write_fd);
2652 mtp_write_fd = -1;
bigbiff bigbiffc7eee6f2014-09-02 18:59:01 -04002653 }
Ethan Yonkerdf7abac2014-12-29 10:48:17 -06002654#endif
bigbiff bigbiffc7eee6f2014-09-02 18:59:01 -04002655 property_set("sys.usb.config", "adb");
Ethan Yonkerdf7abac2014-12-29 10:48:17 -06002656#ifdef TW_HAS_MTP
bigbiff bigbiffc7eee6f2014-09-02 18:59:01 -04002657 DataManager::SetValue("tw_mtp_enabled", 0);
2658 return true;
bigbiff bigbiffc7eee6f2014-09-02 18:59:01 -04002659#endif
Ethan Yonkerdf7abac2014-12-29 10:48:17 -06002660 return false;
bigbiff bigbiffc7eee6f2014-09-02 18:59:01 -04002661}
Ethan Yonker726a0202014-12-16 20:01:38 -06002662
2663TWPartition* TWPartitionManager::Find_Partition_By_MTP_Storage_ID(unsigned int Storage_ID) {
2664 std::vector<TWPartition*>::iterator iter;
2665
2666 for (iter = Partitions.begin(); iter != Partitions.end(); iter++) {
2667 if ((*iter)->MTP_Storage_ID == Storage_ID)
2668 return (*iter);
2669 }
2670 return NULL;
2671}
2672
2673bool TWPartitionManager::Add_Remove_MTP_Storage(TWPartition* Part, int message_type) {
2674#ifdef TW_HAS_MTP
2675 struct mtpmsg mtp_message;
2676
2677 if (!mtppid)
2678 return false; // MTP is disabled
2679
2680 if (mtp_write_fd < 0) {
Ethan Yonkerd9ff3c52015-01-21 21:51:20 -06002681 LOGINFO("MTP: mtp_write_fd is not set\n");
Ethan Yonker726a0202014-12-16 20:01:38 -06002682 return false;
2683 }
2684
2685 if (Part) {
Ethan Yonker4bfabab2014-12-29 09:15:37 -06002686 if (Part->MTP_Storage_ID == 0)
2687 return false;
Ethan Yonker726a0202014-12-16 20:01:38 -06002688 if (message_type == MTP_MESSAGE_REMOVE_STORAGE) {
2689 mtp_message.message_type = MTP_MESSAGE_REMOVE_STORAGE; // Remove
2690 LOGINFO("sending message to remove %i\n", Part->MTP_Storage_ID);
2691 mtp_message.storage_id = Part->MTP_Storage_ID;
2692 if (write(mtp_write_fd, &mtp_message, sizeof(mtp_message)) <= 0) {
Ethan Yonkerd9ff3c52015-01-21 21:51:20 -06002693 LOGINFO("error sending message to remove storage %i\n", Part->MTP_Storage_ID);
Ethan Yonker726a0202014-12-16 20:01:38 -06002694 return false;
2695 } else {
2696 LOGINFO("Message sent, remove storage ID: %i\n", Part->MTP_Storage_ID);
2697 return true;
2698 }
2699 } else if (message_type == MTP_MESSAGE_ADD_STORAGE && Part->Is_Mounted()) {
2700 mtp_message.message_type = MTP_MESSAGE_ADD_STORAGE; // Add
2701 mtp_message.storage_id = Part->MTP_Storage_ID;
Ethan Yonker6e8c27a2016-12-22 17:55:57 -06002702 if (Part->Storage_Path.size() >= sizeof(mtp_message.path)) {
2703 LOGERR("Storage path '%s' too large for mtpmsg\n", Part->Storage_Path.c_str());
2704 return false;
2705 }
2706 strcpy(mtp_message.path, Part->Storage_Path.c_str());
2707 if (Part->Storage_Name.size() >= sizeof(mtp_message.display)) {
2708 LOGERR("Storage name '%s' too large for mtpmsg\n", Part->Storage_Name.c_str());
2709 return false;
2710 }
2711 strcpy(mtp_message.display, Part->Storage_Name.c_str());
Ethan Yonker726a0202014-12-16 20:01:38 -06002712 mtp_message.maxFileSize = Part->Get_Max_FileSize();
Ethan Yonker1b039202015-01-30 10:08:48 -06002713 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 -06002714 if (write(mtp_write_fd, &mtp_message, sizeof(mtp_message)) <= 0) {
Ethan Yonkerd9ff3c52015-01-21 21:51:20 -06002715 LOGINFO("error sending message to add storage %i\n", Part->MTP_Storage_ID);
Ethan Yonker726a0202014-12-16 20:01:38 -06002716 return false;
2717 } else {
Ethan Yonker6e8c27a2016-12-22 17:55:57 -06002718 LOGINFO("Message sent, add storage ID: %i '%s'\n", Part->MTP_Storage_ID, mtp_message.path);
Ethan Yonker726a0202014-12-16 20:01:38 -06002719 return true;
2720 }
2721 } else {
2722 LOGERR("Unknown MTP message type: %i\n", message_type);
2723 }
2724 } else {
2725 // This hopefully never happens as the error handling should
2726 // occur in the calling function.
Ethan Yonkerd9ff3c52015-01-21 21:51:20 -06002727 LOGINFO("TWPartitionManager::Add_Remove_MTP_Storage NULL partition given\n");
Ethan Yonker726a0202014-12-16 20:01:38 -06002728 }
2729 return true;
2730#else
Ethan Yonker74db1572015-10-28 12:44:49 -05002731 gui_err("no_mtp=MTP support not included");
Ethan Yonker726a0202014-12-16 20:01:38 -06002732 DataManager::SetValue("tw_mtp_enabled", 0);
2733 return false;
2734#endif
2735}
2736
2737bool TWPartitionManager::Add_MTP_Storage(string Mount_Point) {
2738#ifdef TW_HAS_MTP
2739 TWPartition* Part = PartitionManager.Find_Partition_By_Path(Mount_Point);
2740 if (Part) {
2741 return PartitionManager.Add_Remove_MTP_Storage(Part, MTP_MESSAGE_ADD_STORAGE);
2742 } else {
Ethan Yonkerd9ff3c52015-01-21 21:51:20 -06002743 LOGINFO("TWFunc::Add_MTP_Storage unable to locate partition for '%s'\n", Mount_Point.c_str());
Ethan Yonker726a0202014-12-16 20:01:38 -06002744 }
2745#endif
2746 return false;
2747}
2748
2749bool TWPartitionManager::Add_MTP_Storage(unsigned int Storage_ID) {
2750#ifdef TW_HAS_MTP
2751 TWPartition* Part = PartitionManager.Find_Partition_By_MTP_Storage_ID(Storage_ID);
2752 if (Part) {
2753 return PartitionManager.Add_Remove_MTP_Storage(Part, MTP_MESSAGE_ADD_STORAGE);
2754 } else {
Ethan Yonkerd9ff3c52015-01-21 21:51:20 -06002755 LOGINFO("TWFunc::Add_MTP_Storage unable to locate partition for %i\n", Storage_ID);
Ethan Yonker726a0202014-12-16 20:01:38 -06002756 }
2757#endif
2758 return false;
2759}
2760
2761bool TWPartitionManager::Remove_MTP_Storage(string Mount_Point) {
2762#ifdef TW_HAS_MTP
2763 TWPartition* Part = PartitionManager.Find_Partition_By_Path(Mount_Point);
2764 if (Part) {
2765 return PartitionManager.Add_Remove_MTP_Storage(Part, MTP_MESSAGE_REMOVE_STORAGE);
2766 } else {
Ethan Yonkerd9ff3c52015-01-21 21:51:20 -06002767 LOGINFO("TWFunc::Remove_MTP_Storage unable to locate partition for '%s'\n", Mount_Point.c_str());
Ethan Yonker726a0202014-12-16 20:01:38 -06002768 }
2769#endif
2770 return false;
2771}
2772
2773bool TWPartitionManager::Remove_MTP_Storage(unsigned int Storage_ID) {
2774#ifdef TW_HAS_MTP
2775 TWPartition* Part = PartitionManager.Find_Partition_By_MTP_Storage_ID(Storage_ID);
2776 if (Part) {
2777 return PartitionManager.Add_Remove_MTP_Storage(Part, MTP_MESSAGE_REMOVE_STORAGE);
2778 } else {
Ethan Yonkerd9ff3c52015-01-21 21:51:20 -06002779 LOGINFO("TWFunc::Remove_MTP_Storage unable to locate partition for %i\n", Storage_ID);
Ethan Yonker726a0202014-12-16 20:01:38 -06002780 }
2781#endif
2782 return false;
2783}
Ethan Yonker96af84a2015-01-05 14:58:36 -06002784
Ethan Yonkere080c1f2016-09-19 13:50:25 -05002785bool TWPartitionManager::Flash_Image(string& path, string& filename) {
bigbiffad58e1b2020-07-06 20:24:34 -04002786 twrpRepacker repacker;
Matt Mower23d8aae2017-01-06 14:30:33 -06002787 int partition_count = 0;
Ethan Yonker96af84a2015-01-05 14:58:36 -06002788 TWPartition* flash_part = NULL;
bigbiffce8f83c2015-12-12 18:30:21 -05002789 string Flash_List, flash_path, full_filename;
Ethan Yonker96af84a2015-01-05 14:58:36 -06002790 size_t start_pos = 0, end_pos = 0;
2791
Ethan Yonkere080c1f2016-09-19 13:50:25 -05002792 full_filename = path + "/" + filename;
Ethan Yonker96af84a2015-01-05 14:58:36 -06002793
bigbiff1f9e4842020-10-31 11:33:15 -04002794 Unlock_Block_Partitions();
2795
bigbiffce8f83c2015-12-12 18:30:21 -05002796 gui_msg("image_flash_start=[IMAGE FLASH STARTED]");
2797 gui_msg(Msg("img_to_flash=Image to flash: '{1}'")(full_filename));
2798
2799 if (!TWFunc::Path_Exists(full_filename)) {
2800 if (!Mount_By_Path(full_filename, true)) {
Ethan Yonkerb78fbdf2016-01-15 16:46:35 -06002801 return false;
2802 }
bigbiffce8f83c2015-12-12 18:30:21 -05002803 if (!TWFunc::Path_Exists(full_filename)) {
2804 gui_msg(Msg(msg::kError, "unable_to_locate=Unable to locate {1}.")(full_filename));
Ethan Yonkerb78fbdf2016-01-15 16:46:35 -06002805 return false;
2806 }
2807 }
Ethan Yonker96af84a2015-01-05 14:58:36 -06002808
Ethan Yonker53796e72019-01-11 22:49:52 -06002809 DataManager::GetValue("tw_flash_partition", Flash_List);
2810 Repack_Type repack = REPLACE_NONE;
2811 if (Flash_List == "/repack_ramdisk;") {
2812 repack = REPLACE_RAMDISK;
2813 } else if (Flash_List == "/repack_kernel;") {
2814 repack = REPLACE_KERNEL;
2815 }
2816 if (repack != REPLACE_NONE) {
2817 Repack_Options_struct Repack_Options;
2818 Repack_Options.Type = repack;
2819 Repack_Options.Disable_Verity = false;
2820 Repack_Options.Disable_Force_Encrypt = false;
2821 Repack_Options.Backup_First = DataManager::GetIntValue("tw_repack_backup_first") != 0;
bigbiffad58e1b2020-07-06 20:24:34 -04002822 return repacker.Repack_Image_And_Flash(full_filename, Repack_Options);
Ethan Yonker53796e72019-01-11 22:49:52 -06002823 }
Ethan Yonkere080c1f2016-09-19 13:50:25 -05002824 PartitionSettings part_settings;
2825 part_settings.Backup_Folder = path;
2826 unsigned long long total_bytes = TWFunc::Get_File_Size(full_filename);
2827 ProgressTracking progress(total_bytes);
2828 part_settings.progress = &progress;
2829 part_settings.adbbackup = false;
2830 part_settings.PM_Method = PM_RESTORE;
Ethan Yonker74db1572015-10-28 12:44:49 -05002831 gui_msg("calc_restore=Calculating restore details...");
Ethan Yonker96af84a2015-01-05 14:58:36 -06002832 if (!Flash_List.empty()) {
2833 end_pos = Flash_List.find(";", start_pos);
2834 while (end_pos != string::npos && start_pos < Flash_List.size()) {
2835 flash_path = Flash_List.substr(start_pos, end_pos - start_pos);
2836 flash_part = Find_Partition_By_Path(flash_path);
2837 if (flash_part != NULL) {
2838 partition_count++;
2839 if (partition_count > 1) {
Ethan Yonker74db1572015-10-28 12:44:49 -05002840 gui_err("too_many_flash=Too many partitions selected for flashing.");
Ethan Yonker96af84a2015-01-05 14:58:36 -06002841 return false;
2842 }
2843 } else {
Ethan Yonker74db1572015-10-28 12:44:49 -05002844 gui_msg(Msg(msg::kError, "flash_unable_locate=Unable to locate '{1}' partition for flashing.")(flash_path));
Ethan Yonker96af84a2015-01-05 14:58:36 -06002845 return false;
2846 }
2847 start_pos = end_pos + 1;
2848 end_pos = Flash_List.find(";", start_pos);
2849 }
2850 }
2851
2852 if (partition_count == 0) {
Ethan Yonker74db1572015-10-28 12:44:49 -05002853 gui_err("no_part_flash=No partitions selected for flashing.");
Ethan Yonker96af84a2015-01-05 14:58:36 -06002854 return false;
2855 }
2856
2857 DataManager::SetProgress(0.0);
2858 if (flash_part) {
Ethan Yonkere080c1f2016-09-19 13:50:25 -05002859 flash_part->Backup_FileName = filename;
2860 if (!flash_part->Flash_Image(&part_settings))
Ethan Yonker96af84a2015-01-05 14:58:36 -06002861 return false;
2862 } else {
Ethan Yonker74db1572015-10-28 12:44:49 -05002863 gui_err("invalid_flash=Invalid flash partition specified.");
Ethan Yonker96af84a2015-01-05 14:58:36 -06002864 return false;
2865 }
Ethan Yonker74db1572015-10-28 12:44:49 -05002866 gui_highlight("flash_done=IMAGE FLASH COMPLETED]");
Ethan Yonker96af84a2015-01-05 14:58:36 -06002867 return true;
2868}
Ethan Yonker74db1572015-10-28 12:44:49 -05002869
2870void TWPartitionManager::Translate_Partition(const char* path, const char* resource_name, const char* default_value) {
2871 TWPartition* part = PartitionManager.Find_Partition_By_Path(path);
2872 if (part) {
Ethan Yonker66a19492015-12-10 10:19:45 -06002873 if (part->Is_Adopted_Storage) {
2874 part->Display_Name = part->Display_Name + " - " + gui_lookup("data", "Data");
2875 part->Backup_Display_Name = part->Display_Name;
2876 part->Storage_Name = part->Storage_Name + " - " + gui_lookup("adopted_storage", "Adopted Storage");
2877 } else {
2878 part->Display_Name = gui_lookup(resource_name, default_value);
2879 part->Backup_Display_Name = part->Display_Name;
2880 }
Ethan Yonker74db1572015-10-28 12:44:49 -05002881 }
2882}
2883
2884void TWPartitionManager::Translate_Partition(const char* path, const char* resource_name, const char* default_value, const char* storage_resource_name, const char* storage_default_value) {
2885 TWPartition* part = PartitionManager.Find_Partition_By_Path(path);
2886 if (part) {
Ethan Yonker66a19492015-12-10 10:19:45 -06002887 if (part->Is_Adopted_Storage) {
Ethan Yonker01f4e032017-02-03 15:30:52 -06002888 part->Backup_Display_Name = part->Display_Name + " - " + gui_lookup("data_backup", "Data (excl. storage)");
Ethan Yonker66a19492015-12-10 10:19:45 -06002889 part->Display_Name = part->Display_Name + " - " + gui_lookup("data", "Data");
Ethan Yonker66a19492015-12-10 10:19:45 -06002890 part->Storage_Name = part->Storage_Name + " - " + gui_lookup("adopted_storage", "Adopted Storage");
2891 } else {
2892 part->Display_Name = gui_lookup(resource_name, default_value);
2893 part->Backup_Display_Name = part->Display_Name;
2894 if (part->Is_Storage)
2895 part->Storage_Name = gui_lookup(storage_resource_name, storage_default_value);
2896 }
Ethan Yonker74db1572015-10-28 12:44:49 -05002897 }
2898}
2899
Ethan Yonker01f4e032017-02-03 15:30:52 -06002900void 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) {
2901 TWPartition* part = PartitionManager.Find_Partition_By_Path(path);
2902 if (part) {
2903 if (part->Is_Adopted_Storage) {
2904 part->Backup_Display_Name = part->Display_Name + " - " + gui_lookup(backup_name, backup_default);
2905 part->Display_Name = part->Display_Name + " - " + gui_lookup("data", "Data");
2906 part->Storage_Name = part->Storage_Name + " - " + gui_lookup("adopted_storage", "Adopted Storage");
2907 } else {
2908 part->Display_Name = gui_lookup(resource_name, default_value);
2909 part->Backup_Display_Name = gui_lookup(backup_name, backup_default);
2910 if (part->Is_Storage)
2911 part->Storage_Name = gui_lookup(storage_resource_name, storage_default_value);
2912 }
2913 }
2914}
2915
Ethan Yonker74db1572015-10-28 12:44:49 -05002916void TWPartitionManager::Translate_Partition_Display_Names() {
Ethan Yonker66a19492015-12-10 10:19:45 -06002917 LOGINFO("Translating partition display names\n");
Ethan Yonker74db1572015-10-28 12:44:49 -05002918 Translate_Partition("/system", "system", "System");
2919 Translate_Partition("/system_image", "system_image", "System Image");
2920 Translate_Partition("/vendor", "vendor", "Vendor");
2921 Translate_Partition("/vendor_image", "vendor_image", "Vendor Image");
2922 Translate_Partition("/cache", "cache", "Cache");
Ethan Yonker74db1572015-10-28 12:44:49 -05002923 Translate_Partition("/boot", "boot", "Boot");
2924 Translate_Partition("/recovery", "recovery", "Recovery");
2925 if (!datamedia) {
Ethan Yonker01f4e032017-02-03 15:30:52 -06002926 Translate_Partition("/data", "data", "Data", "internal", "Internal Storage");
Ethan Yonker74db1572015-10-28 12:44:49 -05002927 Translate_Partition("/sdcard", "sdcard", "SDCard", "sdcard", "SDCard");
2928 Translate_Partition("/internal_sd", "sdcard", "SDCard", "sdcard", "SDCard");
2929 Translate_Partition("/internal_sdcard", "sdcard", "SDCard", "sdcard", "SDCard");
2930 Translate_Partition("/emmc", "sdcard", "SDCard", "sdcard", "SDCard");
Ethan Yonker01f4e032017-02-03 15:30:52 -06002931 } else {
2932 Translate_Partition("/data", "data", "Data", "internal", "Internal Storage", "data_backup", "Data (excl. storage)");
Ethan Yonker74db1572015-10-28 12:44:49 -05002933 }
Ethan Yonker01f4e032017-02-03 15:30:52 -06002934 Translate_Partition("/external_sd", "microsd", "Micro SDCard", "microsd", "Micro SDCard", "data_backup", "Data (excl. storage)");
2935 Translate_Partition("/external_sdcard", "microsd", "Micro SDCard", "microsd", "Micro SDCard", "data_backup", "Data (excl. storage)");
Ethan Yonker74db1572015-10-28 12:44:49 -05002936 Translate_Partition("/usb-otg", "usbotg", "USB OTG", "usbotg", "USB OTG");
2937 Translate_Partition("/sd-ext", "sdext", "SD-EXT");
2938
2939 // Android secure is a special case
2940 TWPartition* part = PartitionManager.Find_Partition_By_Path("/and-sec");
2941 if (part)
2942 part->Backup_Display_Name = gui_lookup("android_secure", "Android Secure");
2943
Ethan Yonker6e8c27a2016-12-22 17:55:57 -06002944 std::vector<TWPartition*>::iterator sysfs;
2945 for (sysfs = Partitions.begin(); sysfs != Partitions.end(); sysfs++) {
2946 if (!(*sysfs)->Sysfs_Entry.empty()) {
2947 Translate_Partition((*sysfs)->Mount_Point.c_str(), "autostorage", "Storage", "autostorage", "Storage");
2948 }
2949 }
2950
Ethan Yonker74db1572015-10-28 12:44:49 -05002951 // This updates the text on all of the storage selection buttons in the GUI
2952 DataManager::SetBackupFolder();
2953}
Ethan Yonker66a19492015-12-10 10:19:45 -06002954
Ethan Yonker6e8c27a2016-12-22 17:55:57 -06002955bool TWPartitionManager::Decrypt_Adopted() {
Ethan Yonker66a19492015-12-10 10:19:45 -06002956#ifdef TW_INCLUDE_CRYPTO
Ethan Yonker6e8c27a2016-12-22 17:55:57 -06002957 bool ret = false;
Ethan Yonker66a19492015-12-10 10:19:45 -06002958 if (!Mount_By_Path("/data", false)) {
2959 LOGERR("Cannot decrypt adopted storage because /data will not mount\n");
Ethan Yonker6e8c27a2016-12-22 17:55:57 -06002960 return false;
Ethan Yonker66a19492015-12-10 10:19:45 -06002961 }
2962 LOGINFO("Decrypt adopted storage starting\n");
2963 char* xmlFile = PageManager::LoadFileToBuffer("/data/system/storage.xml", NULL);
2964 xml_document<> *doc = NULL;
2965 xml_node<>* volumes = NULL;
Ethan Yonker66a19492015-12-10 10:19:45 -06002966 string Primary_Storage_UUID = "";
2967 if (xmlFile != NULL) {
2968 LOGINFO("successfully loaded storage.xml\n");
2969 doc = new xml_document<>();
2970 doc->parse<0>(xmlFile);
2971 volumes = doc->first_node("volumes");
2972 if (volumes) {
2973 xml_attribute<>* psuuid = volumes->first_attribute("primaryStorageUuid");
2974 if (psuuid) {
2975 Primary_Storage_UUID = psuuid->value();
2976 }
2977 }
Ethan Yonker6e8c27a2016-12-22 17:55:57 -06002978 } else {
2979 LOGINFO("No /data/system/storage.xml for adopted storage\n");
2980 return false;
Ethan Yonker66a19492015-12-10 10:19:45 -06002981 }
2982 std::vector<TWPartition*>::iterator adopt;
2983 for (adopt = Partitions.begin(); adopt != Partitions.end(); adopt++) {
Peter Cai439d60c2019-10-17 08:49:10 +08002984 if ((*adopt)->Removable && !(*adopt)->Is_Present && (*adopt)->Adopted_Mount_Delay > 0) {
2985 // On some devices, the external mmc driver takes some time
2986 // to recognize the card, in which case the "actual block device"
2987 // would not have been found yet. We wait the specified delay
2988 // and then try again.
2989 LOGINFO("Sleeping %d seconds for adopted storage.\n", (*adopt)->Adopted_Mount_Delay);
2990 sleep((*adopt)->Adopted_Mount_Delay);
2991 (*adopt)->Find_Actual_Block_Device();
2992 }
2993
Ethan Yonker66a19492015-12-10 10:19:45 -06002994 if ((*adopt)->Removable && (*adopt)->Is_Present) {
2995 if ((*adopt)->Decrypt_Adopted() == 0) {
Ethan Yonker6e8c27a2016-12-22 17:55:57 -06002996 ret = true;
Ethan Yonker66a19492015-12-10 10:19:45 -06002997 if (volumes) {
2998 xml_node<>* volume = volumes->first_node("volume");
2999 while (volume) {
3000 xml_attribute<>* guid = volume->first_attribute("partGuid");
3001 if (guid) {
3002 string GUID = (*adopt)->Adopted_GUID.c_str();
3003 GUID.insert(8, "-");
3004 GUID.insert(13, "-");
3005 GUID.insert(18, "-");
3006 GUID.insert(23, "-");
3007
3008 if (strcasecmp(GUID.c_str(), guid->value()) == 0) {
3009 xml_attribute<>* attr = volume->first_attribute("nickname");
nkk71ffb02bd2017-06-04 23:12:16 +03003010 if (attr && attr->value() && strlen(attr->value()) > 0) {
Ethan Yonker66a19492015-12-10 10:19:45 -06003011 (*adopt)->Storage_Name = attr->value();
3012 (*adopt)->Display_Name = (*adopt)->Storage_Name;
3013 (*adopt)->Backup_Display_Name = (*adopt)->Storage_Name;
3014 LOGINFO("storage name from storage.xml is '%s'\n", attr->value());
3015 }
3016 attr = volume->first_attribute("fsUuid");
3017 if (attr && !Primary_Storage_UUID.empty() && strcmp(Primary_Storage_UUID.c_str(), attr->value()) == 0) {
3018 TWPartition* Dat = Find_Partition_By_Path("/data");
3019 if (Dat) {
3020 LOGINFO("Internal storage is found on adopted storage '%s'\n", (*adopt)->Display_Name.c_str());
3021 LOGINFO("Changing '%s' to point to '%s'\n", Dat->Symlink_Mount_Point.c_str(), (*adopt)->Storage_Path.c_str());
3022 (*adopt)->Symlink_Mount_Point = Dat->Symlink_Mount_Point;
3023 Dat->Symlink_Mount_Point = "";
3024 // Toggle mounts to ensure that the symlink mount point (probably /sdcard) is mounted to the right location
3025 Dat->UnMount(false);
3026 Dat->Mount(false);
3027 (*adopt)->UnMount(false);
3028 (*adopt)->Mount(false);
Ethan Yonker66a19492015-12-10 10:19:45 -06003029 }
3030 }
3031 break;
3032 }
3033 }
3034 volume = volume->next_sibling("volume");
3035 }
3036 }
nkk71ffb02bd2017-06-04 23:12:16 +03003037 Update_System_Details();
3038 Output_Partition((*adopt));
Ethan Yonker66a19492015-12-10 10:19:45 -06003039 }
3040 }
3041 }
3042 if (xmlFile) {
3043 doc->clear();
3044 delete doc;
3045 free(xmlFile);
3046 }
Ethan Yonker6e8c27a2016-12-22 17:55:57 -06003047 return ret;
Ethan Yonker66a19492015-12-10 10:19:45 -06003048#else
3049 LOGINFO("Decrypt_Adopted: no crypto support\n");
Ethan Yonker6e8c27a2016-12-22 17:55:57 -06003050 return false;
Ethan Yonker66a19492015-12-10 10:19:45 -06003051#endif
3052}
Ethan Yonkerfcf3f242016-02-16 12:30:26 -06003053
3054void TWPartitionManager::Remove_Partition_By_Path(string Path) {
3055 std::vector<TWPartition*>::iterator iter;
3056 string Local_Path = TWFunc::Get_Root_Path(Path);
3057
3058 for (iter = Partitions.begin(); iter != Partitions.end(); iter++) {
3059 if ((*iter)->Mount_Point == Local_Path || (!(*iter)->Symlink_Mount_Point.empty() && (*iter)->Symlink_Mount_Point == Local_Path)) {
3060 LOGINFO("Found and erasing '%s' from partition list\n", Local_Path.c_str());
3061 Partitions.erase(iter);
3062 return;
3063 }
3064 }
3065}
Ethan Yonker1b190162016-12-05 15:25:19 -06003066
bigbiff74a46272021-07-31 19:02:26 -04003067void TWPartitionManager::Override_Active_Slot(const string& Slot) {
3068 LOGINFO("Overriding slot to '%s'\n", Slot.c_str());
3069 Active_Slot_Display = Slot;
3070 DataManager::SetValue("tw_active_slot", Slot);
3071}
3072
Ethan Yonker1b190162016-12-05 15:25:19 -06003073void TWPartitionManager::Set_Active_Slot(const string& Slot) {
3074 if (Slot != "A" && Slot != "B") {
3075 LOGERR("Set_Active_Slot invalid slot '%s'\n", Slot.c_str());
3076 return;
3077 }
3078 if (Active_Slot_Display == Slot)
3079 return;
3080 LOGINFO("Setting active slot %s\n", Slot.c_str());
3081#ifdef AB_OTA_UPDATER
3082 if (!Active_Slot_Display.empty()) {
3083 const hw_module_t *hw_module;
3084 boot_control_module_t *module;
3085 int ret;
3086 ret = hw_get_module("bootctrl", &hw_module);
3087 if (ret != 0) {
3088 LOGERR("Error getting bootctrl module.\n");
3089 } else {
3090 module = (boot_control_module_t*) hw_module;
3091 module->init(module);
3092 int slot_number = 0;
3093 if (Slot == "B")
3094 slot_number = 1;
3095 if (module->setActiveBootSlot(module, slot_number))
3096 gui_msg(Msg(msg::kError, "unable_set_boot_slot=Error changing bootloader boot slot to {1}")(Slot));
3097 }
3098 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
3099 }
3100#else
3101 LOGERR("Boot slot feature not present\n");
3102#endif
3103 Active_Slot_Display = Slot;
3104 if (Fstab_Processed())
3105 Update_System_Details();
3106}
3107string TWPartitionManager::Get_Active_Slot_Suffix() {
3108 if (Active_Slot_Display == "A")
3109 return "_a";
3110 return "_b";
3111}
3112string TWPartitionManager::Get_Active_Slot_Display() {
3113 return Active_Slot_Display;
3114}
Ethan Yonker6e8c27a2016-12-22 17:55:57 -06003115
Captain Throwback9d6feb52018-07-27 10:05:24 -04003116string TWPartitionManager::Get_Android_Root_Path() {
bigbiff8da46fa2020-09-08 16:42:34 -04003117 return "/system_root";
Captain Throwback9d6feb52018-07-27 10:05:24 -04003118}
3119
Ethan Yonker6e8c27a2016-12-22 17:55:57 -06003120void TWPartitionManager::Remove_Uevent_Devices(const string& Mount_Point) {
3121 std::vector<TWPartition*>::iterator iter;
3122
3123 for (iter = Partitions.begin(); iter != Partitions.end(); ) {
3124 if ((*iter)->Is_SubPartition && (*iter)->SubPartition_Of == Mount_Point) {
3125 TWPartition *part = *iter;
3126 LOGINFO("%s was removed by uevent data\n", (*iter)->Mount_Point.c_str());
3127 (*iter)->UnMount(false);
3128 rmdir((*iter)->Mount_Point.c_str());
3129 iter = Partitions.erase(iter);
3130 delete part;
3131 } else {
3132 iter++;
3133 }
3134 }
3135}
3136
3137void TWPartitionManager::Handle_Uevent(const Uevent_Block_Data& uevent_data) {
3138 std::vector<TWPartition*>::iterator iter;
3139
3140 for (iter = Partitions.begin(); iter != Partitions.end(); iter++) {
3141 if (!(*iter)->Sysfs_Entry.empty()) {
3142 string device;
3143 size_t wildcard = (*iter)->Sysfs_Entry.find("*");
3144 if (wildcard != string::npos) {
3145 device = (*iter)->Sysfs_Entry.substr(0, wildcard);
3146 } else {
3147 device = (*iter)->Sysfs_Entry;
3148 }
3149 if (device == uevent_data.sysfs_path.substr(0, device.size())) {
3150 // Found a match
3151 if (uevent_data.action == "add") {
3152 (*iter)->Primary_Block_Device = "/dev/block/" + uevent_data.block_device;
3153 (*iter)->Alternate_Block_Device = (*iter)->Primary_Block_Device;
3154 (*iter)->Is_Present = true;
3155 LOGINFO("Found a match '%s' '%s'\n", uevent_data.block_device.c_str(), device.c_str());
3156 if (!Decrypt_Adopted()) {
3157 LOGINFO("No adopted storage so finding actual block device\n");
3158 (*iter)->Find_Actual_Block_Device();
3159 }
3160 return;
3161 } else if (uevent_data.action == "remove") {
3162 (*iter)->Is_Present = false;
3163 (*iter)->Primary_Block_Device = "";
3164 (*iter)->Actual_Block_Device = "";
3165 Remove_Uevent_Devices((*iter)->Mount_Point);
3166 return;
3167 }
3168 }
3169 }
3170 }
bigbiffee7b7ff2020-03-23 15:08:27 -04003171
3172 if (!PartitionManager.Get_Super_Status())
3173 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 -06003174}
3175
3176void TWPartitionManager::setup_uevent() {
3177 struct sockaddr_nl nls;
3178
3179 if (uevent_pfd.fd >= 0) {
3180 LOGINFO("uevent already set up\n");
3181 return;
3182 }
3183
3184 // Open hotplug event netlink socket
3185 memset(&nls,0,sizeof(struct sockaddr_nl));
3186 nls.nl_family = AF_NETLINK;
3187 nls.nl_pid = getpid();
3188 nls.nl_groups = -1;
3189 uevent_pfd.events = POLLIN;
3190 uevent_pfd.fd = socket(PF_NETLINK, SOCK_DGRAM, NETLINK_KOBJECT_UEVENT);
3191 if (uevent_pfd.fd==-1) {
3192 LOGERR("uevent not root\n");
3193 return;
3194 }
3195
3196 // Listen to netlink socket
3197 if (::bind(uevent_pfd.fd, (struct sockaddr *) &nls, sizeof(struct sockaddr_nl)) < 0) {
3198 LOGERR("Bind failed\n");
3199 return;
3200 }
3201 set_select_fd();
3202 Coldboot();
3203}
3204
3205Uevent_Block_Data TWPartitionManager::get_event_block_values(char *buf, int len) {
3206 Uevent_Block_Data ret;
3207 ret.subsystem = "";
3208 char *ptr = buf;
3209 const char *end = buf + len;
3210
3211 buf[len - 1] = '\0';
3212 while (ptr < end) {
3213 if (strncmp(ptr, "ACTION=", strlen("ACTION=")) == 0) {
3214 ptr += strlen("ACTION=");
3215 ret.action = ptr;
3216 } else if (strncmp(ptr, "SUBSYSTEM=", strlen("SUBSYSTEM=")) == 0) {
3217 ptr += strlen("SUBSYSTEM=");
3218 ret.subsystem = ptr;
3219 } else if (strncmp(ptr, "DEVTYPE=", strlen("DEVTYPE=")) == 0) {
3220 ptr += strlen("DEVTYPE=");
3221 ret.type = ptr;
3222 } else if (strncmp(ptr, "DEVPATH=", strlen("DEVPATH=")) == 0) {
3223 ptr += strlen("DEVPATH=");
3224 ret.sysfs_path += ptr;
3225 } else if (strncmp(ptr, "DEVNAME=", strlen("DEVNAME=")) == 0) {
3226 ptr += strlen("DEVNAME=");
3227 ret.block_device += ptr;
3228 } else if (strncmp(ptr, "MAJOR=", strlen("MAJOR=")) == 0) {
3229 ptr += strlen("MAJOR=");
3230 ret.major = atoi(ptr);
3231 } else if (strncmp(ptr, "MINOR=", strlen("MINOR=")) == 0) {
3232 ptr += strlen("MINOR=");
3233 ret.minor = atoi(ptr);
3234 }
3235 ptr += strlen(ptr) + 1;
3236 }
3237 return ret;
3238}
3239
3240void TWPartitionManager::read_uevent() {
3241 char buf[1024];
3242
3243 int len = recv(uevent_pfd.fd, buf, sizeof(buf), MSG_DONTWAIT);
3244 if (len == -1) {
Mauronofrio Matarresec1bb76e2019-08-04 17:02:41 +01003245 LOGINFO("recv error on uevent\n");
Ethan Yonker6e8c27a2016-12-22 17:55:57 -06003246 return;
3247 }
3248 /*int i = 0; // Print all uevent output for test /debug
3249 while (i<len) {
3250 printf("%s\n", buf+i);
3251 i += strlen(buf+i)+1;
3252 }*/
3253 Uevent_Block_Data uevent_data = get_event_block_values(buf, len);
3254 if (uevent_data.subsystem == "block" && uevent_data.type == "disk") {
3255 PartitionManager.Handle_Uevent(uevent_data);
3256 }
3257}
3258
3259void TWPartitionManager::close_uevent() {
3260 if (uevent_pfd.fd > 0)
3261 close(uevent_pfd.fd);
3262 uevent_pfd.fd = -1;
3263}
3264
3265void TWPartitionManager::Add_Partition(TWPartition* Part) {
3266 Partitions.push_back(Part);
3267}
3268
3269void TWPartitionManager::Coldboot_Scan(std::vector<string> *sysfs_entries, const string& Path, int depth) {
3270 string Real_Path = Path;
3271 char real_path[PATH_MAX];
3272 if (realpath(Path.c_str(), &real_path[0])) {
3273 string Real_Path = real_path;
3274 std::vector<string>::iterator iter;
3275 for (iter = sysfs_entries->begin(); iter != sysfs_entries->end(); iter++) {
3276 if (Real_Path.find((*iter)) != string::npos) {
3277 string Write_Path = Real_Path + "/uevent";
3278 if (TWFunc::Path_Exists(Write_Path)) {
3279 const char* write_val = "add\n";
3280 TWFunc::write_to_file(Write_Path, write_val);
3281 break;
3282 }
3283 }
3284 }
3285 }
3286
3287 DIR* d = opendir(Path.c_str());
3288 if (d != NULL) {
3289 struct dirent* de;
3290 while ((de = readdir(d)) != NULL) {
3291 if (de->d_name[0] == '.' || (de->d_type != DT_DIR && depth > 0))
3292 continue;
3293 if (strlen(de->d_name) >= 4 && (strncmp(de->d_name, "ram", 3) == 0 || strncmp(de->d_name, "loop", 4) == 0))
3294 continue;
3295
3296 string item = Path + "/";
3297 item.append(de->d_name);
3298 Coldboot_Scan(sysfs_entries, item, depth + 1);
3299 }
3300 closedir(d);
3301 }
3302}
3303
3304void TWPartitionManager::Coldboot() {
3305 std::vector<TWPartition*>::iterator iter;
3306 std::vector<string> sysfs_entries;
3307
3308 for (iter = Partitions.begin(); iter != Partitions.end(); iter++) {
3309 if (!(*iter)->Sysfs_Entry.empty()) {
3310 size_t wildcard_pos = (*iter)->Sysfs_Entry.find("*");
3311 if (wildcard_pos == string::npos)
3312 wildcard_pos = (*iter)->Sysfs_Entry.size();
3313 sysfs_entries.push_back((*iter)->Sysfs_Entry.substr(0, wildcard_pos));
3314 }
3315 }
3316
3317 if (sysfs_entries.size() > 0)
3318 Coldboot_Scan(&sysfs_entries, "/sys/block", 0);
3319}
Ethan Yonker53796e72019-01-11 22:49:52 -06003320
3321bool TWPartitionManager::Prepare_Empty_Folder(const std::string& Folder) {
3322 if (TWFunc::Path_Exists(Folder))
3323 TWFunc::removeDir(Folder, false);
3324 return TWFunc::Recursive_Mkdir(Folder);
3325}
3326
bigbiffcfa875c2021-06-20 16:20:27 -04003327std::string TWPartitionManager::Get_Bare_Partition_Name(std::string Mount_Point) {
3328 if (Mount_Point == "/system_root")
3329 return "system";
3330 else
3331 return TWFunc::Remove_Beginning_Slash(Mount_Point);
3332}
3333
bigbiffee7b7ff2020-03-23 15:08:27 -04003334bool TWPartitionManager::Prepare_Super_Volume(TWPartition* twrpPart) {
3335 Fstab fstab;
bigbiffcfa875c2021-06-20 16:20:27 -04003336 std::string bare_partition_name = Get_Bare_Partition_Name(twrpPart->Get_Mount_Point());
bigbiffee7b7ff2020-03-23 15:08:27 -04003337
bigbiff998f8392021-08-06 19:19:33 -04003338 Super_Partition_List.push_back(bare_partition_name);
bigbiffee7b7ff2020-03-23 15:08:27 -04003339 LOGINFO("Trying to prepare %s from super partition\n", bare_partition_name.c_str());
3340
3341 std::string blk_device_partition;
3342#ifdef AB_OTA_UPDATER
3343 blk_device_partition = bare_partition_name + PartitionManager.Get_Active_Slot_Suffix();
3344#else
3345 blk_device_partition = bare_partition_name;
3346#endif
3347
3348 FstabEntry fstabEntry = {
3349 .blk_device = blk_device_partition,
3350 .mount_point = twrpPart->Get_Mount_Point(),
3351 .fs_type = twrpPart->Current_File_System,
3352 .fs_mgr_flags.logical = twrpPart->Is_Super,
3353 };
3354
3355 fstab.emplace_back(fstabEntry);
3356 if (!fs_mgr_update_logical_partition(&fstabEntry)) {
Captain Throwbackc6939102021-04-06 12:57:30 -04003357 LOGINFO("unable to update logical partition: %s\n", twrpPart->Get_Mount_Point().c_str());
bigbiffee7b7ff2020-03-23 15:08:27 -04003358 return false;
3359 }
3360
bigbiff32cbabe2020-04-12 19:16:19 -04003361 while (access(fstabEntry.blk_device.c_str(), F_OK) != 0) {
3362 usleep(100);
3363 }
3364
bigbiffee7b7ff2020-03-23 15:08:27 -04003365 twrpPart->Set_Block_Device(fstabEntry.blk_device);
3366 twrpPart->Update_Size(true);
3367 twrpPart->Change_Mount_Read_Only(true);
3368 twrpPart->Set_Can_Be_Backed_Up(false);
3369 twrpPart->Set_Can_Be_Wiped(false);
Mohd Faraz7fc70502021-04-22 20:44:11 +02003370 LOGINFO("Symlinking %s => /dev/block/bootdevice/by-name/%s \n", fstabEntry.blk_device.c_str(), bare_partition_name.c_str());
3371 symlink(fstabEntry.blk_device.c_str(), ("/dev/block/bootdevice/by-name/" + bare_partition_name).c_str());
3372
bigbiffee7b7ff2020-03-23 15:08:27 -04003373 return true;
3374}
3375
3376bool TWPartitionManager::Prepare_All_Super_Volumes() {
3377 bool status = true;
3378 std::vector<TWPartition*>::iterator iter;
3379
3380 for (iter = Partitions.begin(); iter != Partitions.end(); iter++) {
3381 if ((*iter)->Is_Super) {
3382 if (!Prepare_Super_Volume(*iter)) {
3383 status = false;
3384 }
3385 PartitionManager.Output_Partition(*iter);
3386 }
3387 }
3388 Update_System_Details();
3389 return status;
3390}
3391
bigbiffee7b7ff2020-03-23 15:08:27 -04003392std::string TWPartitionManager::Get_Super_Partition() {
3393 int slot_number = Get_Active_Slot_Display() == "A" ? 0 : 1;
bigbiff998f8392021-08-06 19:19:33 -04003394 std::string super_device = fs_mgr_get_super_partition_name(slot_number);
bigbiffee7b7ff2020-03-23 15:08:27 -04003395 return "/dev/block/by-name/" + super_device;
3396}
3397
3398void TWPartitionManager::Setup_Super_Devices() {
3399 std::string superPart = Get_Super_Partition();
3400 android::fs_mgr::CreateLogicalPartitions(superPart);
bigbiff7ba75002020-04-11 20:47:09 -04003401}
3402
3403void TWPartitionManager::Setup_Super_Partition() {
bigbiffee7b7ff2020-03-23 15:08:27 -04003404 TWPartition* superPartition = new TWPartition();
bigbiff7ba75002020-04-11 20:47:09 -04003405 std::string superPart = Get_Super_Partition();
3406
3407 superPartition->Backup_Path = "/super";
3408 superPartition->Mount_Point = "/super";
bigbiffee7b7ff2020-03-23 15:08:27 -04003409 superPartition->Actual_Block_Device = superPart;
3410 superPartition->Alternate_Block_Device = superPart;
bigbiff998f8392021-08-06 19:19:33 -04003411 superPartition->Backup_Display_Name = "Super (";
3412 // Add first 4 items to fstab as logical that you would like to display in Backup_Display_Name
3413 // for the Super partition
3414 int list_size = Super_Partition_List.size();
3415 int orig_list_size = list_size;
3416 int max_display_size = 3; // total of 4 items since we start at 0
3417
3418 for (auto partition: Super_Partition_List) {
3419 superPartition->Backup_Display_Name = superPartition->Backup_Display_Name + partition;
3420 if ((orig_list_size - list_size) == max_display_size) {
3421 break;
3422 }
3423 if (list_size != 1)
3424 superPartition->Backup_Display_Name = superPartition->Backup_Display_Name + " ";
3425 list_size--;
3426 }
3427 superPartition->Backup_Display_Name += ")";
bigbiffee7b7ff2020-03-23 15:08:27 -04003428 superPartition->Can_Flash_Img = true;
bigbiffee7b7ff2020-03-23 15:08:27 -04003429 superPartition->Current_File_System = "emmc";
3430 superPartition->Can_Be_Backed_Up = true;
3431 superPartition->Is_Present = true;
3432 superPartition->Is_SubPartition = false;
bigbiff7ba75002020-04-11 20:47:09 -04003433 superPartition->Setup_Image();
bigbiffee7b7ff2020-03-23 15:08:27 -04003434 Add_Partition(superPartition);
3435 PartitionManager.Output_Partition(superPartition);
bigbiffee7b7ff2020-03-23 15:08:27 -04003436}
3437
3438bool TWPartitionManager::Get_Super_Status() {
bigbiffdf8436b2020-08-30 16:22:34 -04003439 std::string fastboot_mode = android::base::GetProperty("sys.usb.config", "");
3440 if (fastboot_mode == "fastboot") {
3441 return false;
3442 }
3443 else
3444 return access(Get_Super_Partition().c_str(), F_OK) == 0;
bigbiffee7b7ff2020-03-23 15:08:27 -04003445}
bigbiff25d25b92020-06-19 16:07:38 -04003446
3447bool TWPartitionManager::Recreate_Logs_Dir() {
3448#ifdef TW_INCLUDE_FBE
3449 struct passwd pd;
3450 struct passwd *pwdptr = &pd;
3451 struct passwd *tempPd;
3452 char pwdBuf[512];
3453 int uid = 0, gid = 0;
3454
3455 if ((getpwnam_r("system", pwdptr, pwdBuf, sizeof(pwdBuf), &tempPd)) != 0) {
3456 LOGERR("unable to get system user id\n");
3457 return false;
3458 } else {
3459 struct group grp;
3460 struct group *grpptr = &grp;
3461 struct group *tempGrp;
3462 char grpBuf[512];
3463
3464 if ((getgrnam_r("cache", grpptr, grpBuf, sizeof(grpBuf), &tempGrp)) != 0) {
3465 LOGERR("unable to get cache group id\n");
3466 return false;
3467 } else {
3468 uid = pd.pw_uid;
3469 gid = grp.gr_gid;
3470 std::string abLogsRecoveryDir(DATA_LOGS_DIR);
3471 abLogsRecoveryDir += "/recovery/";
3472
3473 if (!TWFunc::Create_Dir_Recursive(abLogsRecoveryDir, S_IRWXU | S_IRWXG | S_IWGRP | S_IXGRP, uid, gid)) {
3474 LOGERR("Unable to recreate %s\n", abLogsRecoveryDir.c_str());
3475 return false;
3476 }
3477 if (setfilecon(abLogsRecoveryDir.c_str(), "u:object_r:cache_file:s0") != 0) {
3478 LOGERR("Unable to set contexts for %s\n", abLogsRecoveryDir.c_str());
3479 return false;
3480 }
3481 }
3482 }
3483#endif
3484 return true;
3485}
bigbiff1f9e4842020-10-31 11:33:15 -04003486
3487void TWPartitionManager::Unlock_Block_Partitions() {
3488 int fd, OFF = 0;
3489
3490 const std::string block_path = "/dev/block/";
3491 DIR* d = opendir(block_path.c_str());
3492 if (d != NULL) {
3493 struct dirent* de;
3494 while ((de = readdir(d)) != NULL) {
3495 if (de->d_type == DT_BLK) {
3496 std::string block_device = block_path + de->d_name;
bigbiff1f9e4842020-10-31 11:33:15 -04003497 if ((fd = open(block_device.c_str(), O_RDONLY | O_CLOEXEC)) < 0) {
3498 LOGERR("unable to open block device %s: %s\n", block_device.c_str(), strerror(errno));
3499 continue;
3500 }
3501 if (ioctl(fd, BLKROSET, &OFF) == -1) {
3502 LOGERR("Unable to unlock %s for flashing: %s\n", block_device.c_str());
3503 continue;
3504 }
3505 close(fd);
3506 }
3507 }
3508 closedir(d);
3509 }
bigbiffaf253cd2020-12-06 16:50:55 -05003510}
bigbiffcfa875c2021-06-20 16:20:27 -04003511
3512bool TWPartitionManager::Unmap_Super_Devices() {
3513 bool destroyed = false;
3514#ifndef TW_EXCLUDE_APEX
3515 twrpApex apex;
3516 apex.Unmount();
3517#endif
3518 for (auto iter = Partitions.begin(); iter != Partitions.end();) {
3519 LOGINFO("Checking partition: %s\n", (*iter)->Get_Mount_Point().c_str());
3520 if ((*iter)->Is_Super) {
3521 TWPartition *part = *iter;
3522 std::string bare_partition_name = Get_Bare_Partition_Name((*iter)->Get_Mount_Point());
3523 std::string blk_device_partition = bare_partition_name + PartitionManager.Get_Active_Slot_Suffix();
3524 (*iter)->UnMount(false);
3525 LOGINFO("removing dynamic partition: %s\n", blk_device_partition.c_str());
3526 destroyed = DestroyLogicalPartition(blk_device_partition);
3527 std::string cow_partition = blk_device_partition + "-cow";
3528 std::string cow_partition_path = "/dev/block/mapper/" + cow_partition;
3529 struct stat st;
3530 if (lstat(cow_partition_path.c_str(), &st) == 0) {
3531 LOGINFO("removing cow partition: %s\n", cow_partition.c_str());
3532 destroyed = DestroyLogicalPartition(cow_partition);
3533 }
3534 rmdir((*iter)->Mount_Point.c_str());
3535 iter = Partitions.erase(iter);
3536 delete part;
3537 if (!destroyed) {
3538 return false;
3539 }
3540 } else {
3541 ++iter;
3542 }
3543 }
3544 return true;
3545}