blob: 269cf9830be3739b373ed67e1686a96909d4fa36 [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) {
162 if (fstab_line[0] != '/')
163 continue;
164
165 size_t line_size = strlen(fstab_line);
166 if (fstab_line[line_size - 1] != '\n')
167 fstab_line[line_size] = '\n';
168 Flags_Map line_flags;
169 line_flags.Primary_Block_Device = "";
170 line_flags.Alternate_Block_Device = "";
171 line_flags.fstab_line = (char*)malloc(MAX_FSTAB_LINE_LENGTH);
172 if (!line_flags.fstab_line) {
173 LOGERR("malloc error on line_flags.fstab_line\n");
174 return false;
175 }
176 memcpy(line_flags.fstab_line, fstab_line, MAX_FSTAB_LINE_LENGTH);
177 bool found_separator = false;
178 char *fs_loc = NULL;
179 char *block_loc = NULL;
180 char *flags_loc = NULL;
181 size_t index, item_index = 0;
182 for (index = 0; index < line_size; index++) {
183 if (fstab_line[index] <= 32) {
184 fstab_line[index] = '\0';
185 found_separator = true;
186 } else if (found_separator) {
187 if (item_index == 0) {
188 fs_loc = fstab_line + index;
189 } else if (item_index == 1) {
190 block_loc = fstab_line + index;
191 } else if (item_index > 1) {
192 char *ptr = fstab_line + index;
193 if (*ptr == '/') {
194 line_flags.Alternate_Block_Device = ptr;
195 } else if (strlen(ptr) > strlen("flags=") && strncmp(ptr, "flags=", strlen("flags=")) == 0) {
196 flags_loc = ptr;
197 // Once we find the flags=, we're done scanning the line
198 break;
199 }
200 }
201 found_separator = false;
202 item_index++;
203 }
204 }
205 if (block_loc)
206 line_flags.Primary_Block_Device = block_loc;
207 if (fs_loc)
208 line_flags.File_System = fs_loc;
209 if (flags_loc)
210 line_flags.Flags = flags_loc;
211 string Mount_Point = fstab_line;
212 twrp_flags[Mount_Point] = line_flags;
213 memset(fstab_line, 0, sizeof(fstab_line));
214 }
215 fclose(fstabFile);
216 }
Dees_Troy5bf43922012-09-07 16:07:55 -0400217
218 fstabFile = fopen(Fstab_Filename.c_str(), "rt");
219 if (fstabFile == NULL) {
Dees_Troy2673cec2013-04-02 20:22:16 +0000220 LOGERR("Critical Error: Unable to open fstab at '%s'.\n", Fstab_Filename.c_str());
Dees_Troy5bf43922012-09-07 16:07:55 -0400221 return false;
Ethan Yonker6e8c27a2016-12-22 17:55:57 -0600222 } else
223 LOGINFO("Reading %s\n", Fstab_Filename.c_str());
Dees_Troy5bf43922012-09-07 16:07:55 -0400224
225 while (fgets(fstab_line, sizeof(fstab_line), fstabFile) != NULL) {
bigbiffee7b7ff2020-03-23 15:08:27 -0400226 bool isSuper = Is_Super_Partition(fstab_line);
227
228 if (!isSuper && fstab_line[0] != '/')
Dees_Troy5bf43922012-09-07 16:07:55 -0400229 continue;
230
Ethan Yonker6e8c27a2016-12-22 17:55:57 -0600231 if (strstr(fstab_line, "swap"))
232 continue; // Skip swap in recovery
233
234 size_t line_size = strlen(fstab_line);
235 if (fstab_line[line_size - 1] != '\n')
236 fstab_line[line_size] = '\n';
Dees_Troy2a923582012-09-20 12:13:34 -0400237
Matt Mower2b2dd152016-04-26 11:24:08 -0500238 TWPartition* partition = new TWPartition();
bigbiff8da46fa2020-09-08 16:42:34 -0400239 if (partition->Process_Fstab_Line(fstab_line, Display_Error, &twrp_flags))
Ethan Yonkerc05c5982014-03-13 09:19:56 -0500240 Partitions.push_back(partition);
Matt Mower72c87ce2016-04-26 14:34:56 -0500241 else
Dees_Troy5bf43922012-09-07 16:07:55 -0400242 delete partition;
Matt Mower2b2dd152016-04-26 11:24:08 -0500243
244 memset(fstab_line, 0, sizeof(fstab_line));
Dees_Troy5bf43922012-09-07 16:07:55 -0400245 }
246 fclose(fstabFile);
Matt Mower72c87ce2016-04-26 14:34:56 -0500247
Ethan Yonker6e8c27a2016-12-22 17:55:57 -0600248 if (twrp_flags.size() > 0) {
249 LOGINFO("Processing remaining twrp.flags\n");
250 // Add any items from twrp.flags that did not exist in the recovery.fstab
251 for (std::map<string, Flags_Map>::iterator mapit=twrp_flags.begin(); mapit!=twrp_flags.end(); mapit++) {
252 if (Find_Partition_By_Path(mapit->first) == NULL) {
253 TWPartition* partition = new TWPartition();
bigbiff8da46fa2020-09-08 16:42:34 -0400254 if (partition->Process_Fstab_Line(mapit->second.fstab_line, Display_Error, NULL))
Ethan Yonker6e8c27a2016-12-22 17:55:57 -0600255 Partitions.push_back(partition);
256 else
257 delete partition;
258 }
259 if (mapit->second.fstab_line)
260 free(mapit->second.fstab_line);
261 mapit->second.fstab_line = NULL;
262 }
263 }
Mohd Faraze3948ec2020-08-14 01:40:59 +0000264 if (Get_Super_Status()) {
265 Setup_Super_Devices();
266 }
Ethan Yonker6e8c27a2016-12-22 17:55:57 -0600267 LOGINFO("Done processing fstab files\n");
268
Matt Mower72c87ce2016-04-26 14:34:56 -0500269 std::vector<TWPartition*>::iterator iter;
270 for (iter = Partitions.begin(); iter != Partitions.end(); iter++) {
271 (*iter)->Partition_Post_Processing(Display_Error);
272
273 if ((*iter)->Is_Storage) {
274 ++storageid;
275 (*iter)->MTP_Storage_ID = storageid;
276 }
277
278 if (!settings_partition && (*iter)->Is_Settings_Storage && (*iter)->Is_Present)
279 settings_partition = (*iter);
280 else
281 (*iter)->Is_Settings_Storage = false;
282
283 if (!andsec_partition && (*iter)->Has_Android_Secure && (*iter)->Is_Present)
284 andsec_partition = (*iter);
285 else
286 (*iter)->Has_Android_Secure = false;
bigbiffdf8436b2020-08-30 16:22:34 -0400287
bigbiffcfa875c2021-06-20 16:20:27 -0400288 if (Is_Super_Partition(TWFunc::Remove_Beginning_Slash((*iter)->Get_Mount_Point()).c_str())) {
Mohd Faraze3948ec2020-08-14 01:40:59 +0000289 Prepare_Super_Volume((*iter));
bigbiffcfa875c2021-06-20 16:20:27 -0400290 }
Mohd Faraze3948ec2020-08-14 01:40:59 +0000291 }
292
293 //Setup Apex before decryption
294 TWPartition* sys = PartitionManager.Find_Partition_By_Path(PartitionManager.Get_Android_Root_Path());
295 TWPartition* ven = PartitionManager.Find_Partition_By_Path("/vendor");
296 if (sys) {
297 if (sys->Get_Super_Status()) {
298 sys->Mount(true);
299 if (ven) {
300 ven->Mount(true);
301 }
bigbiff79924302021-05-02 20:06:09 -0400302#ifdef TW_EXCLUDE_APEX
303 LOGINFO("Apex is disabled in this build\n");
304#else
Mohd Faraze3948ec2020-08-14 01:40:59 +0000305 twrpApex apex;
306 if (!apex.loadApexImages()) {
307 LOGERR("Unable to load apex images from %s\n", APEX_DIR);
308 property_set("twrp.apex.loaded", "false");
309 } else {
310 property_set("twrp.apex.loaded", "true");
311 }
Mohd Farazd9e66712020-10-28 20:42:57 +0530312 TWFunc::check_and_run_script("/sbin/resyncapex.sh", "apex");
bigbiff79924302021-05-02 20:06:09 -0400313#endif
Mohd Faraze3948ec2020-08-14 01:40:59 +0000314 }
Matt Mower72c87ce2016-04-26 14:34:56 -0500315 }
Mohd Faraz9a4ef262020-10-18 23:58:21 +0530316#ifndef USE_VENDOR_LIBS
317 if (ven)
318 ven->UnMount(true);
319 if (sys)
320 sys->UnMount(true);
321#endif
Matt Mower72c87ce2016-04-26 14:34:56 -0500322
Ethan Yonker6277c792014-09-15 14:54:30 -0500323 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) {
324 // Attempt to automatically identify /data/media emulated storage devices
325 TWPartition* Dat = Find_Partition_By_Path("/data");
326 if (Dat) {
327 LOGINFO("Using automatic handling for /data/media emulated storage device.\n");
328 datamedia = true;
that9e0593e2014-10-08 00:01:24 +0200329 Dat->Setup_Data_Media();
Ethan Yonker6277c792014-09-15 14:54:30 -0500330 settings_partition = Dat;
Ethan Yonker726a0202014-12-16 20:01:38 -0600331 // Since /data was not considered a storage partition earlier, we still need to assign an MTP ID
332 ++storageid;
333 Dat->MTP_Storage_ID = storageid;
Ethan Yonker6277c792014-09-15 14:54:30 -0500334 }
335 }
Dees Troy02a64532014-03-19 15:23:32 +0000336 if (!settings_partition) {
Dees_Troya13d74f2013-03-24 08:54:55 -0500337 for (iter = Partitions.begin(); iter != Partitions.end(); iter++) {
338 if ((*iter)->Is_Storage) {
Dees Troy02a64532014-03-19 15:23:32 +0000339 settings_partition = (*iter);
Dees_Troya13d74f2013-03-24 08:54:55 -0500340 break;
341 }
342 }
Dees Troy02a64532014-03-19 15:23:32 +0000343 if (!settings_partition)
Dees_Troy2673cec2013-04-02 20:22:16 +0000344 LOGERR("Unable to locate storage partition for storing settings file.\n");
Dees_Troya13d74f2013-03-24 08:54:55 -0500345 }
Dees_Troy5bf43922012-09-07 16:07:55 -0400346 if (!Write_Fstab()) {
347 if (Display_Error)
Dees_Troy2673cec2013-04-02 20:22:16 +0000348 LOGERR("Error creating fstab\n");
Dees_Troy5bf43922012-09-07 16:07:55 -0400349 else
Dees_Troy2673cec2013-04-02 20:22:16 +0000350 LOGINFO("Error creating fstab\n");
Dees_Troy5bf43922012-09-07 16:07:55 -0400351 }
Matt Mowered71fa32014-04-16 13:21:47 -0500352
Matt Mowerbf4efa32014-04-14 23:25:26 -0500353 if (andsec_partition) {
354 Setup_Android_Secure_Location(andsec_partition);
Matt Mowered71fa32014-04-16 13:21:47 -0500355 } else if (settings_partition) {
Matt Mowerbf4efa32014-04-14 23:25:26 -0500356 Setup_Android_Secure_Location(settings_partition);
357 }
Matt Mowered71fa32014-04-16 13:21:47 -0500358 if (settings_partition) {
359 Setup_Settings_Storage_Partition(settings_partition);
360 }
bigbiff7ba75002020-04-11 20:47:09 -0400361
Mohd Faraze3948ec2020-08-14 01:40:59 +0000362#ifdef TW_INCLUDE_CRYPTO
363 DataManager::SetValue(TW_IS_ENCRYPTED, 1);
364 Decrypt_Data();
365#endif
366
Mohd Faraze3948ec2020-08-14 01:40:59 +0000367 if (Get_Super_Status())
368 Setup_Super_Partition();
bigbiff7ba75002020-04-11 20:47:09 -0400369 UnMount_Main_Partitions();
370#ifdef AB_OTA_UPDATER
371 DataManager::SetValue("tw_active_slot", Get_Active_Slot_Display());
372#endif
373 setup_uevent();
374 return true;
375}
376
377int TWPartitionManager::Write_Fstab(void) {
378 FILE *fp;
379 std::vector<TWPartition*>::iterator iter;
380 string Line;
381
382 fp = fopen("/etc/fstab", "w");
383 if (fp == NULL) {
384 LOGINFO("Can not open /etc/fstab.\n");
385 return false;
386 }
387 for (iter = Partitions.begin(); iter != Partitions.end(); iter++) {
388 if ((*iter)->Can_Be_Mounted) {
Mohd Faraz2a1e3752020-09-30 10:55:48 +0530389 Line = (*iter)->Actual_Block_Device + " " + (*iter)->Mount_Point + " " + (*iter)->Current_File_System +
390 ((*iter)->Mount_Read_Only ? " ro " : " rw ") + "0 0\n";
bigbiff7ba75002020-04-11 20:47:09 -0400391 fputs(Line.c_str(), fp);
392 }
393 // Handle subpartition tracking
394 if ((*iter)->Is_SubPartition) {
395 TWPartition* ParentPartition = Find_Partition_By_Path((*iter)->SubPartition_Of);
396 if (ParentPartition)
397 ParentPartition->Has_SubPartition = true;
398 else
399 LOGERR("Unable to locate parent partition '%s' of '%s'\n", (*iter)->SubPartition_Of.c_str(), (*iter)->Mount_Point.c_str());
400 }
401 }
402 fclose(fp);
403 return true;
404}
405
406void TWPartitionManager::Decrypt_Data() {
407 #ifdef TW_INCLUDE_CRYPTO
Ethan Yonkercceebb82014-11-18 10:17:59 -0600408 TWPartition* Decrypt_Data = Find_Partition_By_Path("/data");
409 if (Decrypt_Data && Decrypt_Data->Is_Encrypted && !Decrypt_Data->Is_Decrypted) {
nebrassyf74255e2020-10-24 21:08:20 +0200410 property_set("ro.crypto.state", "encrypted");
Ethan Yonker93382822018-11-01 15:25:31 -0500411 if (!Decrypt_Data->Key_Directory.empty() && Mount_By_Path(Decrypt_Data->Key_Directory, false)) {
nebrassyf74255e2020-10-24 21:08:20 +0200412 property_set("ro.crypto.type", "file");
Ethan Yonker93382822018-11-01 15:25:31 -0500413#ifdef TW_INCLUDE_FBE_METADATA_DECRYPT
bigbiff7ba75002020-04-11 20:47:09 -0400414#ifdef USE_FSCRYPT
415 if (fscrypt_mount_metadata_encrypted(Decrypt_Data->Actual_Block_Device, Decrypt_Data->Mount_Point, false)) {
bigbiffa957f072021-03-07 18:20:29 -0500416 std::string crypto_blkdev = android::base::GetProperty("ro.crypto.fs_crypto_blkdev", "error");
Mohd Faraze3948ec2020-08-14 01:40:59 +0000417 Decrypt_Data->Decrypted_Block_Device = crypto_blkdev;
bigbiff7ba75002020-04-11 20:47:09 -0400418 LOGINFO("Successfully decrypted metadata encrypted data partition with new block device: '%s'\n", crypto_blkdev.c_str());
bigbiff7ba75002020-04-11 20:47:09 -0400419#endif
Ethan Yonker93382822018-11-01 15:25:31 -0500420 Decrypt_Data->Is_Decrypted = true; // Needed to make the mount function work correctly
421 int retry_count = 10;
422 while (!Decrypt_Data->Mount(false) && --retry_count)
423 usleep(500);
424 if (Decrypt_Data->Mount(false)) {
bigbiff bigbiff0be03b32019-08-27 20:50:31 -0400425 if (!Decrypt_Data->Decrypt_FBE_DE()) {
mauronofriofc79aa62019-11-23 23:13:04 +0100426 char wrappedvalue[PROPERTY_VALUE_MAX];
427 property_get("fbe.data.wrappedkey", wrappedvalue, "");
428 std::string wrappedkeyvalue(wrappedvalue);
429 if (wrappedkeyvalue == "true") {
bigbiff bigbiff0be03b32019-08-27 20:50:31 -0400430 LOGERR("Unable to decrypt FBE device\n");
mauronofriofc79aa62019-11-23 23:13:04 +0100431 } else {
432 LOGINFO("Trying wrapped key.\n");
433 property_set("fbe.data.wrappedkey", "true");
434 if (!Decrypt_Data->Decrypt_FBE_DE()) {
435 LOGERR("Unable to decrypt FBE device\n");
436 }
bigbiff bigbiff0be03b32019-08-27 20:50:31 -0400437 }
438 }
439
Ethan Yonker93382822018-11-01 15:25:31 -0500440 } else {
441 LOGINFO("Failed to mount data after metadata decrypt\n");
442 }
443 } else {
444 LOGINFO("Unable to decrypt metadata encryption\n");
445 }
446#else
447 LOGERR("Metadata FBE decrypt support not present in this TWRP\n");
448#endif
449 }
Ethan Yonkerbd7492d2016-12-07 13:55:01 -0600450 if (Decrypt_Data->Is_FBE) {
451 if (DataManager::GetIntValue(TW_CRYPTO_PWTYPE) == 0) {
452 if (Decrypt_Device("!") == 0) {
453 gui_msg("decrypt_success=Successfully decrypted with default password.");
454 DataManager::SetValue(TW_IS_ENCRYPTED, 0);
455 } else {
456 gui_err("unable_to_decrypt=Unable to decrypt with default password.");
457 }
Ethan Yonkercceebb82014-11-18 10:17:59 -0600458 }
459 } else {
bigbiffbbbfe172021-05-30 15:52:41 -0400460 LOGINFO("FBE setup failed. Trying FDE...");
Captain Throwback18aea272020-10-29 12:43:17 -0400461 Set_FDE_Encrypt_Status();
Ethan Yonkerbd7492d2016-12-07 13:55:01 -0600462 int password_type = cryptfs_get_password_type();
463 if (password_type == CRYPT_TYPE_DEFAULT) {
464 LOGINFO("Device is encrypted with the default password, attempting to decrypt.\n");
465 if (Decrypt_Device("default_password") == 0) {
466 gui_msg("decrypt_success=Successfully decrypted with default password.");
467 DataManager::SetValue(TW_IS_ENCRYPTED, 0);
468 } else {
469 gui_err("unable_to_decrypt=Unable to decrypt with default password.");
470 }
471 } else {
472 DataManager::SetValue("TW_CRYPTO_TYPE", password_type);
Noah Jacobson81d638d2019-04-28 00:10:07 -0400473 DataManager::SetValue("tw_crypto_pwtype_0", password_type);
Ethan Yonkerbd7492d2016-12-07 13:55:01 -0600474 }
Ethan Yonkercceebb82014-11-18 10:17:59 -0600475 }
476 }
Noah Jacobson81d638d2019-04-28 00:10:07 -0400477 if (Decrypt_Data && (!Decrypt_Data->Is_Encrypted || Decrypt_Data->Is_Decrypted) &&
478 Decrypt_Data->Mount(false)) {
Ethan Yonker66a19492015-12-10 10:19:45 -0600479 Decrypt_Adopted();
480 }
Ethan Yonkercceebb82014-11-18 10:17:59 -0600481#endif
Dees_Troy51a0e822012-09-05 15:24:24 -0400482}
483
Ethan Yonkerc05c5982014-03-13 09:19:56 -0500484void TWPartitionManager::Setup_Settings_Storage_Partition(TWPartition* Part) {
Ethan Yonkerc05c5982014-03-13 09:19:56 -0500485 DataManager::SetValue("tw_settings_path", Part->Storage_Path);
486 DataManager::SetValue("tw_storage_path", Part->Storage_Path);
487 LOGINFO("Settings storage is '%s'\n", Part->Storage_Path.c_str());
488}
489
Matt Mowerbf4efa32014-04-14 23:25:26 -0500490void TWPartitionManager::Setup_Android_Secure_Location(TWPartition* Part) {
491 if (Part->Has_Android_Secure)
492 Part->Setup_AndSec();
Ethan Yonker6277c792014-09-15 14:54:30 -0500493 else if (!datamedia)
Matt Mowerbf4efa32014-04-14 23:25:26 -0500494 Part->Setup_AndSec();
Matt Mowerbf4efa32014-04-14 23:25:26 -0500495}
496
Dees_Troy8170a922012-09-18 15:40:25 -0400497void TWPartitionManager::Output_Partition_Logging(void) {
498 std::vector<TWPartition*>::iterator iter;
499
500 printf("\n\nPartition Logs:\n");
501 for (iter = Partitions.begin(); iter != Partitions.end(); iter++)
502 Output_Partition((*iter));
503}
504
505void TWPartitionManager::Output_Partition(TWPartition* Part) {
506 unsigned long long mb = 1048576;
507
Gary Peck004d48b2012-11-21 16:28:18 -0800508 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 -0400509 if (Part->Can_Be_Mounted) {
Gary Peck004d48b2012-11-21 16:28:18 -0800510 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 -0400511 }
Gary Peck004d48b2012-11-21 16:28:18 -0800512 printf("\n Flags: ");
Dees_Troya13d74f2013-03-24 08:54:55 -0500513 if (Part->Can_Be_Mounted)
514 printf("Can_Be_Mounted ");
Gary Peck004d48b2012-11-21 16:28:18 -0800515 if (Part->Can_Be_Wiped)
516 printf("Can_Be_Wiped ");
Hashcodedabfd492013-08-29 22:45:30 -0700517 if (Part->Use_Rm_Rf)
518 printf("Use_Rm_Rf ");
Dees_Troya13d74f2013-03-24 08:54:55 -0500519 if (Part->Can_Be_Backed_Up)
520 printf("Can_Be_Backed_Up ");
Gary Peck004d48b2012-11-21 16:28:18 -0800521 if (Part->Wipe_During_Factory_Reset)
522 printf("Wipe_During_Factory_Reset ");
523 if (Part->Wipe_Available_in_GUI)
524 printf("Wipe_Available_in_GUI ");
525 if (Part->Is_SubPartition)
526 printf("Is_SubPartition ");
527 if (Part->Has_SubPartition)
528 printf("Has_SubPartition ");
529 if (Part->Removable)
530 printf("Removable ");
531 if (Part->Is_Present)
532 printf("IsPresent ");
533 if (Part->Can_Be_Encrypted)
534 printf("Can_Be_Encrypted ");
535 if (Part->Is_Encrypted)
536 printf("Is_Encrypted ");
537 if (Part->Is_Decrypted)
538 printf("Is_Decrypted ");
539 if (Part->Has_Data_Media)
540 printf("Has_Data_Media ");
Dees_Troy83bd4832013-05-04 12:39:56 +0000541 if (Part->Can_Encrypt_Backup)
542 printf("Can_Encrypt_Backup ");
543 if (Part->Use_Userdata_Encryption)
544 printf("Use_Userdata_Encryption ");
Gary Peck004d48b2012-11-21 16:28:18 -0800545 if (Part->Has_Android_Secure)
546 printf("Has_Android_Secure ");
547 if (Part->Is_Storage)
548 printf("Is_Storage ");
Dees_Troya13d74f2013-03-24 08:54:55 -0500549 if (Part->Is_Settings_Storage)
550 printf("Is_Settings_Storage ");
Dees_Troy68cab492012-12-12 19:29:35 +0000551 if (Part->Ignore_Blkid)
552 printf("Ignore_Blkid ");
Ethan Yonker253368a2014-11-25 15:00:52 -0600553 if (Part->Mount_To_Decrypt)
554 printf("Mount_To_Decrypt ");
Ethan Yonker96af84a2015-01-05 14:58:36 -0600555 if (Part->Can_Flash_Img)
556 printf("Can_Flash_Img ");
Ethan Yonker66a19492015-12-10 10:19:45 -0600557 if (Part->Is_Adopted_Storage)
558 printf("Is_Adopted_Storage ");
Ethan Yonker1b190162016-12-05 15:25:19 -0600559 if (Part->SlotSelect)
560 printf("SlotSelect ");
Ethan Yonker6e8c27a2016-12-22 17:55:57 -0600561 if (Part->Mount_Read_Only)
562 printf("Mount_Read_Only ");
bigbiffcfa875c2021-06-20 16:20:27 -0400563 if (Part->Is_Super)
564 printf("Is_Super ");
Gary Peck004d48b2012-11-21 16:28:18 -0800565 printf("\n");
566 if (!Part->SubPartition_Of.empty())
567 printf(" SubPartition_Of: %s\n", Part->SubPartition_Of.c_str());
568 if (!Part->Symlink_Path.empty())
569 printf(" Symlink_Path: %s\n", Part->Symlink_Path.c_str());
570 if (!Part->Symlink_Mount_Point.empty())
571 printf(" Symlink_Mount_Point: %s\n", Part->Symlink_Mount_Point.c_str());
572 if (!Part->Primary_Block_Device.empty())
573 printf(" Primary_Block_Device: %s\n", Part->Primary_Block_Device.c_str());
574 if (!Part->Alternate_Block_Device.empty())
575 printf(" Alternate_Block_Device: %s\n", Part->Alternate_Block_Device.c_str());
576 if (!Part->Decrypted_Block_Device.empty())
577 printf(" Decrypted_Block_Device: %s\n", Part->Decrypted_Block_Device.c_str());
dianlujitao4879b372018-12-03 18:45:47 +0800578 if (!Part->Crypto_Key_Location.empty())
Ethan Yonker253368a2014-11-25 15:00:52 -0600579 printf(" Crypto_Key_Location: %s\n", Part->Crypto_Key_Location.c_str());
Gary Peck004d48b2012-11-21 16:28:18 -0800580 if (Part->Length != 0)
581 printf(" Length: %i\n", Part->Length);
582 if (!Part->Display_Name.empty())
583 printf(" Display_Name: %s\n", Part->Display_Name.c_str());
Dees_Troya13d74f2013-03-24 08:54:55 -0500584 if (!Part->Storage_Name.empty())
585 printf(" Storage_Name: %s\n", Part->Storage_Name.c_str());
Gary Peck004d48b2012-11-21 16:28:18 -0800586 if (!Part->Backup_Path.empty())
587 printf(" Backup_Path: %s\n", Part->Backup_Path.c_str());
588 if (!Part->Backup_Name.empty())
589 printf(" Backup_Name: %s\n", Part->Backup_Name.c_str());
Dees_Troya13d74f2013-03-24 08:54:55 -0500590 if (!Part->Backup_Display_Name.empty())
591 printf(" Backup_Display_Name: %s\n", Part->Backup_Display_Name.c_str());
Gary Peck004d48b2012-11-21 16:28:18 -0800592 if (!Part->Backup_FileName.empty())
593 printf(" Backup_FileName: %s\n", Part->Backup_FileName.c_str());
594 if (!Part->Storage_Path.empty())
595 printf(" Storage_Path: %s\n", Part->Storage_Path.c_str());
596 if (!Part->Current_File_System.empty())
597 printf(" Current_File_System: %s\n", Part->Current_File_System.c_str());
598 if (!Part->Fstab_File_System.empty())
599 printf(" Fstab_File_System: %s\n", Part->Fstab_File_System.c_str());
600 if (Part->Format_Block_Size != 0)
Ethan Yonkerc798c9c2015-10-09 11:15:26 -0500601 printf(" Format_Block_Size: %lu\n", Part->Format_Block_Size);
Dees_Troy094207a2012-09-26 12:00:39 -0400602 if (!Part->MTD_Name.empty())
603 printf(" MTD_Name: %s\n", Part->MTD_Name.c_str());
Matt Mower029a82d2017-01-08 13:12:38 -0600604 printf(" Backup_Method: %s\n", Part->Backup_Method_By_Name().c_str());
Hashcode62bd9e02013-11-19 21:59:42 -0800605 if (Part->Mount_Flags || !Part->Mount_Options.empty())
Ethan Yonker6e8c27a2016-12-22 17:55:57 -0600606 printf(" Mount_Flags: %i, Mount_Options: %s\n", Part->Mount_Flags, Part->Mount_Options.c_str());
Ethan Yonker726a0202014-12-16 20:01:38 -0600607 if (Part->MTP_Storage_ID)
608 printf(" MTP_Storage_ID: %i\n", Part->MTP_Storage_ID);
Ethan Yonker93382822018-11-01 15:25:31 -0500609 if (!Part->Key_Directory.empty())
610 printf(" Metadata Key Directory: %s\n", Part->Key_Directory.c_str());
Ethan Yonker6277c792014-09-15 14:54:30 -0500611 printf("\n");
Dees_Troy8170a922012-09-18 15:40:25 -0400612}
613
Dees_Troy51a0e822012-09-05 15:24:24 -0400614int TWPartitionManager::Mount_By_Path(string Path, bool Display_Error) {
Dees_Troy5bf43922012-09-07 16:07:55 -0400615 std::vector<TWPartition*>::iterator iter;
616 int ret = false;
617 bool found = false;
Dees_Troy38bd7602012-09-14 13:33:53 -0400618 string Local_Path = TWFunc::Get_Root_Path(Path);
Dees_Troy5bf43922012-09-07 16:07:55 -0400619
bigbiffd58ba182020-03-23 10:02:29 -0400620 if (Local_Path == "/tmp" || Local_Path == "/")
Dees_Troy43d8b002012-09-17 16:00:01 -0400621 return true;
622
Dees_Troy5bf43922012-09-07 16:07:55 -0400623 // Iterate through all partitions
624 for (iter = Partitions.begin(); iter != Partitions.end(); iter++) {
Dees_Troy657c3092012-09-10 20:32:10 -0400625 if ((*iter)->Mount_Point == Local_Path || (!(*iter)->Symlink_Mount_Point.empty() && (*iter)->Symlink_Mount_Point == Local_Path)) {
Dees_Troy5bf43922012-09-07 16:07:55 -0400626 ret = (*iter)->Mount(Display_Error);
627 found = true;
Dees_Troy51127312012-09-08 13:08:49 -0400628 } else if ((*iter)->Is_SubPartition && (*iter)->SubPartition_Of == Local_Path) {
Dees_Troy5bf43922012-09-07 16:07:55 -0400629 (*iter)->Mount(Display_Error);
Dees_Troy51127312012-09-08 13:08:49 -0400630 }
Dees_Troy5bf43922012-09-07 16:07:55 -0400631 }
632 if (found) {
633 return ret;
634 } else if (Display_Error) {
Ethan Yonker74db1572015-10-28 12:44:49 -0500635 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 -0400636 } else {
Dees_Troy2673cec2013-04-02 20:22:16 +0000637 LOGINFO("Mount: Unable to find partition for path '%s'\n", Local_Path.c_str());
Dees_Troy5bf43922012-09-07 16:07:55 -0400638 }
639 return false;
Dees_Troy51a0e822012-09-05 15:24:24 -0400640}
641
Dees_Troy51a0e822012-09-05 15:24:24 -0400642int TWPartitionManager::UnMount_By_Path(string Path, bool Display_Error) {
Dees_Troy51127312012-09-08 13:08:49 -0400643 std::vector<TWPartition*>::iterator iter;
644 int ret = false;
645 bool found = false;
Dees_Troy38bd7602012-09-14 13:33:53 -0400646 string Local_Path = TWFunc::Get_Root_Path(Path);
Dees_Troy51127312012-09-08 13:08:49 -0400647
648 // Iterate through all partitions
649 for (iter = Partitions.begin(); iter != Partitions.end(); iter++) {
Dees_Troy657c3092012-09-10 20:32:10 -0400650 if ((*iter)->Mount_Point == Local_Path || (!(*iter)->Symlink_Mount_Point.empty() && (*iter)->Symlink_Mount_Point == Local_Path)) {
Dees_Troy51127312012-09-08 13:08:49 -0400651 ret = (*iter)->UnMount(Display_Error);
652 found = true;
653 } else if ((*iter)->Is_SubPartition && (*iter)->SubPartition_Of == Local_Path) {
654 (*iter)->UnMount(Display_Error);
655 }
656 }
657 if (found) {
658 return ret;
659 } else if (Display_Error) {
Ethan Yonker74db1572015-10-28 12:44:49 -0500660 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 -0400661 } else {
Dees_Troy2673cec2013-04-02 20:22:16 +0000662 LOGINFO("UnMount: Unable to find partition for path '%s'\n", Local_Path.c_str());
Dees_Troy51127312012-09-08 13:08:49 -0400663 }
664 return false;
Dees_Troy51a0e822012-09-05 15:24:24 -0400665}
666
Dees_Troy51a0e822012-09-05 15:24:24 -0400667int TWPartitionManager::Is_Mounted_By_Path(string Path) {
Dees_Troy51127312012-09-08 13:08:49 -0400668 TWPartition* Part = Find_Partition_By_Path(Path);
669
670 if (Part)
671 return Part->Is_Mounted();
672 else
Dees_Troy2673cec2013-04-02 20:22:16 +0000673 LOGINFO("Is_Mounted: Unable to find partition for path '%s'\n", Path.c_str());
Dees_Troy51127312012-09-08 13:08:49 -0400674 return false;
Dees_Troy51a0e822012-09-05 15:24:24 -0400675}
676
Dees_Troy5bf43922012-09-07 16:07:55 -0400677int TWPartitionManager::Mount_Current_Storage(bool Display_Error) {
Dees_Troy51127312012-09-08 13:08:49 -0400678 string current_storage_path = DataManager::GetCurrentStoragePath();
679
680 if (Mount_By_Path(current_storage_path, Display_Error)) {
681 TWPartition* FreeStorage = Find_Partition_By_Path(current_storage_path);
682 if (FreeStorage)
683 DataManager::SetValue(TW_STORAGE_FREE_SIZE, (int)(FreeStorage->Free / 1048576LLU));
684 return true;
685 }
686 return false;
Dees_Troy51a0e822012-09-05 15:24:24 -0400687}
688
Dees_Troy5bf43922012-09-07 16:07:55 -0400689int TWPartitionManager::Mount_Settings_Storage(bool Display_Error) {
690 return Mount_By_Path(DataManager::GetSettingsStoragePath(), Display_Error);
691}
692
Ethan Yonker6e8c27a2016-12-22 17:55:57 -0600693TWPartition* TWPartitionManager::Find_Partition_By_Path(const string& Path) {
Dees_Troy5bf43922012-09-07 16:07:55 -0400694 std::vector<TWPartition*>::iterator iter;
Dees_Troy38bd7602012-09-14 13:33:53 -0400695 string Local_Path = TWFunc::Get_Root_Path(Path);
Dees_Troy5bf43922012-09-07 16:07:55 -0400696
dianlujitaob76a73a2020-04-30 20:33:20 +0800697 if (Local_Path == "/system")
698 Local_Path = Get_Android_Root_Path();
Dees_Troy5bf43922012-09-07 16:07:55 -0400699 for (iter = Partitions.begin(); iter != Partitions.end(); iter++) {
Dees_Troy657c3092012-09-10 20:32:10 -0400700 if ((*iter)->Mount_Point == Local_Path || (!(*iter)->Symlink_Mount_Point.empty() && (*iter)->Symlink_Mount_Point == Local_Path))
Dees_Troy5bf43922012-09-07 16:07:55 -0400701 return (*iter);
702 }
Dees_Troy51a0e822012-09-05 15:24:24 -0400703 return NULL;
704}
705
Ethan Yonker6e8c27a2016-12-22 17:55:57 -0600706TWPartition* TWPartitionManager::Find_Partition_By_Block_Device(const string& Block_Device) {
707 std::vector<TWPartition*>::iterator iter;
708
709 for (iter = Partitions.begin(); iter != Partitions.end(); iter++) {
710 if ((*iter)->Primary_Block_Device == Block_Device || (!(*iter)->Actual_Block_Device.empty() && (*iter)->Actual_Block_Device == Block_Device))
711 return (*iter);
712 }
713 return NULL;
714}
715
Ethan Yonker53796e72019-01-11 22:49:52 -0600716int TWPartitionManager::Check_Backup_Name(const std::string& Backup_Name, bool Display_Error, bool Must_Be_Unique) {
Dees_Troyc9ff7a32012-09-27 10:09:41 -0400717 // Check the backup name to ensure that it is the correct size and contains only valid characters
718 // and that a backup with that name doesn't already exist
719 char backup_name[MAX_BACKUP_NAME_LEN];
720 char backup_loc[255], tw_image_dir[255];
721 int copy_size;
722 int index, cur_char;
Ethan Yonker53796e72019-01-11 22:49:52 -0600723 string Backup_Loc;
Dees_Troyc9ff7a32012-09-27 10:09:41 -0400724
Dees_Troyc9ff7a32012-09-27 10:09:41 -0400725 copy_size = Backup_Name.size();
726 // Check size
727 if (copy_size > MAX_BACKUP_NAME_LEN) {
728 if (Display_Error)
Ethan Yonker74db1572015-10-28 12:44:49 -0500729 gui_err("backup_name_len=Backup name is too long.");
Dees_Troyc9ff7a32012-09-27 10:09:41 -0400730 return -2;
731 }
732
733 // Check each character
734 strncpy(backup_name, Backup_Name.c_str(), copy_size);
Dees_Troya13d74f2013-03-24 08:54:55 -0500735 if (copy_size == 1 && strncmp(backup_name, "0", 1) == 0)
Dees_Troyc9ff7a32012-09-27 10:09:41 -0400736 return 0; // A "0" (zero) means to use the current timestamp for the backup name
737 for (index=0; index<copy_size; index++) {
738 cur_char = (int)backup_name[index];
Matt Mowerfb1c4ff2014-04-16 13:43:36 -0500739 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 -0400740 // These are valid characters
741 // Numbers
742 // Upper case letters
743 // Lower case letters
744 // Space
745 // and -_.{}[]
746 } else {
747 if (Display_Error)
Ethan Yonker4adc33e2016-01-22 16:07:11 -0600748 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 -0400749 return -3;
750 }
751 }
752
Ethan Yonker53796e72019-01-11 22:49:52 -0600753 if (Must_Be_Unique) {
754 // Check to make sure that a backup with this name doesn't already exist
755 DataManager::GetValue(TW_BACKUPS_FOLDER_VAR, Backup_Loc);
756 strcpy(backup_loc, Backup_Loc.c_str());
757 sprintf(tw_image_dir,"%s/%s", backup_loc, Backup_Name.c_str());
758 if (TWFunc::Path_Exists(tw_image_dir)) {
759 if (Display_Error)
760 gui_err("backup_name_exists=A backup with that name already exists!");
bigbiffce8f83c2015-12-12 18:30:21 -0500761
Ethan Yonker53796e72019-01-11 22:49:52 -0600762 return -4;
763 }
764 // Backup is unique
Dees_Troyc9ff7a32012-09-27 10:09:41 -0400765 }
Ethan Yonker53796e72019-01-11 22:49:52 -0600766 // No problems found
Dees_Troyc9ff7a32012-09-27 10:09:41 -0400767 return 0;
768}
769
bigbiffce8f83c2015-12-12 18:30:21 -0500770bool TWPartitionManager::Backup_Partition(PartitionSettings *part_settings) {
Dees_Troy43d8b002012-09-17 16:00:01 -0400771 time_t start, stop;
Matt Mower23d8aae2017-01-06 14:30:33 -0600772 int use_compression;
bigbiffce8f83c2015-12-12 18:30:21 -0500773 string backup_log = part_settings->Backup_Folder + "/recovery.log";
Dees_Troy43d8b002012-09-17 16:00:01 -0400774
bigbiffce8f83c2015-12-12 18:30:21 -0500775 if (part_settings->Part == NULL)
Dees_Troy43d8b002012-09-17 16:00:01 -0400776 return true;
777
Dees_Troy093b7642012-09-21 15:59:38 -0400778 DataManager::GetValue(TW_USE_COMPRESSION_VAR, use_compression);
Dees_Troy093b7642012-09-21 15:59:38 -0400779
Tom Hite5a926722014-09-15 01:31:03 +0000780 TWFunc::SetPerformanceMode(true);
Dees_Troy43d8b002012-09-17 16:00:01 -0400781 time(&start);
782
bigbiffce8f83c2015-12-12 18:30:21 -0500783 if (part_settings->Part->Backup(part_settings, &tar_fork_pid)) {
Ethan Yonkercd00a8b2017-07-06 10:23:30 -0500784 sync();
785 sync();
bigbiff bigbiff56cf5642016-08-19 17:43:45 -0400786 string Full_Filename = part_settings->Backup_Folder + "/" + part_settings->Part->Backup_FileName;
Ethan Yonkercd00a8b2017-07-06 10:23:30 -0500787 if (!part_settings->adbbackup && part_settings->generate_digest) {
788 if (!twrpDigestDriver::Make_Digest(Full_Filename))
789 goto backup_error;
bigbiff bigbiff56cf5642016-08-19 17:43:45 -0400790 }
bigbiff bigbiff8fd4b092016-08-30 20:48:53 -0400791
bigbiffce8f83c2015-12-12 18:30:21 -0500792 if (part_settings->Part->Has_SubPartition) {
Dees_Troy8170a922012-09-18 15:40:25 -0400793 std::vector<TWPartition*>::iterator subpart;
bigbiff bigbiff8fd4b092016-08-30 20:48:53 -0400794 TWPartition *parentPart = part_settings->Part;
Dees_Troy8170a922012-09-18 15:40:25 -0400795
796 for (subpart = Partitions.begin(); subpart != Partitions.end(); subpart++) {
bigbiff bigbiff8fd4b092016-08-30 20:48:53 -0400797 if ((*subpart)->Can_Be_Backed_Up && (*subpart)->Is_SubPartition && (*subpart)->SubPartition_Of == parentPart->Mount_Point) {
Ethan Yonkerdcf2b672016-09-13 14:41:53 -0500798 part_settings->Part = *subpart;
bigbiffce8f83c2015-12-12 18:30:21 -0500799 if (!(*subpart)->Backup(part_settings, &tar_fork_pid)) {
Ethan Yonkercd00a8b2017-07-06 10:23:30 -0500800 goto backup_error;
Tom Hite5a926722014-09-15 01:31:03 +0000801 }
Dees_Troy2727b992013-08-14 20:09:30 +0000802 sync();
803 sync();
bigbiff bigbifff5955b12019-05-18 17:28:58 -0400804 string Full_Filename = part_settings->Backup_Folder + "/" + part_settings->Part->Backup_FileName;
bigbiff bigbiff56cf5642016-08-19 17:43:45 -0400805 if (!part_settings->adbbackup && part_settings->generate_digest) {
806 if (!twrpDigestDriver::Make_Digest(Full_Filename)) {
Ethan Yonkercd00a8b2017-07-06 10:23:30 -0500807 goto backup_error;
bigbiffce8f83c2015-12-12 18:30:21 -0500808 }
Tom Hite5a926722014-09-15 01:31:03 +0000809 }
Dees_Troy8170a922012-09-18 15:40:25 -0400810 }
811 }
812 }
bigbiff bigbiff56cf5642016-08-19 17:43:45 -0400813
Dees_Troy43d8b002012-09-17 16:00:01 -0400814 time(&stop);
that203bcc92015-05-09 17:27:33 +0200815 int backup_time = (int) difftime(stop, start);
Dees_Troy2673cec2013-04-02 20:22:16 +0000816 LOGINFO("Partition Backup time: %d\n", backup_time);
bigbiff bigbiff8fd4b092016-08-30 20:48:53 -0400817
bigbiffce8f83c2015-12-12 18:30:21 -0500818 if (part_settings->Part->Backup_Method == BM_FILES) {
819 part_settings->file_time += backup_time;
Dees_Troy43d8b002012-09-17 16:00:01 -0400820 } else {
bigbiffce8f83c2015-12-12 18:30:21 -0500821 part_settings->img_time += backup_time;
822
Dees_Troy43d8b002012-09-17 16:00:01 -0400823 }
Tom Hite5a926722014-09-15 01:31:03 +0000824
Matt Mower02899552016-12-30 18:13:51 -0600825 TWFunc::SetPerformanceMode(false);
Ethan Yonkercd00a8b2017-07-06 10:23:30 -0500826 return true;
Dees_Troy43d8b002012-09-17 16:00:01 -0400827 }
Ethan Yonkercd00a8b2017-07-06 10:23:30 -0500828backup_error:
829 Clean_Backup_Folder(part_settings->Backup_Folder);
830 TWFunc::copy_file("/tmp/recovery.log", backup_log, 0644);
831 tw_set_default_metadata(backup_log.c_str());
832 TWFunc::SetPerformanceMode(false);
833 return false;
bigbiff7abc5fe2015-01-17 16:53:12 -0500834}
835
bigbiffbf1d6722015-02-14 16:25:59 -0500836void TWPartitionManager::Clean_Backup_Folder(string Backup_Folder) {
837 DIR *d = opendir(Backup_Folder.c_str());
838 struct dirent *p;
839 int r;
bigbiff bigbiff56cf5642016-08-19 17:43:45 -0400840 vector<string> ext;
841
842 //extensions we should delete when cleaning
843 ext.push_back("win");
844 ext.push_back("md5");
845 ext.push_back("sha2");
846 ext.push_back("info");
bigbiffbf1d6722015-02-14 16:25:59 -0500847
Ethan Yonker74db1572015-10-28 12:44:49 -0500848 gui_msg("backup_clean=Backup Failed. Cleaning Backup Folder.");
bigbiffbf1d6722015-02-14 16:25:59 -0500849
850 if (d == NULL) {
Ethan Yonker74db1572015-10-28 12:44:49 -0500851 gui_msg(Msg(msg::kError, "error_opening_strerr=Error opening: '{1}' ({2})")(Backup_Folder)(strerror(errno)));
bigbiffbf1d6722015-02-14 16:25:59 -0500852 return;
853 }
854
Matt Mower2b18a532015-02-20 16:58:05 -0600855 while ((p = readdir(d))) {
bigbiffbf1d6722015-02-14 16:25:59 -0500856 if (!strcmp(p->d_name, ".") || !strcmp(p->d_name, ".."))
857 continue;
858
Ethan Yonkere080c1f2016-09-19 13:50:25 -0500859 string path = Backup_Folder + "/" + p->d_name;
bigbiffbf1d6722015-02-14 16:25:59 -0500860
861 size_t dot = path.find_last_of(".") + 1;
bigbiff bigbiff56cf5642016-08-19 17:43:45 -0400862 for (vector<string>::const_iterator i = ext.begin(); i != ext.end(); ++i) {
863 if (path.substr(dot) == *i) {
864 r = unlink(path.c_str());
865 if (r != 0)
866 LOGINFO("Unable to unlink '%s: %s'\n", path.c_str(), strerror(errno));
bigbiffbf1d6722015-02-14 16:25:59 -0500867 }
868 }
869 }
870 closedir(d);
871}
872
Ethan Yonker472f5062016-02-25 13:47:30 -0600873int TWPartitionManager::Check_Backup_Cancel() {
874 return stop_backup.get_value();
875}
876
bigbiff7abc5fe2015-01-17 16:53:12 -0500877int TWPartitionManager::Cancel_Backup() {
878 string Backup_Folder, Backup_Name, Full_Backup_Path;
879
880 stop_backup.set_value(1);
881
882 if (tar_fork_pid != 0) {
883 DataManager::GetValue(TW_BACKUP_NAME, Backup_Name);
884 DataManager::GetValue(TW_BACKUPS_FOLDER_VAR, Backup_Folder);
Ethan Yonkere080c1f2016-09-19 13:50:25 -0500885 Full_Backup_Path = Backup_Folder + "/" + Backup_Name;
bigbiff7abc5fe2015-01-17 16:53:12 -0500886 LOGINFO("Killing pid: %d\n", tar_fork_pid);
887 kill(tar_fork_pid, SIGUSR2);
888 while (kill(tar_fork_pid, 0) == 0) {
889 usleep(1000);
890 }
891 LOGINFO("Backup_Run stopped and returning false, backup cancelled.\n");
892 LOGINFO("Removing directory %s\n", Full_Backup_Path.c_str());
893 TWFunc::removeDir(Full_Backup_Path, false);
894 tar_fork_pid = 0;
895 }
896
897 return 0;
Dees_Troy43d8b002012-09-17 16:00:01 -0400898}
899
bigbiffce8f83c2015-12-12 18:30:21 -0500900int TWPartitionManager::Run_Backup(bool adbbackup) {
901 PartitionSettings part_settings;
bigbiff bigbiff56cf5642016-08-19 17:43:45 -0400902 int partition_count = 0, disable_free_space_check = 0, skip_digest = 0;
bigbiffce8f83c2015-12-12 18:30:21 -0500903 string Backup_Name, Backup_List, backup_path;
Matt Mower23d8aae2017-01-06 14:30:33 -0600904 unsigned long long total_bytes = 0, free_space = 0;
Dees_Troy43d8b002012-09-17 16:00:01 -0400905 TWPartition* storage = NULL;
906 struct tm *t;
Matt Mower23d8aae2017-01-06 14:30:33 -0600907 time_t seconds, total_start, total_stop;
Dees_Troya13d74f2013-03-24 08:54:55 -0500908 size_t start_pos = 0, end_pos = 0;
bigbiff7abc5fe2015-01-17 16:53:12 -0500909 stop_backup.set_value(0);
Dees_Troy43d8b002012-09-17 16:00:01 -0400910 seconds = time(0);
Matt Mowerfb1c4ff2014-04-16 13:43:36 -0500911 t = localtime(&seconds);
Dees_Troy43d8b002012-09-17 16:00:01 -0400912
bigbiffce8f83c2015-12-12 18:30:21 -0500913 part_settings.img_bytes_remaining = 0;
914 part_settings.file_bytes_remaining = 0;
915 part_settings.img_time = 0;
916 part_settings.file_time = 0;
917 part_settings.img_bytes = 0;
918 part_settings.file_bytes = 0;
919 part_settings.PM_Method = PM_BACKUP;
920
bigbiffce8f83c2015-12-12 18:30:21 -0500921 part_settings.adbbackup = adbbackup;
Dees_Troy43d8b002012-09-17 16:00:01 -0400922 time(&total_start);
923
924 Update_System_Details();
925
926 if (!Mount_Current_Storage(true))
927 return false;
928
bigbiff bigbiff56cf5642016-08-19 17:43:45 -0400929 DataManager::GetValue(TW_SKIP_DIGEST_GENERATE_VAR, skip_digest);
930 if (skip_digest == 0)
931 part_settings.generate_digest = true;
Dees_Troyc5865ab2012-09-24 15:08:04 -0400932 else
bigbiff bigbiff56cf5642016-08-19 17:43:45 -0400933 part_settings.generate_digest = false;
Dees_Troy4a2a1262012-09-18 09:33:47 -0400934
bigbiffce8f83c2015-12-12 18:30:21 -0500935 DataManager::GetValue(TW_BACKUPS_FOLDER_VAR, part_settings.Backup_Folder);
Ethan Yonkerdcf2b672016-09-13 14:41:53 -0500936 DataManager::GetValue(TW_BACKUP_NAME, Backup_Name);
937 if (Backup_Name == gui_lookup("curr_date", "(Current Date)")) {
938 Backup_Name = TWFunc::Get_Current_Date();
939 } else if (Backup_Name == gui_lookup("auto_generate", "(Auto Generate)") || Backup_Name == "0" || Backup_Name.empty()) {
Dees Troyb21cc642013-09-10 17:36:41 +0000940 TWFunc::Auto_Generate_Backup_Name();
Ethan Yonkerdcf2b672016-09-13 14:41:53 -0500941 DataManager::GetValue(TW_BACKUP_NAME, Backup_Name);
Dees_Troy43d8b002012-09-17 16:00:01 -0400942 }
bigbiffce8f83c2015-12-12 18:30:21 -0500943
Ethan Yonkerdcf2b672016-09-13 14:41:53 -0500944 LOGINFO("Backup Name is: '%s'\n", Backup_Name.c_str());
Ethan Yonkere080c1f2016-09-19 13:50:25 -0500945 part_settings.Backup_Folder = part_settings.Backup_Folder + "/" + Backup_Name;
bigbiffce8f83c2015-12-12 18:30:21 -0500946
Ethan Yonkere080c1f2016-09-19 13:50:25 -0500947 LOGINFO("Backup_Folder is: '%s'\n", part_settings.Backup_Folder.c_str());
Dees_Troy43d8b002012-09-17 16:00:01 -0400948
Dees_Troy2673cec2013-04-02 20:22:16 +0000949 LOGINFO("Calculating backup details...\n");
Dees_Troya13d74f2013-03-24 08:54:55 -0500950 DataManager::GetValue("tw_backup_list", Backup_List);
bigbiff7ba75002020-04-11 20:47:09 -0400951 LOGINFO("Backup_List: %s\n", Backup_List.c_str());
Dees_Troya13d74f2013-03-24 08:54:55 -0500952 if (!Backup_List.empty()) {
953 end_pos = Backup_List.find(";", start_pos);
954 while (end_pos != string::npos && start_pos < Backup_List.size()) {
955 backup_path = Backup_List.substr(start_pos, end_pos - start_pos);
bigbiff7ba75002020-04-11 20:47:09 -0400956 LOGINFO("backup_path: %s\n", backup_path.c_str());
bigbiffce8f83c2015-12-12 18:30:21 -0500957 part_settings.Part = Find_Partition_By_Path(backup_path);
958 if (part_settings.Part != NULL) {
Dees_Troya13d74f2013-03-24 08:54:55 -0500959 partition_count++;
bigbiffce8f83c2015-12-12 18:30:21 -0500960 if (part_settings.Part->Backup_Method == BM_FILES)
961 part_settings.file_bytes += part_settings.Part->Backup_Size;
Dees_Troya13d74f2013-03-24 08:54:55 -0500962 else
bigbiffce8f83c2015-12-12 18:30:21 -0500963 part_settings.img_bytes += part_settings.Part->Backup_Size;
964 if (part_settings.Part->Has_SubPartition) {
Dees_Troya13d74f2013-03-24 08:54:55 -0500965 std::vector<TWPartition*>::iterator subpart;
966
967 for (subpart = Partitions.begin(); subpart != Partitions.end(); subpart++) {
bigbiffce8f83c2015-12-12 18:30:21 -0500968 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 -0500969 partition_count++;
bigbiffce8f83c2015-12-12 18:30:21 -0500970 if ((*subpart)->Backup_Method == BM_FILES)
971 part_settings.file_bytes += (*subpart)->Backup_Size;
Dees_Troya13d74f2013-03-24 08:54:55 -0500972 else
bigbiffce8f83c2015-12-12 18:30:21 -0500973 part_settings.img_bytes += (*subpart)->Backup_Size;
Dees_Troya13d74f2013-03-24 08:54:55 -0500974 }
975 }
Dees_Troy8170a922012-09-18 15:40:25 -0400976 }
Dees_Troya13d74f2013-03-24 08:54:55 -0500977 } else {
Ethan Yonker74db1572015-10-28 12:44:49 -0500978 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 -0400979 }
Dees_Troya13d74f2013-03-24 08:54:55 -0500980 start_pos = end_pos + 1;
981 end_pos = Backup_List.find(";", start_pos);
Dees_Troy43d8b002012-09-17 16:00:01 -0400982 }
983 }
Dees_Troy43d8b002012-09-17 16:00:01 -0400984
985 if (partition_count == 0) {
Ethan Yonker74db1572015-10-28 12:44:49 -0500986 gui_msg("no_partition_selected=No partitions selected for backup.");
Dees_Troy43d8b002012-09-17 16:00:01 -0400987 return false;
988 }
bigbiffce8f83c2015-12-12 18:30:21 -0500989 if (adbbackup) {
990 if (twadbbu::Write_ADB_Stream_Header(partition_count) == false) {
991 return false;
992 }
993 }
994 total_bytes = part_settings.file_bytes + part_settings.img_bytes;
Ethan Yonker472f5062016-02-25 13:47:30 -0600995 ProgressTracking progress(total_bytes);
bigbiffce8f83c2015-12-12 18:30:21 -0500996 part_settings.progress = &progress;
997
Ethan Yonker74db1572015-10-28 12:44:49 -0500998 gui_msg(Msg("total_partitions_backup= * Total number of partitions to back up: {1}")(partition_count));
999 gui_msg(Msg("total_backup_size= * Total size of all data: {1}MB")(total_bytes / 1024 / 1024));
Dees_Troy43d8b002012-09-17 16:00:01 -04001000 storage = Find_Partition_By_Path(DataManager::GetCurrentStoragePath());
1001 if (storage != NULL) {
1002 free_space = storage->Free;
Ethan Yonker74db1572015-10-28 12:44:49 -05001003 gui_msg(Msg("available_space= * Available space: {1}MB")(free_space / 1024 / 1024));
Dees_Troy43d8b002012-09-17 16:00:01 -04001004 } else {
Ethan Yonker74db1572015-10-28 12:44:49 -05001005 gui_err("unable_locate_storage=Unable to locate storage device.");
Dees_Troy43d8b002012-09-17 16:00:01 -04001006 return false;
1007 }
bigbiffbf1d6722015-02-14 16:25:59 -05001008
Matt Mowerbfccfb82016-04-25 23:22:31 -05001009 DataManager::GetValue(TW_DISABLE_FREE_SPACE_VAR, disable_free_space_check);
bigbiffce8f83c2015-12-12 18:30:21 -05001010
1011 if (adbbackup)
1012 disable_free_space_check = true;
1013
bigbiffbf1d6722015-02-14 16:25:59 -05001014 if (!disable_free_space_check) {
1015 if (free_space - (32 * 1024 * 1024) < total_bytes) {
1016 // We require an extra 32MB just in case
Ethan Yonker74db1572015-10-28 12:44:49 -05001017 gui_err("no_space=Not enough free space on storage.");
bigbiffbf1d6722015-02-14 16:25:59 -05001018 return false;
1019 }
Dees_Troy43d8b002012-09-17 16:00:01 -04001020 }
bigbiffce8f83c2015-12-12 18:30:21 -05001021 part_settings.img_bytes_remaining = part_settings.img_bytes;
1022 part_settings.file_bytes_remaining = part_settings.file_bytes;
Dees_Troy43d8b002012-09-17 16:00:01 -04001023
Ethan Yonker74db1572015-10-28 12:44:49 -05001024 gui_msg("backup_started=[BACKUP STARTED]");
bigbiff bigbiffcdd97c72019-03-29 19:12:33 -04001025
1026 int is_decrypted = 0;
1027 int is_encrypted = 0;
1028
1029 DataManager::GetValue(TW_IS_DECRYPTED, is_decrypted);
1030 DataManager::GetValue(TW_IS_ENCRYPTED, is_encrypted);
1031 if (!adbbackup || (!is_encrypted || (is_encrypted && is_decrypted))) {
1032 gui_msg(Msg("backup_folder= * Backup Folder: {1}")(part_settings.Backup_Folder));
1033 if (!TWFunc::Recursive_Mkdir(part_settings.Backup_Folder)) {
1034 gui_err("fail_backup_folder=Failed to make backup folder.");
1035 return false;
1036 }
Dees_Troyd4b22b02013-01-18 17:17:58 +00001037 }
1038
Dees_Troy2673cec2013-04-02 20:22:16 +00001039 DataManager::SetProgress(0.0);
Dees_Troy093b7642012-09-21 15:59:38 -04001040
Dees_Troya13d74f2013-03-24 08:54:55 -05001041 start_pos = 0;
1042 end_pos = Backup_List.find(";", start_pos);
1043 while (end_pos != string::npos && start_pos < Backup_List.size()) {
bigbiff7abc5fe2015-01-17 16:53:12 -05001044 if (stop_backup.get_value() != 0)
1045 return -1;
Dees_Troya13d74f2013-03-24 08:54:55 -05001046 backup_path = Backup_List.substr(start_pos, end_pos - start_pos);
bigbiffce8f83c2015-12-12 18:30:21 -05001047 part_settings.Part = Find_Partition_By_Path(backup_path);
1048 if (part_settings.Part != NULL) {
1049 if (!Backup_Partition(&part_settings))
Dees_Troya13d74f2013-03-24 08:54:55 -05001050 return false;
1051 } else {
Ethan Yonker74db1572015-10-28 12:44:49 -05001052 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 -05001053 }
1054 start_pos = end_pos + 1;
1055 end_pos = Backup_List.find(";", start_pos);
1056 }
Dees_Troy43d8b002012-09-17 16:00:01 -04001057
1058 // Average BPS
bigbiffce8f83c2015-12-12 18:30:21 -05001059 if (part_settings.img_time == 0)
1060 part_settings.img_time = 1;
1061 if (part_settings.file_time == 0)
1062 part_settings.file_time = 1;
1063 int img_bps = (int)part_settings.img_bytes / (int)part_settings.img_time;
1064 unsigned long long file_bps = part_settings.file_bytes / (int)part_settings.file_time;
Dees_Troy43d8b002012-09-17 16:00:01 -04001065
bigbiffce8f83c2015-12-12 18:30:21 -05001066 if (part_settings.file_bytes != 0)
Ethan Yonker472f5062016-02-25 13:47:30 -06001067 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 -05001068 if (part_settings.img_bytes != 0)
Ethan Yonker472f5062016-02-25 13:47:30 -06001069 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 -04001070
1071 time(&total_stop);
1072 int total_time = (int) difftime(total_stop, total_start);
bigbiffce8f83c2015-12-12 18:30:21 -05001073
1074 uint64_t actual_backup_size;
Ethan Yonker3fdcda42016-11-30 12:29:37 -06001075 if (!adbbackup) {
1076 TWExclude twe;
1077 actual_backup_size = twe.Get_Folder_Size(part_settings.Backup_Folder);
1078 } else
bigbiffce8f83c2015-12-12 18:30:21 -05001079 actual_backup_size = part_settings.file_bytes + part_settings.img_bytes;
Matt Mowerfb1c4ff2014-04-16 13:43:36 -05001080 actual_backup_size /= (1024LLU * 1024LLU);
Dees_Troy43d8b002012-09-17 16:00:01 -04001081
bigbiffce8f83c2015-12-12 18:30:21 -05001082 int prev_img_bps = 0, use_compression = 0;
1083 unsigned long long prev_file_bps = 0;
Matt Mower173cdb92016-12-31 02:49:19 -06001084 DataManager::GetValue(TW_BACKUP_AVG_IMG_RATE, prev_img_bps);
Dees_Troy093b7642012-09-21 15:59:38 -04001085 img_bps += (prev_img_bps * 4);
Matt Mowerfb1c4ff2014-04-16 13:43:36 -05001086 img_bps /= 5;
Dees_Troy093b7642012-09-21 15:59:38 -04001087
Matt Mowerfb1c4ff2014-04-16 13:43:36 -05001088 DataManager::GetValue(TW_USE_COMPRESSION_VAR, use_compression);
Dees_Troy093b7642012-09-21 15:59:38 -04001089 if (use_compression)
1090 DataManager::GetValue(TW_BACKUP_AVG_FILE_COMP_RATE, prev_file_bps);
Matt Mowerfb1c4ff2014-04-16 13:43:36 -05001091 else
Dees_Troy093b7642012-09-21 15:59:38 -04001092 DataManager::GetValue(TW_BACKUP_AVG_FILE_RATE, prev_file_bps);
1093 file_bps += (prev_file_bps * 4);
Matt Mowerfb1c4ff2014-04-16 13:43:36 -05001094 file_bps /= 5;
Dees_Troy093b7642012-09-21 15:59:38 -04001095
Matt Mowerfb1c4ff2014-04-16 13:43:36 -05001096 DataManager::SetValue(TW_BACKUP_AVG_IMG_RATE, img_bps);
Dees_Troy093b7642012-09-21 15:59:38 -04001097 if (use_compression)
1098 DataManager::SetValue(TW_BACKUP_AVG_FILE_COMP_RATE, file_bps);
1099 else
1100 DataManager::SetValue(TW_BACKUP_AVG_FILE_RATE, file_bps);
1101
Ethan Yonker74db1572015-10-28 12:44:49 -05001102 gui_msg(Msg("total_backed_size=[{1} MB TOTAL BACKED UP]")(actual_backup_size));
Dees_Troy43d8b002012-09-17 16:00:01 -04001103 Update_System_Details();
Dees_Troyd0384ef2012-10-12 12:15:42 -04001104 UnMount_Main_Partitions();
Ethan Yonker56db1c42015-12-20 22:49:00 -06001105 gui_msg(Msg(msg::kHighlight, "backup_completed=[BACKUP COMPLETED IN {1} SECONDS]")(total_time)); // the end
Ethan Yonkere080c1f2016-09-19 13:50:25 -05001106 string backup_log = part_settings.Backup_Folder + "/recovery.log";
Dees_Troy3f5c4e82013-02-01 15:16:59 +00001107 TWFunc::copy_file("/tmp/recovery.log", backup_log, 0644);
Ethan Yonker4b94cfd2014-12-11 10:00:45 -06001108 tw_set_default_metadata(backup_log.c_str());
bigbiffce8f83c2015-12-12 18:30:21 -05001109
1110 if (part_settings.adbbackup) {
1111 if (twadbbu::Write_ADB_Stream_Trailer() == false) {
1112 return false;
1113 }
1114 }
1115 part_settings.adbbackup = false;
1116 DataManager::SetValue("tw_enable_adb_backup", 0);
1117
Dees_Troy3f5c4e82013-02-01 15:16:59 +00001118 return true;
Dees_Troy51a0e822012-09-05 15:24:24 -04001119}
1120
bigbiffce8f83c2015-12-12 18:30:21 -05001121bool TWPartitionManager::Restore_Partition(PartitionSettings *part_settings) {
Dees_Troy4a2a1262012-09-18 09:33:47 -04001122 time_t Start, Stop;
bigbiffce8f83c2015-12-12 18:30:21 -05001123
bigbiff bigbiffb5ecaad2017-03-20 18:53:53 -04001124 if (part_settings->adbbackup) {
bigbiff bigbiff19fb79c2016-09-05 21:04:51 -04001125 std::string partName = part_settings->Part->Backup_Name + "." + part_settings->Part->Current_File_System + ".win";
1126 LOGINFO("setting backup name: %s\n", partName.c_str());
bigbiff bigbiffb5ecaad2017-03-20 18:53:53 -04001127 part_settings->Part->Set_Backup_FileName(part_settings->Part->Backup_Name + "." + part_settings->Part->Current_File_System + ".win");
1128 }
1129
Tom Hite5a926722014-09-15 01:31:03 +00001130 TWFunc::SetPerformanceMode(true);
bigbiffce8f83c2015-12-12 18:30:21 -05001131
Dees_Troy4a2a1262012-09-18 09:33:47 -04001132 time(&Start);
Ethan Yonker472f5062016-02-25 13:47:30 -06001133
bigbiffce8f83c2015-12-12 18:30:21 -05001134 if (!part_settings->Part->Restore(part_settings)) {
Tom Hite5a926722014-09-15 01:31:03 +00001135 TWFunc::SetPerformanceMode(false);
Dees_Troy4a2a1262012-09-18 09:33:47 -04001136 return false;
Tom Hite5a926722014-09-15 01:31:03 +00001137 }
bigbiff bigbiff19fb79c2016-09-05 21:04:51 -04001138 if (part_settings->Part->Has_SubPartition && !part_settings->adbbackup) {
Dees_Troy8170a922012-09-18 15:40:25 -04001139 std::vector<TWPartition*>::iterator subpart;
bigbiff bigbiff8fd4b092016-08-30 20:48:53 -04001140 TWPartition *parentPart = part_settings->Part;
Dees_Troy8170a922012-09-18 15:40:25 -04001141
1142 for (subpart = Partitions.begin(); subpart != Partitions.end(); subpart++) {
bigbiff bigbiff8fd4b092016-08-30 20:48:53 -04001143 part_settings->Part = *subpart;
1144 if ((*subpart)->Is_SubPartition && (*subpart)->SubPartition_Of == parentPart->Mount_Point) {
1145 part_settings->Part = (*subpart);
bigbiff bigbiff19fb79c2016-09-05 21:04:51 -04001146 part_settings->Part->Set_Backup_FileName(part_settings->Part->Backup_Name + "." + part_settings->Part->Current_File_System + ".win");
bigbiffce8f83c2015-12-12 18:30:21 -05001147 if (!(*subpart)->Restore(part_settings)) {
Tom Hite5a926722014-09-15 01:31:03 +00001148 TWFunc::SetPerformanceMode(false);
Dees_Troy8170a922012-09-18 15:40:25 -04001149 return false;
Tom Hite5a926722014-09-15 01:31:03 +00001150 }
Dees_Troy8170a922012-09-18 15:40:25 -04001151 }
1152 }
1153 }
Dees_Troy4a2a1262012-09-18 09:33:47 -04001154 time(&Stop);
Tom Hite5a926722014-09-15 01:31:03 +00001155 TWFunc::SetPerformanceMode(false);
bigbiffce8f83c2015-12-12 18:30:21 -05001156 gui_msg(Msg("restore_part_done=[{1} done ({2} seconds)]")(part_settings->Part->Backup_Display_Name)((int)difftime(Stop, Start)));
1157
Dees_Troy4a2a1262012-09-18 09:33:47 -04001158 return true;
1159}
1160
Ethan Yonker472f5062016-02-25 13:47:30 -06001161int TWPartitionManager::Run_Restore(const string& Restore_Name) {
bigbiffce8f83c2015-12-12 18:30:21 -05001162 PartitionSettings part_settings;
bigbiff bigbiff56cf5642016-08-19 17:43:45 -04001163 int check_digest;
bigbiffce8f83c2015-12-12 18:30:21 -05001164
Dees_Troy4a2a1262012-09-18 09:33:47 -04001165 time_t rStart, rStop;
1166 time(&rStart);
Dees_Troya13d74f2013-03-24 08:54:55 -05001167 string Restore_List, restore_path;
1168 size_t start_pos = 0, end_pos;
bigbiffce8f83c2015-12-12 18:30:21 -05001169
Ethan Yonkerdcf2b672016-09-13 14:41:53 -05001170 part_settings.Backup_Folder = Restore_Name;
bigbiffce8f83c2015-12-12 18:30:21 -05001171 part_settings.Part = NULL;
1172 part_settings.partition_count = 0;
1173 part_settings.total_restore_size = 0;
1174 part_settings.adbbackup = false;
1175 part_settings.PM_Method = PM_RESTORE;
Dees_Troy43d8b002012-09-17 16:00:01 -04001176
Ethan Yonker74db1572015-10-28 12:44:49 -05001177 gui_msg("restore_started=[RESTORE STARTED]");
1178 gui_msg(Msg("restore_folder=Restore folder: '{1}'")(Restore_Name));
Dees_Troy43d8b002012-09-17 16:00:01 -04001179
Dees_Troy4a2a1262012-09-18 09:33:47 -04001180 if (!Mount_Current_Storage(true))
1181 return false;
1182
bigbiff bigbiff56cf5642016-08-19 17:43:45 -04001183 DataManager::GetValue(TW_SKIP_DIGEST_CHECK_VAR, check_digest);
1184 if (check_digest > 0) {
1185 // Check Digest files first before restoring to ensure that all of them match before starting a restore
1186 TWFunc::GUI_Operation_Text(TW_VERIFY_DIGEST_TEXT, gui_parse_text("{@verifying_digest}"));
1187 gui_msg("verifying_digest=Verifying Digest");
Dees_Troya13d74f2013-03-24 08:54:55 -05001188 } else {
bigbiff bigbiff56cf5642016-08-19 17:43:45 -04001189 gui_msg("skip_digest=Skipping Digest check based on user setting.");
Dees_Troya13d74f2013-03-24 08:54:55 -05001190 }
Ethan Yonker74db1572015-10-28 12:44:49 -05001191 gui_msg("calc_restore=Calculating restore details...");
Dees_Troya13d74f2013-03-24 08:54:55 -05001192 DataManager::GetValue("tw_restore_selected", Restore_List);
bigbiffce8f83c2015-12-12 18:30:21 -05001193
Dees_Troya13d74f2013-03-24 08:54:55 -05001194 if (!Restore_List.empty()) {
1195 end_pos = Restore_List.find(";", start_pos);
1196 while (end_pos != string::npos && start_pos < Restore_List.size()) {
1197 restore_path = Restore_List.substr(start_pos, end_pos - start_pos);
bigbiffce8f83c2015-12-12 18:30:21 -05001198 part_settings.Part = Find_Partition_By_Path(restore_path);
1199 if (part_settings.Part != NULL) {
bigbiffce8f83c2015-12-12 18:30:21 -05001200 if (part_settings.Part->Mount_Read_Only) {
1201 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 -05001202 return false;
1203 }
bigbiffce8f83c2015-12-12 18:30:21 -05001204
bigbiff bigbiff56cf5642016-08-19 17:43:45 -04001205 string Full_Filename = part_settings.Backup_Folder + "/" + part_settings.Part->Backup_FileName;
1206
bigbiff4a60bee2021-01-23 14:08:03 -05001207 if (tw_get_default_metadata(Get_Android_Root_Path().c_str()) != 0) {
1208 gui_msg(Msg(msg::kWarning, "restore_system_context=Unable to get default context for {1} -- Android may not boot.")(Get_Android_Root_Path()));
1209 }
1210
bigbiff bigbiff56cf5642016-08-19 17:43:45 -04001211 if (check_digest > 0 && !twrpDigestDriver::Check_Digest(Full_Filename))
Dees_Troya13d74f2013-03-24 08:54:55 -05001212 return false;
bigbiffce8f83c2015-12-12 18:30:21 -05001213 part_settings.partition_count++;
1214 part_settings.total_restore_size += part_settings.Part->Get_Restore_Size(&part_settings);
1215 if (part_settings.Part->Has_SubPartition) {
bigbiff bigbiff8fd4b092016-08-30 20:48:53 -04001216 TWPartition *parentPart = part_settings.Part;
Dees_Troya13d74f2013-03-24 08:54:55 -05001217 std::vector<TWPartition*>::iterator subpart;
1218
1219 for (subpart = Partitions.begin(); subpart != Partitions.end(); subpart++) {
bigbiff bigbiff8fd4b092016-08-30 20:48:53 -04001220 part_settings.Part = *subpart;
1221 if ((*subpart)->Is_SubPartition && (*subpart)->SubPartition_Of == parentPart->Mount_Point) {
bigbiff bigbiff56cf5642016-08-19 17:43:45 -04001222 if (check_digest > 0 && !twrpDigestDriver::Check_Digest(Full_Filename))
Dees_Troya13d74f2013-03-24 08:54:55 -05001223 return false;
bigbiffce8f83c2015-12-12 18:30:21 -05001224 part_settings.total_restore_size += (*subpart)->Get_Restore_Size(&part_settings);
Dees_Troya13d74f2013-03-24 08:54:55 -05001225 }
1226 }
1227 }
1228 } else {
Ethan Yonker74db1572015-10-28 12:44:49 -05001229 gui_msg(Msg(msg::kError, "restore_unable_locate=Unable to locate '{1}' partition for restoring.")(restore_path));
Dees_Troya13d74f2013-03-24 08:54:55 -05001230 }
1231 start_pos = end_pos + 1;
1232 end_pos = Restore_List.find(";", start_pos);
Dees_Troy4a2a1262012-09-18 09:33:47 -04001233 }
Dees_Troy4a2a1262012-09-18 09:33:47 -04001234 }
Dees_Troy4a2a1262012-09-18 09:33:47 -04001235
bigbiffce8f83c2015-12-12 18:30:21 -05001236 if (part_settings.partition_count == 0) {
Ethan Yonker74db1572015-10-28 12:44:49 -05001237 gui_err("no_part_restore=No partitions selected for restore.");
Dees_Troy4a2a1262012-09-18 09:33:47 -04001238 return false;
1239 }
1240
bigbiffce8f83c2015-12-12 18:30:21 -05001241 gui_msg(Msg("restore_part_count=Restoring {1} partitions...")(part_settings.partition_count));
1242 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 +00001243 DataManager::SetProgress(0.0);
bigbiffce8f83c2015-12-12 18:30:21 -05001244 ProgressTracking progress(part_settings.total_restore_size);
1245 part_settings.progress = &progress;
Ethan Yonker1b7a31b2014-07-03 15:09:22 -05001246
Dees_Troya13d74f2013-03-24 08:54:55 -05001247 start_pos = 0;
1248 if (!Restore_List.empty()) {
1249 end_pos = Restore_List.find(";", start_pos);
1250 while (end_pos != string::npos && start_pos < Restore_List.size()) {
1251 restore_path = Restore_List.substr(start_pos, end_pos - start_pos);
bigbiffce8f83c2015-12-12 18:30:21 -05001252
1253 part_settings.Part = Find_Partition_By_Path(restore_path);
1254 if (part_settings.Part != NULL) {
1255 part_settings.partition_count++;
bigbiffce8f83c2015-12-12 18:30:21 -05001256 if (!Restore_Partition(&part_settings))
Dees_Troya13d74f2013-03-24 08:54:55 -05001257 return false;
1258 } else {
Ethan Yonker74db1572015-10-28 12:44:49 -05001259 gui_msg(Msg(msg::kError, "restore_unable_locate=Unable to locate '{1}' partition for restoring.")(restore_path));
Dees_Troya13d74f2013-03-24 08:54:55 -05001260 }
1261 start_pos = end_pos + 1;
1262 end_pos = Restore_List.find(";", start_pos);
1263 }
1264 }
Ethan Yonker74db1572015-10-28 12:44:49 -05001265 TWFunc::GUI_Operation_Text(TW_UPDATE_SYSTEM_DETAILS_TEXT, gui_parse_text("{@updating_system_details}"));
bigbiff4a60bee2021-01-23 14:08:03 -05001266 tw_set_default_metadata(Get_Android_Root_Path().c_str());
Captain Throwback9d6feb52018-07-27 10:05:24 -04001267 UnMount_By_Path(Get_Android_Root_Path(), false);
Dees_Troy43d8b002012-09-17 16:00:01 -04001268 Update_System_Details();
Dees_Troyd0384ef2012-10-12 12:15:42 -04001269 UnMount_Main_Partitions();
Dees_Troy4a2a1262012-09-18 09:33:47 -04001270 time(&rStop);
Matt Mower3c366972015-12-25 19:28:31 -06001271 gui_msg(Msg(msg::kHighlight, "restore_completed=[RESTORE COMPLETED IN {1} SECONDS]")((int)difftime(rStop,rStart)));
Ethan Yonker1b7a31b2014-07-03 15:09:22 -05001272 DataManager::SetValue("tw_file_progress", "");
bigbiffce8f83c2015-12-12 18:30:21 -05001273
Dees_Troy63c8df72012-09-10 14:02:05 -04001274 return true;
Dees_Troy51a0e822012-09-05 15:24:24 -04001275}
1276
1277void TWPartitionManager::Set_Restore_Files(string Restore_Name) {
Dees_Troy63c8df72012-09-10 14:02:05 -04001278 // Start with the default values
Dees_Troya13d74f2013-03-24 08:54:55 -05001279 string Restore_List;
Dees_Troy83bd4832013-05-04 12:39:56 +00001280 bool get_date = true, check_encryption = true;
bigbiff bigbiff19fb79c2016-09-05 21:04:51 -04001281 bool adbbackup = false;
Dees_Troy83bd4832013-05-04 12:39:56 +00001282
1283 DataManager::SetValue("tw_restore_encrypted", 0);
bigbiff bigbiff19fb79c2016-09-05 21:04:51 -04001284 if (twadbbu::Check_ADB_Backup_File(Restore_Name)) {
1285 vector<string> adb_files;
1286 adb_files = twadbbu::Get_ADB_Backup_Files(Restore_Name);
1287 for (unsigned int i = 0; i < adb_files.size(); ++i) {
1288 string adb_restore_file = adb_files.at(i);
1289 std::size_t pos = adb_restore_file.find_first_of(".");
1290 std::string path = "/" + adb_restore_file.substr(0, pos);
1291 Restore_List = path + ";";
1292 TWPartition* Part = Find_Partition_By_Path(path);
1293 Part->Backup_FileName = TWFunc::Get_Filename(adb_restore_file);
1294 adbbackup = true;
1295 }
1296 DataManager::SetValue("tw_enable_adb_backup", 1);
Dees_Troy63c8df72012-09-10 14:02:05 -04001297 }
bigbiff bigbiff19fb79c2016-09-05 21:04:51 -04001298 else {
1299 DIR* d;
1300 d = opendir(Restore_Name.c_str());
1301 if (d == NULL)
Dees_Troy63c8df72012-09-10 14:02:05 -04001302 {
bigbiff bigbiff19fb79c2016-09-05 21:04:51 -04001303 gui_msg(Msg(msg::kError, "error_opening_strerr=Error opening: '{1}' ({2})")(Restore_Name)(strerror(errno)));
1304 return;
Dees_Troy63c8df72012-09-10 14:02:05 -04001305 }
bigbiff bigbiff19fb79c2016-09-05 21:04:51 -04001306
1307 struct dirent* de;
1308 while ((de = readdir(d)) != NULL)
Dees_Troy63c8df72012-09-10 14:02:05 -04001309 {
bigbiff bigbiff19fb79c2016-09-05 21:04:51 -04001310 // Strip off three components
1311 char str[256];
1312 char* label;
1313 char* fstype = NULL;
1314 char* extn = NULL;
1315 char* ptr;
Dees_Troy63c8df72012-09-10 14:02:05 -04001316
bigbiff bigbiff19fb79c2016-09-05 21:04:51 -04001317 strcpy(str, de->d_name);
1318 if (strlen(str) <= 2)
1319 continue;
Dees_Troy83bd4832013-05-04 12:39:56 +00001320
bigbiff bigbiff19fb79c2016-09-05 21:04:51 -04001321 if (get_date) {
1322 char file_path[255];
1323 struct stat st;
1324
1325 strcpy(file_path, Restore_Name.c_str());
1326 strcat(file_path, "/");
1327 strcat(file_path, str);
1328 stat(file_path, &st);
1329 string backup_date = ctime((const time_t*)(&st.st_mtime));
1330 DataManager::SetValue(TW_RESTORE_FILE_DATE, backup_date);
1331 get_date = false;
Dees_Troy83bd4832013-05-04 12:39:56 +00001332 }
Dees_Troy63c8df72012-09-10 14:02:05 -04001333
bigbiff bigbiff19fb79c2016-09-05 21:04:51 -04001334 label = str;
1335 ptr = label;
1336 while (*ptr && *ptr != '.') ptr++;
1337 if (*ptr == '.')
1338 {
1339 *ptr = 0x00;
1340 ptr++;
1341 fstype = ptr;
1342 }
1343 while (*ptr && *ptr != '.') ptr++;
1344 if (*ptr == '.')
1345 {
1346 *ptr = 0x00;
1347 ptr++;
1348 extn = ptr;
1349 }
Dees_Troy63c8df72012-09-10 14:02:05 -04001350
bigbiff bigbiff19fb79c2016-09-05 21:04:51 -04001351 if (fstype == NULL || extn == NULL || strcmp(fstype, "log") == 0) continue;
1352 int extnlength = strlen(extn);
1353 if (extnlength != 3 && extnlength != 6) continue;
1354 if (extnlength >= 3 && strncmp(extn, "win", 3) != 0) continue;
1355 //if (extnlength == 6 && strncmp(extn, "win000", 6) != 0) continue;
Dees_Troy63c8df72012-09-10 14:02:05 -04001356
bigbiff bigbiff19fb79c2016-09-05 21:04:51 -04001357 if (check_encryption) {
1358 string filename = Restore_Name + "/";
1359 filename += de->d_name;
1360 if (TWFunc::Get_File_Type(filename) == 2) {
1361 LOGINFO("'%s' is encrypted\n", filename.c_str());
1362 DataManager::SetValue("tw_restore_encrypted", 1);
1363 }
1364 }
1365 if (extnlength == 6 && strncmp(extn, "win000", 6) != 0) continue;
1366
1367 TWPartition* Part = Find_Partition_By_Path(label);
1368 if (Part == NULL)
1369 {
1370 gui_msg(Msg(msg::kError, "unable_locate_part_backup_name=Unable to locate partition by backup name: '{1}'")(label));
1371 continue;
1372 }
1373
1374 Part->Backup_FileName = de->d_name;
1375 if (strlen(extn) > 3) {
1376 Part->Backup_FileName.resize(Part->Backup_FileName.size() - strlen(extn) + 3);
1377 }
1378
dianlujitaob76a73a2020-04-30 20:33:20 +08001379 if (!Part->Is_SubPartition) {
1380 if (Part->Backup_Path == Get_Android_Root_Path())
1381 Restore_List += "/system;";
1382 else
1383 Restore_List += Part->Backup_Path + ";";
1384 }
bigbiff bigbiff19fb79c2016-09-05 21:04:51 -04001385 }
1386 closedir(d);
Dees_Troy63c8df72012-09-10 14:02:05 -04001387 }
bigbiff bigbiff19fb79c2016-09-05 21:04:51 -04001388
1389 if (adbbackup) {
1390 Restore_List = "ADB_Backup;";
1391 adbbackup = false;
1392 }
Dees_Troy63c8df72012-09-10 14:02:05 -04001393
Dees_Troya13d74f2013-03-24 08:54:55 -05001394 // Set the final value
1395 DataManager::SetValue("tw_restore_list", Restore_List);
1396 DataManager::SetValue("tw_restore_selected", Restore_List);
Dees_Troy51a0e822012-09-05 15:24:24 -04001397 return;
1398}
1399
1400int TWPartitionManager::Wipe_By_Path(string Path) {
Dees_Troy63c8df72012-09-10 14:02:05 -04001401 std::vector<TWPartition*>::iterator iter;
Mohd Farazfdd49bb2020-04-21 18:56:44 +05301402 std::vector < TWPartition * >::iterator iter1;
Dees_Troy63c8df72012-09-10 14:02:05 -04001403 int ret = false;
1404 bool found = false;
Dees_Troy38bd7602012-09-14 13:33:53 -04001405 string Local_Path = TWFunc::Get_Root_Path(Path);
Dees_Troy63c8df72012-09-10 14:02:05 -04001406
dianlujitaob76a73a2020-04-30 20:33:20 +08001407 if (Local_Path == "/system")
1408 Local_Path = Get_Android_Root_Path();
Dees_Troy63c8df72012-09-10 14:02:05 -04001409 // Iterate through all partitions
1410 for (iter = Partitions.begin(); iter != Partitions.end(); iter++) {
Dees_Troy657c3092012-09-10 20:32:10 -04001411 if ((*iter)->Mount_Point == Local_Path || (!(*iter)->Symlink_Mount_Point.empty() && (*iter)->Symlink_Mount_Point == Local_Path)) {
Mohd Farazfdd49bb2020-04-21 18:56:44 +05301412 // iterate through all partitions since some legacy devices uses other partitions as vendor causes issues while wiping
1413 (*iter)->Find_Actual_Block_Device();
1414 for (iter1 = Partitions.begin (); iter1 != Partitions.end (); iter1++)
1415 {
1416 (*iter1)->Find_Actual_Block_Device();
1417 if ((*iter)->Actual_Block_Device == (*iter1)->Actual_Block_Device && (*iter)->Mount_Point != (*iter1)->Mount_Point)
1418 (*iter1)->UnMount(false);
1419 }
Dees_Troye58d5262012-09-21 12:27:57 -04001420 if (Path == "/and-sec")
1421 ret = (*iter)->Wipe_AndSec();
1422 else
1423 ret = (*iter)->Wipe();
Dees_Troy63c8df72012-09-10 14:02:05 -04001424 found = true;
1425 } else if ((*iter)->Is_SubPartition && (*iter)->SubPartition_Of == Local_Path) {
1426 (*iter)->Wipe();
1427 }
1428 }
1429 if (found) {
1430 return ret;
1431 } else
Ethan Yonker74db1572015-10-28 12:44:49 -05001432 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 -04001433 return false;
Dees_Troy51a0e822012-09-05 15:24:24 -04001434}
1435
Ethan Yonker87c7bac2014-05-25 21:41:08 -05001436int TWPartitionManager::Wipe_By_Path(string Path, string New_File_System) {
1437 std::vector<TWPartition*>::iterator iter;
1438 int ret = false;
1439 bool found = false;
1440 string Local_Path = TWFunc::Get_Root_Path(Path);
1441
1442 // Iterate through all partitions
1443 for (iter = Partitions.begin(); iter != Partitions.end(); iter++) {
1444 if ((*iter)->Mount_Point == Local_Path || (!(*iter)->Symlink_Mount_Point.empty() && (*iter)->Symlink_Mount_Point == Local_Path)) {
1445 if (Path == "/and-sec")
1446 ret = (*iter)->Wipe_AndSec();
1447 else
1448 ret = (*iter)->Wipe(New_File_System);
1449 found = true;
1450 } else if ((*iter)->Is_SubPartition && (*iter)->SubPartition_Of == Local_Path) {
1451 (*iter)->Wipe(New_File_System);
1452 }
1453 }
1454 if (found) {
1455 return ret;
1456 } else
Ethan Yonker74db1572015-10-28 12:44:49 -05001457 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 -05001458 return false;
1459}
1460
Dees_Troy51a0e822012-09-05 15:24:24 -04001461int TWPartitionManager::Factory_Reset(void) {
Dees_Troy63c8df72012-09-10 14:02:05 -04001462 std::vector<TWPartition*>::iterator iter;
1463 int ret = true;
1464
1465 for (iter = Partitions.begin(); iter != Partitions.end(); iter++) {
Dees_Troy38bd7602012-09-14 13:33:53 -04001466 if ((*iter)->Wipe_During_Factory_Reset && (*iter)->Is_Present) {
Ethan Yonker89583ef2015-08-26 09:01:59 -05001467#ifdef TW_OEM_BUILD
1468 if ((*iter)->Mount_Point == "/data") {
1469 if (!(*iter)->Wipe_Encryption())
1470 ret = false;
1471 } else {
1472#endif
1473 if (!(*iter)->Wipe())
1474 ret = false;
1475#ifdef TW_OEM_BUILD
1476 }
1477#endif
Dees_Troy094207a2012-09-26 12:00:39 -04001478 } else if ((*iter)->Has_Android_Secure) {
1479 if (!(*iter)->Wipe_AndSec())
1480 ret = false;
Dees_Troy63c8df72012-09-10 14:02:05 -04001481 }
1482 }
bigbiffad58e1b2020-07-06 20:24:34 -04001483 TWFunc::check_and_run_script("/system/bin/factoryreset.sh", "Factory Reset Script");
Dees_Troy63c8df72012-09-10 14:02:05 -04001484 return ret;
Dees_Troy51a0e822012-09-05 15:24:24 -04001485}
1486
Dees_Troy38bd7602012-09-14 13:33:53 -04001487int TWPartitionManager::Wipe_Dalvik_Cache(void) {
1488 struct stat st;
bigbiff bigbiff9c754052013-01-09 09:09:08 -05001489 vector <string> dir;
Dees_Troy38bd7602012-09-14 13:33:53 -04001490
1491 if (!Mount_By_Path("/data", true))
1492 return false;
1493
bigbiff bigbiff9c754052013-01-09 09:09:08 -05001494 dir.push_back("/data/dalvik-cache");
bigbiff bigbiff19874f12019-01-08 20:06:57 -05001495
bigbiff25d25b92020-06-19 16:07:38 -04001496 std::string cacheDir = TWFunc::get_log_dir();
1497 if (cacheDir == CACHE_LOGS_DIR) {
1498 if (!PartitionManager.Mount_By_Path(CACHE_LOGS_DIR, false)) {
1499 LOGINFO("Unable to mount %s for wiping cache.\n", CACHE_LOGS_DIR);
bigbiff bigbiff19874f12019-01-08 20:06:57 -05001500 }
1501 dir.push_back(cacheDir + "dalvik-cache");
1502 dir.push_back(cacheDir + "/dc");
bigbiff bigbiff9c754052013-01-09 09:09:08 -05001503 }
Ethan Yonkerff2b7882016-12-10 09:04:41 -06001504
Dees_Troy38bd7602012-09-14 13:33:53 -04001505 TWPartition* sdext = Find_Partition_By_Path("/sd-ext");
Vojtech Bocekfafb0c52013-07-25 22:53:02 +02001506 if (sdext && sdext->Is_Present && sdext->Mount(false))
1507 {
1508 if (stat("/sd-ext/dalvik-cache", &st) == 0)
1509 {
Ethan Yonkerff2b7882016-12-10 09:04:41 -06001510 dir.push_back("/sd-ext/dalvik-cache");
1511 }
1512 }
1513
bigbiff25d25b92020-06-19 16:07:38 -04001514 if (cacheDir == CACHE_LOGS_DIR) {
bigbiff bigbiff19874f12019-01-08 20:06:57 -05001515 gui_msg("wiping_cache_dalvik=Wiping Dalvik Cache Directories...");
1516 } else {
1517 gui_msg("wiping_dalvik=Wiping Dalvik Directory...");
1518 }
Ethan Yonkerff2b7882016-12-10 09:04:41 -06001519 for (unsigned i = 0; i < dir.size(); ++i) {
1520 if (stat(dir.at(i).c_str(), &st) == 0) {
1521 TWFunc::removeDir(dir.at(i), false);
1522 gui_msg(Msg("cleaned=Cleaned: {1}...")(dir.at(i)));
bigbiff bigbiff9c754052013-01-09 09:09:08 -05001523 }
Vojtech Bocekfafb0c52013-07-25 22:53:02 +02001524 }
bigbiff bigbiff19874f12019-01-08 20:06:57 -05001525
bigbiff25d25b92020-06-19 16:07:38 -04001526 if (cacheDir == CACHE_LOGS_DIR) {
bigbiff bigbiff19874f12019-01-08 20:06:57 -05001527 gui_msg("cache_dalvik_done=-- Dalvik Cache Directories Wipe Complete!");
1528 } else {
1529 gui_msg("dalvik_done=-- Dalvik Directory Wipe Complete!");
1530 }
1531
Dees_Troy38bd7602012-09-14 13:33:53 -04001532 return true;
1533}
1534
1535int TWPartitionManager::Wipe_Rotate_Data(void) {
1536 if (!Mount_By_Path("/data", true))
1537 return false;
1538
bigbiff bigbiff9c754052013-01-09 09:09:08 -05001539 unlink("/data/misc/akmd*");
1540 unlink("/data/misc/rild*");
Dees_Troy2673cec2013-04-02 20:22:16 +00001541 gui_print("Rotation data wiped.\n");
Dees_Troy38bd7602012-09-14 13:33:53 -04001542 return true;
1543}
1544
1545int TWPartitionManager::Wipe_Battery_Stats(void) {
1546 struct stat st;
1547
1548 if (!Mount_By_Path("/data", true))
1549 return false;
1550
1551 if (0 != stat("/data/system/batterystats.bin", &st)) {
Dees_Troy2673cec2013-04-02 20:22:16 +00001552 gui_print("No Battery Stats Found. No Need To Wipe.\n");
Dees_Troy38bd7602012-09-14 13:33:53 -04001553 } else {
1554 remove("/data/system/batterystats.bin");
Dees_Troy2673cec2013-04-02 20:22:16 +00001555 gui_print("Cleared battery stats.\n");
Dees_Troy38bd7602012-09-14 13:33:53 -04001556 }
1557 return true;
1558}
1559
Dees_Troy2ff5a8d2012-09-26 14:53:02 -04001560int TWPartitionManager::Wipe_Android_Secure(void) {
1561 std::vector<TWPartition*>::iterator iter;
1562 int ret = false;
1563 bool found = false;
1564
1565 // Iterate through all partitions
1566 for (iter = Partitions.begin(); iter != Partitions.end(); iter++) {
1567 if ((*iter)->Has_Android_Secure) {
1568 ret = (*iter)->Wipe_AndSec();
1569 found = true;
1570 }
1571 }
1572 if (found) {
1573 return ret;
1574 } else {
Ethan Yonker74db1572015-10-28 12:44:49 -05001575 gui_err("no_andsec=No android secure partitions found.");
Dees_Troy2ff5a8d2012-09-26 14:53:02 -04001576 }
1577 return false;
1578}
1579
Dees_Troy38bd7602012-09-14 13:33:53 -04001580int TWPartitionManager::Format_Data(void) {
1581 TWPartition* dat = Find_Partition_By_Path("/data");
bigbiffcfa875c2021-06-20 16:20:27 -04001582 TWPartition* metadata = Find_Partition_By_Path("/metadata");
1583 if (metadata != NULL)
1584 metadata->UnMount(false);
Dees_Troy38bd7602012-09-14 13:33:53 -04001585
1586 if (dat != NULL) {
bigbiffcfa875c2021-06-20 16:20:27 -04001587 if (android::base::GetBoolProperty("ro.virtual_ab.enabled", true)) {
1588#ifndef TW_EXCLUDE_APEX
1589 twrpApex apex;
1590 apex.Unmount();
1591#endif
1592 if (metadata != NULL)
1593 metadata->Mount(true);
1594 if (!dat->Check_Pending_Merges())
1595 return false;
1596 }
Dees_Troy38bd7602012-09-14 13:33:53 -04001597 return dat->Wipe_Encryption();
1598 } else {
Matt Mower3c366972015-12-25 19:28:31 -06001599 gui_msg(Msg(msg::kError, "unable_to_locate=Unable to locate {1}.")("/data"));
Dees_Troy38bd7602012-09-14 13:33:53 -04001600 return false;
1601 }
1602 return false;
1603}
1604
1605int TWPartitionManager::Wipe_Media_From_Data(void) {
1606 TWPartition* dat = Find_Partition_By_Path("/data");
1607
1608 if (dat != NULL) {
1609 if (!dat->Has_Data_Media) {
Dees_Troy2673cec2013-04-02 20:22:16 +00001610 LOGERR("This device does not have /data/media\n");
Dees_Troy38bd7602012-09-14 13:33:53 -04001611 return false;
1612 }
1613 if (!dat->Mount(true))
1614 return false;
1615
Ethan Yonker74db1572015-10-28 12:44:49 -05001616 gui_msg("wiping_datamedia=Wiping internal storage -- /data/media...");
Ethan Yonker726a0202014-12-16 20:01:38 -06001617 Remove_MTP_Storage(dat->MTP_Storage_ID);
bigbiff bigbiff9c754052013-01-09 09:09:08 -05001618 TWFunc::removeDir("/data/media", false);
xiaolu9416f4f2015-06-04 08:22:23 +08001619 dat->Recreate_Media_Folder();
Ethan Yonker726a0202014-12-16 20:01:38 -06001620 Add_MTP_Storage(dat->MTP_Storage_ID);
Dees_Troy38bd7602012-09-14 13:33:53 -04001621 return true;
1622 } else {
Matt Mower3c366972015-12-25 19:28:31 -06001623 gui_msg(Msg(msg::kError, "unable_to_locate=Unable to locate {1}.")("/data"));
Dees_Troy38bd7602012-09-14 13:33:53 -04001624 return false;
1625 }
1626 return false;
1627}
1628
Ethan Yonker87c7bac2014-05-25 21:41:08 -05001629int TWPartitionManager::Repair_By_Path(string Path, bool Display_Error) {
1630 std::vector<TWPartition*>::iterator iter;
1631 int ret = false;
1632 bool found = false;
1633 string Local_Path = TWFunc::Get_Root_Path(Path);
1634
1635 if (Local_Path == "/tmp" || Local_Path == "/")
1636 return true;
1637
1638 // Iterate through all partitions
1639 for (iter = Partitions.begin(); iter != Partitions.end(); iter++) {
1640 if ((*iter)->Mount_Point == Local_Path || (!(*iter)->Symlink_Mount_Point.empty() && (*iter)->Symlink_Mount_Point == Local_Path)) {
1641 ret = (*iter)->Repair();
1642 found = true;
1643 } else if ((*iter)->Is_SubPartition && (*iter)->SubPartition_Of == Local_Path) {
1644 (*iter)->Repair();
1645 }
1646 }
1647 if (found) {
1648 return ret;
1649 } else if (Display_Error) {
Ethan Yonker74db1572015-10-28 12:44:49 -05001650 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 -05001651 } else {
1652 LOGINFO("Repair: Unable to find partition for path '%s'\n", Local_Path.c_str());
1653 }
1654 return false;
1655}
1656
Ethan Yonkera2719152015-05-28 09:44:41 -05001657int TWPartitionManager::Resize_By_Path(string Path, bool Display_Error) {
1658 std::vector<TWPartition*>::iterator iter;
1659 int ret = false;
1660 bool found = false;
1661 string Local_Path = TWFunc::Get_Root_Path(Path);
1662
1663 if (Local_Path == "/tmp" || Local_Path == "/")
1664 return true;
1665
1666 // Iterate through all partitions
1667 for (iter = Partitions.begin(); iter != Partitions.end(); iter++) {
1668 if ((*iter)->Mount_Point == Local_Path || (!(*iter)->Symlink_Mount_Point.empty() && (*iter)->Symlink_Mount_Point == Local_Path)) {
1669 ret = (*iter)->Resize();
1670 found = true;
1671 } else if ((*iter)->Is_SubPartition && (*iter)->SubPartition_Of == Local_Path) {
1672 (*iter)->Resize();
1673 }
1674 }
1675 if (found) {
1676 return ret;
1677 } else if (Display_Error) {
Ethan Yonker74db1572015-10-28 12:44:49 -05001678 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 -05001679 } else {
1680 LOGINFO("Resize: Unable to find partition for path '%s'\n", Local_Path.c_str());
1681 }
1682 return false;
1683}
1684
Dees_Troy51a0e822012-09-05 15:24:24 -04001685void TWPartitionManager::Update_System_Details(void) {
Dees_Troy5bf43922012-09-07 16:07:55 -04001686 std::vector<TWPartition*>::iterator iter;
Dees_Troy51127312012-09-08 13:08:49 -04001687 int data_size = 0;
Dees_Troy5bf43922012-09-07 16:07:55 -04001688
Ethan Yonker74db1572015-10-28 12:44:49 -05001689 gui_msg("update_part_details=Updating partition details...");
Dees_Troy5bf43922012-09-07 16:07:55 -04001690 for (iter = Partitions.begin(); iter != Partitions.end(); iter++) {
Ethan Yonker1b190162016-12-05 15:25:19 -06001691 (*iter)->Update_Size(true);
Dees_Troy51127312012-09-08 13:08:49 -04001692 if ((*iter)->Can_Be_Mounted) {
Captain Throwback9d6feb52018-07-27 10:05:24 -04001693 if ((*iter)->Mount_Point == Get_Android_Root_Path()) {
Dees_Troy51127312012-09-08 13:08:49 -04001694 int backup_display_size = (int)((*iter)->Backup_Size / 1048576LLU);
1695 DataManager::SetValue(TW_BACKUP_SYSTEM_SIZE, backup_display_size);
Ethan Yonker76bbd3a2019-05-10 10:50:04 -05001696 TWFunc::Is_TWRP_App_In_System();
Dees_Troy51127312012-09-08 13:08:49 -04001697 } else if ((*iter)->Mount_Point == "/data" || (*iter)->Mount_Point == "/datadata") {
1698 data_size += (int)((*iter)->Backup_Size / 1048576LLU);
1699 } else if ((*iter)->Mount_Point == "/cache") {
1700 int backup_display_size = (int)((*iter)->Backup_Size / 1048576LLU);
1701 DataManager::SetValue(TW_BACKUP_CACHE_SIZE, backup_display_size);
1702 } else if ((*iter)->Mount_Point == "/sd-ext") {
1703 int backup_display_size = (int)((*iter)->Backup_Size / 1048576LLU);
1704 DataManager::SetValue(TW_BACKUP_SDEXT_SIZE, backup_display_size);
1705 if ((*iter)->Backup_Size == 0) {
1706 DataManager::SetValue(TW_HAS_SDEXT_PARTITION, 0);
1707 DataManager::SetValue(TW_BACKUP_SDEXT_VAR, 0);
1708 } else
1709 DataManager::SetValue(TW_HAS_SDEXT_PARTITION, 1);
Dees_Troye58d5262012-09-21 12:27:57 -04001710 } else if ((*iter)->Has_Android_Secure) {
Dees_Troy8170a922012-09-18 15:40:25 -04001711 int backup_display_size = (int)((*iter)->Backup_Size / 1048576LLU);
Dees_Troye58d5262012-09-21 12:27:57 -04001712 DataManager::SetValue(TW_BACKUP_ANDSEC_SIZE, backup_display_size);
Dees_Troy8170a922012-09-18 15:40:25 -04001713 if ((*iter)->Backup_Size == 0) {
1714 DataManager::SetValue(TW_HAS_ANDROID_SECURE, 0);
1715 DataManager::SetValue(TW_BACKUP_ANDSEC_VAR, 0);
1716 } else
1717 DataManager::SetValue(TW_HAS_ANDROID_SECURE, 1);
Dees_Troy2c50e182012-09-26 20:05:28 -04001718 } else if ((*iter)->Mount_Point == "/boot") {
1719 int backup_display_size = (int)((*iter)->Backup_Size / 1048576LLU);
1720 DataManager::SetValue(TW_BACKUP_BOOT_SIZE, backup_display_size);
1721 if ((*iter)->Backup_Size == 0) {
1722 DataManager::SetValue("tw_has_boot_partition", 0);
1723 DataManager::SetValue(TW_BACKUP_BOOT_VAR, 0);
1724 } else
1725 DataManager::SetValue("tw_has_boot_partition", 1);
Dees_Troy51127312012-09-08 13:08:49 -04001726 }
Dees_Troyaa9cc402012-10-13 12:14:05 -04001727 } else {
1728 // Handle unmountable partitions in case we reset defaults
1729 if ((*iter)->Mount_Point == "/boot") {
1730 int backup_display_size = (int)((*iter)->Backup_Size / 1048576LLU);
1731 DataManager::SetValue(TW_BACKUP_BOOT_SIZE, backup_display_size);
1732 if ((*iter)->Backup_Size == 0) {
1733 DataManager::SetValue(TW_HAS_BOOT_PARTITION, 0);
1734 DataManager::SetValue(TW_BACKUP_BOOT_VAR, 0);
1735 } else
1736 DataManager::SetValue(TW_HAS_BOOT_PARTITION, 1);
1737 } else if ((*iter)->Mount_Point == "/recovery") {
1738 int backup_display_size = (int)((*iter)->Backup_Size / 1048576LLU);
1739 DataManager::SetValue(TW_BACKUP_RECOVERY_SIZE, backup_display_size);
1740 if ((*iter)->Backup_Size == 0) {
1741 DataManager::SetValue(TW_HAS_RECOVERY_PARTITION, 0);
1742 DataManager::SetValue(TW_BACKUP_RECOVERY_VAR, 0);
1743 } else
1744 DataManager::SetValue(TW_HAS_RECOVERY_PARTITION, 1);
Gary Peck82599a82012-11-21 16:23:12 -08001745 } else if ((*iter)->Mount_Point == "/data") {
1746 data_size += (int)((*iter)->Backup_Size / 1048576LLU);
Dees_Troyaa9cc402012-10-13 12:14:05 -04001747 }
Dees_Troy51127312012-09-08 13:08:49 -04001748 }
Dees_Troy5bf43922012-09-07 16:07:55 -04001749 }
Ethan Yonker74db1572015-10-28 12:44:49 -05001750 gui_msg("update_part_details_done=...done");
Dees_Troy51127312012-09-08 13:08:49 -04001751 DataManager::SetValue(TW_BACKUP_DATA_SIZE, data_size);
1752 string current_storage_path = DataManager::GetCurrentStoragePath();
1753 TWPartition* FreeStorage = Find_Partition_By_Path(current_storage_path);
Dees_Troy8170a922012-09-18 15:40:25 -04001754 if (FreeStorage != NULL) {
1755 // Attempt to mount storage
bigbiff25d25b92020-06-19 16:07:38 -04001756 if (!FreeStorage->Mount(false)) {
1757 gui_msg(Msg(msg::kWarning, "unable_to_mount_storage=Unable to mount storage"));
1758 DataManager::SetValue(TW_STORAGE_FREE_SIZE, 0);
1759 } else {
1760 DataManager::SetValue(TW_STORAGE_FREE_SIZE, (int)(FreeStorage->Free / 1048576LLU));
Dees_Troy8170a922012-09-18 15:40:25 -04001761 }
1762 } else {
Dees_Troy2673cec2013-04-02 20:22:16 +00001763 LOGINFO("Unable to find storage partition '%s'.\n", current_storage_path.c_str());
Dees_Troy8170a922012-09-18 15:40:25 -04001764 }
Dees_Troy5bf43922012-09-07 16:07:55 -04001765 if (!Write_Fstab())
Dees_Troy2673cec2013-04-02 20:22:16 +00001766 LOGERR("Error creating fstab\n");
Dees_Troy51a0e822012-09-05 15:24:24 -04001767 return;
1768}
1769
Ethan Yonkerbd7492d2016-12-07 13:55:01 -06001770void TWPartitionManager::Post_Decrypt(const string& Block_Device) {
1771 TWPartition* dat = Find_Partition_By_Path("/data");
bigbiffc2cb3852020-09-11 14:03:31 -04001772
Ethan Yonkerbd7492d2016-12-07 13:55:01 -06001773 if (dat != NULL) {
1774 DataManager::SetValue(TW_IS_DECRYPTED, 1);
1775 dat->Is_Decrypted = true;
1776 if (!Block_Device.empty()) {
1777 dat->Decrypted_Block_Device = Block_Device;
1778 gui_msg(Msg("decrypt_success_dev=Data successfully decrypted, new block device: '{1}'")(Block_Device));
1779 } else {
1780 gui_msg("decrypt_success_nodev=Data successfully decrypted");
1781 }
Noah Jacobson81d638d2019-04-28 00:10:07 -04001782 property_set("twrp.decrypt.done", "true");
Ethan Yonkerbd7492d2016-12-07 13:55:01 -06001783 dat->Setup_File_System(false);
Noah Jacobson81d638d2019-04-28 00:10:07 -04001784 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 -06001785
Noah Jacobson81d638d2019-04-28 00:10:07 -04001786 sleep(1); // Sleep for a bit so that the device will be ready
Ethan Yonkerbd7492d2016-12-07 13:55:01 -06001787 if (dat->Has_Data_Media && dat->Mount(false) && TWFunc::Path_Exists("/data/media/0")) {
1788 dat->Storage_Path = "/data/media/0";
1789 dat->Symlink_Path = dat->Storage_Path;
1790 DataManager::SetValue("tw_storage_path", "/data/media/0");
1791 DataManager::SetValue("tw_settings_path", "/data/media/0");
Ethan Yonkerbd7492d2016-12-07 13:55:01 -06001792 }
epicXa721f952021-01-04 13:01:31 +05301793 DataManager::LoadTWRPFolderInfo();
Ethan Yonkerbd7492d2016-12-07 13:55:01 -06001794 Update_System_Details();
nkk71ffb02bd2017-06-04 23:12:16 +03001795 Output_Partition(dat);
bigbiffbe4f46c2021-04-24 11:48:54 -04001796 if (!dat->Bind_Mount(false))
1797 LOGERR("Unable to bind mount /sdcard to %s\n", dat->Storage_Path.c_str());
Ethan Yonkerbd7492d2016-12-07 13:55:01 -06001798 } else
1799 LOGERR("Unable to locate data partition.\n");
1800}
1801
Noah Jacobson81d638d2019-04-28 00:10:07 -04001802void TWPartitionManager::Parse_Users() {
1803#ifdef TW_INCLUDE_FBE
1804 char user_check_result[PROPERTY_VALUE_MAX];
1805 for (int userId = 0; userId <= 9999; userId++) {
1806 string prop = "twrp.user." + to_string(userId) + ".decrypt";
1807 property_get(prop.c_str(), user_check_result, "-1");
1808 if (strcmp(user_check_result, "-1") != 0) {
1809 if (userId < 0 || userId > 9999) {
1810 LOGINFO("Incorrect user id %d\n", userId);
1811 continue;
1812 }
1813 struct users_struct user;
1814 user.userId = to_string(userId);
1815
1816 // Attempt to get name of user. Fallback to user ID if this fails.
1817 char* userFile = PageManager::LoadFileToBuffer("/data/system/users/" + to_string(userId) + ".xml", NULL);
bigbiffa957f072021-03-07 18:20:29 -05001818 if (userFile == NULL) {
Noah Jacobson81d638d2019-04-28 00:10:07 -04001819 user.userName = to_string(userId);
bigbiffa957f072021-03-07 18:20:29 -05001820 }
Noah Jacobson81d638d2019-04-28 00:10:07 -04001821 else {
1822 xml_document<> *userXml = new xml_document<>();
1823 userXml->parse<0>(userFile);
1824 xml_node<>* userNode = userXml->first_node("user");
1825 if (userNode == nullptr) {
1826 user.userName = to_string(userId);
1827 } else {
1828 xml_node<>* nameNode = userNode->first_node("name");
1829 if (nameNode == nullptr)
1830 user.userName = to_string(userId);
1831 else {
1832 string userName = nameNode->value();
1833 user.userName = userName + " (" + to_string(userId) + ")";
1834 }
1835 }
1836 }
1837
1838 string filename;
1839 user.type = Get_Password_Type(userId, filename);
1840
1841 user.isDecrypted = false;
1842 if (strcmp(user_check_result, "1") == 0)
1843 user.isDecrypted = true;
1844 Users_List.push_back(user);
1845 }
1846 }
1847 Check_Users_Decryption_Status();
1848#endif
1849}
1850
1851std::vector<users_struct>* TWPartitionManager::Get_Users_List() {
1852 return &Users_List;
1853}
1854
1855void TWPartitionManager::Mark_User_Decrypted(int userID) {
1856#ifdef TW_INCLUDE_FBE
1857 std::vector<users_struct>::iterator iter;
1858 for (iter = Users_List.begin(); iter != Users_List.end(); iter++) {
1859 if (atoi((*iter).userId.c_str()) == userID) {
1860 (*iter).isDecrypted = true;
1861 string user_prop_decrypted = "twrp.user." + to_string(userID) + ".decrypt";
1862 property_set(user_prop_decrypted.c_str(), "1");
1863 break;
1864 }
1865 }
1866 Check_Users_Decryption_Status();
1867#endif
1868}
1869
1870void TWPartitionManager::Check_Users_Decryption_Status() {
1871#ifdef TW_INCLUDE_FBE
1872 int all_is_decrypted = 1;
1873 std::vector<users_struct>::iterator iter;
1874 for (iter = Users_List.begin(); iter != Users_List.end(); iter++) {
1875 if (!(*iter).isDecrypted) {
1876 LOGINFO("User %s is not decrypted.\n", (*iter).userId.c_str());
1877 all_is_decrypted = 0;
1878 break;
1879 }
1880 }
1881 if (all_is_decrypted == 1) {
1882 LOGINFO("All found users are decrypted.\n");
1883 DataManager::SetValue("tw_all_users_decrypted", "1");
1884 property_set("twrp.all.users.decrypted", "true");
1885 } else
1886 DataManager::SetValue("tw_all_users_decrypted", "0");
1887#endif
1888}
1889
1890int TWPartitionManager::Decrypt_Device(string Password, int user_id) {
Dees_Troy5bf43922012-09-07 16:07:55 -04001891#ifdef TW_INCLUDE_CRYPTO
Ethan Yonkerddb63e22017-01-19 14:01:57 -06001892 char crypto_state[PROPERTY_VALUE_MAX], crypto_blkdev[PROPERTY_VALUE_MAX];
Ethan Yonker253368a2014-11-25 15:00:52 -06001893 std::vector<TWPartition*>::iterator iter;
Dees_Troy5bf43922012-09-07 16:07:55 -04001894
Ethan Yonker253368a2014-11-25 15:00:52 -06001895 // Mount any partitions that need to be mounted for decrypt
1896 for (iter = Partitions.begin(); iter != Partitions.end(); iter++) {
1897 if ((*iter)->Mount_To_Decrypt) {
1898 (*iter)->Mount(true);
1899 }
a39552696ff55ce2013-01-08 16:14:56 +00001900 }
oshmouna82a7542018-04-10 17:45:55 +02001901 property_set("twrp.mount_to_decrypt", "1");
a39552696ff55ce2013-01-08 16:14:56 +00001902
Ethan Yonkera1de1492015-11-04 11:58:27 -06001903 property_get("ro.crypto.state", crypto_state, "error");
1904 if (strcmp(crypto_state, "error") == 0) {
Captain Throwback18aea272020-10-29 12:43:17 -04001905 Set_FDE_Encrypt_Status();
Ethan Yonkera1de1492015-11-04 11:58:27 -06001906 }
1907
Ethan Yonkerbd7492d2016-12-07 13:55:01 -06001908 if (DataManager::GetIntValue(TW_IS_FBE)) {
1909#ifdef TW_INCLUDE_FBE
1910 if (!Mount_By_Path("/data", true)) // /data has to be mounted for FBE
1911 return -1;
Noah Jacobson81d638d2019-04-28 00:10:07 -04001912
1913 bool user_need_decrypt = false;
1914 std::vector<users_struct>::iterator iter;
1915 for (iter = Users_List.begin(); iter != Users_List.end(); iter++) {
1916 if (atoi((*iter).userId.c_str()) == user_id && !(*iter).isDecrypted) {
1917 user_need_decrypt = true;
1918 }
1919 }
1920 if (!user_need_decrypt) {
1921 LOGINFO("User %d does not require decryption\n", user_id);
1922 return 0;
1923 }
1924
Ethan Yonkerbd7492d2016-12-07 13:55:01 -06001925 int retry_count = 10;
1926 while (!TWFunc::Path_Exists("/data/system/users/gatekeeper.password.key") && --retry_count)
Noah Jacobson81d638d2019-04-28 00:10:07 -04001927 usleep(2000); // A small sleep is needed after mounting /data to ensure reliable decrypt...maybe because of DE?
1928 gui_msg(Msg("decrypting_user_fbe=Attempting to decrypt FBE for user {1}...")(user_id));
Ethan Yonkerbd7492d2016-12-07 13:55:01 -06001929 if (Decrypt_User(user_id, Password)) {
Noah Jacobson81d638d2019-04-28 00:10:07 -04001930 gui_msg(Msg("decrypt_user_success_fbe=User {1} Decrypted Successfully")(user_id));
1931 Mark_User_Decrypted(user_id);
1932 if (user_id == 0) {
1933 // When decrypting user 0 also try all other users
1934 std::vector<users_struct>::iterator iter;
1935 for (iter = Users_List.begin(); iter != Users_List.end(); iter++) {
1936 if ((*iter).userId == "0" || (*iter).isDecrypted)
1937 continue;
1938
1939 int tmp_user_id = atoi((*iter).userId.c_str());
1940 gui_msg(Msg("decrypting_user_fbe=Attempting to decrypt FBE for user {1}...")(tmp_user_id));
1941 if (Decrypt_User(tmp_user_id, Password) ||
1942 (Password != "!" && Decrypt_User(tmp_user_id, "!"))) { // "!" means default password
1943 gui_msg(Msg("decrypt_user_success_fbe=User {1} Decrypted Successfully")(tmp_user_id));
1944 Mark_User_Decrypted(tmp_user_id);
1945 } else {
1946 gui_msg(Msg("decrypt_user_fail_fbe=Failed to decrypt user {1}")(tmp_user_id));
1947 }
1948 }
1949 Post_Decrypt("");
1950 }
1951
Ethan Yonkerbd7492d2016-12-07 13:55:01 -06001952 return 0;
Noah Jacobson81d638d2019-04-28 00:10:07 -04001953 } else {
1954 gui_msg(Msg(msg::kError, "decrypt_user_fail_fbe=Failed to decrypt user {1}")(user_id));
Ethan Yonkerbd7492d2016-12-07 13:55:01 -06001955 }
1956#else
1957 LOGERR("FBE support is not present\n");
1958#endif
1959 return -1;
1960 }
1961
Noah Jacobson81d638d2019-04-28 00:10:07 -04001962 char isdecrypteddata[PROPERTY_VALUE_MAX];
1963 property_get("twrp.decrypt.done", isdecrypteddata, "");
1964 if (strcmp(isdecrypteddata, "true") == 0) {
1965 LOGINFO("Data has no decryption required\n");
1966 return 0;
1967 }
1968
Ethan Yonkerddb63e22017-01-19 14:01:57 -06001969 int pwret = -1;
1970 pid_t pid = fork();
1971 if (pid < 0) {
1972 LOGERR("fork failed\n");
1973 return -1;
1974 } else if (pid == 0) {
1975 // Child process
1976 char cPassword[255];
1977 strcpy(cPassword, Password.c_str());
1978 int ret = cryptfs_check_passwd(cPassword);
1979 exit(ret);
1980 } else {
1981 // Parent
1982 int status;
1983 if (TWFunc::Wait_For_Child_Timeout(pid, &status, "Decrypt", 30))
1984 pwret = -1;
1985 else
1986 pwret = WEXITSTATUS(status) ? -1 : 0;
1987 }
a39552696ff55ce2013-01-08 16:14:56 +00001988
nkk7171c6c502017-01-05 23:55:05 +02001989#ifdef TW_CRYPTO_USE_SYSTEM_VOLD
1990 if (pwret != 0) {
1991 pwret = vold_decrypt(Password);
nkk717d1222a2017-11-06 17:27:21 +02001992 switch (pwret) {
1993 case VD_SUCCESS:
1994 break;
1995 case VD_ERR_MISSING_VDC:
1996 gui_msg(Msg(msg::kError, "decrypt_data_vold_os_missing=Missing files needed for vold decrypt: {1}")("/system/bin/vdc"));
1997 break;
1998 case VD_ERR_MISSING_VOLD:
1999 gui_msg(Msg(msg::kError, "decrypt_data_vold_os_missing=Missing files needed for vold decrypt: {1}")("/system/bin/vold"));
2000 break;
2001 }
nkk7171c6c502017-01-05 23:55:05 +02002002 }
2003#endif // TW_CRYPTO_USE_SYSTEM_VOLD
2004
Ethan Yonker253368a2014-11-25 15:00:52 -06002005 // Unmount any partitions that were needed for decrypt
2006 for (iter = Partitions.begin(); iter != Partitions.end(); iter++) {
2007 if ((*iter)->Mount_To_Decrypt) {
2008 (*iter)->UnMount(false);
2009 }
2010 }
oshmouna82a7542018-04-10 17:45:55 +02002011 property_set("twrp.mount_to_decrypt", "0");
Ethan Yonker253368a2014-11-25 15:00:52 -06002012
a39552696ff55ce2013-01-08 16:14:56 +00002013 if (pwret != 0) {
Ethan Yonker74db1572015-10-28 12:44:49 -05002014 gui_err("fail_decrypt=Failed to decrypt data.");
Dees_Troy5bf43922012-09-07 16:07:55 -04002015 return -1;
2016 }
a39552696ff55ce2013-01-08 16:14:56 +00002017
Dees_Troy5bf43922012-09-07 16:07:55 -04002018 property_get("ro.crypto.fs_crypto_blkdev", crypto_blkdev, "error");
2019 if (strcmp(crypto_blkdev, "error") == 0) {
Dees_Troy2673cec2013-04-02 20:22:16 +00002020 LOGERR("Error retrieving decrypted data block device.\n");
Dees_Troy5bf43922012-09-07 16:07:55 -04002021 } else {
Ethan Yonkerbd7492d2016-12-07 13:55:01 -06002022 Post_Decrypt(crypto_blkdev);
Dees_Troy5bf43922012-09-07 16:07:55 -04002023 }
2024 return 0;
2025#else
Ethan Yonker74db1572015-10-28 12:44:49 -05002026 gui_err("no_crypto_support=No crypto support was compiled into this build.");
Dees_Troy5bf43922012-09-07 16:07:55 -04002027 return -1;
2028#endif
Dees_Troy51a0e822012-09-05 15:24:24 -04002029 return 1;
Dees_Troy51127312012-09-08 13:08:49 -04002030}
2031
Ethan Yonkerb5fab762016-01-28 14:03:33 -06002032int TWPartitionManager::Fix_Contexts(void) {
Ethan Yonkerb5fab762016-01-28 14:03:33 -06002033 std::vector<TWPartition*>::iterator iter;
2034 for (iter = Partitions.begin(); iter != Partitions.end(); iter++) {
2035 if ((*iter)->Has_Data_Media) {
2036 if ((*iter)->Mount(true)) {
2037 if (fixContexts::fixDataMediaContexts((*iter)->Mount_Point) != 0)
2038 return -1;
2039 }
2040 }
2041 }
Dees_Troy1a650e62012-10-19 20:54:32 -04002042 UnMount_Main_Partitions();
Ethan Yonker74db1572015-10-28 12:44:49 -05002043 gui_msg("done=Done.");
Ethan Yonkerb5fab762016-01-28 14:03:33 -06002044 return 0;
bigbiff bigbiffa0f8a592012-10-09 21:01:03 -04002045}
2046
Ethan Yonker66a19492015-12-10 10:19:45 -06002047TWPartition* TWPartitionManager::Find_Next_Storage(string Path, bool Exclude_Data_Media) {
Ethan Yonker47360be2014-04-01 10:34:34 -05002048 std::vector<TWPartition*>::iterator iter = Partitions.begin();
2049
2050 if (!Path.empty()) {
2051 string Search_Path = TWFunc::Get_Root_Path(Path);
2052 for (; iter != Partitions.end(); iter++) {
Matt Mower9a561dd2016-02-22 21:25:51 -06002053 if ((*iter)->Mount_Point == Search_Path) {
Ethan Yonker47360be2014-04-01 10:34:34 -05002054 iter++;
2055 break;
2056 }
2057 }
2058 }
2059
2060 for (; iter != Partitions.end(); iter++) {
Ethan Yonker66a19492015-12-10 10:19:45 -06002061 if (Exclude_Data_Media && (*iter)->Has_Data_Media) {
2062 // do nothing, do not return this type of partition
2063 } else if ((*iter)->Is_Storage && (*iter)->Is_Present) {
Ethan Yonker47360be2014-04-01 10:34:34 -05002064 return (*iter);
2065 }
2066 }
2067
2068 return NULL;
2069}
2070
Dees_Troyd21618c2012-10-14 18:48:49 -04002071int TWPartitionManager::Open_Lun_File(string Partition_Path, string Lun_File) {
Dees_Troyd21618c2012-10-14 18:48:49 -04002072 TWPartition* Part = Find_Partition_By_Path(Partition_Path);
2073
2074 if (Part == NULL) {
Ethan Yonker74db1572015-10-28 12:44:49 -05002075 LOGINFO("Unable to locate '%s' for USB storage mode.", Partition_Path.c_str());
2076 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 -04002077 return false;
2078 }
Ethan Yonker47360be2014-04-01 10:34:34 -05002079 LOGINFO("USB mount '%s', '%s' > '%s'\n", Partition_Path.c_str(), Part->Actual_Block_Device.c_str(), Lun_File.c_str());
2080 if (!Part->UnMount(true) || !Part->Is_Present)
Dees_Troyd21618c2012-10-14 18:48:49 -04002081 return false;
2082
Ethan Yonker6e8c27a2016-12-22 17:55:57 -06002083 if (TWFunc::write_to_file(Lun_File, Part->Actual_Block_Device)) {
Dees_Troy2673cec2013-04-02 20:22:16 +00002084 LOGERR("Unable to write to ums lunfile '%s': (%s)\n", Lun_File.c_str(), strerror(errno));
Dees_Troyd21618c2012-10-14 18:48:49 -04002085 return false;
2086 }
Dees_Troyd21618c2012-10-14 18:48:49 -04002087 return true;
2088}
2089
Dees_Troy8170a922012-09-18 15:40:25 -04002090int TWPartitionManager::usb_storage_enable(void) {
Dees_Troy8170a922012-09-18 15:40:25 -04002091 char lun_file[255];
Dees_Troyd21618c2012-10-14 18:48:49 -04002092 bool has_multiple_lun = false;
Dees_Troy8170a922012-09-18 15:40:25 -04002093
Ethan Yonker47360be2014-04-01 10:34:34 -05002094 string Lun_File_str = CUSTOM_LUN_FILE;
2095 size_t found = Lun_File_str.find("%");
2096 if (found != string::npos) {
2097 sprintf(lun_file, CUSTOM_LUN_FILE, 1);
2098 if (TWFunc::Path_Exists(lun_file))
2099 has_multiple_lun = true;
2100 }
Ethan Yonker726a0202014-12-16 20:01:38 -06002101 mtp_was_enabled = TWFunc::Toggle_MTP(false); // Must disable MTP for USB Storage
Ethan Yonker47360be2014-04-01 10:34:34 -05002102 if (!has_multiple_lun) {
2103 LOGINFO("Device doesn't have multiple lun files, mount current storage\n");
2104 sprintf(lun_file, CUSTOM_LUN_FILE, 0);
2105 if (TWFunc::Get_Root_Path(DataManager::GetCurrentStoragePath()) == "/data") {
Ethan Yonker66a19492015-12-10 10:19:45 -06002106 TWPartition* Mount = Find_Next_Storage("", true);
Ethan Yonker47360be2014-04-01 10:34:34 -05002107 if (Mount) {
bigbiff bigbiffc7eee6f2014-09-02 18:59:01 -04002108 if (!Open_Lun_File(Mount->Mount_Point, lun_file)) {
2109 goto error_handle;
2110 }
Ethan Yonker47360be2014-04-01 10:34:34 -05002111 } else {
Ethan Yonker74db1572015-10-28 12:44:49 -05002112 gui_err("unable_locate_storage=Unable to locate storage device.");
bigbiff bigbiffc7eee6f2014-09-02 18:59:01 -04002113 goto error_handle;
Ethan Yonker47360be2014-04-01 10:34:34 -05002114 }
2115 } else if (!Open_Lun_File(DataManager::GetCurrentStoragePath(), lun_file)) {
bigbiff bigbiffc7eee6f2014-09-02 18:59:01 -04002116 goto error_handle;
Dees_Troy8170a922012-09-18 15:40:25 -04002117 }
Dees_Troy8170a922012-09-18 15:40:25 -04002118 } else {
Ethan Yonker47360be2014-04-01 10:34:34 -05002119 LOGINFO("Device has multiple lun files\n");
2120 TWPartition* Mount1;
2121 TWPartition* Mount2;
Dees_Troy8170a922012-09-18 15:40:25 -04002122 sprintf(lun_file, CUSTOM_LUN_FILE, 0);
Ethan Yonker66a19492015-12-10 10:19:45 -06002123 Mount1 = Find_Next_Storage("", true);
Ethan Yonker47360be2014-04-01 10:34:34 -05002124 if (Mount1) {
bigbiff bigbiffc7eee6f2014-09-02 18:59:01 -04002125 if (!Open_Lun_File(Mount1->Mount_Point, lun_file)) {
2126 goto error_handle;
2127 }
Matt Moweree717062014-04-26 01:46:46 -05002128 sprintf(lun_file, CUSTOM_LUN_FILE, 1);
Ethan Yonker66a19492015-12-10 10:19:45 -06002129 Mount2 = Find_Next_Storage(Mount1->Mount_Point, true);
Matt Mower1fdcdb72016-01-25 20:53:47 -06002130 if (Mount2 && Mount2->Mount_Point != Mount1->Mount_Point) {
Matt Moweree717062014-04-26 01:46:46 -05002131 Open_Lun_File(Mount2->Mount_Point, lun_file);
Ethan Yonker47360be2014-04-01 10:34:34 -05002132 }
2133 } else {
Ethan Yonker74db1572015-10-28 12:44:49 -05002134 gui_err("unable_locate_storage=Unable to locate storage device.");
bigbiff bigbiffc7eee6f2014-09-02 18:59:01 -04002135 goto error_handle;
Ethan Yonker47360be2014-04-01 10:34:34 -05002136 }
Dees_Troy8170a922012-09-18 15:40:25 -04002137 }
Matt Mowerb6ef4782014-11-06 02:24:36 -06002138 property_set("sys.storage.ums_enabled", "1");
HandyMenny37d42992014-10-26 22:15:59 +01002139 property_set("sys.usb.config", "mass_storage,adb");
Dees_Troy8170a922012-09-18 15:40:25 -04002140 return true;
bigbiff bigbiffc7eee6f2014-09-02 18:59:01 -04002141error_handle:
2142 if (mtp_was_enabled)
2143 if (!Enable_MTP())
2144 Disable_MTP();
2145 return false;
Dees_Troy8170a922012-09-18 15:40:25 -04002146}
2147
2148int TWPartitionManager::usb_storage_disable(void) {
Dees_Troy2673cec2013-04-02 20:22:16 +00002149 int index, ret;
2150 char lun_file[255], ch[2] = {0, 0};
2151 string str = ch;
Dees_Troy8170a922012-09-18 15:40:25 -04002152
2153 for (index=0; index<2; index++) {
2154 sprintf(lun_file, CUSTOM_LUN_FILE, index);
Ethan Yonker6e8c27a2016-12-22 17:55:57 -06002155 ret = TWFunc::write_to_file(lun_file, str);
Dees_Troy2673cec2013-04-02 20:22:16 +00002156 if (ret < 0) {
2157 break;
Dees_Troy8170a922012-09-18 15:40:25 -04002158 }
Dees_Troy8170a922012-09-18 15:40:25 -04002159 }
Dees_Troye58d5262012-09-21 12:27:57 -04002160 Mount_All_Storage();
2161 Update_System_Details();
Dees_Troycfd73ef2012-10-12 16:52:00 -04002162 UnMount_Main_Partitions();
Matt Mowerd9cb9062013-12-14 20:34:45 -06002163 property_set("sys.storage.ums_enabled", "0");
HandyMenny37d42992014-10-26 22:15:59 +01002164 property_set("sys.usb.config", "adb");
bigbiff bigbiffc7eee6f2014-09-02 18:59:01 -04002165 if (mtp_was_enabled)
2166 if (!Enable_MTP())
2167 Disable_MTP();
Dees_Troy2673cec2013-04-02 20:22:16 +00002168 if (ret < 0 && index == 0) {
2169 LOGERR("Unable to write to ums lunfile '%s'.", lun_file);
2170 return false;
2171 } else {
2172 return true;
2173 }
Dees_Troy8170a922012-09-18 15:40:25 -04002174 return true;
Dees_Troy812660f2012-09-20 09:55:17 -04002175}
2176
2177void TWPartitionManager::Mount_All_Storage(void) {
2178 std::vector<TWPartition*>::iterator iter;
2179
2180 for (iter = Partitions.begin(); iter != Partitions.end(); iter++) {
2181 if ((*iter)->Is_Storage)
2182 (*iter)->Mount(false);
2183 }
Dees_Troy2c50e182012-09-26 20:05:28 -04002184}
Dees_Troy9350b8d2012-09-27 12:38:38 -04002185
Dees_Troyd0384ef2012-10-12 12:15:42 -04002186void TWPartitionManager::UnMount_Main_Partitions(void) {
2187 // Unmounts system and data if data is not data/media
2188 // Also unmounts boot if boot is mountable
Dees_Troy2673cec2013-04-02 20:22:16 +00002189 LOGINFO("Unmounting main partitions...\n");
Dees_Troyd0384ef2012-10-12 12:15:42 -04002190
Mohd Faraze3948ec2020-08-14 01:40:59 +00002191 TWPartition *Partition = Find_Partition_By_Path ("/vendor");
Dees_Troyd0384ef2012-10-12 12:15:42 -04002192
Mohd Faraze3948ec2020-08-14 01:40:59 +00002193 if (Partition != NULL) UnMount_By_Path("/vendor", false);
2194 UnMount_By_Path (Get_Android_Root_Path(), true);
2195 Partition = Find_Partition_By_Path ("/product");
2196 if (Partition != NULL) UnMount_By_Path("/product", false);
Ethan Yonker6277c792014-09-15 14:54:30 -05002197 if (!datamedia)
2198 UnMount_By_Path("/data", true);
2199
Mohd Faraze3948ec2020-08-14 01:40:59 +00002200 Partition = Find_Partition_By_Path ("/boot");
2201 if (Partition != NULL && Partition->Can_Be_Mounted)
2202 Partition->UnMount(true);
Dees_Troyd0384ef2012-10-12 12:15:42 -04002203}
2204
Dees_Troy9350b8d2012-09-27 12:38:38 -04002205int TWPartitionManager::Partition_SDCard(void) {
Matt Mower23d8aae2017-01-06 14:30:33 -06002206 char temp[255];
Ethan Yonker483e9f42016-01-11 22:21:18 -06002207 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 -04002208 int ext, swap, total_size = 0, fat_size;
Dees_Troy9350b8d2012-09-27 12:38:38 -04002209
Ethan Yonker74db1572015-10-28 12:44:49 -05002210 gui_msg("start_partition_sd=Partitioning SD Card...");
Ethan Yonker483e9f42016-01-11 22:21:18 -06002211
2212 // Locate and validate device to partition
2213 TWPartition* SDCard = Find_Partition_By_Path(DataManager::GetCurrentStoragePath());
2214
Ethan Yonker66a19492015-12-10 10:19:45 -06002215 if (SDCard->Is_Adopted_Storage)
2216 SDCard->Revert_Adopted();
2217
Ethan Yonker1eff6cd2014-09-15 13:30:42 -05002218 if (SDCard == NULL || !SDCard->Removable || SDCard->Has_Data_Media) {
Ethan Yonker74db1572015-10-28 12:44:49 -05002219 gui_err("partition_sd_locate=Unable to locate device to partition.");
Dees_Troy9350b8d2012-09-27 12:38:38 -04002220 return false;
2221 }
Ethan Yonker483e9f42016-01-11 22:21:18 -06002222
2223 // Unmount everything
Dees_Troy9350b8d2012-09-27 12:38:38 -04002224 if (!SDCard->UnMount(true))
2225 return false;
2226 TWPartition* SDext = Find_Partition_By_Path("/sd-ext");
2227 if (SDext != NULL) {
2228 if (!SDext->UnMount(true))
2229 return false;
2230 }
Ethan Yonker483e9f42016-01-11 22:21:18 -06002231 char* swappath = getenv("SWAPPATH");
2232 if (swappath != NULL) {
2233 LOGINFO("Unmounting swap at '%s'\n", swappath);
2234 umount(swappath);
2235 }
Vojtech Bocek05534202013-09-11 08:11:56 +02002236
Ethan Yonker483e9f42016-01-11 22:21:18 -06002237 // Determine block device
2238 if (SDCard->Alternate_Block_Device.empty()) {
2239 SDCard->Find_Actual_Block_Device();
2240 Device = SDCard->Actual_Block_Device;
2241 // Just use the root block device
2242 Device.resize(strlen("/dev/block/mmcblkX"));
2243 } else {
2244 Device = SDCard->Alternate_Block_Device;
2245 }
Dees_Troy9350b8d2012-09-27 12:38:38 -04002246
2247 // Find the size of the block device:
Ethan Yonker483e9f42016-01-11 22:21:18 -06002248 total_size = (int)(TWFunc::IOCTL_Get_Block_Size(Device.c_str()) / (1048576));
Dees_Troy9350b8d2012-09-27 12:38:38 -04002249
2250 DataManager::GetValue("tw_sdext_size", ext);
2251 DataManager::GetValue("tw_swap_size", swap);
2252 DataManager::GetValue("tw_sdpart_file_system", ext_format);
2253 fat_size = total_size - ext - swap;
Ethan Yonker483e9f42016-01-11 22:21:18 -06002254 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);
2255
2256 // Determine partition sizes
2257 if (swap == 0 && ext == 0) {
2258 fat_str = "-0";
2259 } else {
2260 memset(temp, 0, sizeof(temp));
2261 sprintf(temp, "%i", fat_size);
2262 fat_str = temp;
2263 fat_str += "MB";
2264 }
2265 if (swap == 0) {
2266 ext_str = "-0";
2267 } else {
2268 memset(temp, 0, sizeof(temp));
2269 sprintf(temp, "%i", ext);
2270 ext_str = "+";
2271 ext_str += temp;
2272 ext_str += "MB";
2273 }
2274
Dees_Troy9350b8d2012-09-27 12:38:38 -04002275 if (ext + swap > total_size) {
Ethan Yonker74db1572015-10-28 12:44:49 -05002276 gui_err("ext_swap_size=EXT + Swap size is larger than sdcard size.");
Dees_Troy9350b8d2012-09-27 12:38:38 -04002277 return false;
2278 }
Ethan Yonker483e9f42016-01-11 22:21:18 -06002279
Ethan Yonker74db1572015-10-28 12:44:49 -05002280 gui_msg("remove_part_table=Removing partition table...");
Ethan Yonker483e9f42016-01-11 22:21:18 -06002281 Command = "sgdisk --zap-all " + Device;
Dees_Troy2673cec2013-04-02 20:22:16 +00002282 LOGINFO("Command is: '%s'\n", Command.c_str());
Vojtech Bocek05534202013-09-11 08:11:56 +02002283 if (TWFunc::Exec_Cmd(Command) != 0) {
Ethan Yonker74db1572015-10-28 12:44:49 -05002284 gui_err("unable_rm_part=Unable to remove partition table.");
Dees_Troy9350b8d2012-09-27 12:38:38 -04002285 Update_System_Details();
2286 return false;
2287 }
Ethan Yonker74db1572015-10-28 12:44:49 -05002288 gui_msg(Msg("create_part=Creating {1} partition...")("FAT32"));
Captain Throwback9643a802016-05-27 11:44:51 -04002289 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 +00002290 LOGINFO("Command is: '%s'\n", Command.c_str());
Vojtech Bocek05534202013-09-11 08:11:56 +02002291 if (TWFunc::Exec_Cmd(Command) != 0) {
Ethan Yonker74db1572015-10-28 12:44:49 -05002292 gui_msg(Msg(msg::kError, "unable_to_create_part=Unable to create {1} partition.")("FAT32"));
Dees_Troy9350b8d2012-09-27 12:38:38 -04002293 return false;
2294 }
2295 if (ext > 0) {
Ethan Yonker74db1572015-10-28 12:44:49 -05002296 gui_msg(Msg("create_part=Creating {1} partition...")("EXT"));
Ethan Yonker483e9f42016-01-11 22:21:18 -06002297 Command = "sgdisk --new=0:0:" + ext_str + " --change-name=0:\"Linux filesystem\" " + Device;
Dees_Troy2673cec2013-04-02 20:22:16 +00002298 LOGINFO("Command is: '%s'\n", Command.c_str());
Vojtech Bocek05534202013-09-11 08:11:56 +02002299 if (TWFunc::Exec_Cmd(Command) != 0) {
Ethan Yonker74db1572015-10-28 12:44:49 -05002300 gui_msg(Msg(msg::kError, "unable_to_create_part=Unable to create {1} partition.")("EXT"));
Dees_Troy9350b8d2012-09-27 12:38:38 -04002301 Update_System_Details();
2302 return false;
2303 }
2304 }
2305 if (swap > 0) {
Ethan Yonker74db1572015-10-28 12:44:49 -05002306 gui_msg(Msg("create_part=Creating {1} partition...")("swap"));
Ethan Yonker483e9f42016-01-11 22:21:18 -06002307 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 +00002308 LOGINFO("Command is: '%s'\n", Command.c_str());
Vojtech Bocek05534202013-09-11 08:11:56 +02002309 if (TWFunc::Exec_Cmd(Command) != 0) {
Ethan Yonker74db1572015-10-28 12:44:49 -05002310 gui_msg(Msg(msg::kError, "unable_to_create_part=Unable to create {1} partition.")("swap"));
Dees_Troy9350b8d2012-09-27 12:38:38 -04002311 Update_System_Details();
2312 return false;
2313 }
2314 }
Ethan Yonker483e9f42016-01-11 22:21:18 -06002315
2316 // Convert GPT to MBR
2317 Command = "sgdisk --gpttombr " + Device;
2318 if (TWFunc::Exec_Cmd(Command) != 0)
2319 LOGINFO("Failed to covert partition GPT to MBR\n");
2320
2321 // Tell the kernel to rescan the partition table
2322 int fd = open(Device.c_str(), O_RDONLY);
2323 ioctl(fd, BLKRRPART, 0);
2324 close(fd);
2325
2326 string format_device = Device;
2327 if (Device.substr(0, 17) == "/dev/block/mmcblk")
2328 format_device += "p";
2329
2330 // Format new partitions to proper file system
2331 if (fat_size > 0) {
2332 Command = "mkfs.fat " + format_device + "1";
2333 TWFunc::Exec_Cmd(Command);
2334 }
Dees_Troy9350b8d2012-09-27 12:38:38 -04002335 if (ext > 0) {
2336 if (SDext == NULL) {
Ethan Yonker483e9f42016-01-11 22:21:18 -06002337 Command = "mke2fs -t " + ext_format + " -m 0 " + format_device + "2";
2338 gui_msg(Msg("format_sdext_as=Formatting sd-ext as {1}...")(ext_format));
2339 LOGINFO("Formatting sd-ext after partitioning, command: '%s'\n", Command.c_str());
2340 TWFunc::Exec_Cmd(Command);
2341 } else {
2342 SDext->Wipe(ext_format);
Dees_Troy9350b8d2012-09-27 12:38:38 -04002343 }
Ethan Yonker483e9f42016-01-11 22:21:18 -06002344 }
2345 if (swap > 0) {
2346 Command = "mkswap " + format_device;
2347 if (ext > 0)
2348 Command += "3";
2349 else
2350 Command += "2";
Vojtech Bocek05534202013-09-11 08:11:56 +02002351 TWFunc::Exec_Cmd(Command);
Dees_Troy9350b8d2012-09-27 12:38:38 -04002352 }
2353
Ethan Yonker483e9f42016-01-11 22:21:18 -06002354 // recreate TWRP folder and rewrite settings - these will be gone after sdcard is partitioned
2355 if (SDCard->Mount(true)) {
2356 string TWRP_Folder = SDCard->Mount_Point + "/TWRP";
2357 mkdir(TWRP_Folder.c_str(), 0777);
2358 DataManager::Flush();
2359 }
2360
Dees_Troy9350b8d2012-09-27 12:38:38 -04002361 Update_System_Details();
Ethan Yonker74db1572015-10-28 12:44:49 -05002362 gui_msg("part_complete=Partitioning complete.");
Dees_Troy9350b8d2012-09-27 12:38:38 -04002363 return true;
bigbiff bigbiffa0f8a592012-10-09 21:01:03 -04002364}
Dees_Troya13d74f2013-03-24 08:54:55 -05002365
2366void TWPartitionManager::Get_Partition_List(string ListType, std::vector<PartitionList> *Partition_List) {
2367 std::vector<TWPartition*>::iterator iter;
2368 if (ListType == "mount") {
2369 for (iter = Partitions.begin(); iter != Partitions.end(); iter++) {
Ethan Yonker6e8c27a2016-12-22 17:55:57 -06002370 if ((*iter)->Can_Be_Mounted) {
Dees_Troya13d74f2013-03-24 08:54:55 -05002371 struct PartitionList part;
2372 part.Display_Name = (*iter)->Display_Name;
2373 part.Mount_Point = (*iter)->Mount_Point;
2374 part.selected = (*iter)->Is_Mounted();
2375 Partition_List->push_back(part);
2376 }
2377 }
2378 } else if (ListType == "storage") {
2379 char free_space[255];
2380 string Current_Storage = DataManager::GetCurrentStoragePath();
2381 for (iter = Partitions.begin(); iter != Partitions.end(); iter++) {
2382 if ((*iter)->Is_Storage) {
2383 struct PartitionList part;
2384 sprintf(free_space, "%llu", (*iter)->Free / 1024 / 1024);
2385 part.Display_Name = (*iter)->Storage_Name + " (";
2386 part.Display_Name += free_space;
2387 part.Display_Name += "MB)";
2388 part.Mount_Point = (*iter)->Storage_Path;
2389 if ((*iter)->Storage_Path == Current_Storage)
2390 part.selected = 1;
2391 else
2392 part.selected = 0;
2393 Partition_List->push_back(part);
2394 }
2395 }
2396 } else if (ListType == "backup") {
2397 char backup_size[255];
Dees_Troy9e0b71c2013-04-08 13:35:37 +00002398 unsigned long long Backup_Size;
Dees_Troya13d74f2013-03-24 08:54:55 -05002399 for (iter = Partitions.begin(); iter != Partitions.end(); iter++) {
Dees_Troy9e0b71c2013-04-08 13:35:37 +00002400 if ((*iter)->Can_Be_Backed_Up && !(*iter)->Is_SubPartition && (*iter)->Is_Present) {
Dees_Troya13d74f2013-03-24 08:54:55 -05002401 struct PartitionList part;
Dees_Troy9e0b71c2013-04-08 13:35:37 +00002402 Backup_Size = (*iter)->Backup_Size;
2403 if ((*iter)->Has_SubPartition) {
2404 std::vector<TWPartition*>::iterator subpart;
2405
2406 for (subpart = Partitions.begin(); subpart != Partitions.end(); subpart++) {
2407 if ((*subpart)->Is_SubPartition && (*subpart)->Can_Be_Backed_Up && (*subpart)->Is_Present && (*subpart)->SubPartition_Of == (*iter)->Mount_Point)
2408 Backup_Size += (*subpart)->Backup_Size;
2409 }
2410 }
2411 sprintf(backup_size, "%llu", Backup_Size / 1024 / 1024);
Dees_Troya13d74f2013-03-24 08:54:55 -05002412 part.Display_Name = (*iter)->Backup_Display_Name + " (";
2413 part.Display_Name += backup_size;
2414 part.Display_Name += "MB)";
2415 part.Mount_Point = (*iter)->Backup_Path;
2416 part.selected = 0;
2417 Partition_List->push_back(part);
2418 }
2419 }
2420 } else if (ListType == "restore") {
2421 string Restore_List, restore_path;
2422 TWPartition* restore_part = NULL;
2423
2424 DataManager::GetValue("tw_restore_list", Restore_List);
2425 if (!Restore_List.empty()) {
2426 size_t start_pos = 0, end_pos = Restore_List.find(";", start_pos);
2427 while (end_pos != string::npos && start_pos < Restore_List.size()) {
2428 restore_path = Restore_List.substr(start_pos, end_pos - start_pos);
bigbiff bigbiff19fb79c2016-09-05 21:04:51 -04002429 struct PartitionList part;
2430 if (restore_path.compare("ADB_Backup") == 0) {
2431 part.Display_Name = "ADB Backup";
2432 part.Mount_Point = "ADB Backup";
2433 part.selected = 1;
2434 Partition_List->push_back(part);
2435 break;
2436 }
Dees_Troy59df9262013-06-19 14:53:57 -05002437 if ((restore_part = Find_Partition_By_Path(restore_path)) != NULL) {
Dees Troy4159aed2014-02-28 17:24:43 +00002438 if ((restore_part->Backup_Name == "recovery" && !restore_part->Can_Be_Backed_Up) || restore_part->Is_SubPartition) {
Dees_Troya13d74f2013-03-24 08:54:55 -05002439 // Don't allow restore of recovery (causes problems on some devices)
Dees_Troy59df9262013-06-19 14:53:57 -05002440 // Don't add subpartitions to the list of items
Dees_Troya13d74f2013-03-24 08:54:55 -05002441 } else {
Dees_Troya13d74f2013-03-24 08:54:55 -05002442 part.Display_Name = restore_part->Backup_Display_Name;
2443 part.Mount_Point = restore_part->Backup_Path;
2444 part.selected = 1;
2445 Partition_List->push_back(part);
2446 }
2447 } else {
Ethan Yonker74db1572015-10-28 12:44:49 -05002448 gui_msg(Msg(msg::kError, "restore_unable_locate=Unable to locate '{1}' partition for restoring.")(restore_path));
Dees_Troya13d74f2013-03-24 08:54:55 -05002449 }
2450 start_pos = end_pos + 1;
2451 end_pos = Restore_List.find(";", start_pos);
2452 }
2453 }
2454 } else if (ListType == "wipe") {
2455 struct PartitionList dalvik;
Ethan Yonker74db1572015-10-28 12:44:49 -05002456 dalvik.Display_Name = gui_parse_text("{@dalvik}");
Dees_Troya13d74f2013-03-24 08:54:55 -05002457 dalvik.Mount_Point = "DALVIK";
2458 dalvik.selected = 0;
2459 Partition_List->push_back(dalvik);
2460 for (iter = Partitions.begin(); iter != Partitions.end(); iter++) {
2461 if ((*iter)->Wipe_Available_in_GUI && !(*iter)->Is_SubPartition) {
2462 struct PartitionList part;
2463 part.Display_Name = (*iter)->Display_Name;
2464 part.Mount_Point = (*iter)->Mount_Point;
2465 part.selected = 0;
2466 Partition_List->push_back(part);
2467 }
2468 if ((*iter)->Has_Android_Secure) {
2469 struct PartitionList part;
2470 part.Display_Name = (*iter)->Backup_Display_Name;
2471 part.Mount_Point = (*iter)->Backup_Path;
2472 part.selected = 0;
2473 Partition_List->push_back(part);
2474 }
Dees_Troy74fb2e92013-04-15 14:35:47 +00002475 if ((*iter)->Has_Data_Media) {
2476 struct PartitionList datamedia;
2477 datamedia.Display_Name = (*iter)->Storage_Name;
2478 datamedia.Mount_Point = "INTERNAL";
2479 datamedia.selected = 0;
2480 Partition_List->push_back(datamedia);
2481 }
Dees_Troya13d74f2013-03-24 08:54:55 -05002482 }
Ethan Yonker96af84a2015-01-05 14:58:36 -06002483 } else if (ListType == "flashimg") {
2484 for (iter = Partitions.begin(); iter != Partitions.end(); iter++) {
2485 if ((*iter)->Can_Flash_Img && (*iter)->Is_Present) {
2486 struct PartitionList part;
2487 part.Display_Name = (*iter)->Backup_Display_Name;
2488 part.Mount_Point = (*iter)->Backup_Path;
2489 part.selected = 0;
2490 Partition_List->push_back(part);
2491 }
2492 }
Ethan Yonker53796e72019-01-11 22:49:52 -06002493 if (DataManager::GetIntValue("tw_has_repack_tools") != 0 && DataManager::GetIntValue("tw_has_boot_slots") != 0) {
2494 TWPartition* boot = Find_Partition_By_Path("/boot");
2495 if (boot) {
2496 // Allow flashing kernels and ramdisks
2497 struct PartitionList repack_ramdisk;
2498 repack_ramdisk.Display_Name = gui_lookup("install_twrp_ramdisk", "Install Recovery Ramdisk");
2499 repack_ramdisk.Mount_Point = "/repack_ramdisk";
2500 repack_ramdisk.selected = 0;
2501 Partition_List->push_back(repack_ramdisk);
2502 /*struct PartitionList repack_kernel; For now let's leave repacking kernels under advanced only
2503 repack_kernel.Display_Name = gui_lookup("install_kernel", "Install Kernel");
2504 repack_kernel.Mount_Point = "/repack_kernel";
2505 repack_kernel.selected = 0;
2506 Partition_List->push_back(repack_kernel);*/
2507 }
2508 }
Dees_Troya13d74f2013-03-24 08:54:55 -05002509 } else {
Dees_Troy2673cec2013-04-02 20:22:16 +00002510 LOGERR("Unknown list type '%s' requested for TWPartitionManager::Get_Partition_List\n", ListType.c_str());
Dees_Troya13d74f2013-03-24 08:54:55 -05002511 }
2512}
2513
2514int TWPartitionManager::Fstab_Processed(void) {
2515 return Partitions.size();
2516}
Dees_Troyd93bda52013-07-03 19:55:19 +00002517
2518void TWPartitionManager::Output_Storage_Fstab(void) {
2519 std::vector<TWPartition*>::iterator iter;
2520 char storage_partition[255];
bigbiff bigbiffe4bdb152019-03-23 18:33:17 -04002521 std::string Temp;
bigbiff25d25b92020-06-19 16:07:38 -04002522 std::string cacheDir = TWFunc::get_log_dir();
bigbiff bigbiffe4bdb152019-03-23 18:33:17 -04002523
2524 if (cacheDir.empty()) {
2525 LOGINFO("Unable to find cache directory\n");
2526 return;
2527 }
bigbiff bigbiff19874f12019-01-08 20:06:57 -05002528
bigbiff25d25b92020-06-19 16:07:38 -04002529 std::string storageFstab = TWFunc::get_log_dir() + "recovery/storage.fstab";
bigbiff bigbiff19874f12019-01-08 20:06:57 -05002530 FILE *fp = fopen(storageFstab.c_str(), "w");
Dees_Troyd93bda52013-07-03 19:55:19 +00002531
2532 if (fp == NULL) {
bigbiff bigbiff19874f12019-01-08 20:06:57 -05002533 gui_msg(Msg(msg::kError, "unable_to_open=Unable to open '{1}'.")(storageFstab));
Dees_Troyd93bda52013-07-03 19:55:19 +00002534 return;
2535 }
2536
2537 // Iterate through all partitions
2538 for (iter = Partitions.begin(); iter != Partitions.end(); iter++) {
2539 if ((*iter)->Is_Storage) {
2540 Temp = (*iter)->Storage_Path + ";" + (*iter)->Storage_Name + ";\n";
2541 strcpy(storage_partition, Temp.c_str());
2542 fwrite(storage_partition, sizeof(storage_partition[0]), strlen(storage_partition) / sizeof(storage_partition[0]), fp);
2543 }
2544 }
2545 fclose(fp);
Vojtech Bocekfafb0c52013-07-25 22:53:02 +02002546}
Vojtech Bocek93cb1ef2014-05-12 15:41:52 +02002547
2548TWPartition *TWPartitionManager::Get_Default_Storage_Partition()
2549{
2550 TWPartition *res = NULL;
2551 for (std::vector<TWPartition*>::iterator iter = Partitions.begin(); iter != Partitions.end(); ++iter) {
Matt Mowera8a89d12016-12-30 18:10:37 -06002552 if (!(*iter)->Is_Storage)
Vojtech Bocek93cb1ef2014-05-12 15:41:52 +02002553 continue;
2554
Matt Mowera8a89d12016-12-30 18:10:37 -06002555 if ((*iter)->Is_Settings_Storage)
Vojtech Bocek93cb1ef2014-05-12 15:41:52 +02002556 return *iter;
2557
Matt Mowera8a89d12016-12-30 18:10:37 -06002558 if (!res)
Vojtech Bocek93cb1ef2014-05-12 15:41:52 +02002559 res = *iter;
2560 }
2561 return res;
2562}
bigbiff bigbiffc7eee6f2014-09-02 18:59:01 -04002563
2564bool TWPartitionManager::Enable_MTP(void) {
2565#ifdef TW_HAS_MTP
Ethan Yonker8dfa7772014-09-04 21:48:41 -05002566 if (mtppid) {
Ethan Yonker74db1572015-10-28 12:44:49 -05002567 gui_err("mtp_already_enabled=MTP already enabled");
bigbiff bigbiffc7eee6f2014-09-02 18:59:01 -04002568 return true;
2569 }
Ethan Yonker726a0202014-12-16 20:01:38 -06002570
2571 int mtppipe[2];
2572
2573 if (pipe(mtppipe) < 0) {
2574 LOGERR("Error creating MTP pipe\n");
2575 return false;
2576 }
2577
Ethan Yonkerdf7abac2014-12-29 10:48:17 -06002578 char old_value[PROPERTY_VALUE_MAX];
Matt Mowere07f0102017-02-23 17:40:00 -06002579 property_get("sys.usb.config", old_value, "");
2580 if (strcmp(old_value, "mtp,adb") != 0) {
Ethan Yonkerdf7abac2014-12-29 10:48:17 -06002581 char vendor[PROPERTY_VALUE_MAX];
2582 char product[PROPERTY_VALUE_MAX];
2583 property_set("sys.usb.config", "none");
2584 property_get("usb.vendor", vendor, "18D1");
2585 property_get("usb.product.mtpadb", product, "4EE2");
2586 string vendorstr = vendor;
2587 string productstr = product;
Ethan Yonker6e8c27a2016-12-22 17:55:57 -06002588 TWFunc::write_to_file("/sys/class/android_usb/android0/idVendor", vendorstr);
2589 TWFunc::write_to_file("/sys/class/android_usb/android0/idProduct", productstr);
Ethan Yonkerdf7abac2014-12-29 10:48:17 -06002590 property_set("sys.usb.config", "mtp,adb");
2591 }
Matt Mower653a1702017-02-16 10:38:52 -06002592 /* To enable MTP debug, use the twrp command line feature:
Ethan Yonker6d154c42014-09-03 14:19:43 -05002593 * twrp set tw_mtp_debug 1
2594 */
2595 twrpMtp *mtp = new twrpMtp(DataManager::GetIntValue("tw_mtp_debug"));
Ethan Yonker1b039202015-01-30 10:08:48 -06002596 mtppid = mtp->forkserver(mtppipe);
2597 if (mtppid) {
2598 close(mtppipe[0]); // Host closes read side
2599 mtp_write_fd = mtppipe[1];
2600 DataManager::SetValue("tw_mtp_enabled", 1);
2601 Add_All_MTP_Storage();
2602 return true;
Ethan Yonker726a0202014-12-16 20:01:38 -06002603 } else {
2604 close(mtppipe[0]);
2605 close(mtppipe[1]);
Ethan Yonker74db1572015-10-28 12:44:49 -05002606 gui_err("mtp_fail=Failed to enable MTP");
Ethan Yonker1b039202015-01-30 10:08:48 -06002607 return false;
bigbiff bigbiffc7eee6f2014-09-02 18:59:01 -04002608 }
bigbiff bigbiffc7eee6f2014-09-02 18:59:01 -04002609#else
Ethan Yonker74db1572015-10-28 12:44:49 -05002610 gui_err("no_mtp=MTP support not included");
bigbiff bigbiffc7eee6f2014-09-02 18:59:01 -04002611#endif
2612 DataManager::SetValue("tw_mtp_enabled", 0);
2613 return false;
2614}
2615
Ethan Yonker1b039202015-01-30 10:08:48 -06002616void TWPartitionManager::Add_All_MTP_Storage(void) {
2617#ifdef TW_HAS_MTP
2618 std::vector<TWPartition*>::iterator iter;
2619
2620 if (!mtppid)
2621 return; // MTP is not enabled
2622
2623 for (iter = Partitions.begin(); iter != Partitions.end(); iter++) {
2624 if ((*iter)->Is_Storage && (*iter)->Is_Present && (*iter)->Mount(false))
2625 Add_Remove_MTP_Storage((*iter), MTP_MESSAGE_ADD_STORAGE);
2626 }
2627#else
2628 return;
2629#endif
2630}
2631
bigbiff bigbiffc7eee6f2014-09-02 18:59:01 -04002632bool TWPartitionManager::Disable_MTP(void) {
Ethan Yonkerdf7abac2014-12-29 10:48:17 -06002633 char old_value[PROPERTY_VALUE_MAX];
bigbiff bigbiffaf32bb92018-12-18 18:39:53 -05002634 property_set("sys.usb.ffs.mtp.ready", "0");
Matt Mowere07f0102017-02-23 17:40:00 -06002635 property_get("sys.usb.config", old_value, "");
Ethan Yonkerdf7abac2014-12-29 10:48:17 -06002636 if (strcmp(old_value, "adb") != 0) {
2637 char vendor[PROPERTY_VALUE_MAX];
2638 char product[PROPERTY_VALUE_MAX];
2639 property_set("sys.usb.config", "none");
2640 property_get("usb.vendor", vendor, "18D1");
Matt Mowere07f0102017-02-23 17:40:00 -06002641 property_get("usb.product.adb", product, "D001");
Ethan Yonkerdf7abac2014-12-29 10:48:17 -06002642 string vendorstr = vendor;
2643 string productstr = product;
Ethan Yonker6e8c27a2016-12-22 17:55:57 -06002644 TWFunc::write_to_file("/sys/class/android_usb/android0/idVendor", vendorstr);
2645 TWFunc::write_to_file("/sys/class/android_usb/android0/idProduct", productstr);
Ethan Yonkerdf7abac2014-12-29 10:48:17 -06002646 usleep(2000);
2647 }
bigbiff bigbiffc7eee6f2014-09-02 18:59:01 -04002648#ifdef TW_HAS_MTP
Ethan Yonker8dfa7772014-09-04 21:48:41 -05002649 if (mtppid) {
Ethan Yonker8613dc02014-09-11 09:28:20 -05002650 LOGINFO("Disabling MTP\n");
2651 int status;
2652 kill(mtppid, SIGKILL);
Ethan Yonker8dfa7772014-09-04 21:48:41 -05002653 mtppid = 0;
Ethan Yonker8613dc02014-09-11 09:28:20 -05002654 // We don't care about the exit value, but this prevents a zombie process
2655 waitpid(mtppid, &status, 0);
Ethan Yonker726a0202014-12-16 20:01:38 -06002656 close(mtp_write_fd);
2657 mtp_write_fd = -1;
bigbiff bigbiffc7eee6f2014-09-02 18:59:01 -04002658 }
Ethan Yonkerdf7abac2014-12-29 10:48:17 -06002659#endif
bigbiff bigbiffc7eee6f2014-09-02 18:59:01 -04002660 property_set("sys.usb.config", "adb");
Ethan Yonkerdf7abac2014-12-29 10:48:17 -06002661#ifdef TW_HAS_MTP
bigbiff bigbiffc7eee6f2014-09-02 18:59:01 -04002662 DataManager::SetValue("tw_mtp_enabled", 0);
2663 return true;
bigbiff bigbiffc7eee6f2014-09-02 18:59:01 -04002664#endif
Ethan Yonkerdf7abac2014-12-29 10:48:17 -06002665 return false;
bigbiff bigbiffc7eee6f2014-09-02 18:59:01 -04002666}
Ethan Yonker726a0202014-12-16 20:01:38 -06002667
2668TWPartition* TWPartitionManager::Find_Partition_By_MTP_Storage_ID(unsigned int Storage_ID) {
2669 std::vector<TWPartition*>::iterator iter;
2670
2671 for (iter = Partitions.begin(); iter != Partitions.end(); iter++) {
2672 if ((*iter)->MTP_Storage_ID == Storage_ID)
2673 return (*iter);
2674 }
2675 return NULL;
2676}
2677
2678bool TWPartitionManager::Add_Remove_MTP_Storage(TWPartition* Part, int message_type) {
2679#ifdef TW_HAS_MTP
2680 struct mtpmsg mtp_message;
2681
2682 if (!mtppid)
2683 return false; // MTP is disabled
2684
2685 if (mtp_write_fd < 0) {
Ethan Yonkerd9ff3c52015-01-21 21:51:20 -06002686 LOGINFO("MTP: mtp_write_fd is not set\n");
Ethan Yonker726a0202014-12-16 20:01:38 -06002687 return false;
2688 }
2689
2690 if (Part) {
Ethan Yonker4bfabab2014-12-29 09:15:37 -06002691 if (Part->MTP_Storage_ID == 0)
2692 return false;
Ethan Yonker726a0202014-12-16 20:01:38 -06002693 if (message_type == MTP_MESSAGE_REMOVE_STORAGE) {
2694 mtp_message.message_type = MTP_MESSAGE_REMOVE_STORAGE; // Remove
2695 LOGINFO("sending message to remove %i\n", Part->MTP_Storage_ID);
2696 mtp_message.storage_id = Part->MTP_Storage_ID;
2697 if (write(mtp_write_fd, &mtp_message, sizeof(mtp_message)) <= 0) {
Ethan Yonkerd9ff3c52015-01-21 21:51:20 -06002698 LOGINFO("error sending message to remove storage %i\n", Part->MTP_Storage_ID);
Ethan Yonker726a0202014-12-16 20:01:38 -06002699 return false;
2700 } else {
2701 LOGINFO("Message sent, remove storage ID: %i\n", Part->MTP_Storage_ID);
2702 return true;
2703 }
2704 } else if (message_type == MTP_MESSAGE_ADD_STORAGE && Part->Is_Mounted()) {
2705 mtp_message.message_type = MTP_MESSAGE_ADD_STORAGE; // Add
2706 mtp_message.storage_id = Part->MTP_Storage_ID;
Ethan Yonker6e8c27a2016-12-22 17:55:57 -06002707 if (Part->Storage_Path.size() >= sizeof(mtp_message.path)) {
2708 LOGERR("Storage path '%s' too large for mtpmsg\n", Part->Storage_Path.c_str());
2709 return false;
2710 }
2711 strcpy(mtp_message.path, Part->Storage_Path.c_str());
2712 if (Part->Storage_Name.size() >= sizeof(mtp_message.display)) {
2713 LOGERR("Storage name '%s' too large for mtpmsg\n", Part->Storage_Name.c_str());
2714 return false;
2715 }
2716 strcpy(mtp_message.display, Part->Storage_Name.c_str());
Ethan Yonker726a0202014-12-16 20:01:38 -06002717 mtp_message.maxFileSize = Part->Get_Max_FileSize();
Ethan Yonker1b039202015-01-30 10:08:48 -06002718 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 -06002719 if (write(mtp_write_fd, &mtp_message, sizeof(mtp_message)) <= 0) {
Ethan Yonkerd9ff3c52015-01-21 21:51:20 -06002720 LOGINFO("error sending message to add storage %i\n", Part->MTP_Storage_ID);
Ethan Yonker726a0202014-12-16 20:01:38 -06002721 return false;
2722 } else {
Ethan Yonker6e8c27a2016-12-22 17:55:57 -06002723 LOGINFO("Message sent, add storage ID: %i '%s'\n", Part->MTP_Storage_ID, mtp_message.path);
Ethan Yonker726a0202014-12-16 20:01:38 -06002724 return true;
2725 }
2726 } else {
2727 LOGERR("Unknown MTP message type: %i\n", message_type);
2728 }
2729 } else {
2730 // This hopefully never happens as the error handling should
2731 // occur in the calling function.
Ethan Yonkerd9ff3c52015-01-21 21:51:20 -06002732 LOGINFO("TWPartitionManager::Add_Remove_MTP_Storage NULL partition given\n");
Ethan Yonker726a0202014-12-16 20:01:38 -06002733 }
2734 return true;
2735#else
Ethan Yonker74db1572015-10-28 12:44:49 -05002736 gui_err("no_mtp=MTP support not included");
Ethan Yonker726a0202014-12-16 20:01:38 -06002737 DataManager::SetValue("tw_mtp_enabled", 0);
2738 return false;
2739#endif
2740}
2741
2742bool TWPartitionManager::Add_MTP_Storage(string Mount_Point) {
2743#ifdef TW_HAS_MTP
2744 TWPartition* Part = PartitionManager.Find_Partition_By_Path(Mount_Point);
2745 if (Part) {
2746 return PartitionManager.Add_Remove_MTP_Storage(Part, MTP_MESSAGE_ADD_STORAGE);
2747 } else {
Ethan Yonkerd9ff3c52015-01-21 21:51:20 -06002748 LOGINFO("TWFunc::Add_MTP_Storage unable to locate partition for '%s'\n", Mount_Point.c_str());
Ethan Yonker726a0202014-12-16 20:01:38 -06002749 }
2750#endif
2751 return false;
2752}
2753
2754bool TWPartitionManager::Add_MTP_Storage(unsigned int Storage_ID) {
2755#ifdef TW_HAS_MTP
2756 TWPartition* Part = PartitionManager.Find_Partition_By_MTP_Storage_ID(Storage_ID);
2757 if (Part) {
2758 return PartitionManager.Add_Remove_MTP_Storage(Part, MTP_MESSAGE_ADD_STORAGE);
2759 } else {
Ethan Yonkerd9ff3c52015-01-21 21:51:20 -06002760 LOGINFO("TWFunc::Add_MTP_Storage unable to locate partition for %i\n", Storage_ID);
Ethan Yonker726a0202014-12-16 20:01:38 -06002761 }
2762#endif
2763 return false;
2764}
2765
2766bool TWPartitionManager::Remove_MTP_Storage(string Mount_Point) {
2767#ifdef TW_HAS_MTP
2768 TWPartition* Part = PartitionManager.Find_Partition_By_Path(Mount_Point);
2769 if (Part) {
2770 return PartitionManager.Add_Remove_MTP_Storage(Part, MTP_MESSAGE_REMOVE_STORAGE);
2771 } else {
Ethan Yonkerd9ff3c52015-01-21 21:51:20 -06002772 LOGINFO("TWFunc::Remove_MTP_Storage unable to locate partition for '%s'\n", Mount_Point.c_str());
Ethan Yonker726a0202014-12-16 20:01:38 -06002773 }
2774#endif
2775 return false;
2776}
2777
2778bool TWPartitionManager::Remove_MTP_Storage(unsigned int Storage_ID) {
2779#ifdef TW_HAS_MTP
2780 TWPartition* Part = PartitionManager.Find_Partition_By_MTP_Storage_ID(Storage_ID);
2781 if (Part) {
2782 return PartitionManager.Add_Remove_MTP_Storage(Part, MTP_MESSAGE_REMOVE_STORAGE);
2783 } else {
Ethan Yonkerd9ff3c52015-01-21 21:51:20 -06002784 LOGINFO("TWFunc::Remove_MTP_Storage unable to locate partition for %i\n", Storage_ID);
Ethan Yonker726a0202014-12-16 20:01:38 -06002785 }
2786#endif
2787 return false;
2788}
Ethan Yonker96af84a2015-01-05 14:58:36 -06002789
Ethan Yonkere080c1f2016-09-19 13:50:25 -05002790bool TWPartitionManager::Flash_Image(string& path, string& filename) {
bigbiffad58e1b2020-07-06 20:24:34 -04002791 twrpRepacker repacker;
Matt Mower23d8aae2017-01-06 14:30:33 -06002792 int partition_count = 0;
Ethan Yonker96af84a2015-01-05 14:58:36 -06002793 TWPartition* flash_part = NULL;
bigbiffce8f83c2015-12-12 18:30:21 -05002794 string Flash_List, flash_path, full_filename;
Ethan Yonker96af84a2015-01-05 14:58:36 -06002795 size_t start_pos = 0, end_pos = 0;
2796
Ethan Yonkere080c1f2016-09-19 13:50:25 -05002797 full_filename = path + "/" + filename;
Ethan Yonker96af84a2015-01-05 14:58:36 -06002798
bigbiff1f9e4842020-10-31 11:33:15 -04002799 Unlock_Block_Partitions();
2800
bigbiffce8f83c2015-12-12 18:30:21 -05002801 gui_msg("image_flash_start=[IMAGE FLASH STARTED]");
2802 gui_msg(Msg("img_to_flash=Image to flash: '{1}'")(full_filename));
2803
2804 if (!TWFunc::Path_Exists(full_filename)) {
2805 if (!Mount_By_Path(full_filename, true)) {
Ethan Yonkerb78fbdf2016-01-15 16:46:35 -06002806 return false;
2807 }
bigbiffce8f83c2015-12-12 18:30:21 -05002808 if (!TWFunc::Path_Exists(full_filename)) {
2809 gui_msg(Msg(msg::kError, "unable_to_locate=Unable to locate {1}.")(full_filename));
Ethan Yonkerb78fbdf2016-01-15 16:46:35 -06002810 return false;
2811 }
2812 }
Ethan Yonker96af84a2015-01-05 14:58:36 -06002813
Ethan Yonker53796e72019-01-11 22:49:52 -06002814 DataManager::GetValue("tw_flash_partition", Flash_List);
2815 Repack_Type repack = REPLACE_NONE;
2816 if (Flash_List == "/repack_ramdisk;") {
2817 repack = REPLACE_RAMDISK;
2818 } else if (Flash_List == "/repack_kernel;") {
2819 repack = REPLACE_KERNEL;
2820 }
2821 if (repack != REPLACE_NONE) {
2822 Repack_Options_struct Repack_Options;
2823 Repack_Options.Type = repack;
2824 Repack_Options.Disable_Verity = false;
2825 Repack_Options.Disable_Force_Encrypt = false;
2826 Repack_Options.Backup_First = DataManager::GetIntValue("tw_repack_backup_first") != 0;
bigbiffad58e1b2020-07-06 20:24:34 -04002827 return repacker.Repack_Image_And_Flash(full_filename, Repack_Options);
Ethan Yonker53796e72019-01-11 22:49:52 -06002828 }
Ethan Yonkere080c1f2016-09-19 13:50:25 -05002829 PartitionSettings part_settings;
2830 part_settings.Backup_Folder = path;
2831 unsigned long long total_bytes = TWFunc::Get_File_Size(full_filename);
2832 ProgressTracking progress(total_bytes);
2833 part_settings.progress = &progress;
2834 part_settings.adbbackup = false;
2835 part_settings.PM_Method = PM_RESTORE;
Ethan Yonker74db1572015-10-28 12:44:49 -05002836 gui_msg("calc_restore=Calculating restore details...");
Ethan Yonker96af84a2015-01-05 14:58:36 -06002837 if (!Flash_List.empty()) {
2838 end_pos = Flash_List.find(";", start_pos);
2839 while (end_pos != string::npos && start_pos < Flash_List.size()) {
2840 flash_path = Flash_List.substr(start_pos, end_pos - start_pos);
2841 flash_part = Find_Partition_By_Path(flash_path);
2842 if (flash_part != NULL) {
2843 partition_count++;
2844 if (partition_count > 1) {
Ethan Yonker74db1572015-10-28 12:44:49 -05002845 gui_err("too_many_flash=Too many partitions selected for flashing.");
Ethan Yonker96af84a2015-01-05 14:58:36 -06002846 return false;
2847 }
2848 } else {
Ethan Yonker74db1572015-10-28 12:44:49 -05002849 gui_msg(Msg(msg::kError, "flash_unable_locate=Unable to locate '{1}' partition for flashing.")(flash_path));
Ethan Yonker96af84a2015-01-05 14:58:36 -06002850 return false;
2851 }
2852 start_pos = end_pos + 1;
2853 end_pos = Flash_List.find(";", start_pos);
2854 }
2855 }
2856
2857 if (partition_count == 0) {
Ethan Yonker74db1572015-10-28 12:44:49 -05002858 gui_err("no_part_flash=No partitions selected for flashing.");
Ethan Yonker96af84a2015-01-05 14:58:36 -06002859 return false;
2860 }
2861
2862 DataManager::SetProgress(0.0);
2863 if (flash_part) {
Ethan Yonkere080c1f2016-09-19 13:50:25 -05002864 flash_part->Backup_FileName = filename;
2865 if (!flash_part->Flash_Image(&part_settings))
Ethan Yonker96af84a2015-01-05 14:58:36 -06002866 return false;
2867 } else {
Ethan Yonker74db1572015-10-28 12:44:49 -05002868 gui_err("invalid_flash=Invalid flash partition specified.");
Ethan Yonker96af84a2015-01-05 14:58:36 -06002869 return false;
2870 }
Ethan Yonker74db1572015-10-28 12:44:49 -05002871 gui_highlight("flash_done=IMAGE FLASH COMPLETED]");
Ethan Yonker96af84a2015-01-05 14:58:36 -06002872 return true;
2873}
Ethan Yonker74db1572015-10-28 12:44:49 -05002874
2875void TWPartitionManager::Translate_Partition(const char* path, const char* resource_name, const char* default_value) {
2876 TWPartition* part = PartitionManager.Find_Partition_By_Path(path);
2877 if (part) {
Ethan Yonker66a19492015-12-10 10:19:45 -06002878 if (part->Is_Adopted_Storage) {
2879 part->Display_Name = part->Display_Name + " - " + gui_lookup("data", "Data");
2880 part->Backup_Display_Name = part->Display_Name;
2881 part->Storage_Name = part->Storage_Name + " - " + gui_lookup("adopted_storage", "Adopted Storage");
2882 } else {
2883 part->Display_Name = gui_lookup(resource_name, default_value);
2884 part->Backup_Display_Name = part->Display_Name;
2885 }
Ethan Yonker74db1572015-10-28 12:44:49 -05002886 }
2887}
2888
2889void TWPartitionManager::Translate_Partition(const char* path, const char* resource_name, const char* default_value, const char* storage_resource_name, const char* storage_default_value) {
2890 TWPartition* part = PartitionManager.Find_Partition_By_Path(path);
2891 if (part) {
Ethan Yonker66a19492015-12-10 10:19:45 -06002892 if (part->Is_Adopted_Storage) {
Ethan Yonker01f4e032017-02-03 15:30:52 -06002893 part->Backup_Display_Name = part->Display_Name + " - " + gui_lookup("data_backup", "Data (excl. storage)");
Ethan Yonker66a19492015-12-10 10:19:45 -06002894 part->Display_Name = part->Display_Name + " - " + gui_lookup("data", "Data");
Ethan Yonker66a19492015-12-10 10:19:45 -06002895 part->Storage_Name = part->Storage_Name + " - " + gui_lookup("adopted_storage", "Adopted Storage");
2896 } else {
2897 part->Display_Name = gui_lookup(resource_name, default_value);
2898 part->Backup_Display_Name = part->Display_Name;
2899 if (part->Is_Storage)
2900 part->Storage_Name = gui_lookup(storage_resource_name, storage_default_value);
2901 }
Ethan Yonker74db1572015-10-28 12:44:49 -05002902 }
2903}
2904
Ethan Yonker01f4e032017-02-03 15:30:52 -06002905void 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) {
2906 TWPartition* part = PartitionManager.Find_Partition_By_Path(path);
2907 if (part) {
2908 if (part->Is_Adopted_Storage) {
2909 part->Backup_Display_Name = part->Display_Name + " - " + gui_lookup(backup_name, backup_default);
2910 part->Display_Name = part->Display_Name + " - " + gui_lookup("data", "Data");
2911 part->Storage_Name = part->Storage_Name + " - " + gui_lookup("adopted_storage", "Adopted Storage");
2912 } else {
2913 part->Display_Name = gui_lookup(resource_name, default_value);
2914 part->Backup_Display_Name = gui_lookup(backup_name, backup_default);
2915 if (part->Is_Storage)
2916 part->Storage_Name = gui_lookup(storage_resource_name, storage_default_value);
2917 }
2918 }
2919}
2920
Ethan Yonker74db1572015-10-28 12:44:49 -05002921void TWPartitionManager::Translate_Partition_Display_Names() {
Ethan Yonker66a19492015-12-10 10:19:45 -06002922 LOGINFO("Translating partition display names\n");
Ethan Yonker74db1572015-10-28 12:44:49 -05002923 Translate_Partition("/system", "system", "System");
2924 Translate_Partition("/system_image", "system_image", "System Image");
2925 Translate_Partition("/vendor", "vendor", "Vendor");
2926 Translate_Partition("/vendor_image", "vendor_image", "Vendor Image");
2927 Translate_Partition("/cache", "cache", "Cache");
Ethan Yonker74db1572015-10-28 12:44:49 -05002928 Translate_Partition("/boot", "boot", "Boot");
2929 Translate_Partition("/recovery", "recovery", "Recovery");
2930 if (!datamedia) {
Ethan Yonker01f4e032017-02-03 15:30:52 -06002931 Translate_Partition("/data", "data", "Data", "internal", "Internal Storage");
Ethan Yonker74db1572015-10-28 12:44:49 -05002932 Translate_Partition("/sdcard", "sdcard", "SDCard", "sdcard", "SDCard");
2933 Translate_Partition("/internal_sd", "sdcard", "SDCard", "sdcard", "SDCard");
2934 Translate_Partition("/internal_sdcard", "sdcard", "SDCard", "sdcard", "SDCard");
2935 Translate_Partition("/emmc", "sdcard", "SDCard", "sdcard", "SDCard");
Ethan Yonker01f4e032017-02-03 15:30:52 -06002936 } else {
2937 Translate_Partition("/data", "data", "Data", "internal", "Internal Storage", "data_backup", "Data (excl. storage)");
Ethan Yonker74db1572015-10-28 12:44:49 -05002938 }
Ethan Yonker01f4e032017-02-03 15:30:52 -06002939 Translate_Partition("/external_sd", "microsd", "Micro SDCard", "microsd", "Micro SDCard", "data_backup", "Data (excl. storage)");
2940 Translate_Partition("/external_sdcard", "microsd", "Micro SDCard", "microsd", "Micro SDCard", "data_backup", "Data (excl. storage)");
Ethan Yonker74db1572015-10-28 12:44:49 -05002941 Translate_Partition("/usb-otg", "usbotg", "USB OTG", "usbotg", "USB OTG");
2942 Translate_Partition("/sd-ext", "sdext", "SD-EXT");
2943
2944 // Android secure is a special case
2945 TWPartition* part = PartitionManager.Find_Partition_By_Path("/and-sec");
2946 if (part)
2947 part->Backup_Display_Name = gui_lookup("android_secure", "Android Secure");
2948
Ethan Yonker6e8c27a2016-12-22 17:55:57 -06002949 std::vector<TWPartition*>::iterator sysfs;
2950 for (sysfs = Partitions.begin(); sysfs != Partitions.end(); sysfs++) {
2951 if (!(*sysfs)->Sysfs_Entry.empty()) {
2952 Translate_Partition((*sysfs)->Mount_Point.c_str(), "autostorage", "Storage", "autostorage", "Storage");
2953 }
2954 }
2955
Ethan Yonker74db1572015-10-28 12:44:49 -05002956 // This updates the text on all of the storage selection buttons in the GUI
2957 DataManager::SetBackupFolder();
2958}
Ethan Yonker66a19492015-12-10 10:19:45 -06002959
Ethan Yonker6e8c27a2016-12-22 17:55:57 -06002960bool TWPartitionManager::Decrypt_Adopted() {
Ethan Yonker66a19492015-12-10 10:19:45 -06002961#ifdef TW_INCLUDE_CRYPTO
Ethan Yonker6e8c27a2016-12-22 17:55:57 -06002962 bool ret = false;
Ethan Yonker66a19492015-12-10 10:19:45 -06002963 if (!Mount_By_Path("/data", false)) {
2964 LOGERR("Cannot decrypt adopted storage because /data will not mount\n");
Ethan Yonker6e8c27a2016-12-22 17:55:57 -06002965 return false;
Ethan Yonker66a19492015-12-10 10:19:45 -06002966 }
2967 LOGINFO("Decrypt adopted storage starting\n");
2968 char* xmlFile = PageManager::LoadFileToBuffer("/data/system/storage.xml", NULL);
2969 xml_document<> *doc = NULL;
2970 xml_node<>* volumes = NULL;
Ethan Yonker66a19492015-12-10 10:19:45 -06002971 string Primary_Storage_UUID = "";
2972 if (xmlFile != NULL) {
2973 LOGINFO("successfully loaded storage.xml\n");
2974 doc = new xml_document<>();
2975 doc->parse<0>(xmlFile);
2976 volumes = doc->first_node("volumes");
2977 if (volumes) {
2978 xml_attribute<>* psuuid = volumes->first_attribute("primaryStorageUuid");
2979 if (psuuid) {
2980 Primary_Storage_UUID = psuuid->value();
2981 }
2982 }
Ethan Yonker6e8c27a2016-12-22 17:55:57 -06002983 } else {
2984 LOGINFO("No /data/system/storage.xml for adopted storage\n");
2985 return false;
Ethan Yonker66a19492015-12-10 10:19:45 -06002986 }
2987 std::vector<TWPartition*>::iterator adopt;
2988 for (adopt = Partitions.begin(); adopt != Partitions.end(); adopt++) {
Peter Cai439d60c2019-10-17 08:49:10 +08002989 if ((*adopt)->Removable && !(*adopt)->Is_Present && (*adopt)->Adopted_Mount_Delay > 0) {
2990 // On some devices, the external mmc driver takes some time
2991 // to recognize the card, in which case the "actual block device"
2992 // would not have been found yet. We wait the specified delay
2993 // and then try again.
2994 LOGINFO("Sleeping %d seconds for adopted storage.\n", (*adopt)->Adopted_Mount_Delay);
2995 sleep((*adopt)->Adopted_Mount_Delay);
2996 (*adopt)->Find_Actual_Block_Device();
2997 }
2998
Ethan Yonker66a19492015-12-10 10:19:45 -06002999 if ((*adopt)->Removable && (*adopt)->Is_Present) {
3000 if ((*adopt)->Decrypt_Adopted() == 0) {
Ethan Yonker6e8c27a2016-12-22 17:55:57 -06003001 ret = true;
Ethan Yonker66a19492015-12-10 10:19:45 -06003002 if (volumes) {
3003 xml_node<>* volume = volumes->first_node("volume");
3004 while (volume) {
3005 xml_attribute<>* guid = volume->first_attribute("partGuid");
3006 if (guid) {
3007 string GUID = (*adopt)->Adopted_GUID.c_str();
3008 GUID.insert(8, "-");
3009 GUID.insert(13, "-");
3010 GUID.insert(18, "-");
3011 GUID.insert(23, "-");
3012
3013 if (strcasecmp(GUID.c_str(), guid->value()) == 0) {
3014 xml_attribute<>* attr = volume->first_attribute("nickname");
nkk71ffb02bd2017-06-04 23:12:16 +03003015 if (attr && attr->value() && strlen(attr->value()) > 0) {
Ethan Yonker66a19492015-12-10 10:19:45 -06003016 (*adopt)->Storage_Name = attr->value();
3017 (*adopt)->Display_Name = (*adopt)->Storage_Name;
3018 (*adopt)->Backup_Display_Name = (*adopt)->Storage_Name;
3019 LOGINFO("storage name from storage.xml is '%s'\n", attr->value());
3020 }
3021 attr = volume->first_attribute("fsUuid");
3022 if (attr && !Primary_Storage_UUID.empty() && strcmp(Primary_Storage_UUID.c_str(), attr->value()) == 0) {
3023 TWPartition* Dat = Find_Partition_By_Path("/data");
3024 if (Dat) {
3025 LOGINFO("Internal storage is found on adopted storage '%s'\n", (*adopt)->Display_Name.c_str());
3026 LOGINFO("Changing '%s' to point to '%s'\n", Dat->Symlink_Mount_Point.c_str(), (*adopt)->Storage_Path.c_str());
3027 (*adopt)->Symlink_Mount_Point = Dat->Symlink_Mount_Point;
3028 Dat->Symlink_Mount_Point = "";
3029 // Toggle mounts to ensure that the symlink mount point (probably /sdcard) is mounted to the right location
3030 Dat->UnMount(false);
3031 Dat->Mount(false);
3032 (*adopt)->UnMount(false);
3033 (*adopt)->Mount(false);
Ethan Yonker66a19492015-12-10 10:19:45 -06003034 }
3035 }
3036 break;
3037 }
3038 }
3039 volume = volume->next_sibling("volume");
3040 }
3041 }
nkk71ffb02bd2017-06-04 23:12:16 +03003042 Update_System_Details();
3043 Output_Partition((*adopt));
Ethan Yonker66a19492015-12-10 10:19:45 -06003044 }
3045 }
3046 }
3047 if (xmlFile) {
3048 doc->clear();
3049 delete doc;
3050 free(xmlFile);
3051 }
Ethan Yonker6e8c27a2016-12-22 17:55:57 -06003052 return ret;
Ethan Yonker66a19492015-12-10 10:19:45 -06003053#else
3054 LOGINFO("Decrypt_Adopted: no crypto support\n");
Ethan Yonker6e8c27a2016-12-22 17:55:57 -06003055 return false;
Ethan Yonker66a19492015-12-10 10:19:45 -06003056#endif
3057}
Ethan Yonkerfcf3f242016-02-16 12:30:26 -06003058
3059void TWPartitionManager::Remove_Partition_By_Path(string Path) {
3060 std::vector<TWPartition*>::iterator iter;
3061 string Local_Path = TWFunc::Get_Root_Path(Path);
3062
3063 for (iter = Partitions.begin(); iter != Partitions.end(); iter++) {
3064 if ((*iter)->Mount_Point == Local_Path || (!(*iter)->Symlink_Mount_Point.empty() && (*iter)->Symlink_Mount_Point == Local_Path)) {
3065 LOGINFO("Found and erasing '%s' from partition list\n", Local_Path.c_str());
3066 Partitions.erase(iter);
3067 return;
3068 }
3069 }
3070}
Ethan Yonker1b190162016-12-05 15:25:19 -06003071
bigbiff74a46272021-07-31 19:02:26 -04003072void TWPartitionManager::Override_Active_Slot(const string& Slot) {
3073 LOGINFO("Overriding slot to '%s'\n", Slot.c_str());
3074 Active_Slot_Display = Slot;
3075 DataManager::SetValue("tw_active_slot", Slot);
3076}
3077
Ethan Yonker1b190162016-12-05 15:25:19 -06003078void TWPartitionManager::Set_Active_Slot(const string& Slot) {
3079 if (Slot != "A" && Slot != "B") {
3080 LOGERR("Set_Active_Slot invalid slot '%s'\n", Slot.c_str());
3081 return;
3082 }
3083 if (Active_Slot_Display == Slot)
3084 return;
3085 LOGINFO("Setting active slot %s\n", Slot.c_str());
3086#ifdef AB_OTA_UPDATER
3087 if (!Active_Slot_Display.empty()) {
3088 const hw_module_t *hw_module;
3089 boot_control_module_t *module;
3090 int ret;
3091 ret = hw_get_module("bootctrl", &hw_module);
3092 if (ret != 0) {
3093 LOGERR("Error getting bootctrl module.\n");
3094 } else {
3095 module = (boot_control_module_t*) hw_module;
3096 module->init(module);
3097 int slot_number = 0;
3098 if (Slot == "B")
3099 slot_number = 1;
3100 if (module->setActiveBootSlot(module, slot_number))
3101 gui_msg(Msg(msg::kError, "unable_set_boot_slot=Error changing bootloader boot slot to {1}")(Slot));
3102 }
3103 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
3104 }
3105#else
3106 LOGERR("Boot slot feature not present\n");
3107#endif
3108 Active_Slot_Display = Slot;
3109 if (Fstab_Processed())
3110 Update_System_Details();
3111}
3112string TWPartitionManager::Get_Active_Slot_Suffix() {
3113 if (Active_Slot_Display == "A")
3114 return "_a";
3115 return "_b";
3116}
3117string TWPartitionManager::Get_Active_Slot_Display() {
3118 return Active_Slot_Display;
3119}
Ethan Yonker6e8c27a2016-12-22 17:55:57 -06003120
Captain Throwback9d6feb52018-07-27 10:05:24 -04003121string TWPartitionManager::Get_Android_Root_Path() {
bigbiff8da46fa2020-09-08 16:42:34 -04003122 return "/system_root";
Captain Throwback9d6feb52018-07-27 10:05:24 -04003123}
3124
Ethan Yonker6e8c27a2016-12-22 17:55:57 -06003125void TWPartitionManager::Remove_Uevent_Devices(const string& Mount_Point) {
3126 std::vector<TWPartition*>::iterator iter;
3127
3128 for (iter = Partitions.begin(); iter != Partitions.end(); ) {
3129 if ((*iter)->Is_SubPartition && (*iter)->SubPartition_Of == Mount_Point) {
3130 TWPartition *part = *iter;
3131 LOGINFO("%s was removed by uevent data\n", (*iter)->Mount_Point.c_str());
3132 (*iter)->UnMount(false);
3133 rmdir((*iter)->Mount_Point.c_str());
3134 iter = Partitions.erase(iter);
3135 delete part;
3136 } else {
3137 iter++;
3138 }
3139 }
3140}
3141
3142void TWPartitionManager::Handle_Uevent(const Uevent_Block_Data& uevent_data) {
3143 std::vector<TWPartition*>::iterator iter;
3144
3145 for (iter = Partitions.begin(); iter != Partitions.end(); iter++) {
3146 if (!(*iter)->Sysfs_Entry.empty()) {
3147 string device;
3148 size_t wildcard = (*iter)->Sysfs_Entry.find("*");
3149 if (wildcard != string::npos) {
3150 device = (*iter)->Sysfs_Entry.substr(0, wildcard);
3151 } else {
3152 device = (*iter)->Sysfs_Entry;
3153 }
3154 if (device == uevent_data.sysfs_path.substr(0, device.size())) {
3155 // Found a match
3156 if (uevent_data.action == "add") {
3157 (*iter)->Primary_Block_Device = "/dev/block/" + uevent_data.block_device;
3158 (*iter)->Alternate_Block_Device = (*iter)->Primary_Block_Device;
3159 (*iter)->Is_Present = true;
3160 LOGINFO("Found a match '%s' '%s'\n", uevent_data.block_device.c_str(), device.c_str());
3161 if (!Decrypt_Adopted()) {
3162 LOGINFO("No adopted storage so finding actual block device\n");
3163 (*iter)->Find_Actual_Block_Device();
3164 }
3165 return;
3166 } else if (uevent_data.action == "remove") {
3167 (*iter)->Is_Present = false;
3168 (*iter)->Primary_Block_Device = "";
3169 (*iter)->Actual_Block_Device = "";
3170 Remove_Uevent_Devices((*iter)->Mount_Point);
3171 return;
3172 }
3173 }
3174 }
3175 }
bigbiffee7b7ff2020-03-23 15:08:27 -04003176
3177 if (!PartitionManager.Get_Super_Status())
3178 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 -06003179}
3180
3181void TWPartitionManager::setup_uevent() {
3182 struct sockaddr_nl nls;
3183
3184 if (uevent_pfd.fd >= 0) {
3185 LOGINFO("uevent already set up\n");
3186 return;
3187 }
3188
3189 // Open hotplug event netlink socket
3190 memset(&nls,0,sizeof(struct sockaddr_nl));
3191 nls.nl_family = AF_NETLINK;
3192 nls.nl_pid = getpid();
3193 nls.nl_groups = -1;
3194 uevent_pfd.events = POLLIN;
3195 uevent_pfd.fd = socket(PF_NETLINK, SOCK_DGRAM, NETLINK_KOBJECT_UEVENT);
3196 if (uevent_pfd.fd==-1) {
3197 LOGERR("uevent not root\n");
3198 return;
3199 }
3200
3201 // Listen to netlink socket
3202 if (::bind(uevent_pfd.fd, (struct sockaddr *) &nls, sizeof(struct sockaddr_nl)) < 0) {
3203 LOGERR("Bind failed\n");
3204 return;
3205 }
3206 set_select_fd();
3207 Coldboot();
3208}
3209
3210Uevent_Block_Data TWPartitionManager::get_event_block_values(char *buf, int len) {
3211 Uevent_Block_Data ret;
3212 ret.subsystem = "";
3213 char *ptr = buf;
3214 const char *end = buf + len;
3215
3216 buf[len - 1] = '\0';
3217 while (ptr < end) {
3218 if (strncmp(ptr, "ACTION=", strlen("ACTION=")) == 0) {
3219 ptr += strlen("ACTION=");
3220 ret.action = ptr;
3221 } else if (strncmp(ptr, "SUBSYSTEM=", strlen("SUBSYSTEM=")) == 0) {
3222 ptr += strlen("SUBSYSTEM=");
3223 ret.subsystem = ptr;
3224 } else if (strncmp(ptr, "DEVTYPE=", strlen("DEVTYPE=")) == 0) {
3225 ptr += strlen("DEVTYPE=");
3226 ret.type = ptr;
3227 } else if (strncmp(ptr, "DEVPATH=", strlen("DEVPATH=")) == 0) {
3228 ptr += strlen("DEVPATH=");
3229 ret.sysfs_path += ptr;
3230 } else if (strncmp(ptr, "DEVNAME=", strlen("DEVNAME=")) == 0) {
3231 ptr += strlen("DEVNAME=");
3232 ret.block_device += ptr;
3233 } else if (strncmp(ptr, "MAJOR=", strlen("MAJOR=")) == 0) {
3234 ptr += strlen("MAJOR=");
3235 ret.major = atoi(ptr);
3236 } else if (strncmp(ptr, "MINOR=", strlen("MINOR=")) == 0) {
3237 ptr += strlen("MINOR=");
3238 ret.minor = atoi(ptr);
3239 }
3240 ptr += strlen(ptr) + 1;
3241 }
3242 return ret;
3243}
3244
3245void TWPartitionManager::read_uevent() {
3246 char buf[1024];
3247
3248 int len = recv(uevent_pfd.fd, buf, sizeof(buf), MSG_DONTWAIT);
3249 if (len == -1) {
Mauronofrio Matarresec1bb76e2019-08-04 17:02:41 +01003250 LOGINFO("recv error on uevent\n");
Ethan Yonker6e8c27a2016-12-22 17:55:57 -06003251 return;
3252 }
3253 /*int i = 0; // Print all uevent output for test /debug
3254 while (i<len) {
3255 printf("%s\n", buf+i);
3256 i += strlen(buf+i)+1;
3257 }*/
3258 Uevent_Block_Data uevent_data = get_event_block_values(buf, len);
3259 if (uevent_data.subsystem == "block" && uevent_data.type == "disk") {
3260 PartitionManager.Handle_Uevent(uevent_data);
3261 }
3262}
3263
3264void TWPartitionManager::close_uevent() {
3265 if (uevent_pfd.fd > 0)
3266 close(uevent_pfd.fd);
3267 uevent_pfd.fd = -1;
3268}
3269
3270void TWPartitionManager::Add_Partition(TWPartition* Part) {
3271 Partitions.push_back(Part);
3272}
3273
3274void TWPartitionManager::Coldboot_Scan(std::vector<string> *sysfs_entries, const string& Path, int depth) {
3275 string Real_Path = Path;
3276 char real_path[PATH_MAX];
3277 if (realpath(Path.c_str(), &real_path[0])) {
3278 string Real_Path = real_path;
3279 std::vector<string>::iterator iter;
3280 for (iter = sysfs_entries->begin(); iter != sysfs_entries->end(); iter++) {
3281 if (Real_Path.find((*iter)) != string::npos) {
3282 string Write_Path = Real_Path + "/uevent";
3283 if (TWFunc::Path_Exists(Write_Path)) {
3284 const char* write_val = "add\n";
3285 TWFunc::write_to_file(Write_Path, write_val);
3286 break;
3287 }
3288 }
3289 }
3290 }
3291
3292 DIR* d = opendir(Path.c_str());
3293 if (d != NULL) {
3294 struct dirent* de;
3295 while ((de = readdir(d)) != NULL) {
3296 if (de->d_name[0] == '.' || (de->d_type != DT_DIR && depth > 0))
3297 continue;
3298 if (strlen(de->d_name) >= 4 && (strncmp(de->d_name, "ram", 3) == 0 || strncmp(de->d_name, "loop", 4) == 0))
3299 continue;
3300
3301 string item = Path + "/";
3302 item.append(de->d_name);
3303 Coldboot_Scan(sysfs_entries, item, depth + 1);
3304 }
3305 closedir(d);
3306 }
3307}
3308
3309void TWPartitionManager::Coldboot() {
3310 std::vector<TWPartition*>::iterator iter;
3311 std::vector<string> sysfs_entries;
3312
3313 for (iter = Partitions.begin(); iter != Partitions.end(); iter++) {
3314 if (!(*iter)->Sysfs_Entry.empty()) {
3315 size_t wildcard_pos = (*iter)->Sysfs_Entry.find("*");
3316 if (wildcard_pos == string::npos)
3317 wildcard_pos = (*iter)->Sysfs_Entry.size();
3318 sysfs_entries.push_back((*iter)->Sysfs_Entry.substr(0, wildcard_pos));
3319 }
3320 }
3321
3322 if (sysfs_entries.size() > 0)
3323 Coldboot_Scan(&sysfs_entries, "/sys/block", 0);
3324}
Ethan Yonker53796e72019-01-11 22:49:52 -06003325
3326bool TWPartitionManager::Prepare_Empty_Folder(const std::string& Folder) {
3327 if (TWFunc::Path_Exists(Folder))
3328 TWFunc::removeDir(Folder, false);
3329 return TWFunc::Recursive_Mkdir(Folder);
3330}
3331
bigbiffcfa875c2021-06-20 16:20:27 -04003332std::string TWPartitionManager::Get_Bare_Partition_Name(std::string Mount_Point) {
3333 if (Mount_Point == "/system_root")
3334 return "system";
3335 else
3336 return TWFunc::Remove_Beginning_Slash(Mount_Point);
3337}
3338
bigbiffee7b7ff2020-03-23 15:08:27 -04003339bool TWPartitionManager::Prepare_Super_Volume(TWPartition* twrpPart) {
3340 Fstab fstab;
bigbiffcfa875c2021-06-20 16:20:27 -04003341 std::string bare_partition_name = Get_Bare_Partition_Name(twrpPart->Get_Mount_Point());
bigbiffee7b7ff2020-03-23 15:08:27 -04003342
3343 LOGINFO("Trying to prepare %s from super partition\n", bare_partition_name.c_str());
3344
3345 std::string blk_device_partition;
3346#ifdef AB_OTA_UPDATER
3347 blk_device_partition = bare_partition_name + PartitionManager.Get_Active_Slot_Suffix();
3348#else
3349 blk_device_partition = bare_partition_name;
3350#endif
3351
3352 FstabEntry fstabEntry = {
3353 .blk_device = blk_device_partition,
3354 .mount_point = twrpPart->Get_Mount_Point(),
3355 .fs_type = twrpPart->Current_File_System,
3356 .fs_mgr_flags.logical = twrpPart->Is_Super,
3357 };
3358
3359 fstab.emplace_back(fstabEntry);
3360 if (!fs_mgr_update_logical_partition(&fstabEntry)) {
Captain Throwbackc6939102021-04-06 12:57:30 -04003361 LOGINFO("unable to update logical partition: %s\n", twrpPart->Get_Mount_Point().c_str());
bigbiffee7b7ff2020-03-23 15:08:27 -04003362 return false;
3363 }
3364
bigbiff32cbabe2020-04-12 19:16:19 -04003365 while (access(fstabEntry.blk_device.c_str(), F_OK) != 0) {
3366 usleep(100);
3367 }
3368
bigbiffee7b7ff2020-03-23 15:08:27 -04003369 twrpPart->Set_Block_Device(fstabEntry.blk_device);
3370 twrpPart->Update_Size(true);
3371 twrpPart->Change_Mount_Read_Only(true);
3372 twrpPart->Set_Can_Be_Backed_Up(false);
3373 twrpPart->Set_Can_Be_Wiped(false);
Mohd Faraz7fc70502021-04-22 20:44:11 +02003374 LOGINFO("Symlinking %s => /dev/block/bootdevice/by-name/%s \n", fstabEntry.blk_device.c_str(), bare_partition_name.c_str());
3375 symlink(fstabEntry.blk_device.c_str(), ("/dev/block/bootdevice/by-name/" + bare_partition_name).c_str());
3376
bigbiffee7b7ff2020-03-23 15:08:27 -04003377 return true;
3378}
3379
3380bool TWPartitionManager::Prepare_All_Super_Volumes() {
3381 bool status = true;
3382 std::vector<TWPartition*>::iterator iter;
3383
3384 for (iter = Partitions.begin(); iter != Partitions.end(); iter++) {
3385 if ((*iter)->Is_Super) {
3386 if (!Prepare_Super_Volume(*iter)) {
3387 status = false;
3388 }
3389 PartitionManager.Output_Partition(*iter);
3390 }
3391 }
3392 Update_System_Details();
3393 return status;
3394}
3395
3396bool TWPartitionManager::Is_Super_Partition(const char* fstab_line) {
Mohd Faraze3948ec2020-08-14 01:40:59 +00003397 if (!Get_Super_Status())
3398 return false;
bigbiffee7b7ff2020-03-23 15:08:27 -04003399 std::vector<std::string> super_partition_list = {"system", "vendor", "odm", "product", "system_ext"};
3400
3401 for (auto&& fstab_partition_check: super_partition_list) {
3402 if (strncmp(fstab_line, fstab_partition_check.c_str(), fstab_partition_check.size()) == 0) {
3403 DataManager::SetValue(TW_IS_SUPER, "1");
3404 return true;
3405 }
3406 }
3407 return false;
3408}
3409
3410std::string TWPartitionManager::Get_Super_Partition() {
3411 int slot_number = Get_Active_Slot_Display() == "A" ? 0 : 1;
3412 std::string super_device = fs_mgr_get_super_partition_name(slot_number);
3413 return "/dev/block/by-name/" + super_device;
3414}
3415
3416void TWPartitionManager::Setup_Super_Devices() {
3417 std::string superPart = Get_Super_Partition();
3418 android::fs_mgr::CreateLogicalPartitions(superPart);
bigbiff7ba75002020-04-11 20:47:09 -04003419}
3420
3421void TWPartitionManager::Setup_Super_Partition() {
bigbiffee7b7ff2020-03-23 15:08:27 -04003422 TWPartition* superPartition = new TWPartition();
bigbiff7ba75002020-04-11 20:47:09 -04003423 std::string superPart = Get_Super_Partition();
3424
3425 superPartition->Backup_Path = "/super";
3426 superPartition->Mount_Point = "/super";
bigbiffee7b7ff2020-03-23 15:08:27 -04003427 superPartition->Actual_Block_Device = superPart;
3428 superPartition->Alternate_Block_Device = superPart;
Captain Throwback8e70a112021-04-06 16:39:45 -04003429#ifdef BOARD_SUPER_PARTITION_PARTITION_LIST
3430 superPartition->Backup_Display_Name = "Super (" BOARD_SUPER_PARTITION_PARTITION_LIST ")";
Ian Macdonald160e8d32020-09-29 20:47:31 +02003431#else
3432 superPartition->Backup_Display_Name = "Super";
3433#endif
bigbiffee7b7ff2020-03-23 15:08:27 -04003434 superPartition->Can_Flash_Img = true;
bigbiffee7b7ff2020-03-23 15:08:27 -04003435 superPartition->Current_File_System = "emmc";
3436 superPartition->Can_Be_Backed_Up = true;
3437 superPartition->Is_Present = true;
3438 superPartition->Is_SubPartition = false;
bigbiff7ba75002020-04-11 20:47:09 -04003439 superPartition->Setup_Image();
bigbiffee7b7ff2020-03-23 15:08:27 -04003440 Add_Partition(superPartition);
3441 PartitionManager.Output_Partition(superPartition);
bigbiffee7b7ff2020-03-23 15:08:27 -04003442}
3443
3444bool TWPartitionManager::Get_Super_Status() {
bigbiffdf8436b2020-08-30 16:22:34 -04003445 std::string fastboot_mode = android::base::GetProperty("sys.usb.config", "");
3446 if (fastboot_mode == "fastboot") {
3447 return false;
3448 }
3449 else
3450 return access(Get_Super_Partition().c_str(), F_OK) == 0;
bigbiffee7b7ff2020-03-23 15:08:27 -04003451}
bigbiff25d25b92020-06-19 16:07:38 -04003452
3453bool TWPartitionManager::Recreate_Logs_Dir() {
3454#ifdef TW_INCLUDE_FBE
3455 struct passwd pd;
3456 struct passwd *pwdptr = &pd;
3457 struct passwd *tempPd;
3458 char pwdBuf[512];
3459 int uid = 0, gid = 0;
3460
3461 if ((getpwnam_r("system", pwdptr, pwdBuf, sizeof(pwdBuf), &tempPd)) != 0) {
3462 LOGERR("unable to get system user id\n");
3463 return false;
3464 } else {
3465 struct group grp;
3466 struct group *grpptr = &grp;
3467 struct group *tempGrp;
3468 char grpBuf[512];
3469
3470 if ((getgrnam_r("cache", grpptr, grpBuf, sizeof(grpBuf), &tempGrp)) != 0) {
3471 LOGERR("unable to get cache group id\n");
3472 return false;
3473 } else {
3474 uid = pd.pw_uid;
3475 gid = grp.gr_gid;
3476 std::string abLogsRecoveryDir(DATA_LOGS_DIR);
3477 abLogsRecoveryDir += "/recovery/";
3478
3479 if (!TWFunc::Create_Dir_Recursive(abLogsRecoveryDir, S_IRWXU | S_IRWXG | S_IWGRP | S_IXGRP, uid, gid)) {
3480 LOGERR("Unable to recreate %s\n", abLogsRecoveryDir.c_str());
3481 return false;
3482 }
3483 if (setfilecon(abLogsRecoveryDir.c_str(), "u:object_r:cache_file:s0") != 0) {
3484 LOGERR("Unable to set contexts for %s\n", abLogsRecoveryDir.c_str());
3485 return false;
3486 }
3487 }
3488 }
3489#endif
3490 return true;
3491}
bigbiff1f9e4842020-10-31 11:33:15 -04003492
3493void TWPartitionManager::Unlock_Block_Partitions() {
3494 int fd, OFF = 0;
3495
3496 const std::string block_path = "/dev/block/";
3497 DIR* d = opendir(block_path.c_str());
3498 if (d != NULL) {
3499 struct dirent* de;
3500 while ((de = readdir(d)) != NULL) {
3501 if (de->d_type == DT_BLK) {
3502 std::string block_device = block_path + de->d_name;
bigbiff1f9e4842020-10-31 11:33:15 -04003503 if ((fd = open(block_device.c_str(), O_RDONLY | O_CLOEXEC)) < 0) {
3504 LOGERR("unable to open block device %s: %s\n", block_device.c_str(), strerror(errno));
3505 continue;
3506 }
3507 if (ioctl(fd, BLKROSET, &OFF) == -1) {
3508 LOGERR("Unable to unlock %s for flashing: %s\n", block_device.c_str());
3509 continue;
3510 }
3511 close(fd);
3512 }
3513 }
3514 closedir(d);
3515 }
bigbiffaf253cd2020-12-06 16:50:55 -05003516}
bigbiffcfa875c2021-06-20 16:20:27 -04003517
3518bool TWPartitionManager::Unmap_Super_Devices() {
3519 bool destroyed = false;
3520#ifndef TW_EXCLUDE_APEX
3521 twrpApex apex;
3522 apex.Unmount();
3523#endif
3524 for (auto iter = Partitions.begin(); iter != Partitions.end();) {
3525 LOGINFO("Checking partition: %s\n", (*iter)->Get_Mount_Point().c_str());
3526 if ((*iter)->Is_Super) {
3527 TWPartition *part = *iter;
3528 std::string bare_partition_name = Get_Bare_Partition_Name((*iter)->Get_Mount_Point());
3529 std::string blk_device_partition = bare_partition_name + PartitionManager.Get_Active_Slot_Suffix();
3530 (*iter)->UnMount(false);
3531 LOGINFO("removing dynamic partition: %s\n", blk_device_partition.c_str());
3532 destroyed = DestroyLogicalPartition(blk_device_partition);
3533 std::string cow_partition = blk_device_partition + "-cow";
3534 std::string cow_partition_path = "/dev/block/mapper/" + cow_partition;
3535 struct stat st;
3536 if (lstat(cow_partition_path.c_str(), &st) == 0) {
3537 LOGINFO("removing cow partition: %s\n", cow_partition.c_str());
3538 destroyed = DestroyLogicalPartition(cow_partition);
3539 }
3540 rmdir((*iter)->Mount_Point.c_str());
3541 iter = Partitions.erase(iter);
3542 delete part;
3543 if (!destroyed) {
3544 return false;
3545 }
3546 } else {
3547 ++iter;
3548 }
3549 }
3550 return true;
3551}