blob: d85ae2a866f8e469c0082e756b6288b20dad940f [file] [log] [blame]
Dees Troy3be70a82013-10-22 14:25:12 +00001/*
bigbiffee7b7ff2020-03-23 15:08:27 -04002 Copyright 2014 to 2020 TeamWin
Dees Troy3be70a82013-10-22 14:25:12 +00003 This file is part of TWRP/TeamWin Recovery Project.
4
5 TWRP is free software: you can redistribute it and/or modify
6 it under the terms of the GNU General Public License as published by
7 the Free Software Foundation, either version 3 of the License, or
8 (at your option) any later version.
9
10 TWRP is distributed in the hope that it will be useful,
11 but WITHOUT ANY WARRANTY; without even the implied warranty of
12 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 GNU General Public License for more details.
14
15 You should have received a copy of the GNU General Public License
16 along with TWRP. If not, see <http://www.gnu.org/licenses/>.
17*/
Dees_Troy51a0e822012-09-05 15:24:24 -040018
19#include <stdio.h>
20#include <stdlib.h>
21#include <string.h>
22#include <sys/stat.h>
23#include <sys/vfs.h>
24#include <unistd.h>
Ethan Yonker6e8c27a2016-12-22 17:55:57 -060025#include <map>
Dees_Troy5bf43922012-09-07 16:07:55 -040026#include <vector>
Dees_Troy63c8df72012-09-10 14:02:05 -040027#include <dirent.h>
28#include <time.h>
Dees_Troy8170a922012-09-18 15:40:25 -040029#include <errno.h>
30#include <fcntl.h>
bigbiff25d25b92020-06-19 16:07:38 -040031#include <grp.h>
32#include <pwd.h>
bigbiffce8f83c2015-12-12 18:30:21 -050033#include <zlib.h>
bigbiff bigbiff9c754052013-01-09 09:09:08 -050034#include <iostream>
35#include <iomanip>
Ethan Yonker8613dc02014-09-11 09:28:20 -050036#include <sys/wait.h>
Ethan Yonker483e9f42016-01-11 22:21:18 -060037#include <linux/fs.h>
38#include <sys/mount.h>
Ethan Yonker6e8c27a2016-12-22 17:55:57 -060039
bigbiffee7b7ff2020-03-23 15:08:27 -040040
Ethan Yonker6e8c27a2016-12-22 17:55:57 -060041#include <sys/poll.h>
42#include <sys/socket.h>
43#include <linux/types.h>
44#include <linux/netlink.h>
bigbiffee7b7ff2020-03-23 15:08:27 -040045#include <android-base/chrono_utils.h>
46#include <android-base/file.h>
47#include <android-base/logging.h>
bigbiff7ba75002020-04-11 20:47:09 -040048#include <android-base/properties.h>
bigbiffee7b7ff2020-03-23 15:08:27 -040049#include <android-base/strings.h>
50#include <fstab/fstab.h>
51#include <fs_avb/fs_avb.h>
52#include <fs_mgr.h>
53#include <fs_mgr_dm_linear.h>
54#include <fs_mgr_overlayfs.h>
55#include <libgsi/libgsi.h>
56#include <liblp/liblp.h>
Ethan Yonker6e8c27a2016-12-22 17:55:57 -060057
Dees_Troy51a0e822012-09-05 15:24:24 -040058#include "variables.h"
Dees_Troy2673cec2013-04-02 20:22:16 +000059#include "twcommon.h"
Dees_Troy51a0e822012-09-05 15:24:24 -040060#include "partitions.hpp"
Dees_Troy5bf43922012-09-07 16:07:55 -040061#include "data.hpp"
Dees_Troy38bd7602012-09-14 13:33:53 -040062#include "twrp-functions.hpp"
Ethan Yonkerb5fab762016-01-28 14:03:33 -060063#include "fixContexts.hpp"
Ethan Yonker3fdcda42016-11-30 12:29:37 -060064#include "exclude.hpp"
Ethan Yonker4b94cfd2014-12-11 10:00:45 -060065#include "set_metadata.h"
bigbiff7abc5fe2015-01-17 16:53:12 -050066#include "tw_atomic.hpp"
Ethan Yonker74db1572015-10-28 12:44:49 -050067#include "gui/gui.hpp"
Ethan Yonker472f5062016-02-25 13:47:30 -060068#include "progresstracking.hpp"
bigbiff bigbiff56cf5642016-08-19 17:43:45 -040069#include "twrpDigestDriver.hpp"
bigbiffad58e1b2020-07-06 20:24:34 -040070#include "twrpRepacker.hpp"
bigbiffce8f83c2015-12-12 18:30:21 -050071#include "adbbu/libtwadbbu.hpp"
Dees_Troy38bd7602012-09-14 13:33:53 -040072
bigbiff bigbiffc7eee6f2014-09-02 18:59:01 -040073#ifdef TW_HAS_MTP
bigbiff bigbiffaf32bb92018-12-18 18:39:53 -050074#ifdef TW_HAS_LEGACY_MTP
75#include "mtp/legacy/mtp_MtpServer.hpp"
76#include "mtp/legacy/twrpMtp.hpp"
77#include "mtp/legacy/MtpMessage.hpp"
78#else
79#include "mtp/ffs/mtp_MtpServer.hpp"
80#include "mtp/ffs/twrpMtp.hpp"
81#include "mtp/ffs/MtpMessage.hpp"
82#endif
bigbiff bigbiffc7eee6f2014-09-02 18:59:01 -040083#endif
84
Dees Troy6f6441d2014-01-23 02:07:03 +000085extern "C" {
86 #include "cutils/properties.h"
Ethan Yonker74db1572015-10-28 12:44:49 -050087 #include "gui/gui.h"
Dees Troy6f6441d2014-01-23 02:07:03 +000088}
89
Dees_Troy5bf43922012-09-07 16:07:55 -040090#ifdef TW_INCLUDE_CRYPTO
bigbiff7ba75002020-04-11 20:47:09 -040091#include "crypto/fde/cryptfs.h"
92#include "gui/rapidxml.hpp"
93#include "gui/pages.hpp"
94#ifdef TW_INCLUDE_FBE
95#include "crypto/ext4crypt/Decrypt.h"
96#ifdef TW_INCLUDE_FBE_METADATA_DECRYPT
97 #ifdef USE_FSCRYPT
98 #include "crypto/fscrypt/MetadataCrypt.h"
99 #else
100 #include "crypto/ext4crypt/MetadataCrypt.h"
bigbiffadc599e2020-05-28 19:36:30 +0000101 #endif
bigbiff7ba75002020-04-11 20:47:09 -0400102#endif
103#endif
104#ifdef TW_CRYPTO_USE_SYSTEM_VOLD
105#include "crypto/vold_decrypt/vold_decrypt.h"
106#endif
Dees_Troy5bf43922012-09-07 16:07:55 -0400107#endif
Dees_Troy51a0e822012-09-05 15:24:24 -0400108
Ethan Yonker1b190162016-12-05 15:25:19 -0600109#ifdef AB_OTA_UPDATER
110#include <hardware/hardware.h>
111#include <hardware/boot_control.h>
112#endif
113
bigbiffee7b7ff2020-03-23 15:08:27 -0400114using android::fs_mgr::Fstab;
115using android::fs_mgr::FstabEntry;
Ethan Yonker6277c792014-09-15 14:54:30 -0500116
bigbiffee7b7ff2020-03-23 15:08:27 -0400117extern bool datamedia;
Noah Jacobson81d638d2019-04-28 00:10:07 -0400118std::vector<users_struct> Users_List;
119
bigbiff bigbiff34684ff2013-12-01 21:03:45 -0500120TWPartitionManager::TWPartitionManager(void) {
bigbiff bigbiffc7eee6f2014-09-02 18:59:01 -0400121 mtp_was_enabled = false;
Ethan Yonker726a0202014-12-16 20:01:38 -0600122 mtp_write_fd = -1;
Ethan Yonker6e8c27a2016-12-22 17:55:57 -0600123 uevent_pfd.fd = -1;
bigbiff7abc5fe2015-01-17 16:53:12 -0500124 stop_backup.set_value(0);
Ethan Yonker1b190162016-12-05 15:25:19 -0600125#ifdef AB_OTA_UPDATER
126 char slot_suffix[PROPERTY_VALUE_MAX];
Ethan Yonkerfefe5912017-09-30 22:22:13 -0500127 property_get("ro.boot.slot_suffix", slot_suffix, "error");
128 if (strcmp(slot_suffix, "error") == 0)
129 property_get("ro.boot.slot", slot_suffix, "error");
Ethan Yonker1b190162016-12-05 15:25:19 -0600130 Active_Slot_Display = "";
Ethan Yonkerfefe5912017-09-30 22:22:13 -0500131 if (strcmp(slot_suffix, "_a") == 0 || strcmp(slot_suffix, "a") == 0)
Ethan Yonker1b190162016-12-05 15:25:19 -0600132 Set_Active_Slot("A");
133 else
134 Set_Active_Slot("B");
135#endif
bigbiff bigbiff34684ff2013-12-01 21:03:45 -0500136}
137
bigbiff8da46fa2020-09-08 16:42:34 -0400138int TWPartitionManager::Process_Fstab(string Fstab_Filename, bool Display_Error) {
Dees_Troy5bf43922012-09-07 16:07:55 -0400139 FILE *fstabFile;
140 char fstab_line[MAX_FSTAB_LINE_LENGTH];
Dees Troy02a64532014-03-19 15:23:32 +0000141 TWPartition* settings_partition = NULL;
Matt Mowerbf4efa32014-04-14 23:25:26 -0500142 TWPartition* andsec_partition = NULL;
Ethan Yonker726a0202014-12-16 20:01:38 -0600143 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 -0600144 std::map<string, Flags_Map> twrp_flags;
145
146 fstabFile = fopen("/etc/twrp.flags", "rt");
147 if (fstabFile != NULL) {
Ian Macdonald160e8d32020-09-29 20:47:31 +0200148 LOGINFO("Reading /etc/twrp.flags\n");
Ethan Yonker6e8c27a2016-12-22 17:55:57 -0600149 while (fgets(fstab_line, sizeof(fstab_line), fstabFile) != NULL) {
150 if (fstab_line[0] != '/')
151 continue;
152
153 size_t line_size = strlen(fstab_line);
154 if (fstab_line[line_size - 1] != '\n')
155 fstab_line[line_size] = '\n';
156 Flags_Map line_flags;
157 line_flags.Primary_Block_Device = "";
158 line_flags.Alternate_Block_Device = "";
159 line_flags.fstab_line = (char*)malloc(MAX_FSTAB_LINE_LENGTH);
160 if (!line_flags.fstab_line) {
161 LOGERR("malloc error on line_flags.fstab_line\n");
162 return false;
163 }
164 memcpy(line_flags.fstab_line, fstab_line, MAX_FSTAB_LINE_LENGTH);
165 bool found_separator = false;
166 char *fs_loc = NULL;
167 char *block_loc = NULL;
168 char *flags_loc = NULL;
169 size_t index, item_index = 0;
170 for (index = 0; index < line_size; index++) {
171 if (fstab_line[index] <= 32) {
172 fstab_line[index] = '\0';
173 found_separator = true;
174 } else if (found_separator) {
175 if (item_index == 0) {
176 fs_loc = fstab_line + index;
177 } else if (item_index == 1) {
178 block_loc = fstab_line + index;
179 } else if (item_index > 1) {
180 char *ptr = fstab_line + index;
181 if (*ptr == '/') {
182 line_flags.Alternate_Block_Device = ptr;
183 } else if (strlen(ptr) > strlen("flags=") && strncmp(ptr, "flags=", strlen("flags=")) == 0) {
184 flags_loc = ptr;
185 // Once we find the flags=, we're done scanning the line
186 break;
187 }
188 }
189 found_separator = false;
190 item_index++;
191 }
192 }
193 if (block_loc)
194 line_flags.Primary_Block_Device = block_loc;
195 if (fs_loc)
196 line_flags.File_System = fs_loc;
197 if (flags_loc)
198 line_flags.Flags = flags_loc;
199 string Mount_Point = fstab_line;
200 twrp_flags[Mount_Point] = line_flags;
201 memset(fstab_line, 0, sizeof(fstab_line));
202 }
203 fclose(fstabFile);
204 }
Dees_Troy5bf43922012-09-07 16:07:55 -0400205
206 fstabFile = fopen(Fstab_Filename.c_str(), "rt");
207 if (fstabFile == NULL) {
Dees_Troy2673cec2013-04-02 20:22:16 +0000208 LOGERR("Critical Error: Unable to open fstab at '%s'.\n", Fstab_Filename.c_str());
Dees_Troy5bf43922012-09-07 16:07:55 -0400209 return false;
Ethan Yonker6e8c27a2016-12-22 17:55:57 -0600210 } else
211 LOGINFO("Reading %s\n", Fstab_Filename.c_str());
Dees_Troy5bf43922012-09-07 16:07:55 -0400212
213 while (fgets(fstab_line, sizeof(fstab_line), fstabFile) != NULL) {
bigbiffee7b7ff2020-03-23 15:08:27 -0400214 bool isSuper = Is_Super_Partition(fstab_line);
215
216 if (!isSuper && fstab_line[0] != '/')
Dees_Troy5bf43922012-09-07 16:07:55 -0400217 continue;
218
Ethan Yonker6e8c27a2016-12-22 17:55:57 -0600219 if (strstr(fstab_line, "swap"))
220 continue; // Skip swap in recovery
221
222 size_t line_size = strlen(fstab_line);
223 if (fstab_line[line_size - 1] != '\n')
224 fstab_line[line_size] = '\n';
Dees_Troy2a923582012-09-20 12:13:34 -0400225
Matt Mower2b2dd152016-04-26 11:24:08 -0500226 TWPartition* partition = new TWPartition();
bigbiff8da46fa2020-09-08 16:42:34 -0400227 if (partition->Process_Fstab_Line(fstab_line, Display_Error, &twrp_flags))
Ethan Yonkerc05c5982014-03-13 09:19:56 -0500228 Partitions.push_back(partition);
Matt Mower72c87ce2016-04-26 14:34:56 -0500229 else
Dees_Troy5bf43922012-09-07 16:07:55 -0400230 delete partition;
Matt Mower2b2dd152016-04-26 11:24:08 -0500231
232 memset(fstab_line, 0, sizeof(fstab_line));
Dees_Troy5bf43922012-09-07 16:07:55 -0400233 }
234 fclose(fstabFile);
Matt Mower72c87ce2016-04-26 14:34:56 -0500235
Ethan Yonker6e8c27a2016-12-22 17:55:57 -0600236 if (twrp_flags.size() > 0) {
237 LOGINFO("Processing remaining twrp.flags\n");
238 // Add any items from twrp.flags that did not exist in the recovery.fstab
239 for (std::map<string, Flags_Map>::iterator mapit=twrp_flags.begin(); mapit!=twrp_flags.end(); mapit++) {
240 if (Find_Partition_By_Path(mapit->first) == NULL) {
241 TWPartition* partition = new TWPartition();
bigbiff8da46fa2020-09-08 16:42:34 -0400242 if (partition->Process_Fstab_Line(mapit->second.fstab_line, Display_Error, NULL))
Ethan Yonker6e8c27a2016-12-22 17:55:57 -0600243 Partitions.push_back(partition);
244 else
245 delete partition;
246 }
247 if (mapit->second.fstab_line)
248 free(mapit->second.fstab_line);
249 mapit->second.fstab_line = NULL;
250 }
251 }
Mohd Faraze3948ec2020-08-14 01:40:59 +0000252 if (Get_Super_Status()) {
253 Setup_Super_Devices();
254 }
Ethan Yonker6e8c27a2016-12-22 17:55:57 -0600255 LOGINFO("Done processing fstab files\n");
256
Matt Mower72c87ce2016-04-26 14:34:56 -0500257 std::vector<TWPartition*>::iterator iter;
258 for (iter = Partitions.begin(); iter != Partitions.end(); iter++) {
259 (*iter)->Partition_Post_Processing(Display_Error);
260
261 if ((*iter)->Is_Storage) {
262 ++storageid;
263 (*iter)->MTP_Storage_ID = storageid;
264 }
265
266 if (!settings_partition && (*iter)->Is_Settings_Storage && (*iter)->Is_Present)
267 settings_partition = (*iter);
268 else
269 (*iter)->Is_Settings_Storage = false;
270
271 if (!andsec_partition && (*iter)->Has_Android_Secure && (*iter)->Is_Present)
272 andsec_partition = (*iter);
273 else
274 (*iter)->Has_Android_Secure = false;
bigbiffdf8436b2020-08-30 16:22:34 -0400275
Mohd Faraze3948ec2020-08-14 01:40:59 +0000276 if (Is_Super_Partition(TWFunc::Remove_Beginning_Slash((*iter)->Get_Mount_Point()).c_str()))
277 Prepare_Super_Volume((*iter));
278 }
279
280 //Setup Apex before decryption
281 TWPartition* sys = PartitionManager.Find_Partition_By_Path(PartitionManager.Get_Android_Root_Path());
282 TWPartition* ven = PartitionManager.Find_Partition_By_Path("/vendor");
283 if (sys) {
284 if (sys->Get_Super_Status()) {
285 sys->Mount(true);
286 if (ven) {
287 ven->Mount(true);
288 }
289 twrpApex apex;
290 if (!apex.loadApexImages()) {
291 LOGERR("Unable to load apex images from %s\n", APEX_DIR);
292 property_set("twrp.apex.loaded", "false");
293 } else {
294 property_set("twrp.apex.loaded", "true");
295 }
296 }
Matt Mower72c87ce2016-04-26 14:34:56 -0500297 }
Mohd Faraz9a4ef262020-10-18 23:58:21 +0530298#ifndef USE_VENDOR_LIBS
299 if (ven)
300 ven->UnMount(true);
301 if (sys)
302 sys->UnMount(true);
303#endif
Matt Mower72c87ce2016-04-26 14:34:56 -0500304
Ethan Yonker6277c792014-09-15 14:54:30 -0500305 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) {
306 // Attempt to automatically identify /data/media emulated storage devices
307 TWPartition* Dat = Find_Partition_By_Path("/data");
308 if (Dat) {
309 LOGINFO("Using automatic handling for /data/media emulated storage device.\n");
310 datamedia = true;
that9e0593e2014-10-08 00:01:24 +0200311 Dat->Setup_Data_Media();
Ethan Yonker6277c792014-09-15 14:54:30 -0500312 settings_partition = Dat;
Ethan Yonker726a0202014-12-16 20:01:38 -0600313 // Since /data was not considered a storage partition earlier, we still need to assign an MTP ID
314 ++storageid;
315 Dat->MTP_Storage_ID = storageid;
Ethan Yonker6277c792014-09-15 14:54:30 -0500316 }
317 }
Dees Troy02a64532014-03-19 15:23:32 +0000318 if (!settings_partition) {
Dees_Troya13d74f2013-03-24 08:54:55 -0500319 for (iter = Partitions.begin(); iter != Partitions.end(); iter++) {
320 if ((*iter)->Is_Storage) {
Dees Troy02a64532014-03-19 15:23:32 +0000321 settings_partition = (*iter);
Dees_Troya13d74f2013-03-24 08:54:55 -0500322 break;
323 }
324 }
Dees Troy02a64532014-03-19 15:23:32 +0000325 if (!settings_partition)
Dees_Troy2673cec2013-04-02 20:22:16 +0000326 LOGERR("Unable to locate storage partition for storing settings file.\n");
Dees_Troya13d74f2013-03-24 08:54:55 -0500327 }
Dees_Troy5bf43922012-09-07 16:07:55 -0400328 if (!Write_Fstab()) {
329 if (Display_Error)
Dees_Troy2673cec2013-04-02 20:22:16 +0000330 LOGERR("Error creating fstab\n");
Dees_Troy5bf43922012-09-07 16:07:55 -0400331 else
Dees_Troy2673cec2013-04-02 20:22:16 +0000332 LOGINFO("Error creating fstab\n");
Dees_Troy5bf43922012-09-07 16:07:55 -0400333 }
Matt Mowered71fa32014-04-16 13:21:47 -0500334
Matt Mowerbf4efa32014-04-14 23:25:26 -0500335 if (andsec_partition) {
336 Setup_Android_Secure_Location(andsec_partition);
Matt Mowered71fa32014-04-16 13:21:47 -0500337 } else if (settings_partition) {
Matt Mowerbf4efa32014-04-14 23:25:26 -0500338 Setup_Android_Secure_Location(settings_partition);
339 }
Matt Mowered71fa32014-04-16 13:21:47 -0500340 if (settings_partition) {
341 Setup_Settings_Storage_Partition(settings_partition);
342 }
bigbiff7ba75002020-04-11 20:47:09 -0400343
Mohd Faraze3948ec2020-08-14 01:40:59 +0000344#ifdef TW_INCLUDE_CRYPTO
345 DataManager::SetValue(TW_IS_ENCRYPTED, 1);
346 Decrypt_Data();
347#endif
348
bigbiff7ba75002020-04-11 20:47:09 -0400349 Update_System_Details();
Mohd Faraze3948ec2020-08-14 01:40:59 +0000350 if (Get_Super_Status())
351 Setup_Super_Partition();
bigbiff7ba75002020-04-11 20:47:09 -0400352 UnMount_Main_Partitions();
353#ifdef AB_OTA_UPDATER
354 DataManager::SetValue("tw_active_slot", Get_Active_Slot_Display());
355#endif
356 setup_uevent();
357 return true;
358}
359
360int TWPartitionManager::Write_Fstab(void) {
361 FILE *fp;
362 std::vector<TWPartition*>::iterator iter;
363 string Line;
364
365 fp = fopen("/etc/fstab", "w");
366 if (fp == NULL) {
367 LOGINFO("Can not open /etc/fstab.\n");
368 return false;
369 }
370 for (iter = Partitions.begin(); iter != Partitions.end(); iter++) {
371 if ((*iter)->Can_Be_Mounted) {
Mohd Faraz2a1e3752020-09-30 10:55:48 +0530372 Line = (*iter)->Actual_Block_Device + " " + (*iter)->Mount_Point + " " + (*iter)->Current_File_System +
373 ((*iter)->Mount_Read_Only ? " ro " : " rw ") + "0 0\n";
bigbiff7ba75002020-04-11 20:47:09 -0400374 fputs(Line.c_str(), fp);
375 }
376 // Handle subpartition tracking
377 if ((*iter)->Is_SubPartition) {
378 TWPartition* ParentPartition = Find_Partition_By_Path((*iter)->SubPartition_Of);
379 if (ParentPartition)
380 ParentPartition->Has_SubPartition = true;
381 else
382 LOGERR("Unable to locate parent partition '%s' of '%s'\n", (*iter)->SubPartition_Of.c_str(), (*iter)->Mount_Point.c_str());
383 }
384 }
385 fclose(fp);
386 return true;
387}
388
389void TWPartitionManager::Decrypt_Data() {
390 #ifdef TW_INCLUDE_CRYPTO
Ethan Yonkercceebb82014-11-18 10:17:59 -0600391 TWPartition* Decrypt_Data = Find_Partition_By_Path("/data");
392 if (Decrypt_Data && Decrypt_Data->Is_Encrypted && !Decrypt_Data->Is_Decrypted) {
Ethan Yonker93382822018-11-01 15:25:31 -0500393 if (!Decrypt_Data->Key_Directory.empty() && Mount_By_Path(Decrypt_Data->Key_Directory, false)) {
394#ifdef TW_INCLUDE_FBE_METADATA_DECRYPT
bigbiff7ba75002020-04-11 20:47:09 -0400395#ifdef USE_FSCRYPT
396 if (fscrypt_mount_metadata_encrypted(Decrypt_Data->Actual_Block_Device, Decrypt_Data->Mount_Point, false)) {
Mohd Faraze3948ec2020-08-14 01:40:59 +0000397 std::string crypto_blkdev =android::base::GetProperty("ro.crypto.fs_crypto_blkdev", "error");
398 Decrypt_Data->Decrypted_Block_Device = crypto_blkdev;
bigbiff7ba75002020-04-11 20:47:09 -0400399 LOGINFO("Successfully decrypted metadata encrypted data partition with new block device: '%s'\n", crypto_blkdev.c_str());
400#else
Ethan Yonker93382822018-11-01 15:25:31 -0500401 if (e4crypt_mount_metadata_encrypted(Decrypt_Data->Mount_Point, false, Decrypt_Data->Key_Directory, Decrypt_Data->Actual_Block_Device, &Decrypt_Data->Decrypted_Block_Device)) {
bigbiff7ba75002020-04-11 20:47:09 -0400402 LOGINFO("Successfully decrypted metadata encrypted data partition with new block device: '%s'\n",
403 Decrypt_Data->Decrypted_Block_Device.c_str());
404#endif
Ethan Yonker93382822018-11-01 15:25:31 -0500405 property_set("ro.crypto.state", "encrypted");
406 Decrypt_Data->Is_Decrypted = true; // Needed to make the mount function work correctly
407 int retry_count = 10;
408 while (!Decrypt_Data->Mount(false) && --retry_count)
409 usleep(500);
410 if (Decrypt_Data->Mount(false)) {
bigbiff bigbiff0be03b32019-08-27 20:50:31 -0400411 if (!Decrypt_Data->Decrypt_FBE_DE()) {
mauronofriofc79aa62019-11-23 23:13:04 +0100412 char wrappedvalue[PROPERTY_VALUE_MAX];
413 property_get("fbe.data.wrappedkey", wrappedvalue, "");
414 std::string wrappedkeyvalue(wrappedvalue);
415 if (wrappedkeyvalue == "true") {
bigbiff bigbiff0be03b32019-08-27 20:50:31 -0400416 LOGERR("Unable to decrypt FBE device\n");
mauronofriofc79aa62019-11-23 23:13:04 +0100417 } else {
418 LOGINFO("Trying wrapped key.\n");
419 property_set("fbe.data.wrappedkey", "true");
420 if (!Decrypt_Data->Decrypt_FBE_DE()) {
421 LOGERR("Unable to decrypt FBE device\n");
422 }
bigbiff bigbiff0be03b32019-08-27 20:50:31 -0400423 }
424 }
425
Ethan Yonker93382822018-11-01 15:25:31 -0500426 } else {
427 LOGINFO("Failed to mount data after metadata decrypt\n");
428 }
429 } else {
430 LOGINFO("Unable to decrypt metadata encryption\n");
431 }
432#else
433 LOGERR("Metadata FBE decrypt support not present in this TWRP\n");
434#endif
435 }
Ethan Yonkerbd7492d2016-12-07 13:55:01 -0600436 if (Decrypt_Data->Is_FBE) {
437 if (DataManager::GetIntValue(TW_CRYPTO_PWTYPE) == 0) {
438 if (Decrypt_Device("!") == 0) {
439 gui_msg("decrypt_success=Successfully decrypted with default password.");
440 DataManager::SetValue(TW_IS_ENCRYPTED, 0);
441 } else {
442 gui_err("unable_to_decrypt=Unable to decrypt with default password.");
443 }
Ethan Yonkercceebb82014-11-18 10:17:59 -0600444 }
445 } else {
Ethan Yonkerbd7492d2016-12-07 13:55:01 -0600446 int password_type = cryptfs_get_password_type();
447 if (password_type == CRYPT_TYPE_DEFAULT) {
448 LOGINFO("Device is encrypted with the default password, attempting to decrypt.\n");
449 if (Decrypt_Device("default_password") == 0) {
450 gui_msg("decrypt_success=Successfully decrypted with default password.");
451 DataManager::SetValue(TW_IS_ENCRYPTED, 0);
452 } else {
453 gui_err("unable_to_decrypt=Unable to decrypt with default password.");
454 }
455 } else {
456 DataManager::SetValue("TW_CRYPTO_TYPE", password_type);
Noah Jacobson81d638d2019-04-28 00:10:07 -0400457 DataManager::SetValue("tw_crypto_pwtype_0", password_type);
Ethan Yonkerbd7492d2016-12-07 13:55:01 -0600458 }
Ethan Yonkercceebb82014-11-18 10:17:59 -0600459 }
460 }
Noah Jacobson81d638d2019-04-28 00:10:07 -0400461 if (Decrypt_Data && (!Decrypt_Data->Is_Encrypted || Decrypt_Data->Is_Decrypted) &&
462 Decrypt_Data->Mount(false)) {
Ethan Yonker66a19492015-12-10 10:19:45 -0600463 Decrypt_Adopted();
464 }
Ethan Yonkercceebb82014-11-18 10:17:59 -0600465#endif
Dees_Troy51a0e822012-09-05 15:24:24 -0400466}
467
Ethan Yonkerc05c5982014-03-13 09:19:56 -0500468void TWPartitionManager::Setup_Settings_Storage_Partition(TWPartition* Part) {
Ethan Yonkerc05c5982014-03-13 09:19:56 -0500469 DataManager::SetValue("tw_settings_path", Part->Storage_Path);
470 DataManager::SetValue("tw_storage_path", Part->Storage_Path);
471 LOGINFO("Settings storage is '%s'\n", Part->Storage_Path.c_str());
472}
473
Matt Mowerbf4efa32014-04-14 23:25:26 -0500474void TWPartitionManager::Setup_Android_Secure_Location(TWPartition* Part) {
475 if (Part->Has_Android_Secure)
476 Part->Setup_AndSec();
Ethan Yonker6277c792014-09-15 14:54:30 -0500477 else if (!datamedia)
Matt Mowerbf4efa32014-04-14 23:25:26 -0500478 Part->Setup_AndSec();
Matt Mowerbf4efa32014-04-14 23:25:26 -0500479}
480
Dees_Troy8170a922012-09-18 15:40:25 -0400481void TWPartitionManager::Output_Partition_Logging(void) {
482 std::vector<TWPartition*>::iterator iter;
483
484 printf("\n\nPartition Logs:\n");
485 for (iter = Partitions.begin(); iter != Partitions.end(); iter++)
486 Output_Partition((*iter));
487}
488
489void TWPartitionManager::Output_Partition(TWPartition* Part) {
490 unsigned long long mb = 1048576;
491
Gary Peck004d48b2012-11-21 16:28:18 -0800492 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 -0400493 if (Part->Can_Be_Mounted) {
Gary Peck004d48b2012-11-21 16:28:18 -0800494 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 -0400495 }
Gary Peck004d48b2012-11-21 16:28:18 -0800496 printf("\n Flags: ");
Dees_Troya13d74f2013-03-24 08:54:55 -0500497 if (Part->Can_Be_Mounted)
498 printf("Can_Be_Mounted ");
Gary Peck004d48b2012-11-21 16:28:18 -0800499 if (Part->Can_Be_Wiped)
500 printf("Can_Be_Wiped ");
Hashcodedabfd492013-08-29 22:45:30 -0700501 if (Part->Use_Rm_Rf)
502 printf("Use_Rm_Rf ");
Dees_Troya13d74f2013-03-24 08:54:55 -0500503 if (Part->Can_Be_Backed_Up)
504 printf("Can_Be_Backed_Up ");
Gary Peck004d48b2012-11-21 16:28:18 -0800505 if (Part->Wipe_During_Factory_Reset)
506 printf("Wipe_During_Factory_Reset ");
507 if (Part->Wipe_Available_in_GUI)
508 printf("Wipe_Available_in_GUI ");
509 if (Part->Is_SubPartition)
510 printf("Is_SubPartition ");
511 if (Part->Has_SubPartition)
512 printf("Has_SubPartition ");
513 if (Part->Removable)
514 printf("Removable ");
515 if (Part->Is_Present)
516 printf("IsPresent ");
517 if (Part->Can_Be_Encrypted)
518 printf("Can_Be_Encrypted ");
519 if (Part->Is_Encrypted)
520 printf("Is_Encrypted ");
521 if (Part->Is_Decrypted)
522 printf("Is_Decrypted ");
523 if (Part->Has_Data_Media)
524 printf("Has_Data_Media ");
Dees_Troy83bd4832013-05-04 12:39:56 +0000525 if (Part->Can_Encrypt_Backup)
526 printf("Can_Encrypt_Backup ");
527 if (Part->Use_Userdata_Encryption)
528 printf("Use_Userdata_Encryption ");
Gary Peck004d48b2012-11-21 16:28:18 -0800529 if (Part->Has_Android_Secure)
530 printf("Has_Android_Secure ");
531 if (Part->Is_Storage)
532 printf("Is_Storage ");
Dees_Troya13d74f2013-03-24 08:54:55 -0500533 if (Part->Is_Settings_Storage)
534 printf("Is_Settings_Storage ");
Dees_Troy68cab492012-12-12 19:29:35 +0000535 if (Part->Ignore_Blkid)
536 printf("Ignore_Blkid ");
Ethan Yonker253368a2014-11-25 15:00:52 -0600537 if (Part->Mount_To_Decrypt)
538 printf("Mount_To_Decrypt ");
Ethan Yonker96af84a2015-01-05 14:58:36 -0600539 if (Part->Can_Flash_Img)
540 printf("Can_Flash_Img ");
Ethan Yonker66a19492015-12-10 10:19:45 -0600541 if (Part->Is_Adopted_Storage)
542 printf("Is_Adopted_Storage ");
Ethan Yonker1b190162016-12-05 15:25:19 -0600543 if (Part->SlotSelect)
544 printf("SlotSelect ");
Ethan Yonker6e8c27a2016-12-22 17:55:57 -0600545 if (Part->Mount_Read_Only)
546 printf("Mount_Read_Only ");
Gary Peck004d48b2012-11-21 16:28:18 -0800547 printf("\n");
548 if (!Part->SubPartition_Of.empty())
549 printf(" SubPartition_Of: %s\n", Part->SubPartition_Of.c_str());
550 if (!Part->Symlink_Path.empty())
551 printf(" Symlink_Path: %s\n", Part->Symlink_Path.c_str());
552 if (!Part->Symlink_Mount_Point.empty())
553 printf(" Symlink_Mount_Point: %s\n", Part->Symlink_Mount_Point.c_str());
554 if (!Part->Primary_Block_Device.empty())
555 printf(" Primary_Block_Device: %s\n", Part->Primary_Block_Device.c_str());
556 if (!Part->Alternate_Block_Device.empty())
557 printf(" Alternate_Block_Device: %s\n", Part->Alternate_Block_Device.c_str());
558 if (!Part->Decrypted_Block_Device.empty())
559 printf(" Decrypted_Block_Device: %s\n", Part->Decrypted_Block_Device.c_str());
dianlujitao4879b372018-12-03 18:45:47 +0800560 if (!Part->Crypto_Key_Location.empty())
Ethan Yonker253368a2014-11-25 15:00:52 -0600561 printf(" Crypto_Key_Location: %s\n", Part->Crypto_Key_Location.c_str());
Gary Peck004d48b2012-11-21 16:28:18 -0800562 if (Part->Length != 0)
563 printf(" Length: %i\n", Part->Length);
564 if (!Part->Display_Name.empty())
565 printf(" Display_Name: %s\n", Part->Display_Name.c_str());
Dees_Troya13d74f2013-03-24 08:54:55 -0500566 if (!Part->Storage_Name.empty())
567 printf(" Storage_Name: %s\n", Part->Storage_Name.c_str());
Gary Peck004d48b2012-11-21 16:28:18 -0800568 if (!Part->Backup_Path.empty())
569 printf(" Backup_Path: %s\n", Part->Backup_Path.c_str());
570 if (!Part->Backup_Name.empty())
571 printf(" Backup_Name: %s\n", Part->Backup_Name.c_str());
Dees_Troya13d74f2013-03-24 08:54:55 -0500572 if (!Part->Backup_Display_Name.empty())
573 printf(" Backup_Display_Name: %s\n", Part->Backup_Display_Name.c_str());
Gary Peck004d48b2012-11-21 16:28:18 -0800574 if (!Part->Backup_FileName.empty())
575 printf(" Backup_FileName: %s\n", Part->Backup_FileName.c_str());
576 if (!Part->Storage_Path.empty())
577 printf(" Storage_Path: %s\n", Part->Storage_Path.c_str());
578 if (!Part->Current_File_System.empty())
579 printf(" Current_File_System: %s\n", Part->Current_File_System.c_str());
580 if (!Part->Fstab_File_System.empty())
581 printf(" Fstab_File_System: %s\n", Part->Fstab_File_System.c_str());
582 if (Part->Format_Block_Size != 0)
Ethan Yonkerc798c9c2015-10-09 11:15:26 -0500583 printf(" Format_Block_Size: %lu\n", Part->Format_Block_Size);
Dees_Troy094207a2012-09-26 12:00:39 -0400584 if (!Part->MTD_Name.empty())
585 printf(" MTD_Name: %s\n", Part->MTD_Name.c_str());
Matt Mower029a82d2017-01-08 13:12:38 -0600586 printf(" Backup_Method: %s\n", Part->Backup_Method_By_Name().c_str());
Hashcode62bd9e02013-11-19 21:59:42 -0800587 if (Part->Mount_Flags || !Part->Mount_Options.empty())
Ethan Yonker6e8c27a2016-12-22 17:55:57 -0600588 printf(" Mount_Flags: %i, Mount_Options: %s\n", Part->Mount_Flags, Part->Mount_Options.c_str());
Ethan Yonker726a0202014-12-16 20:01:38 -0600589 if (Part->MTP_Storage_ID)
590 printf(" MTP_Storage_ID: %i\n", Part->MTP_Storage_ID);
Ethan Yonker93382822018-11-01 15:25:31 -0500591 if (!Part->Key_Directory.empty())
592 printf(" Metadata Key Directory: %s\n", Part->Key_Directory.c_str());
Ethan Yonker6277c792014-09-15 14:54:30 -0500593 printf("\n");
Dees_Troy8170a922012-09-18 15:40:25 -0400594}
595
Dees_Troy51a0e822012-09-05 15:24:24 -0400596int TWPartitionManager::Mount_By_Path(string Path, bool Display_Error) {
Dees_Troy5bf43922012-09-07 16:07:55 -0400597 std::vector<TWPartition*>::iterator iter;
598 int ret = false;
599 bool found = false;
Dees_Troy38bd7602012-09-14 13:33:53 -0400600 string Local_Path = TWFunc::Get_Root_Path(Path);
Dees_Troy5bf43922012-09-07 16:07:55 -0400601
bigbiffd58ba182020-03-23 10:02:29 -0400602 if (Local_Path == "/tmp" || Local_Path == "/")
Dees_Troy43d8b002012-09-17 16:00:01 -0400603 return true;
604
Dees_Troy5bf43922012-09-07 16:07:55 -0400605 // Iterate through all partitions
606 for (iter = Partitions.begin(); iter != Partitions.end(); iter++) {
Dees_Troy657c3092012-09-10 20:32:10 -0400607 if ((*iter)->Mount_Point == Local_Path || (!(*iter)->Symlink_Mount_Point.empty() && (*iter)->Symlink_Mount_Point == Local_Path)) {
Dees_Troy5bf43922012-09-07 16:07:55 -0400608 ret = (*iter)->Mount(Display_Error);
609 found = true;
Dees_Troy51127312012-09-08 13:08:49 -0400610 } else if ((*iter)->Is_SubPartition && (*iter)->SubPartition_Of == Local_Path) {
Dees_Troy5bf43922012-09-07 16:07:55 -0400611 (*iter)->Mount(Display_Error);
Dees_Troy51127312012-09-08 13:08:49 -0400612 }
Dees_Troy5bf43922012-09-07 16:07:55 -0400613 }
614 if (found) {
615 return ret;
616 } else if (Display_Error) {
Ethan Yonker74db1572015-10-28 12:44:49 -0500617 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 -0400618 } else {
Dees_Troy2673cec2013-04-02 20:22:16 +0000619 LOGINFO("Mount: Unable to find partition for path '%s'\n", Local_Path.c_str());
Dees_Troy5bf43922012-09-07 16:07:55 -0400620 }
621 return false;
Dees_Troy51a0e822012-09-05 15:24:24 -0400622}
623
Dees_Troy51a0e822012-09-05 15:24:24 -0400624int TWPartitionManager::UnMount_By_Path(string Path, bool Display_Error) {
Dees_Troy51127312012-09-08 13:08:49 -0400625 std::vector<TWPartition*>::iterator iter;
626 int ret = false;
627 bool found = false;
Dees_Troy38bd7602012-09-14 13:33:53 -0400628 string Local_Path = TWFunc::Get_Root_Path(Path);
Dees_Troy51127312012-09-08 13:08:49 -0400629
630 // Iterate through all partitions
631 for (iter = Partitions.begin(); iter != Partitions.end(); iter++) {
Dees_Troy657c3092012-09-10 20:32:10 -0400632 if ((*iter)->Mount_Point == Local_Path || (!(*iter)->Symlink_Mount_Point.empty() && (*iter)->Symlink_Mount_Point == Local_Path)) {
Dees_Troy51127312012-09-08 13:08:49 -0400633 ret = (*iter)->UnMount(Display_Error);
634 found = true;
635 } else if ((*iter)->Is_SubPartition && (*iter)->SubPartition_Of == Local_Path) {
636 (*iter)->UnMount(Display_Error);
637 }
638 }
639 if (found) {
640 return ret;
641 } else if (Display_Error) {
Ethan Yonker74db1572015-10-28 12:44:49 -0500642 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 -0400643 } else {
Dees_Troy2673cec2013-04-02 20:22:16 +0000644 LOGINFO("UnMount: Unable to find partition for path '%s'\n", Local_Path.c_str());
Dees_Troy51127312012-09-08 13:08:49 -0400645 }
646 return false;
Dees_Troy51a0e822012-09-05 15:24:24 -0400647}
648
Dees_Troy51a0e822012-09-05 15:24:24 -0400649int TWPartitionManager::Is_Mounted_By_Path(string Path) {
Dees_Troy51127312012-09-08 13:08:49 -0400650 TWPartition* Part = Find_Partition_By_Path(Path);
651
652 if (Part)
653 return Part->Is_Mounted();
654 else
Dees_Troy2673cec2013-04-02 20:22:16 +0000655 LOGINFO("Is_Mounted: Unable to find partition for path '%s'\n", Path.c_str());
Dees_Troy51127312012-09-08 13:08:49 -0400656 return false;
Dees_Troy51a0e822012-09-05 15:24:24 -0400657}
658
Dees_Troy5bf43922012-09-07 16:07:55 -0400659int TWPartitionManager::Mount_Current_Storage(bool Display_Error) {
Dees_Troy51127312012-09-08 13:08:49 -0400660 string current_storage_path = DataManager::GetCurrentStoragePath();
661
662 if (Mount_By_Path(current_storage_path, Display_Error)) {
663 TWPartition* FreeStorage = Find_Partition_By_Path(current_storage_path);
664 if (FreeStorage)
665 DataManager::SetValue(TW_STORAGE_FREE_SIZE, (int)(FreeStorage->Free / 1048576LLU));
666 return true;
667 }
668 return false;
Dees_Troy51a0e822012-09-05 15:24:24 -0400669}
670
Dees_Troy5bf43922012-09-07 16:07:55 -0400671int TWPartitionManager::Mount_Settings_Storage(bool Display_Error) {
672 return Mount_By_Path(DataManager::GetSettingsStoragePath(), Display_Error);
673}
674
Ethan Yonker6e8c27a2016-12-22 17:55:57 -0600675TWPartition* TWPartitionManager::Find_Partition_By_Path(const string& Path) {
Dees_Troy5bf43922012-09-07 16:07:55 -0400676 std::vector<TWPartition*>::iterator iter;
Dees_Troy38bd7602012-09-14 13:33:53 -0400677 string Local_Path = TWFunc::Get_Root_Path(Path);
Dees_Troy5bf43922012-09-07 16:07:55 -0400678
dianlujitaob76a73a2020-04-30 20:33:20 +0800679 if (Local_Path == "/system")
680 Local_Path = Get_Android_Root_Path();
Dees_Troy5bf43922012-09-07 16:07:55 -0400681 for (iter = Partitions.begin(); iter != Partitions.end(); iter++) {
Dees_Troy657c3092012-09-10 20:32:10 -0400682 if ((*iter)->Mount_Point == Local_Path || (!(*iter)->Symlink_Mount_Point.empty() && (*iter)->Symlink_Mount_Point == Local_Path))
Dees_Troy5bf43922012-09-07 16:07:55 -0400683 return (*iter);
684 }
Dees_Troy51a0e822012-09-05 15:24:24 -0400685 return NULL;
686}
687
Ethan Yonker6e8c27a2016-12-22 17:55:57 -0600688TWPartition* TWPartitionManager::Find_Partition_By_Block_Device(const string& Block_Device) {
689 std::vector<TWPartition*>::iterator iter;
690
691 for (iter = Partitions.begin(); iter != Partitions.end(); iter++) {
692 if ((*iter)->Primary_Block_Device == Block_Device || (!(*iter)->Actual_Block_Device.empty() && (*iter)->Actual_Block_Device == Block_Device))
693 return (*iter);
694 }
695 return NULL;
696}
697
Ethan Yonker53796e72019-01-11 22:49:52 -0600698int TWPartitionManager::Check_Backup_Name(const std::string& Backup_Name, bool Display_Error, bool Must_Be_Unique) {
Dees_Troyc9ff7a32012-09-27 10:09:41 -0400699 // Check the backup name to ensure that it is the correct size and contains only valid characters
700 // and that a backup with that name doesn't already exist
701 char backup_name[MAX_BACKUP_NAME_LEN];
702 char backup_loc[255], tw_image_dir[255];
703 int copy_size;
704 int index, cur_char;
Ethan Yonker53796e72019-01-11 22:49:52 -0600705 string Backup_Loc;
Dees_Troyc9ff7a32012-09-27 10:09:41 -0400706
Dees_Troyc9ff7a32012-09-27 10:09:41 -0400707 copy_size = Backup_Name.size();
708 // Check size
709 if (copy_size > MAX_BACKUP_NAME_LEN) {
710 if (Display_Error)
Ethan Yonker74db1572015-10-28 12:44:49 -0500711 gui_err("backup_name_len=Backup name is too long.");
Dees_Troyc9ff7a32012-09-27 10:09:41 -0400712 return -2;
713 }
714
715 // Check each character
716 strncpy(backup_name, Backup_Name.c_str(), copy_size);
Dees_Troya13d74f2013-03-24 08:54:55 -0500717 if (copy_size == 1 && strncmp(backup_name, "0", 1) == 0)
Dees_Troyc9ff7a32012-09-27 10:09:41 -0400718 return 0; // A "0" (zero) means to use the current timestamp for the backup name
719 for (index=0; index<copy_size; index++) {
720 cur_char = (int)backup_name[index];
Matt Mowerfb1c4ff2014-04-16 13:43:36 -0500721 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 -0400722 // These are valid characters
723 // Numbers
724 // Upper case letters
725 // Lower case letters
726 // Space
727 // and -_.{}[]
728 } else {
729 if (Display_Error)
Ethan Yonker4adc33e2016-01-22 16:07:11 -0600730 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 -0400731 return -3;
732 }
733 }
734
Ethan Yonker53796e72019-01-11 22:49:52 -0600735 if (Must_Be_Unique) {
736 // Check to make sure that a backup with this name doesn't already exist
737 DataManager::GetValue(TW_BACKUPS_FOLDER_VAR, Backup_Loc);
738 strcpy(backup_loc, Backup_Loc.c_str());
739 sprintf(tw_image_dir,"%s/%s", backup_loc, Backup_Name.c_str());
740 if (TWFunc::Path_Exists(tw_image_dir)) {
741 if (Display_Error)
742 gui_err("backup_name_exists=A backup with that name already exists!");
bigbiffce8f83c2015-12-12 18:30:21 -0500743
Ethan Yonker53796e72019-01-11 22:49:52 -0600744 return -4;
745 }
746 // Backup is unique
Dees_Troyc9ff7a32012-09-27 10:09:41 -0400747 }
Ethan Yonker53796e72019-01-11 22:49:52 -0600748 // No problems found
Dees_Troyc9ff7a32012-09-27 10:09:41 -0400749 return 0;
750}
751
bigbiffce8f83c2015-12-12 18:30:21 -0500752bool TWPartitionManager::Backup_Partition(PartitionSettings *part_settings) {
Dees_Troy43d8b002012-09-17 16:00:01 -0400753 time_t start, stop;
Matt Mower23d8aae2017-01-06 14:30:33 -0600754 int use_compression;
bigbiffce8f83c2015-12-12 18:30:21 -0500755 string backup_log = part_settings->Backup_Folder + "/recovery.log";
Dees_Troy43d8b002012-09-17 16:00:01 -0400756
bigbiffce8f83c2015-12-12 18:30:21 -0500757 if (part_settings->Part == NULL)
Dees_Troy43d8b002012-09-17 16:00:01 -0400758 return true;
759
Dees_Troy093b7642012-09-21 15:59:38 -0400760 DataManager::GetValue(TW_USE_COMPRESSION_VAR, use_compression);
Dees_Troy093b7642012-09-21 15:59:38 -0400761
Tom Hite5a926722014-09-15 01:31:03 +0000762 TWFunc::SetPerformanceMode(true);
Dees_Troy43d8b002012-09-17 16:00:01 -0400763 time(&start);
764
bigbiffce8f83c2015-12-12 18:30:21 -0500765 if (part_settings->Part->Backup(part_settings, &tar_fork_pid)) {
Ethan Yonkercd00a8b2017-07-06 10:23:30 -0500766 sync();
767 sync();
bigbiff bigbiff56cf5642016-08-19 17:43:45 -0400768 string Full_Filename = part_settings->Backup_Folder + "/" + part_settings->Part->Backup_FileName;
Ethan Yonkercd00a8b2017-07-06 10:23:30 -0500769 if (!part_settings->adbbackup && part_settings->generate_digest) {
770 if (!twrpDigestDriver::Make_Digest(Full_Filename))
771 goto backup_error;
bigbiff bigbiff56cf5642016-08-19 17:43:45 -0400772 }
bigbiff bigbiff8fd4b092016-08-30 20:48:53 -0400773
bigbiffce8f83c2015-12-12 18:30:21 -0500774 if (part_settings->Part->Has_SubPartition) {
Dees_Troy8170a922012-09-18 15:40:25 -0400775 std::vector<TWPartition*>::iterator subpart;
bigbiff bigbiff8fd4b092016-08-30 20:48:53 -0400776 TWPartition *parentPart = part_settings->Part;
Dees_Troy8170a922012-09-18 15:40:25 -0400777
778 for (subpart = Partitions.begin(); subpart != Partitions.end(); subpart++) {
bigbiff bigbiff8fd4b092016-08-30 20:48:53 -0400779 if ((*subpart)->Can_Be_Backed_Up && (*subpart)->Is_SubPartition && (*subpart)->SubPartition_Of == parentPart->Mount_Point) {
Ethan Yonkerdcf2b672016-09-13 14:41:53 -0500780 part_settings->Part = *subpart;
bigbiffce8f83c2015-12-12 18:30:21 -0500781 if (!(*subpart)->Backup(part_settings, &tar_fork_pid)) {
Ethan Yonkercd00a8b2017-07-06 10:23:30 -0500782 goto backup_error;
Tom Hite5a926722014-09-15 01:31:03 +0000783 }
Dees_Troy2727b992013-08-14 20:09:30 +0000784 sync();
785 sync();
bigbiff bigbifff5955b12019-05-18 17:28:58 -0400786 string Full_Filename = part_settings->Backup_Folder + "/" + part_settings->Part->Backup_FileName;
bigbiff bigbiff56cf5642016-08-19 17:43:45 -0400787 if (!part_settings->adbbackup && part_settings->generate_digest) {
788 if (!twrpDigestDriver::Make_Digest(Full_Filename)) {
Ethan Yonkercd00a8b2017-07-06 10:23:30 -0500789 goto backup_error;
bigbiffce8f83c2015-12-12 18:30:21 -0500790 }
Tom Hite5a926722014-09-15 01:31:03 +0000791 }
Dees_Troy8170a922012-09-18 15:40:25 -0400792 }
793 }
794 }
bigbiff bigbiff56cf5642016-08-19 17:43:45 -0400795
Dees_Troy43d8b002012-09-17 16:00:01 -0400796 time(&stop);
that203bcc92015-05-09 17:27:33 +0200797 int backup_time = (int) difftime(stop, start);
Dees_Troy2673cec2013-04-02 20:22:16 +0000798 LOGINFO("Partition Backup time: %d\n", backup_time);
bigbiff bigbiff8fd4b092016-08-30 20:48:53 -0400799
bigbiffce8f83c2015-12-12 18:30:21 -0500800 if (part_settings->Part->Backup_Method == BM_FILES) {
801 part_settings->file_time += backup_time;
Dees_Troy43d8b002012-09-17 16:00:01 -0400802 } else {
bigbiffce8f83c2015-12-12 18:30:21 -0500803 part_settings->img_time += backup_time;
804
Dees_Troy43d8b002012-09-17 16:00:01 -0400805 }
Tom Hite5a926722014-09-15 01:31:03 +0000806
Matt Mower02899552016-12-30 18:13:51 -0600807 TWFunc::SetPerformanceMode(false);
Ethan Yonkercd00a8b2017-07-06 10:23:30 -0500808 return true;
Dees_Troy43d8b002012-09-17 16:00:01 -0400809 }
Ethan Yonkercd00a8b2017-07-06 10:23:30 -0500810backup_error:
811 Clean_Backup_Folder(part_settings->Backup_Folder);
812 TWFunc::copy_file("/tmp/recovery.log", backup_log, 0644);
813 tw_set_default_metadata(backup_log.c_str());
814 TWFunc::SetPerformanceMode(false);
815 return false;
bigbiff7abc5fe2015-01-17 16:53:12 -0500816}
817
bigbiffbf1d6722015-02-14 16:25:59 -0500818void TWPartitionManager::Clean_Backup_Folder(string Backup_Folder) {
819 DIR *d = opendir(Backup_Folder.c_str());
820 struct dirent *p;
821 int r;
bigbiff bigbiff56cf5642016-08-19 17:43:45 -0400822 vector<string> ext;
823
824 //extensions we should delete when cleaning
825 ext.push_back("win");
826 ext.push_back("md5");
827 ext.push_back("sha2");
828 ext.push_back("info");
bigbiffbf1d6722015-02-14 16:25:59 -0500829
Ethan Yonker74db1572015-10-28 12:44:49 -0500830 gui_msg("backup_clean=Backup Failed. Cleaning Backup Folder.");
bigbiffbf1d6722015-02-14 16:25:59 -0500831
832 if (d == NULL) {
Ethan Yonker74db1572015-10-28 12:44:49 -0500833 gui_msg(Msg(msg::kError, "error_opening_strerr=Error opening: '{1}' ({2})")(Backup_Folder)(strerror(errno)));
bigbiffbf1d6722015-02-14 16:25:59 -0500834 return;
835 }
836
Matt Mower2b18a532015-02-20 16:58:05 -0600837 while ((p = readdir(d))) {
bigbiffbf1d6722015-02-14 16:25:59 -0500838 if (!strcmp(p->d_name, ".") || !strcmp(p->d_name, ".."))
839 continue;
840
Ethan Yonkere080c1f2016-09-19 13:50:25 -0500841 string path = Backup_Folder + "/" + p->d_name;
bigbiffbf1d6722015-02-14 16:25:59 -0500842
843 size_t dot = path.find_last_of(".") + 1;
bigbiff bigbiff56cf5642016-08-19 17:43:45 -0400844 for (vector<string>::const_iterator i = ext.begin(); i != ext.end(); ++i) {
845 if (path.substr(dot) == *i) {
846 r = unlink(path.c_str());
847 if (r != 0)
848 LOGINFO("Unable to unlink '%s: %s'\n", path.c_str(), strerror(errno));
bigbiffbf1d6722015-02-14 16:25:59 -0500849 }
850 }
851 }
852 closedir(d);
853}
854
Ethan Yonker472f5062016-02-25 13:47:30 -0600855int TWPartitionManager::Check_Backup_Cancel() {
856 return stop_backup.get_value();
857}
858
bigbiff7abc5fe2015-01-17 16:53:12 -0500859int TWPartitionManager::Cancel_Backup() {
860 string Backup_Folder, Backup_Name, Full_Backup_Path;
861
862 stop_backup.set_value(1);
863
864 if (tar_fork_pid != 0) {
865 DataManager::GetValue(TW_BACKUP_NAME, Backup_Name);
866 DataManager::GetValue(TW_BACKUPS_FOLDER_VAR, Backup_Folder);
Ethan Yonkere080c1f2016-09-19 13:50:25 -0500867 Full_Backup_Path = Backup_Folder + "/" + Backup_Name;
bigbiff7abc5fe2015-01-17 16:53:12 -0500868 LOGINFO("Killing pid: %d\n", tar_fork_pid);
869 kill(tar_fork_pid, SIGUSR2);
870 while (kill(tar_fork_pid, 0) == 0) {
871 usleep(1000);
872 }
873 LOGINFO("Backup_Run stopped and returning false, backup cancelled.\n");
874 LOGINFO("Removing directory %s\n", Full_Backup_Path.c_str());
875 TWFunc::removeDir(Full_Backup_Path, false);
876 tar_fork_pid = 0;
877 }
878
879 return 0;
Dees_Troy43d8b002012-09-17 16:00:01 -0400880}
881
bigbiffce8f83c2015-12-12 18:30:21 -0500882int TWPartitionManager::Run_Backup(bool adbbackup) {
883 PartitionSettings part_settings;
bigbiff bigbiff56cf5642016-08-19 17:43:45 -0400884 int partition_count = 0, disable_free_space_check = 0, skip_digest = 0;
bigbiffce8f83c2015-12-12 18:30:21 -0500885 string Backup_Name, Backup_List, backup_path;
Matt Mower23d8aae2017-01-06 14:30:33 -0600886 unsigned long long total_bytes = 0, free_space = 0;
Dees_Troy43d8b002012-09-17 16:00:01 -0400887 TWPartition* storage = NULL;
888 struct tm *t;
Matt Mower23d8aae2017-01-06 14:30:33 -0600889 time_t seconds, total_start, total_stop;
Dees_Troya13d74f2013-03-24 08:54:55 -0500890 size_t start_pos = 0, end_pos = 0;
bigbiff7abc5fe2015-01-17 16:53:12 -0500891 stop_backup.set_value(0);
Dees_Troy43d8b002012-09-17 16:00:01 -0400892 seconds = time(0);
Matt Mowerfb1c4ff2014-04-16 13:43:36 -0500893 t = localtime(&seconds);
Dees_Troy43d8b002012-09-17 16:00:01 -0400894
bigbiffce8f83c2015-12-12 18:30:21 -0500895 part_settings.img_bytes_remaining = 0;
896 part_settings.file_bytes_remaining = 0;
897 part_settings.img_time = 0;
898 part_settings.file_time = 0;
899 part_settings.img_bytes = 0;
900 part_settings.file_bytes = 0;
901 part_settings.PM_Method = PM_BACKUP;
902
bigbiffce8f83c2015-12-12 18:30:21 -0500903 part_settings.adbbackup = adbbackup;
Dees_Troy43d8b002012-09-17 16:00:01 -0400904 time(&total_start);
905
906 Update_System_Details();
907
908 if (!Mount_Current_Storage(true))
909 return false;
910
bigbiff bigbiff56cf5642016-08-19 17:43:45 -0400911 DataManager::GetValue(TW_SKIP_DIGEST_GENERATE_VAR, skip_digest);
912 if (skip_digest == 0)
913 part_settings.generate_digest = true;
Dees_Troyc5865ab2012-09-24 15:08:04 -0400914 else
bigbiff bigbiff56cf5642016-08-19 17:43:45 -0400915 part_settings.generate_digest = false;
Dees_Troy4a2a1262012-09-18 09:33:47 -0400916
bigbiffce8f83c2015-12-12 18:30:21 -0500917 DataManager::GetValue(TW_BACKUPS_FOLDER_VAR, part_settings.Backup_Folder);
Ethan Yonkerdcf2b672016-09-13 14:41:53 -0500918 DataManager::GetValue(TW_BACKUP_NAME, Backup_Name);
919 if (Backup_Name == gui_lookup("curr_date", "(Current Date)")) {
920 Backup_Name = TWFunc::Get_Current_Date();
921 } else if (Backup_Name == gui_lookup("auto_generate", "(Auto Generate)") || Backup_Name == "0" || Backup_Name.empty()) {
Dees Troyb21cc642013-09-10 17:36:41 +0000922 TWFunc::Auto_Generate_Backup_Name();
Ethan Yonkerdcf2b672016-09-13 14:41:53 -0500923 DataManager::GetValue(TW_BACKUP_NAME, Backup_Name);
Dees_Troy43d8b002012-09-17 16:00:01 -0400924 }
bigbiffce8f83c2015-12-12 18:30:21 -0500925
Ethan Yonkerdcf2b672016-09-13 14:41:53 -0500926 LOGINFO("Backup Name is: '%s'\n", Backup_Name.c_str());
Ethan Yonkere080c1f2016-09-19 13:50:25 -0500927 part_settings.Backup_Folder = part_settings.Backup_Folder + "/" + Backup_Name;
bigbiffce8f83c2015-12-12 18:30:21 -0500928
Ethan Yonkere080c1f2016-09-19 13:50:25 -0500929 LOGINFO("Backup_Folder is: '%s'\n", part_settings.Backup_Folder.c_str());
Dees_Troy43d8b002012-09-17 16:00:01 -0400930
Dees_Troy2673cec2013-04-02 20:22:16 +0000931 LOGINFO("Calculating backup details...\n");
Dees_Troya13d74f2013-03-24 08:54:55 -0500932 DataManager::GetValue("tw_backup_list", Backup_List);
bigbiff7ba75002020-04-11 20:47:09 -0400933 LOGINFO("Backup_List: %s\n", Backup_List.c_str());
Dees_Troya13d74f2013-03-24 08:54:55 -0500934 if (!Backup_List.empty()) {
935 end_pos = Backup_List.find(";", start_pos);
936 while (end_pos != string::npos && start_pos < Backup_List.size()) {
937 backup_path = Backup_List.substr(start_pos, end_pos - start_pos);
bigbiff7ba75002020-04-11 20:47:09 -0400938 LOGINFO("backup_path: %s\n", backup_path.c_str());
bigbiffce8f83c2015-12-12 18:30:21 -0500939 part_settings.Part = Find_Partition_By_Path(backup_path);
940 if (part_settings.Part != NULL) {
Dees_Troya13d74f2013-03-24 08:54:55 -0500941 partition_count++;
bigbiffce8f83c2015-12-12 18:30:21 -0500942 if (part_settings.Part->Backup_Method == BM_FILES)
943 part_settings.file_bytes += part_settings.Part->Backup_Size;
Dees_Troya13d74f2013-03-24 08:54:55 -0500944 else
bigbiffce8f83c2015-12-12 18:30:21 -0500945 part_settings.img_bytes += part_settings.Part->Backup_Size;
946 if (part_settings.Part->Has_SubPartition) {
Dees_Troya13d74f2013-03-24 08:54:55 -0500947 std::vector<TWPartition*>::iterator subpart;
948
949 for (subpart = Partitions.begin(); subpart != Partitions.end(); subpart++) {
bigbiffce8f83c2015-12-12 18:30:21 -0500950 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 -0500951 partition_count++;
bigbiffce8f83c2015-12-12 18:30:21 -0500952 if ((*subpart)->Backup_Method == BM_FILES)
953 part_settings.file_bytes += (*subpart)->Backup_Size;
Dees_Troya13d74f2013-03-24 08:54:55 -0500954 else
bigbiffce8f83c2015-12-12 18:30:21 -0500955 part_settings.img_bytes += (*subpart)->Backup_Size;
Dees_Troya13d74f2013-03-24 08:54:55 -0500956 }
957 }
Dees_Troy8170a922012-09-18 15:40:25 -0400958 }
Dees_Troya13d74f2013-03-24 08:54:55 -0500959 } else {
Ethan Yonker74db1572015-10-28 12:44:49 -0500960 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 -0400961 }
Dees_Troya13d74f2013-03-24 08:54:55 -0500962 start_pos = end_pos + 1;
963 end_pos = Backup_List.find(";", start_pos);
Dees_Troy43d8b002012-09-17 16:00:01 -0400964 }
965 }
Dees_Troy43d8b002012-09-17 16:00:01 -0400966
967 if (partition_count == 0) {
Ethan Yonker74db1572015-10-28 12:44:49 -0500968 gui_msg("no_partition_selected=No partitions selected for backup.");
Dees_Troy43d8b002012-09-17 16:00:01 -0400969 return false;
970 }
bigbiffce8f83c2015-12-12 18:30:21 -0500971 if (adbbackup) {
972 if (twadbbu::Write_ADB_Stream_Header(partition_count) == false) {
973 return false;
974 }
975 }
976 total_bytes = part_settings.file_bytes + part_settings.img_bytes;
Ethan Yonker472f5062016-02-25 13:47:30 -0600977 ProgressTracking progress(total_bytes);
bigbiffce8f83c2015-12-12 18:30:21 -0500978 part_settings.progress = &progress;
979
Ethan Yonker74db1572015-10-28 12:44:49 -0500980 gui_msg(Msg("total_partitions_backup= * Total number of partitions to back up: {1}")(partition_count));
981 gui_msg(Msg("total_backup_size= * Total size of all data: {1}MB")(total_bytes / 1024 / 1024));
Dees_Troy43d8b002012-09-17 16:00:01 -0400982 storage = Find_Partition_By_Path(DataManager::GetCurrentStoragePath());
983 if (storage != NULL) {
984 free_space = storage->Free;
Ethan Yonker74db1572015-10-28 12:44:49 -0500985 gui_msg(Msg("available_space= * Available space: {1}MB")(free_space / 1024 / 1024));
Dees_Troy43d8b002012-09-17 16:00:01 -0400986 } else {
Ethan Yonker74db1572015-10-28 12:44:49 -0500987 gui_err("unable_locate_storage=Unable to locate storage device.");
Dees_Troy43d8b002012-09-17 16:00:01 -0400988 return false;
989 }
bigbiffbf1d6722015-02-14 16:25:59 -0500990
Matt Mowerbfccfb82016-04-25 23:22:31 -0500991 DataManager::GetValue(TW_DISABLE_FREE_SPACE_VAR, disable_free_space_check);
bigbiffce8f83c2015-12-12 18:30:21 -0500992
993 if (adbbackup)
994 disable_free_space_check = true;
995
bigbiffbf1d6722015-02-14 16:25:59 -0500996 if (!disable_free_space_check) {
997 if (free_space - (32 * 1024 * 1024) < total_bytes) {
998 // We require an extra 32MB just in case
Ethan Yonker74db1572015-10-28 12:44:49 -0500999 gui_err("no_space=Not enough free space on storage.");
bigbiffbf1d6722015-02-14 16:25:59 -05001000 return false;
1001 }
Dees_Troy43d8b002012-09-17 16:00:01 -04001002 }
bigbiffce8f83c2015-12-12 18:30:21 -05001003 part_settings.img_bytes_remaining = part_settings.img_bytes;
1004 part_settings.file_bytes_remaining = part_settings.file_bytes;
Dees_Troy43d8b002012-09-17 16:00:01 -04001005
Ethan Yonker74db1572015-10-28 12:44:49 -05001006 gui_msg("backup_started=[BACKUP STARTED]");
bigbiff bigbiffcdd97c72019-03-29 19:12:33 -04001007
1008 int is_decrypted = 0;
1009 int is_encrypted = 0;
1010
1011 DataManager::GetValue(TW_IS_DECRYPTED, is_decrypted);
1012 DataManager::GetValue(TW_IS_ENCRYPTED, is_encrypted);
1013 if (!adbbackup || (!is_encrypted || (is_encrypted && is_decrypted))) {
1014 gui_msg(Msg("backup_folder= * Backup Folder: {1}")(part_settings.Backup_Folder));
1015 if (!TWFunc::Recursive_Mkdir(part_settings.Backup_Folder)) {
1016 gui_err("fail_backup_folder=Failed to make backup folder.");
1017 return false;
1018 }
Dees_Troyd4b22b02013-01-18 17:17:58 +00001019 }
1020
Dees_Troy2673cec2013-04-02 20:22:16 +00001021 DataManager::SetProgress(0.0);
Dees_Troy093b7642012-09-21 15:59:38 -04001022
Dees_Troya13d74f2013-03-24 08:54:55 -05001023 start_pos = 0;
1024 end_pos = Backup_List.find(";", start_pos);
1025 while (end_pos != string::npos && start_pos < Backup_List.size()) {
bigbiff7abc5fe2015-01-17 16:53:12 -05001026 if (stop_backup.get_value() != 0)
1027 return -1;
Dees_Troya13d74f2013-03-24 08:54:55 -05001028 backup_path = Backup_List.substr(start_pos, end_pos - start_pos);
bigbiffce8f83c2015-12-12 18:30:21 -05001029 part_settings.Part = Find_Partition_By_Path(backup_path);
1030 if (part_settings.Part != NULL) {
1031 if (!Backup_Partition(&part_settings))
Dees_Troya13d74f2013-03-24 08:54:55 -05001032 return false;
1033 } else {
Ethan Yonker74db1572015-10-28 12:44:49 -05001034 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 -05001035 }
1036 start_pos = end_pos + 1;
1037 end_pos = Backup_List.find(";", start_pos);
1038 }
Dees_Troy43d8b002012-09-17 16:00:01 -04001039
1040 // Average BPS
bigbiffce8f83c2015-12-12 18:30:21 -05001041 if (part_settings.img_time == 0)
1042 part_settings.img_time = 1;
1043 if (part_settings.file_time == 0)
1044 part_settings.file_time = 1;
1045 int img_bps = (int)part_settings.img_bytes / (int)part_settings.img_time;
1046 unsigned long long file_bps = part_settings.file_bytes / (int)part_settings.file_time;
Dees_Troy43d8b002012-09-17 16:00:01 -04001047
bigbiffce8f83c2015-12-12 18:30:21 -05001048 if (part_settings.file_bytes != 0)
Ethan Yonker472f5062016-02-25 13:47:30 -06001049 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 -05001050 if (part_settings.img_bytes != 0)
Ethan Yonker472f5062016-02-25 13:47:30 -06001051 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 -04001052
1053 time(&total_stop);
1054 int total_time = (int) difftime(total_stop, total_start);
bigbiffce8f83c2015-12-12 18:30:21 -05001055
1056 uint64_t actual_backup_size;
Ethan Yonker3fdcda42016-11-30 12:29:37 -06001057 if (!adbbackup) {
1058 TWExclude twe;
1059 actual_backup_size = twe.Get_Folder_Size(part_settings.Backup_Folder);
1060 } else
bigbiffce8f83c2015-12-12 18:30:21 -05001061 actual_backup_size = part_settings.file_bytes + part_settings.img_bytes;
Matt Mowerfb1c4ff2014-04-16 13:43:36 -05001062 actual_backup_size /= (1024LLU * 1024LLU);
Dees_Troy43d8b002012-09-17 16:00:01 -04001063
bigbiffce8f83c2015-12-12 18:30:21 -05001064 int prev_img_bps = 0, use_compression = 0;
1065 unsigned long long prev_file_bps = 0;
Matt Mower173cdb92016-12-31 02:49:19 -06001066 DataManager::GetValue(TW_BACKUP_AVG_IMG_RATE, prev_img_bps);
Dees_Troy093b7642012-09-21 15:59:38 -04001067 img_bps += (prev_img_bps * 4);
Matt Mowerfb1c4ff2014-04-16 13:43:36 -05001068 img_bps /= 5;
Dees_Troy093b7642012-09-21 15:59:38 -04001069
Matt Mowerfb1c4ff2014-04-16 13:43:36 -05001070 DataManager::GetValue(TW_USE_COMPRESSION_VAR, use_compression);
Dees_Troy093b7642012-09-21 15:59:38 -04001071 if (use_compression)
1072 DataManager::GetValue(TW_BACKUP_AVG_FILE_COMP_RATE, prev_file_bps);
Matt Mowerfb1c4ff2014-04-16 13:43:36 -05001073 else
Dees_Troy093b7642012-09-21 15:59:38 -04001074 DataManager::GetValue(TW_BACKUP_AVG_FILE_RATE, prev_file_bps);
1075 file_bps += (prev_file_bps * 4);
Matt Mowerfb1c4ff2014-04-16 13:43:36 -05001076 file_bps /= 5;
Dees_Troy093b7642012-09-21 15:59:38 -04001077
Matt Mowerfb1c4ff2014-04-16 13:43:36 -05001078 DataManager::SetValue(TW_BACKUP_AVG_IMG_RATE, img_bps);
Dees_Troy093b7642012-09-21 15:59:38 -04001079 if (use_compression)
1080 DataManager::SetValue(TW_BACKUP_AVG_FILE_COMP_RATE, file_bps);
1081 else
1082 DataManager::SetValue(TW_BACKUP_AVG_FILE_RATE, file_bps);
1083
Ethan Yonker74db1572015-10-28 12:44:49 -05001084 gui_msg(Msg("total_backed_size=[{1} MB TOTAL BACKED UP]")(actual_backup_size));
Dees_Troy43d8b002012-09-17 16:00:01 -04001085 Update_System_Details();
Dees_Troyd0384ef2012-10-12 12:15:42 -04001086 UnMount_Main_Partitions();
Ethan Yonker56db1c42015-12-20 22:49:00 -06001087 gui_msg(Msg(msg::kHighlight, "backup_completed=[BACKUP COMPLETED IN {1} SECONDS]")(total_time)); // the end
Ethan Yonkere080c1f2016-09-19 13:50:25 -05001088 string backup_log = part_settings.Backup_Folder + "/recovery.log";
Dees_Troy3f5c4e82013-02-01 15:16:59 +00001089 TWFunc::copy_file("/tmp/recovery.log", backup_log, 0644);
Ethan Yonker4b94cfd2014-12-11 10:00:45 -06001090 tw_set_default_metadata(backup_log.c_str());
bigbiffce8f83c2015-12-12 18:30:21 -05001091
1092 if (part_settings.adbbackup) {
1093 if (twadbbu::Write_ADB_Stream_Trailer() == false) {
1094 return false;
1095 }
1096 }
1097 part_settings.adbbackup = false;
1098 DataManager::SetValue("tw_enable_adb_backup", 0);
1099
Dees_Troy3f5c4e82013-02-01 15:16:59 +00001100 return true;
Dees_Troy51a0e822012-09-05 15:24:24 -04001101}
1102
bigbiffce8f83c2015-12-12 18:30:21 -05001103bool TWPartitionManager::Restore_Partition(PartitionSettings *part_settings) {
Dees_Troy4a2a1262012-09-18 09:33:47 -04001104 time_t Start, Stop;
bigbiffce8f83c2015-12-12 18:30:21 -05001105
bigbiff bigbiffb5ecaad2017-03-20 18:53:53 -04001106 if (part_settings->adbbackup) {
bigbiff bigbiff19fb79c2016-09-05 21:04:51 -04001107 std::string partName = part_settings->Part->Backup_Name + "." + part_settings->Part->Current_File_System + ".win";
1108 LOGINFO("setting backup name: %s\n", partName.c_str());
bigbiff bigbiffb5ecaad2017-03-20 18:53:53 -04001109 part_settings->Part->Set_Backup_FileName(part_settings->Part->Backup_Name + "." + part_settings->Part->Current_File_System + ".win");
1110 }
1111
Tom Hite5a926722014-09-15 01:31:03 +00001112 TWFunc::SetPerformanceMode(true);
bigbiffce8f83c2015-12-12 18:30:21 -05001113
Dees_Troy4a2a1262012-09-18 09:33:47 -04001114 time(&Start);
Ethan Yonker472f5062016-02-25 13:47:30 -06001115
bigbiffce8f83c2015-12-12 18:30:21 -05001116 if (!part_settings->Part->Restore(part_settings)) {
Tom Hite5a926722014-09-15 01:31:03 +00001117 TWFunc::SetPerformanceMode(false);
Dees_Troy4a2a1262012-09-18 09:33:47 -04001118 return false;
Tom Hite5a926722014-09-15 01:31:03 +00001119 }
bigbiff bigbiff19fb79c2016-09-05 21:04:51 -04001120 if (part_settings->Part->Has_SubPartition && !part_settings->adbbackup) {
Dees_Troy8170a922012-09-18 15:40:25 -04001121 std::vector<TWPartition*>::iterator subpart;
bigbiff bigbiff8fd4b092016-08-30 20:48:53 -04001122 TWPartition *parentPart = part_settings->Part;
Dees_Troy8170a922012-09-18 15:40:25 -04001123
1124 for (subpart = Partitions.begin(); subpart != Partitions.end(); subpart++) {
bigbiff bigbiff8fd4b092016-08-30 20:48:53 -04001125 part_settings->Part = *subpart;
1126 if ((*subpart)->Is_SubPartition && (*subpart)->SubPartition_Of == parentPart->Mount_Point) {
1127 part_settings->Part = (*subpart);
bigbiff bigbiff19fb79c2016-09-05 21:04:51 -04001128 part_settings->Part->Set_Backup_FileName(part_settings->Part->Backup_Name + "." + part_settings->Part->Current_File_System + ".win");
bigbiffce8f83c2015-12-12 18:30:21 -05001129 if (!(*subpart)->Restore(part_settings)) {
Tom Hite5a926722014-09-15 01:31:03 +00001130 TWFunc::SetPerformanceMode(false);
Dees_Troy8170a922012-09-18 15:40:25 -04001131 return false;
Tom Hite5a926722014-09-15 01:31:03 +00001132 }
Dees_Troy8170a922012-09-18 15:40:25 -04001133 }
1134 }
1135 }
Dees_Troy4a2a1262012-09-18 09:33:47 -04001136 time(&Stop);
Tom Hite5a926722014-09-15 01:31:03 +00001137 TWFunc::SetPerformanceMode(false);
bigbiffce8f83c2015-12-12 18:30:21 -05001138 gui_msg(Msg("restore_part_done=[{1} done ({2} seconds)]")(part_settings->Part->Backup_Display_Name)((int)difftime(Stop, Start)));
1139
Dees_Troy4a2a1262012-09-18 09:33:47 -04001140 return true;
1141}
1142
Ethan Yonker472f5062016-02-25 13:47:30 -06001143int TWPartitionManager::Run_Restore(const string& Restore_Name) {
bigbiffce8f83c2015-12-12 18:30:21 -05001144 PartitionSettings part_settings;
bigbiff bigbiff56cf5642016-08-19 17:43:45 -04001145 int check_digest;
bigbiffce8f83c2015-12-12 18:30:21 -05001146
Dees_Troy4a2a1262012-09-18 09:33:47 -04001147 time_t rStart, rStop;
1148 time(&rStart);
Dees_Troya13d74f2013-03-24 08:54:55 -05001149 string Restore_List, restore_path;
1150 size_t start_pos = 0, end_pos;
bigbiffce8f83c2015-12-12 18:30:21 -05001151
Ethan Yonkerdcf2b672016-09-13 14:41:53 -05001152 part_settings.Backup_Folder = Restore_Name;
bigbiffce8f83c2015-12-12 18:30:21 -05001153 part_settings.Part = NULL;
1154 part_settings.partition_count = 0;
1155 part_settings.total_restore_size = 0;
1156 part_settings.adbbackup = false;
1157 part_settings.PM_Method = PM_RESTORE;
Dees_Troy43d8b002012-09-17 16:00:01 -04001158
Ethan Yonker74db1572015-10-28 12:44:49 -05001159 gui_msg("restore_started=[RESTORE STARTED]");
1160 gui_msg(Msg("restore_folder=Restore folder: '{1}'")(Restore_Name));
Dees_Troy43d8b002012-09-17 16:00:01 -04001161
Dees_Troy4a2a1262012-09-18 09:33:47 -04001162 if (!Mount_Current_Storage(true))
1163 return false;
1164
bigbiff bigbiff56cf5642016-08-19 17:43:45 -04001165 DataManager::GetValue(TW_SKIP_DIGEST_CHECK_VAR, check_digest);
1166 if (check_digest > 0) {
1167 // Check Digest files first before restoring to ensure that all of them match before starting a restore
1168 TWFunc::GUI_Operation_Text(TW_VERIFY_DIGEST_TEXT, gui_parse_text("{@verifying_digest}"));
1169 gui_msg("verifying_digest=Verifying Digest");
Dees_Troya13d74f2013-03-24 08:54:55 -05001170 } else {
bigbiff bigbiff56cf5642016-08-19 17:43:45 -04001171 gui_msg("skip_digest=Skipping Digest check based on user setting.");
Dees_Troya13d74f2013-03-24 08:54:55 -05001172 }
Ethan Yonker74db1572015-10-28 12:44:49 -05001173 gui_msg("calc_restore=Calculating restore details...");
Dees_Troya13d74f2013-03-24 08:54:55 -05001174 DataManager::GetValue("tw_restore_selected", Restore_List);
bigbiffce8f83c2015-12-12 18:30:21 -05001175
Dees_Troya13d74f2013-03-24 08:54:55 -05001176 if (!Restore_List.empty()) {
1177 end_pos = Restore_List.find(";", start_pos);
1178 while (end_pos != string::npos && start_pos < Restore_List.size()) {
1179 restore_path = Restore_List.substr(start_pos, end_pos - start_pos);
bigbiffce8f83c2015-12-12 18:30:21 -05001180 part_settings.Part = Find_Partition_By_Path(restore_path);
1181 if (part_settings.Part != NULL) {
bigbiffce8f83c2015-12-12 18:30:21 -05001182 if (part_settings.Part->Mount_Read_Only) {
1183 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 -05001184 return false;
1185 }
bigbiffce8f83c2015-12-12 18:30:21 -05001186
bigbiff bigbiff56cf5642016-08-19 17:43:45 -04001187 string Full_Filename = part_settings.Backup_Folder + "/" + part_settings.Part->Backup_FileName;
1188
1189 if (check_digest > 0 && !twrpDigestDriver::Check_Digest(Full_Filename))
Dees_Troya13d74f2013-03-24 08:54:55 -05001190 return false;
bigbiffce8f83c2015-12-12 18:30:21 -05001191 part_settings.partition_count++;
1192 part_settings.total_restore_size += part_settings.Part->Get_Restore_Size(&part_settings);
1193 if (part_settings.Part->Has_SubPartition) {
bigbiff bigbiff8fd4b092016-08-30 20:48:53 -04001194 TWPartition *parentPart = part_settings.Part;
Dees_Troya13d74f2013-03-24 08:54:55 -05001195 std::vector<TWPartition*>::iterator subpart;
1196
1197 for (subpart = Partitions.begin(); subpart != Partitions.end(); subpart++) {
bigbiff bigbiff8fd4b092016-08-30 20:48:53 -04001198 part_settings.Part = *subpart;
1199 if ((*subpart)->Is_SubPartition && (*subpart)->SubPartition_Of == parentPart->Mount_Point) {
bigbiff bigbiff56cf5642016-08-19 17:43:45 -04001200 if (check_digest > 0 && !twrpDigestDriver::Check_Digest(Full_Filename))
Dees_Troya13d74f2013-03-24 08:54:55 -05001201 return false;
bigbiffce8f83c2015-12-12 18:30:21 -05001202 part_settings.total_restore_size += (*subpart)->Get_Restore_Size(&part_settings);
Dees_Troya13d74f2013-03-24 08:54:55 -05001203 }
1204 }
1205 }
1206 } else {
Ethan Yonker74db1572015-10-28 12:44:49 -05001207 gui_msg(Msg(msg::kError, "restore_unable_locate=Unable to locate '{1}' partition for restoring.")(restore_path));
Dees_Troya13d74f2013-03-24 08:54:55 -05001208 }
1209 start_pos = end_pos + 1;
1210 end_pos = Restore_List.find(";", start_pos);
Dees_Troy4a2a1262012-09-18 09:33:47 -04001211 }
Dees_Troy4a2a1262012-09-18 09:33:47 -04001212 }
Dees_Troy4a2a1262012-09-18 09:33:47 -04001213
bigbiffce8f83c2015-12-12 18:30:21 -05001214 if (part_settings.partition_count == 0) {
Ethan Yonker74db1572015-10-28 12:44:49 -05001215 gui_err("no_part_restore=No partitions selected for restore.");
Dees_Troy4a2a1262012-09-18 09:33:47 -04001216 return false;
1217 }
1218
bigbiffce8f83c2015-12-12 18:30:21 -05001219 gui_msg(Msg("restore_part_count=Restoring {1} partitions...")(part_settings.partition_count));
1220 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 +00001221 DataManager::SetProgress(0.0);
bigbiffce8f83c2015-12-12 18:30:21 -05001222 ProgressTracking progress(part_settings.total_restore_size);
1223 part_settings.progress = &progress;
Ethan Yonker1b7a31b2014-07-03 15:09:22 -05001224
Dees_Troya13d74f2013-03-24 08:54:55 -05001225 start_pos = 0;
1226 if (!Restore_List.empty()) {
1227 end_pos = Restore_List.find(";", start_pos);
1228 while (end_pos != string::npos && start_pos < Restore_List.size()) {
1229 restore_path = Restore_List.substr(start_pos, end_pos - start_pos);
bigbiffce8f83c2015-12-12 18:30:21 -05001230
1231 part_settings.Part = Find_Partition_By_Path(restore_path);
1232 if (part_settings.Part != NULL) {
1233 part_settings.partition_count++;
bigbiffce8f83c2015-12-12 18:30:21 -05001234 if (!Restore_Partition(&part_settings))
Dees_Troya13d74f2013-03-24 08:54:55 -05001235 return false;
1236 } else {
Ethan Yonker74db1572015-10-28 12:44:49 -05001237 gui_msg(Msg(msg::kError, "restore_unable_locate=Unable to locate '{1}' partition for restoring.")(restore_path));
Dees_Troya13d74f2013-03-24 08:54:55 -05001238 }
1239 start_pos = end_pos + 1;
1240 end_pos = Restore_List.find(";", start_pos);
1241 }
1242 }
Ethan Yonker74db1572015-10-28 12:44:49 -05001243 TWFunc::GUI_Operation_Text(TW_UPDATE_SYSTEM_DETAILS_TEXT, gui_parse_text("{@updating_system_details}"));
Captain Throwback9d6feb52018-07-27 10:05:24 -04001244 UnMount_By_Path(Get_Android_Root_Path(), false);
Dees_Troy43d8b002012-09-17 16:00:01 -04001245 Update_System_Details();
Dees_Troyd0384ef2012-10-12 12:15:42 -04001246 UnMount_Main_Partitions();
Dees_Troy4a2a1262012-09-18 09:33:47 -04001247 time(&rStop);
Matt Mower3c366972015-12-25 19:28:31 -06001248 gui_msg(Msg(msg::kHighlight, "restore_completed=[RESTORE COMPLETED IN {1} SECONDS]")((int)difftime(rStop,rStart)));
Ethan Yonker1b7a31b2014-07-03 15:09:22 -05001249 DataManager::SetValue("tw_file_progress", "");
bigbiffce8f83c2015-12-12 18:30:21 -05001250
Dees_Troy63c8df72012-09-10 14:02:05 -04001251 return true;
Dees_Troy51a0e822012-09-05 15:24:24 -04001252}
1253
1254void TWPartitionManager::Set_Restore_Files(string Restore_Name) {
Dees_Troy63c8df72012-09-10 14:02:05 -04001255 // Start with the default values
Dees_Troya13d74f2013-03-24 08:54:55 -05001256 string Restore_List;
Dees_Troy83bd4832013-05-04 12:39:56 +00001257 bool get_date = true, check_encryption = true;
bigbiff bigbiff19fb79c2016-09-05 21:04:51 -04001258 bool adbbackup = false;
Dees_Troy83bd4832013-05-04 12:39:56 +00001259
1260 DataManager::SetValue("tw_restore_encrypted", 0);
bigbiff bigbiff19fb79c2016-09-05 21:04:51 -04001261 if (twadbbu::Check_ADB_Backup_File(Restore_Name)) {
1262 vector<string> adb_files;
1263 adb_files = twadbbu::Get_ADB_Backup_Files(Restore_Name);
1264 for (unsigned int i = 0; i < adb_files.size(); ++i) {
1265 string adb_restore_file = adb_files.at(i);
1266 std::size_t pos = adb_restore_file.find_first_of(".");
1267 std::string path = "/" + adb_restore_file.substr(0, pos);
1268 Restore_List = path + ";";
1269 TWPartition* Part = Find_Partition_By_Path(path);
1270 Part->Backup_FileName = TWFunc::Get_Filename(adb_restore_file);
1271 adbbackup = true;
1272 }
1273 DataManager::SetValue("tw_enable_adb_backup", 1);
Dees_Troy63c8df72012-09-10 14:02:05 -04001274 }
bigbiff bigbiff19fb79c2016-09-05 21:04:51 -04001275 else {
1276 DIR* d;
1277 d = opendir(Restore_Name.c_str());
1278 if (d == NULL)
Dees_Troy63c8df72012-09-10 14:02:05 -04001279 {
bigbiff bigbiff19fb79c2016-09-05 21:04:51 -04001280 gui_msg(Msg(msg::kError, "error_opening_strerr=Error opening: '{1}' ({2})")(Restore_Name)(strerror(errno)));
1281 return;
Dees_Troy63c8df72012-09-10 14:02:05 -04001282 }
bigbiff bigbiff19fb79c2016-09-05 21:04:51 -04001283
1284 struct dirent* de;
1285 while ((de = readdir(d)) != NULL)
Dees_Troy63c8df72012-09-10 14:02:05 -04001286 {
bigbiff bigbiff19fb79c2016-09-05 21:04:51 -04001287 // Strip off three components
1288 char str[256];
1289 char* label;
1290 char* fstype = NULL;
1291 char* extn = NULL;
1292 char* ptr;
Dees_Troy63c8df72012-09-10 14:02:05 -04001293
bigbiff bigbiff19fb79c2016-09-05 21:04:51 -04001294 strcpy(str, de->d_name);
1295 if (strlen(str) <= 2)
1296 continue;
Dees_Troy83bd4832013-05-04 12:39:56 +00001297
bigbiff bigbiff19fb79c2016-09-05 21:04:51 -04001298 if (get_date) {
1299 char file_path[255];
1300 struct stat st;
1301
1302 strcpy(file_path, Restore_Name.c_str());
1303 strcat(file_path, "/");
1304 strcat(file_path, str);
1305 stat(file_path, &st);
1306 string backup_date = ctime((const time_t*)(&st.st_mtime));
1307 DataManager::SetValue(TW_RESTORE_FILE_DATE, backup_date);
1308 get_date = false;
Dees_Troy83bd4832013-05-04 12:39:56 +00001309 }
Dees_Troy63c8df72012-09-10 14:02:05 -04001310
bigbiff bigbiff19fb79c2016-09-05 21:04:51 -04001311 label = str;
1312 ptr = label;
1313 while (*ptr && *ptr != '.') ptr++;
1314 if (*ptr == '.')
1315 {
1316 *ptr = 0x00;
1317 ptr++;
1318 fstype = ptr;
1319 }
1320 while (*ptr && *ptr != '.') ptr++;
1321 if (*ptr == '.')
1322 {
1323 *ptr = 0x00;
1324 ptr++;
1325 extn = ptr;
1326 }
Dees_Troy63c8df72012-09-10 14:02:05 -04001327
bigbiff bigbiff19fb79c2016-09-05 21:04:51 -04001328 if (fstype == NULL || extn == NULL || strcmp(fstype, "log") == 0) continue;
1329 int extnlength = strlen(extn);
1330 if (extnlength != 3 && extnlength != 6) continue;
1331 if (extnlength >= 3 && strncmp(extn, "win", 3) != 0) continue;
1332 //if (extnlength == 6 && strncmp(extn, "win000", 6) != 0) continue;
Dees_Troy63c8df72012-09-10 14:02:05 -04001333
bigbiff bigbiff19fb79c2016-09-05 21:04:51 -04001334 if (check_encryption) {
1335 string filename = Restore_Name + "/";
1336 filename += de->d_name;
1337 if (TWFunc::Get_File_Type(filename) == 2) {
1338 LOGINFO("'%s' is encrypted\n", filename.c_str());
1339 DataManager::SetValue("tw_restore_encrypted", 1);
1340 }
1341 }
1342 if (extnlength == 6 && strncmp(extn, "win000", 6) != 0) continue;
1343
1344 TWPartition* Part = Find_Partition_By_Path(label);
1345 if (Part == NULL)
1346 {
1347 gui_msg(Msg(msg::kError, "unable_locate_part_backup_name=Unable to locate partition by backup name: '{1}'")(label));
1348 continue;
1349 }
1350
1351 Part->Backup_FileName = de->d_name;
1352 if (strlen(extn) > 3) {
1353 Part->Backup_FileName.resize(Part->Backup_FileName.size() - strlen(extn) + 3);
1354 }
1355
dianlujitaob76a73a2020-04-30 20:33:20 +08001356 if (!Part->Is_SubPartition) {
1357 if (Part->Backup_Path == Get_Android_Root_Path())
1358 Restore_List += "/system;";
1359 else
1360 Restore_List += Part->Backup_Path + ";";
1361 }
bigbiff bigbiff19fb79c2016-09-05 21:04:51 -04001362 }
1363 closedir(d);
Dees_Troy63c8df72012-09-10 14:02:05 -04001364 }
bigbiff bigbiff19fb79c2016-09-05 21:04:51 -04001365
1366 if (adbbackup) {
1367 Restore_List = "ADB_Backup;";
1368 adbbackup = false;
1369 }
Dees_Troy63c8df72012-09-10 14:02:05 -04001370
Dees_Troya13d74f2013-03-24 08:54:55 -05001371 // Set the final value
1372 DataManager::SetValue("tw_restore_list", Restore_List);
1373 DataManager::SetValue("tw_restore_selected", Restore_List);
Dees_Troy51a0e822012-09-05 15:24:24 -04001374 return;
1375}
1376
1377int TWPartitionManager::Wipe_By_Path(string Path) {
Dees_Troy63c8df72012-09-10 14:02:05 -04001378 std::vector<TWPartition*>::iterator iter;
Mohd Farazfdd49bb2020-04-21 18:56:44 +05301379 std::vector < TWPartition * >::iterator iter1;
Dees_Troy63c8df72012-09-10 14:02:05 -04001380 int ret = false;
1381 bool found = false;
Dees_Troy38bd7602012-09-14 13:33:53 -04001382 string Local_Path = TWFunc::Get_Root_Path(Path);
Dees_Troy63c8df72012-09-10 14:02:05 -04001383
dianlujitaob76a73a2020-04-30 20:33:20 +08001384 if (Local_Path == "/system")
1385 Local_Path = Get_Android_Root_Path();
Dees_Troy63c8df72012-09-10 14:02:05 -04001386 // Iterate through all partitions
1387 for (iter = Partitions.begin(); iter != Partitions.end(); iter++) {
Dees_Troy657c3092012-09-10 20:32:10 -04001388 if ((*iter)->Mount_Point == Local_Path || (!(*iter)->Symlink_Mount_Point.empty() && (*iter)->Symlink_Mount_Point == Local_Path)) {
Mohd Farazfdd49bb2020-04-21 18:56:44 +05301389 // iterate through all partitions since some legacy devices uses other partitions as vendor causes issues while wiping
1390 (*iter)->Find_Actual_Block_Device();
1391 for (iter1 = Partitions.begin (); iter1 != Partitions.end (); iter1++)
1392 {
1393 (*iter1)->Find_Actual_Block_Device();
1394 if ((*iter)->Actual_Block_Device == (*iter1)->Actual_Block_Device && (*iter)->Mount_Point != (*iter1)->Mount_Point)
1395 (*iter1)->UnMount(false);
1396 }
Dees_Troye58d5262012-09-21 12:27:57 -04001397 if (Path == "/and-sec")
1398 ret = (*iter)->Wipe_AndSec();
1399 else
1400 ret = (*iter)->Wipe();
Dees_Troy63c8df72012-09-10 14:02:05 -04001401 found = true;
1402 } else if ((*iter)->Is_SubPartition && (*iter)->SubPartition_Of == Local_Path) {
1403 (*iter)->Wipe();
1404 }
1405 }
1406 if (found) {
1407 return ret;
1408 } else
Ethan Yonker74db1572015-10-28 12:44:49 -05001409 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 -04001410 return false;
Dees_Troy51a0e822012-09-05 15:24:24 -04001411}
1412
Ethan Yonker87c7bac2014-05-25 21:41:08 -05001413int TWPartitionManager::Wipe_By_Path(string Path, string New_File_System) {
1414 std::vector<TWPartition*>::iterator iter;
1415 int ret = false;
1416 bool found = false;
1417 string Local_Path = TWFunc::Get_Root_Path(Path);
1418
1419 // Iterate through all partitions
1420 for (iter = Partitions.begin(); iter != Partitions.end(); iter++) {
1421 if ((*iter)->Mount_Point == Local_Path || (!(*iter)->Symlink_Mount_Point.empty() && (*iter)->Symlink_Mount_Point == Local_Path)) {
1422 if (Path == "/and-sec")
1423 ret = (*iter)->Wipe_AndSec();
1424 else
1425 ret = (*iter)->Wipe(New_File_System);
1426 found = true;
1427 } else if ((*iter)->Is_SubPartition && (*iter)->SubPartition_Of == Local_Path) {
1428 (*iter)->Wipe(New_File_System);
1429 }
1430 }
1431 if (found) {
1432 return ret;
1433 } else
Ethan Yonker74db1572015-10-28 12:44:49 -05001434 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 -05001435 return false;
1436}
1437
Dees_Troy51a0e822012-09-05 15:24:24 -04001438int TWPartitionManager::Factory_Reset(void) {
Dees_Troy63c8df72012-09-10 14:02:05 -04001439 std::vector<TWPartition*>::iterator iter;
1440 int ret = true;
1441
1442 for (iter = Partitions.begin(); iter != Partitions.end(); iter++) {
Dees_Troy38bd7602012-09-14 13:33:53 -04001443 if ((*iter)->Wipe_During_Factory_Reset && (*iter)->Is_Present) {
Ethan Yonker89583ef2015-08-26 09:01:59 -05001444#ifdef TW_OEM_BUILD
1445 if ((*iter)->Mount_Point == "/data") {
1446 if (!(*iter)->Wipe_Encryption())
1447 ret = false;
1448 } else {
1449#endif
1450 if (!(*iter)->Wipe())
1451 ret = false;
1452#ifdef TW_OEM_BUILD
1453 }
1454#endif
Dees_Troy094207a2012-09-26 12:00:39 -04001455 } else if ((*iter)->Has_Android_Secure) {
1456 if (!(*iter)->Wipe_AndSec())
1457 ret = false;
Dees_Troy63c8df72012-09-10 14:02:05 -04001458 }
1459 }
bigbiffad58e1b2020-07-06 20:24:34 -04001460 TWFunc::check_and_run_script("/system/bin/factoryreset.sh", "Factory Reset Script");
Dees_Troy63c8df72012-09-10 14:02:05 -04001461 return ret;
Dees_Troy51a0e822012-09-05 15:24:24 -04001462}
1463
Dees_Troy38bd7602012-09-14 13:33:53 -04001464int TWPartitionManager::Wipe_Dalvik_Cache(void) {
1465 struct stat st;
bigbiff bigbiff9c754052013-01-09 09:09:08 -05001466 vector <string> dir;
Dees_Troy38bd7602012-09-14 13:33:53 -04001467
1468 if (!Mount_By_Path("/data", true))
1469 return false;
1470
bigbiff bigbiff9c754052013-01-09 09:09:08 -05001471 dir.push_back("/data/dalvik-cache");
bigbiff bigbiff19874f12019-01-08 20:06:57 -05001472
bigbiff25d25b92020-06-19 16:07:38 -04001473 std::string cacheDir = TWFunc::get_log_dir();
1474 if (cacheDir == CACHE_LOGS_DIR) {
1475 if (!PartitionManager.Mount_By_Path(CACHE_LOGS_DIR, false)) {
1476 LOGINFO("Unable to mount %s for wiping cache.\n", CACHE_LOGS_DIR);
bigbiff bigbiff19874f12019-01-08 20:06:57 -05001477 }
1478 dir.push_back(cacheDir + "dalvik-cache");
1479 dir.push_back(cacheDir + "/dc");
bigbiff bigbiff9c754052013-01-09 09:09:08 -05001480 }
Ethan Yonkerff2b7882016-12-10 09:04:41 -06001481
Dees_Troy38bd7602012-09-14 13:33:53 -04001482 TWPartition* sdext = Find_Partition_By_Path("/sd-ext");
Vojtech Bocekfafb0c52013-07-25 22:53:02 +02001483 if (sdext && sdext->Is_Present && sdext->Mount(false))
1484 {
1485 if (stat("/sd-ext/dalvik-cache", &st) == 0)
1486 {
Ethan Yonkerff2b7882016-12-10 09:04:41 -06001487 dir.push_back("/sd-ext/dalvik-cache");
1488 }
1489 }
1490
bigbiff25d25b92020-06-19 16:07:38 -04001491 if (cacheDir == CACHE_LOGS_DIR) {
bigbiff bigbiff19874f12019-01-08 20:06:57 -05001492 gui_msg("wiping_cache_dalvik=Wiping Dalvik Cache Directories...");
1493 } else {
1494 gui_msg("wiping_dalvik=Wiping Dalvik Directory...");
1495 }
Ethan Yonkerff2b7882016-12-10 09:04:41 -06001496 for (unsigned i = 0; i < dir.size(); ++i) {
1497 if (stat(dir.at(i).c_str(), &st) == 0) {
1498 TWFunc::removeDir(dir.at(i), false);
1499 gui_msg(Msg("cleaned=Cleaned: {1}...")(dir.at(i)));
bigbiff bigbiff9c754052013-01-09 09:09:08 -05001500 }
Vojtech Bocekfafb0c52013-07-25 22:53:02 +02001501 }
bigbiff bigbiff19874f12019-01-08 20:06:57 -05001502
bigbiff25d25b92020-06-19 16:07:38 -04001503 if (cacheDir == CACHE_LOGS_DIR) {
bigbiff bigbiff19874f12019-01-08 20:06:57 -05001504 gui_msg("cache_dalvik_done=-- Dalvik Cache Directories Wipe Complete!");
1505 } else {
1506 gui_msg("dalvik_done=-- Dalvik Directory Wipe Complete!");
1507 }
1508
Dees_Troy38bd7602012-09-14 13:33:53 -04001509 return true;
1510}
1511
1512int TWPartitionManager::Wipe_Rotate_Data(void) {
1513 if (!Mount_By_Path("/data", true))
1514 return false;
1515
bigbiff bigbiff9c754052013-01-09 09:09:08 -05001516 unlink("/data/misc/akmd*");
1517 unlink("/data/misc/rild*");
Dees_Troy2673cec2013-04-02 20:22:16 +00001518 gui_print("Rotation data wiped.\n");
Dees_Troy38bd7602012-09-14 13:33:53 -04001519 return true;
1520}
1521
1522int TWPartitionManager::Wipe_Battery_Stats(void) {
1523 struct stat st;
1524
1525 if (!Mount_By_Path("/data", true))
1526 return false;
1527
1528 if (0 != stat("/data/system/batterystats.bin", &st)) {
Dees_Troy2673cec2013-04-02 20:22:16 +00001529 gui_print("No Battery Stats Found. No Need To Wipe.\n");
Dees_Troy38bd7602012-09-14 13:33:53 -04001530 } else {
1531 remove("/data/system/batterystats.bin");
Dees_Troy2673cec2013-04-02 20:22:16 +00001532 gui_print("Cleared battery stats.\n");
Dees_Troy38bd7602012-09-14 13:33:53 -04001533 }
1534 return true;
1535}
1536
Dees_Troy2ff5a8d2012-09-26 14:53:02 -04001537int TWPartitionManager::Wipe_Android_Secure(void) {
1538 std::vector<TWPartition*>::iterator iter;
1539 int ret = false;
1540 bool found = false;
1541
1542 // Iterate through all partitions
1543 for (iter = Partitions.begin(); iter != Partitions.end(); iter++) {
1544 if ((*iter)->Has_Android_Secure) {
1545 ret = (*iter)->Wipe_AndSec();
1546 found = true;
1547 }
1548 }
1549 if (found) {
1550 return ret;
1551 } else {
Ethan Yonker74db1572015-10-28 12:44:49 -05001552 gui_err("no_andsec=No android secure partitions found.");
Dees_Troy2ff5a8d2012-09-26 14:53:02 -04001553 }
1554 return false;
1555}
1556
Dees_Troy38bd7602012-09-14 13:33:53 -04001557int TWPartitionManager::Format_Data(void) {
1558 TWPartition* dat = Find_Partition_By_Path("/data");
1559
1560 if (dat != NULL) {
Dees_Troy38bd7602012-09-14 13:33:53 -04001561 return dat->Wipe_Encryption();
1562 } else {
Matt Mower3c366972015-12-25 19:28:31 -06001563 gui_msg(Msg(msg::kError, "unable_to_locate=Unable to locate {1}.")("/data"));
Dees_Troy38bd7602012-09-14 13:33:53 -04001564 return false;
1565 }
1566 return false;
1567}
1568
1569int TWPartitionManager::Wipe_Media_From_Data(void) {
1570 TWPartition* dat = Find_Partition_By_Path("/data");
1571
1572 if (dat != NULL) {
1573 if (!dat->Has_Data_Media) {
Dees_Troy2673cec2013-04-02 20:22:16 +00001574 LOGERR("This device does not have /data/media\n");
Dees_Troy38bd7602012-09-14 13:33:53 -04001575 return false;
1576 }
1577 if (!dat->Mount(true))
1578 return false;
1579
Ethan Yonker74db1572015-10-28 12:44:49 -05001580 gui_msg("wiping_datamedia=Wiping internal storage -- /data/media...");
Ethan Yonker726a0202014-12-16 20:01:38 -06001581 Remove_MTP_Storage(dat->MTP_Storage_ID);
bigbiff bigbiff9c754052013-01-09 09:09:08 -05001582 TWFunc::removeDir("/data/media", false);
xiaolu9416f4f2015-06-04 08:22:23 +08001583 dat->Recreate_Media_Folder();
Ethan Yonker726a0202014-12-16 20:01:38 -06001584 Add_MTP_Storage(dat->MTP_Storage_ID);
Dees_Troy38bd7602012-09-14 13:33:53 -04001585 return true;
1586 } else {
Matt Mower3c366972015-12-25 19:28:31 -06001587 gui_msg(Msg(msg::kError, "unable_to_locate=Unable to locate {1}.")("/data"));
Dees_Troy38bd7602012-09-14 13:33:53 -04001588 return false;
1589 }
1590 return false;
1591}
1592
Ethan Yonker87c7bac2014-05-25 21:41:08 -05001593int TWPartitionManager::Repair_By_Path(string Path, bool Display_Error) {
1594 std::vector<TWPartition*>::iterator iter;
1595 int ret = false;
1596 bool found = false;
1597 string Local_Path = TWFunc::Get_Root_Path(Path);
1598
1599 if (Local_Path == "/tmp" || Local_Path == "/")
1600 return true;
1601
1602 // Iterate through all partitions
1603 for (iter = Partitions.begin(); iter != Partitions.end(); iter++) {
1604 if ((*iter)->Mount_Point == Local_Path || (!(*iter)->Symlink_Mount_Point.empty() && (*iter)->Symlink_Mount_Point == Local_Path)) {
1605 ret = (*iter)->Repair();
1606 found = true;
1607 } else if ((*iter)->Is_SubPartition && (*iter)->SubPartition_Of == Local_Path) {
1608 (*iter)->Repair();
1609 }
1610 }
1611 if (found) {
1612 return ret;
1613 } else if (Display_Error) {
Ethan Yonker74db1572015-10-28 12:44:49 -05001614 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 -05001615 } else {
1616 LOGINFO("Repair: Unable to find partition for path '%s'\n", Local_Path.c_str());
1617 }
1618 return false;
1619}
1620
Ethan Yonkera2719152015-05-28 09:44:41 -05001621int TWPartitionManager::Resize_By_Path(string Path, bool Display_Error) {
1622 std::vector<TWPartition*>::iterator iter;
1623 int ret = false;
1624 bool found = false;
1625 string Local_Path = TWFunc::Get_Root_Path(Path);
1626
1627 if (Local_Path == "/tmp" || Local_Path == "/")
1628 return true;
1629
1630 // Iterate through all partitions
1631 for (iter = Partitions.begin(); iter != Partitions.end(); iter++) {
1632 if ((*iter)->Mount_Point == Local_Path || (!(*iter)->Symlink_Mount_Point.empty() && (*iter)->Symlink_Mount_Point == Local_Path)) {
1633 ret = (*iter)->Resize();
1634 found = true;
1635 } else if ((*iter)->Is_SubPartition && (*iter)->SubPartition_Of == Local_Path) {
1636 (*iter)->Resize();
1637 }
1638 }
1639 if (found) {
1640 return ret;
1641 } else if (Display_Error) {
Ethan Yonker74db1572015-10-28 12:44:49 -05001642 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 -05001643 } else {
1644 LOGINFO("Resize: Unable to find partition for path '%s'\n", Local_Path.c_str());
1645 }
1646 return false;
1647}
1648
Dees_Troy51a0e822012-09-05 15:24:24 -04001649void TWPartitionManager::Update_System_Details(void) {
Dees_Troy5bf43922012-09-07 16:07:55 -04001650 std::vector<TWPartition*>::iterator iter;
Dees_Troy51127312012-09-08 13:08:49 -04001651 int data_size = 0;
Dees_Troy5bf43922012-09-07 16:07:55 -04001652
Ethan Yonker74db1572015-10-28 12:44:49 -05001653 gui_msg("update_part_details=Updating partition details...");
Dees_Troy5bf43922012-09-07 16:07:55 -04001654 for (iter = Partitions.begin(); iter != Partitions.end(); iter++) {
Ethan Yonker1b190162016-12-05 15:25:19 -06001655 (*iter)->Update_Size(true);
Dees_Troy51127312012-09-08 13:08:49 -04001656 if ((*iter)->Can_Be_Mounted) {
Captain Throwback9d6feb52018-07-27 10:05:24 -04001657 if ((*iter)->Mount_Point == Get_Android_Root_Path()) {
Dees_Troy51127312012-09-08 13:08:49 -04001658 int backup_display_size = (int)((*iter)->Backup_Size / 1048576LLU);
1659 DataManager::SetValue(TW_BACKUP_SYSTEM_SIZE, backup_display_size);
Ethan Yonker76bbd3a2019-05-10 10:50:04 -05001660 TWFunc::Is_TWRP_App_In_System();
Dees_Troy51127312012-09-08 13:08:49 -04001661 } else if ((*iter)->Mount_Point == "/data" || (*iter)->Mount_Point == "/datadata") {
1662 data_size += (int)((*iter)->Backup_Size / 1048576LLU);
1663 } else if ((*iter)->Mount_Point == "/cache") {
1664 int backup_display_size = (int)((*iter)->Backup_Size / 1048576LLU);
1665 DataManager::SetValue(TW_BACKUP_CACHE_SIZE, backup_display_size);
1666 } else if ((*iter)->Mount_Point == "/sd-ext") {
1667 int backup_display_size = (int)((*iter)->Backup_Size / 1048576LLU);
1668 DataManager::SetValue(TW_BACKUP_SDEXT_SIZE, backup_display_size);
1669 if ((*iter)->Backup_Size == 0) {
1670 DataManager::SetValue(TW_HAS_SDEXT_PARTITION, 0);
1671 DataManager::SetValue(TW_BACKUP_SDEXT_VAR, 0);
1672 } else
1673 DataManager::SetValue(TW_HAS_SDEXT_PARTITION, 1);
Dees_Troye58d5262012-09-21 12:27:57 -04001674 } else if ((*iter)->Has_Android_Secure) {
Dees_Troy8170a922012-09-18 15:40:25 -04001675 int backup_display_size = (int)((*iter)->Backup_Size / 1048576LLU);
Dees_Troye58d5262012-09-21 12:27:57 -04001676 DataManager::SetValue(TW_BACKUP_ANDSEC_SIZE, backup_display_size);
Dees_Troy8170a922012-09-18 15:40:25 -04001677 if ((*iter)->Backup_Size == 0) {
1678 DataManager::SetValue(TW_HAS_ANDROID_SECURE, 0);
1679 DataManager::SetValue(TW_BACKUP_ANDSEC_VAR, 0);
1680 } else
1681 DataManager::SetValue(TW_HAS_ANDROID_SECURE, 1);
Dees_Troy2c50e182012-09-26 20:05:28 -04001682 } else if ((*iter)->Mount_Point == "/boot") {
1683 int backup_display_size = (int)((*iter)->Backup_Size / 1048576LLU);
1684 DataManager::SetValue(TW_BACKUP_BOOT_SIZE, backup_display_size);
1685 if ((*iter)->Backup_Size == 0) {
1686 DataManager::SetValue("tw_has_boot_partition", 0);
1687 DataManager::SetValue(TW_BACKUP_BOOT_VAR, 0);
1688 } else
1689 DataManager::SetValue("tw_has_boot_partition", 1);
Dees_Troy51127312012-09-08 13:08:49 -04001690 }
Dees_Troyaa9cc402012-10-13 12:14:05 -04001691 } else {
1692 // Handle unmountable partitions in case we reset defaults
1693 if ((*iter)->Mount_Point == "/boot") {
1694 int backup_display_size = (int)((*iter)->Backup_Size / 1048576LLU);
1695 DataManager::SetValue(TW_BACKUP_BOOT_SIZE, backup_display_size);
1696 if ((*iter)->Backup_Size == 0) {
1697 DataManager::SetValue(TW_HAS_BOOT_PARTITION, 0);
1698 DataManager::SetValue(TW_BACKUP_BOOT_VAR, 0);
1699 } else
1700 DataManager::SetValue(TW_HAS_BOOT_PARTITION, 1);
1701 } else if ((*iter)->Mount_Point == "/recovery") {
1702 int backup_display_size = (int)((*iter)->Backup_Size / 1048576LLU);
1703 DataManager::SetValue(TW_BACKUP_RECOVERY_SIZE, backup_display_size);
1704 if ((*iter)->Backup_Size == 0) {
1705 DataManager::SetValue(TW_HAS_RECOVERY_PARTITION, 0);
1706 DataManager::SetValue(TW_BACKUP_RECOVERY_VAR, 0);
1707 } else
1708 DataManager::SetValue(TW_HAS_RECOVERY_PARTITION, 1);
Gary Peck82599a82012-11-21 16:23:12 -08001709 } else if ((*iter)->Mount_Point == "/data") {
1710 data_size += (int)((*iter)->Backup_Size / 1048576LLU);
Dees_Troyaa9cc402012-10-13 12:14:05 -04001711 }
Dees_Troy51127312012-09-08 13:08:49 -04001712 }
Dees_Troy5bf43922012-09-07 16:07:55 -04001713 }
Ethan Yonker74db1572015-10-28 12:44:49 -05001714 gui_msg("update_part_details_done=...done");
Dees_Troy51127312012-09-08 13:08:49 -04001715 DataManager::SetValue(TW_BACKUP_DATA_SIZE, data_size);
1716 string current_storage_path = DataManager::GetCurrentStoragePath();
1717 TWPartition* FreeStorage = Find_Partition_By_Path(current_storage_path);
Dees_Troy8170a922012-09-18 15:40:25 -04001718 if (FreeStorage != NULL) {
1719 // Attempt to mount storage
bigbiff25d25b92020-06-19 16:07:38 -04001720 if (!FreeStorage->Mount(false)) {
1721 gui_msg(Msg(msg::kWarning, "unable_to_mount_storage=Unable to mount storage"));
1722 DataManager::SetValue(TW_STORAGE_FREE_SIZE, 0);
1723 } else {
1724 DataManager::SetValue(TW_STORAGE_FREE_SIZE, (int)(FreeStorage->Free / 1048576LLU));
Dees_Troy8170a922012-09-18 15:40:25 -04001725 }
1726 } else {
Dees_Troy2673cec2013-04-02 20:22:16 +00001727 LOGINFO("Unable to find storage partition '%s'.\n", current_storage_path.c_str());
Dees_Troy8170a922012-09-18 15:40:25 -04001728 }
Dees_Troy5bf43922012-09-07 16:07:55 -04001729 if (!Write_Fstab())
Dees_Troy2673cec2013-04-02 20:22:16 +00001730 LOGERR("Error creating fstab\n");
Dees_Troy51a0e822012-09-05 15:24:24 -04001731 return;
1732}
1733
Ethan Yonkerbd7492d2016-12-07 13:55:01 -06001734void TWPartitionManager::Post_Decrypt(const string& Block_Device) {
1735 TWPartition* dat = Find_Partition_By_Path("/data");
bigbiffc2cb3852020-09-11 14:03:31 -04001736
Ethan Yonkerbd7492d2016-12-07 13:55:01 -06001737 if (dat != NULL) {
1738 DataManager::SetValue(TW_IS_DECRYPTED, 1);
1739 dat->Is_Decrypted = true;
1740 if (!Block_Device.empty()) {
1741 dat->Decrypted_Block_Device = Block_Device;
1742 gui_msg(Msg("decrypt_success_dev=Data successfully decrypted, new block device: '{1}'")(Block_Device));
1743 } else {
1744 gui_msg("decrypt_success_nodev=Data successfully decrypted");
1745 }
Noah Jacobson81d638d2019-04-28 00:10:07 -04001746 property_set("twrp.decrypt.done", "true");
Ethan Yonkerbd7492d2016-12-07 13:55:01 -06001747 dat->Setup_File_System(false);
Noah Jacobson81d638d2019-04-28 00:10:07 -04001748 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 -06001749
Noah Jacobson81d638d2019-04-28 00:10:07 -04001750 sleep(1); // Sleep for a bit so that the device will be ready
Ethan Yonkerbd7492d2016-12-07 13:55:01 -06001751 if (dat->Has_Data_Media && dat->Mount(false) && TWFunc::Path_Exists("/data/media/0")) {
1752 dat->Storage_Path = "/data/media/0";
1753 dat->Symlink_Path = dat->Storage_Path;
1754 DataManager::SetValue("tw_storage_path", "/data/media/0");
1755 DataManager::SetValue("tw_settings_path", "/data/media/0");
1756 dat->UnMount(false);
Ethan Yonkerbd7492d2016-12-07 13:55:01 -06001757 }
1758 Update_System_Details();
nkk71ffb02bd2017-06-04 23:12:16 +03001759 Output_Partition(dat);
Ethan Yonkerbd7492d2016-12-07 13:55:01 -06001760 UnMount_Main_Partitions();
1761 } else
1762 LOGERR("Unable to locate data partition.\n");
1763}
1764
Noah Jacobson81d638d2019-04-28 00:10:07 -04001765void TWPartitionManager::Parse_Users() {
1766#ifdef TW_INCLUDE_FBE
1767 char user_check_result[PROPERTY_VALUE_MAX];
1768 for (int userId = 0; userId <= 9999; userId++) {
1769 string prop = "twrp.user." + to_string(userId) + ".decrypt";
1770 property_get(prop.c_str(), user_check_result, "-1");
1771 if (strcmp(user_check_result, "-1") != 0) {
1772 if (userId < 0 || userId > 9999) {
1773 LOGINFO("Incorrect user id %d\n", userId);
1774 continue;
1775 }
1776 struct users_struct user;
1777 user.userId = to_string(userId);
1778
1779 // Attempt to get name of user. Fallback to user ID if this fails.
1780 char* userFile = PageManager::LoadFileToBuffer("/data/system/users/" + to_string(userId) + ".xml", NULL);
1781 if (userFile == NULL)
1782 user.userName = to_string(userId);
1783 else {
1784 xml_document<> *userXml = new xml_document<>();
1785 userXml->parse<0>(userFile);
1786 xml_node<>* userNode = userXml->first_node("user");
1787 if (userNode == nullptr) {
1788 user.userName = to_string(userId);
1789 } else {
1790 xml_node<>* nameNode = userNode->first_node("name");
1791 if (nameNode == nullptr)
1792 user.userName = to_string(userId);
1793 else {
1794 string userName = nameNode->value();
1795 user.userName = userName + " (" + to_string(userId) + ")";
1796 }
1797 }
1798 }
1799
1800 string filename;
1801 user.type = Get_Password_Type(userId, filename);
1802
1803 user.isDecrypted = false;
1804 if (strcmp(user_check_result, "1") == 0)
1805 user.isDecrypted = true;
1806 Users_List.push_back(user);
1807 }
1808 }
1809 Check_Users_Decryption_Status();
1810#endif
1811}
1812
1813std::vector<users_struct>* TWPartitionManager::Get_Users_List() {
1814 return &Users_List;
1815}
1816
1817void TWPartitionManager::Mark_User_Decrypted(int userID) {
1818#ifdef TW_INCLUDE_FBE
1819 std::vector<users_struct>::iterator iter;
1820 for (iter = Users_List.begin(); iter != Users_List.end(); iter++) {
1821 if (atoi((*iter).userId.c_str()) == userID) {
1822 (*iter).isDecrypted = true;
1823 string user_prop_decrypted = "twrp.user." + to_string(userID) + ".decrypt";
1824 property_set(user_prop_decrypted.c_str(), "1");
1825 break;
1826 }
1827 }
1828 Check_Users_Decryption_Status();
1829#endif
1830}
1831
1832void TWPartitionManager::Check_Users_Decryption_Status() {
1833#ifdef TW_INCLUDE_FBE
1834 int all_is_decrypted = 1;
1835 std::vector<users_struct>::iterator iter;
1836 for (iter = Users_List.begin(); iter != Users_List.end(); iter++) {
1837 if (!(*iter).isDecrypted) {
1838 LOGINFO("User %s is not decrypted.\n", (*iter).userId.c_str());
1839 all_is_decrypted = 0;
1840 break;
1841 }
1842 }
1843 if (all_is_decrypted == 1) {
1844 LOGINFO("All found users are decrypted.\n");
1845 DataManager::SetValue("tw_all_users_decrypted", "1");
1846 property_set("twrp.all.users.decrypted", "true");
1847 } else
1848 DataManager::SetValue("tw_all_users_decrypted", "0");
1849#endif
1850}
1851
1852int TWPartitionManager::Decrypt_Device(string Password, int user_id) {
Dees_Troy5bf43922012-09-07 16:07:55 -04001853#ifdef TW_INCLUDE_CRYPTO
Ethan Yonkerddb63e22017-01-19 14:01:57 -06001854 char crypto_state[PROPERTY_VALUE_MAX], crypto_blkdev[PROPERTY_VALUE_MAX];
Ethan Yonker253368a2014-11-25 15:00:52 -06001855 std::vector<TWPartition*>::iterator iter;
Dees_Troy5bf43922012-09-07 16:07:55 -04001856
Ethan Yonker253368a2014-11-25 15:00:52 -06001857 // Mount any partitions that need to be mounted for decrypt
1858 for (iter = Partitions.begin(); iter != Partitions.end(); iter++) {
1859 if ((*iter)->Mount_To_Decrypt) {
1860 (*iter)->Mount(true);
1861 }
a39552696ff55ce2013-01-08 16:14:56 +00001862 }
oshmouna82a7542018-04-10 17:45:55 +02001863 property_set("twrp.mount_to_decrypt", "1");
a39552696ff55ce2013-01-08 16:14:56 +00001864
Ethan Yonkera1de1492015-11-04 11:58:27 -06001865 property_get("ro.crypto.state", crypto_state, "error");
1866 if (strcmp(crypto_state, "error") == 0) {
1867 property_set("ro.crypto.state", "encrypted");
1868 // Sleep for a bit so that services can start if needed
1869 sleep(1);
1870 }
1871
Ethan Yonkerbd7492d2016-12-07 13:55:01 -06001872 if (DataManager::GetIntValue(TW_IS_FBE)) {
1873#ifdef TW_INCLUDE_FBE
1874 if (!Mount_By_Path("/data", true)) // /data has to be mounted for FBE
1875 return -1;
Noah Jacobson81d638d2019-04-28 00:10:07 -04001876
1877 bool user_need_decrypt = false;
1878 std::vector<users_struct>::iterator iter;
1879 for (iter = Users_List.begin(); iter != Users_List.end(); iter++) {
1880 if (atoi((*iter).userId.c_str()) == user_id && !(*iter).isDecrypted) {
1881 user_need_decrypt = true;
1882 }
1883 }
1884 if (!user_need_decrypt) {
1885 LOGINFO("User %d does not require decryption\n", user_id);
1886 return 0;
1887 }
1888
Ethan Yonkerbd7492d2016-12-07 13:55:01 -06001889 int retry_count = 10;
1890 while (!TWFunc::Path_Exists("/data/system/users/gatekeeper.password.key") && --retry_count)
Noah Jacobson81d638d2019-04-28 00:10:07 -04001891 usleep(2000); // A small sleep is needed after mounting /data to ensure reliable decrypt...maybe because of DE?
1892 gui_msg(Msg("decrypting_user_fbe=Attempting to decrypt FBE for user {1}...")(user_id));
Ethan Yonkerbd7492d2016-12-07 13:55:01 -06001893 if (Decrypt_User(user_id, Password)) {
Noah Jacobson81d638d2019-04-28 00:10:07 -04001894 gui_msg(Msg("decrypt_user_success_fbe=User {1} Decrypted Successfully")(user_id));
1895 Mark_User_Decrypted(user_id);
1896 if (user_id == 0) {
1897 // When decrypting user 0 also try all other users
1898 std::vector<users_struct>::iterator iter;
1899 for (iter = Users_List.begin(); iter != Users_List.end(); iter++) {
1900 if ((*iter).userId == "0" || (*iter).isDecrypted)
1901 continue;
1902
1903 int tmp_user_id = atoi((*iter).userId.c_str());
1904 gui_msg(Msg("decrypting_user_fbe=Attempting to decrypt FBE for user {1}...")(tmp_user_id));
1905 if (Decrypt_User(tmp_user_id, Password) ||
1906 (Password != "!" && Decrypt_User(tmp_user_id, "!"))) { // "!" means default password
1907 gui_msg(Msg("decrypt_user_success_fbe=User {1} Decrypted Successfully")(tmp_user_id));
1908 Mark_User_Decrypted(tmp_user_id);
1909 } else {
1910 gui_msg(Msg("decrypt_user_fail_fbe=Failed to decrypt user {1}")(tmp_user_id));
1911 }
1912 }
1913 Post_Decrypt("");
1914 }
1915
Ethan Yonkerbd7492d2016-12-07 13:55:01 -06001916 return 0;
Noah Jacobson81d638d2019-04-28 00:10:07 -04001917 } else {
1918 gui_msg(Msg(msg::kError, "decrypt_user_fail_fbe=Failed to decrypt user {1}")(user_id));
Ethan Yonkerbd7492d2016-12-07 13:55:01 -06001919 }
1920#else
1921 LOGERR("FBE support is not present\n");
1922#endif
1923 return -1;
1924 }
1925
Noah Jacobson81d638d2019-04-28 00:10:07 -04001926 char isdecrypteddata[PROPERTY_VALUE_MAX];
1927 property_get("twrp.decrypt.done", isdecrypteddata, "");
1928 if (strcmp(isdecrypteddata, "true") == 0) {
1929 LOGINFO("Data has no decryption required\n");
1930 return 0;
1931 }
1932
Ethan Yonkerddb63e22017-01-19 14:01:57 -06001933 int pwret = -1;
1934 pid_t pid = fork();
1935 if (pid < 0) {
1936 LOGERR("fork failed\n");
1937 return -1;
1938 } else if (pid == 0) {
1939 // Child process
1940 char cPassword[255];
1941 strcpy(cPassword, Password.c_str());
1942 int ret = cryptfs_check_passwd(cPassword);
1943 exit(ret);
1944 } else {
1945 // Parent
1946 int status;
1947 if (TWFunc::Wait_For_Child_Timeout(pid, &status, "Decrypt", 30))
1948 pwret = -1;
1949 else
1950 pwret = WEXITSTATUS(status) ? -1 : 0;
1951 }
a39552696ff55ce2013-01-08 16:14:56 +00001952
nkk7171c6c502017-01-05 23:55:05 +02001953#ifdef TW_CRYPTO_USE_SYSTEM_VOLD
1954 if (pwret != 0) {
1955 pwret = vold_decrypt(Password);
nkk717d1222a2017-11-06 17:27:21 +02001956 switch (pwret) {
1957 case VD_SUCCESS:
1958 break;
1959 case VD_ERR_MISSING_VDC:
1960 gui_msg(Msg(msg::kError, "decrypt_data_vold_os_missing=Missing files needed for vold decrypt: {1}")("/system/bin/vdc"));
1961 break;
1962 case VD_ERR_MISSING_VOLD:
1963 gui_msg(Msg(msg::kError, "decrypt_data_vold_os_missing=Missing files needed for vold decrypt: {1}")("/system/bin/vold"));
1964 break;
1965 }
nkk7171c6c502017-01-05 23:55:05 +02001966 }
1967#endif // TW_CRYPTO_USE_SYSTEM_VOLD
1968
Ethan Yonker253368a2014-11-25 15:00:52 -06001969 // Unmount any partitions that were needed for decrypt
1970 for (iter = Partitions.begin(); iter != Partitions.end(); iter++) {
1971 if ((*iter)->Mount_To_Decrypt) {
1972 (*iter)->UnMount(false);
1973 }
1974 }
oshmouna82a7542018-04-10 17:45:55 +02001975 property_set("twrp.mount_to_decrypt", "0");
Ethan Yonker253368a2014-11-25 15:00:52 -06001976
a39552696ff55ce2013-01-08 16:14:56 +00001977 if (pwret != 0) {
Ethan Yonker74db1572015-10-28 12:44:49 -05001978 gui_err("fail_decrypt=Failed to decrypt data.");
Dees_Troy5bf43922012-09-07 16:07:55 -04001979 return -1;
1980 }
a39552696ff55ce2013-01-08 16:14:56 +00001981
Dees_Troy5bf43922012-09-07 16:07:55 -04001982 property_get("ro.crypto.fs_crypto_blkdev", crypto_blkdev, "error");
1983 if (strcmp(crypto_blkdev, "error") == 0) {
Dees_Troy2673cec2013-04-02 20:22:16 +00001984 LOGERR("Error retrieving decrypted data block device.\n");
Dees_Troy5bf43922012-09-07 16:07:55 -04001985 } else {
Ethan Yonkerbd7492d2016-12-07 13:55:01 -06001986 Post_Decrypt(crypto_blkdev);
Dees_Troy5bf43922012-09-07 16:07:55 -04001987 }
1988 return 0;
1989#else
Ethan Yonker74db1572015-10-28 12:44:49 -05001990 gui_err("no_crypto_support=No crypto support was compiled into this build.");
Dees_Troy5bf43922012-09-07 16:07:55 -04001991 return -1;
1992#endif
Dees_Troy51a0e822012-09-05 15:24:24 -04001993 return 1;
Dees_Troy51127312012-09-08 13:08:49 -04001994}
1995
Ethan Yonkerb5fab762016-01-28 14:03:33 -06001996int TWPartitionManager::Fix_Contexts(void) {
Ethan Yonkerb5fab762016-01-28 14:03:33 -06001997 std::vector<TWPartition*>::iterator iter;
1998 for (iter = Partitions.begin(); iter != Partitions.end(); iter++) {
1999 if ((*iter)->Has_Data_Media) {
2000 if ((*iter)->Mount(true)) {
2001 if (fixContexts::fixDataMediaContexts((*iter)->Mount_Point) != 0)
2002 return -1;
2003 }
2004 }
2005 }
Dees_Troy1a650e62012-10-19 20:54:32 -04002006 UnMount_Main_Partitions();
Ethan Yonker74db1572015-10-28 12:44:49 -05002007 gui_msg("done=Done.");
Ethan Yonkerb5fab762016-01-28 14:03:33 -06002008 return 0;
bigbiff bigbiffa0f8a592012-10-09 21:01:03 -04002009}
2010
Ethan Yonker66a19492015-12-10 10:19:45 -06002011TWPartition* TWPartitionManager::Find_Next_Storage(string Path, bool Exclude_Data_Media) {
Ethan Yonker47360be2014-04-01 10:34:34 -05002012 std::vector<TWPartition*>::iterator iter = Partitions.begin();
2013
2014 if (!Path.empty()) {
2015 string Search_Path = TWFunc::Get_Root_Path(Path);
2016 for (; iter != Partitions.end(); iter++) {
Matt Mower9a561dd2016-02-22 21:25:51 -06002017 if ((*iter)->Mount_Point == Search_Path) {
Ethan Yonker47360be2014-04-01 10:34:34 -05002018 iter++;
2019 break;
2020 }
2021 }
2022 }
2023
2024 for (; iter != Partitions.end(); iter++) {
Ethan Yonker66a19492015-12-10 10:19:45 -06002025 if (Exclude_Data_Media && (*iter)->Has_Data_Media) {
2026 // do nothing, do not return this type of partition
2027 } else if ((*iter)->Is_Storage && (*iter)->Is_Present) {
Ethan Yonker47360be2014-04-01 10:34:34 -05002028 return (*iter);
2029 }
2030 }
2031
2032 return NULL;
2033}
2034
Dees_Troyd21618c2012-10-14 18:48:49 -04002035int TWPartitionManager::Open_Lun_File(string Partition_Path, string Lun_File) {
Dees_Troyd21618c2012-10-14 18:48:49 -04002036 TWPartition* Part = Find_Partition_By_Path(Partition_Path);
2037
2038 if (Part == NULL) {
Ethan Yonker74db1572015-10-28 12:44:49 -05002039 LOGINFO("Unable to locate '%s' for USB storage mode.", Partition_Path.c_str());
2040 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 -04002041 return false;
2042 }
Ethan Yonker47360be2014-04-01 10:34:34 -05002043 LOGINFO("USB mount '%s', '%s' > '%s'\n", Partition_Path.c_str(), Part->Actual_Block_Device.c_str(), Lun_File.c_str());
2044 if (!Part->UnMount(true) || !Part->Is_Present)
Dees_Troyd21618c2012-10-14 18:48:49 -04002045 return false;
2046
Ethan Yonker6e8c27a2016-12-22 17:55:57 -06002047 if (TWFunc::write_to_file(Lun_File, Part->Actual_Block_Device)) {
Dees_Troy2673cec2013-04-02 20:22:16 +00002048 LOGERR("Unable to write to ums lunfile '%s': (%s)\n", Lun_File.c_str(), strerror(errno));
Dees_Troyd21618c2012-10-14 18:48:49 -04002049 return false;
2050 }
Dees_Troyd21618c2012-10-14 18:48:49 -04002051 return true;
2052}
2053
Dees_Troy8170a922012-09-18 15:40:25 -04002054int TWPartitionManager::usb_storage_enable(void) {
Dees_Troy8170a922012-09-18 15:40:25 -04002055 char lun_file[255];
Dees_Troyd21618c2012-10-14 18:48:49 -04002056 bool has_multiple_lun = false;
Dees_Troy8170a922012-09-18 15:40:25 -04002057
Ethan Yonker47360be2014-04-01 10:34:34 -05002058 string Lun_File_str = CUSTOM_LUN_FILE;
2059 size_t found = Lun_File_str.find("%");
2060 if (found != string::npos) {
2061 sprintf(lun_file, CUSTOM_LUN_FILE, 1);
2062 if (TWFunc::Path_Exists(lun_file))
2063 has_multiple_lun = true;
2064 }
Ethan Yonker726a0202014-12-16 20:01:38 -06002065 mtp_was_enabled = TWFunc::Toggle_MTP(false); // Must disable MTP for USB Storage
Ethan Yonker47360be2014-04-01 10:34:34 -05002066 if (!has_multiple_lun) {
2067 LOGINFO("Device doesn't have multiple lun files, mount current storage\n");
2068 sprintf(lun_file, CUSTOM_LUN_FILE, 0);
2069 if (TWFunc::Get_Root_Path(DataManager::GetCurrentStoragePath()) == "/data") {
Ethan Yonker66a19492015-12-10 10:19:45 -06002070 TWPartition* Mount = Find_Next_Storage("", true);
Ethan Yonker47360be2014-04-01 10:34:34 -05002071 if (Mount) {
bigbiff bigbiffc7eee6f2014-09-02 18:59:01 -04002072 if (!Open_Lun_File(Mount->Mount_Point, lun_file)) {
2073 goto error_handle;
2074 }
Ethan Yonker47360be2014-04-01 10:34:34 -05002075 } else {
Ethan Yonker74db1572015-10-28 12:44:49 -05002076 gui_err("unable_locate_storage=Unable to locate storage device.");
bigbiff bigbiffc7eee6f2014-09-02 18:59:01 -04002077 goto error_handle;
Ethan Yonker47360be2014-04-01 10:34:34 -05002078 }
2079 } else if (!Open_Lun_File(DataManager::GetCurrentStoragePath(), lun_file)) {
bigbiff bigbiffc7eee6f2014-09-02 18:59:01 -04002080 goto error_handle;
Dees_Troy8170a922012-09-18 15:40:25 -04002081 }
Dees_Troy8170a922012-09-18 15:40:25 -04002082 } else {
Ethan Yonker47360be2014-04-01 10:34:34 -05002083 LOGINFO("Device has multiple lun files\n");
2084 TWPartition* Mount1;
2085 TWPartition* Mount2;
Dees_Troy8170a922012-09-18 15:40:25 -04002086 sprintf(lun_file, CUSTOM_LUN_FILE, 0);
Ethan Yonker66a19492015-12-10 10:19:45 -06002087 Mount1 = Find_Next_Storage("", true);
Ethan Yonker47360be2014-04-01 10:34:34 -05002088 if (Mount1) {
bigbiff bigbiffc7eee6f2014-09-02 18:59:01 -04002089 if (!Open_Lun_File(Mount1->Mount_Point, lun_file)) {
2090 goto error_handle;
2091 }
Matt Moweree717062014-04-26 01:46:46 -05002092 sprintf(lun_file, CUSTOM_LUN_FILE, 1);
Ethan Yonker66a19492015-12-10 10:19:45 -06002093 Mount2 = Find_Next_Storage(Mount1->Mount_Point, true);
Matt Mower1fdcdb72016-01-25 20:53:47 -06002094 if (Mount2 && Mount2->Mount_Point != Mount1->Mount_Point) {
Matt Moweree717062014-04-26 01:46:46 -05002095 Open_Lun_File(Mount2->Mount_Point, lun_file);
Ethan Yonker47360be2014-04-01 10:34:34 -05002096 }
2097 } else {
Ethan Yonker74db1572015-10-28 12:44:49 -05002098 gui_err("unable_locate_storage=Unable to locate storage device.");
bigbiff bigbiffc7eee6f2014-09-02 18:59:01 -04002099 goto error_handle;
Ethan Yonker47360be2014-04-01 10:34:34 -05002100 }
Dees_Troy8170a922012-09-18 15:40:25 -04002101 }
Matt Mowerb6ef4782014-11-06 02:24:36 -06002102 property_set("sys.storage.ums_enabled", "1");
HandyMenny37d42992014-10-26 22:15:59 +01002103 property_set("sys.usb.config", "mass_storage,adb");
Dees_Troy8170a922012-09-18 15:40:25 -04002104 return true;
bigbiff bigbiffc7eee6f2014-09-02 18:59:01 -04002105error_handle:
2106 if (mtp_was_enabled)
2107 if (!Enable_MTP())
2108 Disable_MTP();
2109 return false;
Dees_Troy8170a922012-09-18 15:40:25 -04002110}
2111
2112int TWPartitionManager::usb_storage_disable(void) {
Dees_Troy2673cec2013-04-02 20:22:16 +00002113 int index, ret;
2114 char lun_file[255], ch[2] = {0, 0};
2115 string str = ch;
Dees_Troy8170a922012-09-18 15:40:25 -04002116
2117 for (index=0; index<2; index++) {
2118 sprintf(lun_file, CUSTOM_LUN_FILE, index);
Ethan Yonker6e8c27a2016-12-22 17:55:57 -06002119 ret = TWFunc::write_to_file(lun_file, str);
Dees_Troy2673cec2013-04-02 20:22:16 +00002120 if (ret < 0) {
2121 break;
Dees_Troy8170a922012-09-18 15:40:25 -04002122 }
Dees_Troy8170a922012-09-18 15:40:25 -04002123 }
Dees_Troye58d5262012-09-21 12:27:57 -04002124 Mount_All_Storage();
2125 Update_System_Details();
Dees_Troycfd73ef2012-10-12 16:52:00 -04002126 UnMount_Main_Partitions();
Matt Mowerd9cb9062013-12-14 20:34:45 -06002127 property_set("sys.storage.ums_enabled", "0");
HandyMenny37d42992014-10-26 22:15:59 +01002128 property_set("sys.usb.config", "adb");
bigbiff bigbiffc7eee6f2014-09-02 18:59:01 -04002129 if (mtp_was_enabled)
2130 if (!Enable_MTP())
2131 Disable_MTP();
Dees_Troy2673cec2013-04-02 20:22:16 +00002132 if (ret < 0 && index == 0) {
2133 LOGERR("Unable to write to ums lunfile '%s'.", lun_file);
2134 return false;
2135 } else {
2136 return true;
2137 }
Dees_Troy8170a922012-09-18 15:40:25 -04002138 return true;
Dees_Troy812660f2012-09-20 09:55:17 -04002139}
2140
2141void TWPartitionManager::Mount_All_Storage(void) {
2142 std::vector<TWPartition*>::iterator iter;
2143
2144 for (iter = Partitions.begin(); iter != Partitions.end(); iter++) {
2145 if ((*iter)->Is_Storage)
2146 (*iter)->Mount(false);
2147 }
Dees_Troy2c50e182012-09-26 20:05:28 -04002148}
Dees_Troy9350b8d2012-09-27 12:38:38 -04002149
Dees_Troyd0384ef2012-10-12 12:15:42 -04002150void TWPartitionManager::UnMount_Main_Partitions(void) {
2151 // Unmounts system and data if data is not data/media
2152 // Also unmounts boot if boot is mountable
Dees_Troy2673cec2013-04-02 20:22:16 +00002153 LOGINFO("Unmounting main partitions...\n");
Dees_Troyd0384ef2012-10-12 12:15:42 -04002154
Mohd Faraze3948ec2020-08-14 01:40:59 +00002155 TWPartition *Partition = Find_Partition_By_Path ("/vendor");
Dees_Troyd0384ef2012-10-12 12:15:42 -04002156
Mohd Faraze3948ec2020-08-14 01:40:59 +00002157 if (Partition != NULL) UnMount_By_Path("/vendor", false);
2158 UnMount_By_Path (Get_Android_Root_Path(), true);
2159 Partition = Find_Partition_By_Path ("/product");
2160 if (Partition != NULL) UnMount_By_Path("/product", false);
Ethan Yonker6277c792014-09-15 14:54:30 -05002161 if (!datamedia)
2162 UnMount_By_Path("/data", true);
2163
Mohd Faraze3948ec2020-08-14 01:40:59 +00002164 Partition = Find_Partition_By_Path ("/boot");
2165 if (Partition != NULL && Partition->Can_Be_Mounted)
2166 Partition->UnMount(true);
Dees_Troyd0384ef2012-10-12 12:15:42 -04002167}
2168
Dees_Troy9350b8d2012-09-27 12:38:38 -04002169int TWPartitionManager::Partition_SDCard(void) {
Matt Mower23d8aae2017-01-06 14:30:33 -06002170 char temp[255];
Ethan Yonker483e9f42016-01-11 22:21:18 -06002171 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 -04002172 int ext, swap, total_size = 0, fat_size;
Dees_Troy9350b8d2012-09-27 12:38:38 -04002173
Ethan Yonker74db1572015-10-28 12:44:49 -05002174 gui_msg("start_partition_sd=Partitioning SD Card...");
Ethan Yonker483e9f42016-01-11 22:21:18 -06002175
2176 // Locate and validate device to partition
2177 TWPartition* SDCard = Find_Partition_By_Path(DataManager::GetCurrentStoragePath());
2178
Ethan Yonker66a19492015-12-10 10:19:45 -06002179 if (SDCard->Is_Adopted_Storage)
2180 SDCard->Revert_Adopted();
2181
Ethan Yonker1eff6cd2014-09-15 13:30:42 -05002182 if (SDCard == NULL || !SDCard->Removable || SDCard->Has_Data_Media) {
Ethan Yonker74db1572015-10-28 12:44:49 -05002183 gui_err("partition_sd_locate=Unable to locate device to partition.");
Dees_Troy9350b8d2012-09-27 12:38:38 -04002184 return false;
2185 }
Ethan Yonker483e9f42016-01-11 22:21:18 -06002186
2187 // Unmount everything
Dees_Troy9350b8d2012-09-27 12:38:38 -04002188 if (!SDCard->UnMount(true))
2189 return false;
2190 TWPartition* SDext = Find_Partition_By_Path("/sd-ext");
2191 if (SDext != NULL) {
2192 if (!SDext->UnMount(true))
2193 return false;
2194 }
Ethan Yonker483e9f42016-01-11 22:21:18 -06002195 char* swappath = getenv("SWAPPATH");
2196 if (swappath != NULL) {
2197 LOGINFO("Unmounting swap at '%s'\n", swappath);
2198 umount(swappath);
2199 }
Vojtech Bocek05534202013-09-11 08:11:56 +02002200
Ethan Yonker483e9f42016-01-11 22:21:18 -06002201 // Determine block device
2202 if (SDCard->Alternate_Block_Device.empty()) {
2203 SDCard->Find_Actual_Block_Device();
2204 Device = SDCard->Actual_Block_Device;
2205 // Just use the root block device
2206 Device.resize(strlen("/dev/block/mmcblkX"));
2207 } else {
2208 Device = SDCard->Alternate_Block_Device;
2209 }
Dees_Troy9350b8d2012-09-27 12:38:38 -04002210
2211 // Find the size of the block device:
Ethan Yonker483e9f42016-01-11 22:21:18 -06002212 total_size = (int)(TWFunc::IOCTL_Get_Block_Size(Device.c_str()) / (1048576));
Dees_Troy9350b8d2012-09-27 12:38:38 -04002213
2214 DataManager::GetValue("tw_sdext_size", ext);
2215 DataManager::GetValue("tw_swap_size", swap);
2216 DataManager::GetValue("tw_sdpart_file_system", ext_format);
2217 fat_size = total_size - ext - swap;
Ethan Yonker483e9f42016-01-11 22:21:18 -06002218 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);
2219
2220 // Determine partition sizes
2221 if (swap == 0 && ext == 0) {
2222 fat_str = "-0";
2223 } else {
2224 memset(temp, 0, sizeof(temp));
2225 sprintf(temp, "%i", fat_size);
2226 fat_str = temp;
2227 fat_str += "MB";
2228 }
2229 if (swap == 0) {
2230 ext_str = "-0";
2231 } else {
2232 memset(temp, 0, sizeof(temp));
2233 sprintf(temp, "%i", ext);
2234 ext_str = "+";
2235 ext_str += temp;
2236 ext_str += "MB";
2237 }
2238
Dees_Troy9350b8d2012-09-27 12:38:38 -04002239 if (ext + swap > total_size) {
Ethan Yonker74db1572015-10-28 12:44:49 -05002240 gui_err("ext_swap_size=EXT + Swap size is larger than sdcard size.");
Dees_Troy9350b8d2012-09-27 12:38:38 -04002241 return false;
2242 }
Ethan Yonker483e9f42016-01-11 22:21:18 -06002243
Ethan Yonker74db1572015-10-28 12:44:49 -05002244 gui_msg("remove_part_table=Removing partition table...");
Ethan Yonker483e9f42016-01-11 22:21:18 -06002245 Command = "sgdisk --zap-all " + Device;
Dees_Troy2673cec2013-04-02 20:22:16 +00002246 LOGINFO("Command is: '%s'\n", Command.c_str());
Vojtech Bocek05534202013-09-11 08:11:56 +02002247 if (TWFunc::Exec_Cmd(Command) != 0) {
Ethan Yonker74db1572015-10-28 12:44:49 -05002248 gui_err("unable_rm_part=Unable to remove partition table.");
Dees_Troy9350b8d2012-09-27 12:38:38 -04002249 Update_System_Details();
2250 return false;
2251 }
Ethan Yonker74db1572015-10-28 12:44:49 -05002252 gui_msg(Msg("create_part=Creating {1} partition...")("FAT32"));
Captain Throwback9643a802016-05-27 11:44:51 -04002253 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 +00002254 LOGINFO("Command is: '%s'\n", Command.c_str());
Vojtech Bocek05534202013-09-11 08:11:56 +02002255 if (TWFunc::Exec_Cmd(Command) != 0) {
Ethan Yonker74db1572015-10-28 12:44:49 -05002256 gui_msg(Msg(msg::kError, "unable_to_create_part=Unable to create {1} partition.")("FAT32"));
Dees_Troy9350b8d2012-09-27 12:38:38 -04002257 return false;
2258 }
2259 if (ext > 0) {
Ethan Yonker74db1572015-10-28 12:44:49 -05002260 gui_msg(Msg("create_part=Creating {1} partition...")("EXT"));
Ethan Yonker483e9f42016-01-11 22:21:18 -06002261 Command = "sgdisk --new=0:0:" + ext_str + " --change-name=0:\"Linux filesystem\" " + Device;
Dees_Troy2673cec2013-04-02 20:22:16 +00002262 LOGINFO("Command is: '%s'\n", Command.c_str());
Vojtech Bocek05534202013-09-11 08:11:56 +02002263 if (TWFunc::Exec_Cmd(Command) != 0) {
Ethan Yonker74db1572015-10-28 12:44:49 -05002264 gui_msg(Msg(msg::kError, "unable_to_create_part=Unable to create {1} partition.")("EXT"));
Dees_Troy9350b8d2012-09-27 12:38:38 -04002265 Update_System_Details();
2266 return false;
2267 }
2268 }
2269 if (swap > 0) {
Ethan Yonker74db1572015-10-28 12:44:49 -05002270 gui_msg(Msg("create_part=Creating {1} partition...")("swap"));
Ethan Yonker483e9f42016-01-11 22:21:18 -06002271 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 +00002272 LOGINFO("Command is: '%s'\n", Command.c_str());
Vojtech Bocek05534202013-09-11 08:11:56 +02002273 if (TWFunc::Exec_Cmd(Command) != 0) {
Ethan Yonker74db1572015-10-28 12:44:49 -05002274 gui_msg(Msg(msg::kError, "unable_to_create_part=Unable to create {1} partition.")("swap"));
Dees_Troy9350b8d2012-09-27 12:38:38 -04002275 Update_System_Details();
2276 return false;
2277 }
2278 }
Ethan Yonker483e9f42016-01-11 22:21:18 -06002279
2280 // Convert GPT to MBR
2281 Command = "sgdisk --gpttombr " + Device;
2282 if (TWFunc::Exec_Cmd(Command) != 0)
2283 LOGINFO("Failed to covert partition GPT to MBR\n");
2284
2285 // Tell the kernel to rescan the partition table
2286 int fd = open(Device.c_str(), O_RDONLY);
2287 ioctl(fd, BLKRRPART, 0);
2288 close(fd);
2289
2290 string format_device = Device;
2291 if (Device.substr(0, 17) == "/dev/block/mmcblk")
2292 format_device += "p";
2293
2294 // Format new partitions to proper file system
2295 if (fat_size > 0) {
2296 Command = "mkfs.fat " + format_device + "1";
2297 TWFunc::Exec_Cmd(Command);
2298 }
Dees_Troy9350b8d2012-09-27 12:38:38 -04002299 if (ext > 0) {
2300 if (SDext == NULL) {
Ethan Yonker483e9f42016-01-11 22:21:18 -06002301 Command = "mke2fs -t " + ext_format + " -m 0 " + format_device + "2";
2302 gui_msg(Msg("format_sdext_as=Formatting sd-ext as {1}...")(ext_format));
2303 LOGINFO("Formatting sd-ext after partitioning, command: '%s'\n", Command.c_str());
2304 TWFunc::Exec_Cmd(Command);
2305 } else {
2306 SDext->Wipe(ext_format);
Dees_Troy9350b8d2012-09-27 12:38:38 -04002307 }
Ethan Yonker483e9f42016-01-11 22:21:18 -06002308 }
2309 if (swap > 0) {
2310 Command = "mkswap " + format_device;
2311 if (ext > 0)
2312 Command += "3";
2313 else
2314 Command += "2";
Vojtech Bocek05534202013-09-11 08:11:56 +02002315 TWFunc::Exec_Cmd(Command);
Dees_Troy9350b8d2012-09-27 12:38:38 -04002316 }
2317
Ethan Yonker483e9f42016-01-11 22:21:18 -06002318 // recreate TWRP folder and rewrite settings - these will be gone after sdcard is partitioned
2319 if (SDCard->Mount(true)) {
2320 string TWRP_Folder = SDCard->Mount_Point + "/TWRP";
2321 mkdir(TWRP_Folder.c_str(), 0777);
2322 DataManager::Flush();
2323 }
2324
Dees_Troy9350b8d2012-09-27 12:38:38 -04002325 Update_System_Details();
Ethan Yonker74db1572015-10-28 12:44:49 -05002326 gui_msg("part_complete=Partitioning complete.");
Dees_Troy9350b8d2012-09-27 12:38:38 -04002327 return true;
bigbiff bigbiffa0f8a592012-10-09 21:01:03 -04002328}
Dees_Troya13d74f2013-03-24 08:54:55 -05002329
2330void TWPartitionManager::Get_Partition_List(string ListType, std::vector<PartitionList> *Partition_List) {
2331 std::vector<TWPartition*>::iterator iter;
2332 if (ListType == "mount") {
2333 for (iter = Partitions.begin(); iter != Partitions.end(); iter++) {
Ethan Yonker6e8c27a2016-12-22 17:55:57 -06002334 if ((*iter)->Can_Be_Mounted) {
Dees_Troya13d74f2013-03-24 08:54:55 -05002335 struct PartitionList part;
2336 part.Display_Name = (*iter)->Display_Name;
2337 part.Mount_Point = (*iter)->Mount_Point;
2338 part.selected = (*iter)->Is_Mounted();
2339 Partition_List->push_back(part);
2340 }
2341 }
2342 } else if (ListType == "storage") {
2343 char free_space[255];
2344 string Current_Storage = DataManager::GetCurrentStoragePath();
2345 for (iter = Partitions.begin(); iter != Partitions.end(); iter++) {
2346 if ((*iter)->Is_Storage) {
2347 struct PartitionList part;
2348 sprintf(free_space, "%llu", (*iter)->Free / 1024 / 1024);
2349 part.Display_Name = (*iter)->Storage_Name + " (";
2350 part.Display_Name += free_space;
2351 part.Display_Name += "MB)";
2352 part.Mount_Point = (*iter)->Storage_Path;
2353 if ((*iter)->Storage_Path == Current_Storage)
2354 part.selected = 1;
2355 else
2356 part.selected = 0;
2357 Partition_List->push_back(part);
2358 }
2359 }
2360 } else if (ListType == "backup") {
2361 char backup_size[255];
Dees_Troy9e0b71c2013-04-08 13:35:37 +00002362 unsigned long long Backup_Size;
Dees_Troya13d74f2013-03-24 08:54:55 -05002363 for (iter = Partitions.begin(); iter != Partitions.end(); iter++) {
Dees_Troy9e0b71c2013-04-08 13:35:37 +00002364 if ((*iter)->Can_Be_Backed_Up && !(*iter)->Is_SubPartition && (*iter)->Is_Present) {
Dees_Troya13d74f2013-03-24 08:54:55 -05002365 struct PartitionList part;
Dees_Troy9e0b71c2013-04-08 13:35:37 +00002366 Backup_Size = (*iter)->Backup_Size;
2367 if ((*iter)->Has_SubPartition) {
2368 std::vector<TWPartition*>::iterator subpart;
2369
2370 for (subpart = Partitions.begin(); subpart != Partitions.end(); subpart++) {
2371 if ((*subpart)->Is_SubPartition && (*subpart)->Can_Be_Backed_Up && (*subpart)->Is_Present && (*subpart)->SubPartition_Of == (*iter)->Mount_Point)
2372 Backup_Size += (*subpart)->Backup_Size;
2373 }
2374 }
2375 sprintf(backup_size, "%llu", Backup_Size / 1024 / 1024);
Dees_Troya13d74f2013-03-24 08:54:55 -05002376 part.Display_Name = (*iter)->Backup_Display_Name + " (";
2377 part.Display_Name += backup_size;
2378 part.Display_Name += "MB)";
2379 part.Mount_Point = (*iter)->Backup_Path;
2380 part.selected = 0;
2381 Partition_List->push_back(part);
2382 }
2383 }
2384 } else if (ListType == "restore") {
2385 string Restore_List, restore_path;
2386 TWPartition* restore_part = NULL;
2387
2388 DataManager::GetValue("tw_restore_list", Restore_List);
2389 if (!Restore_List.empty()) {
2390 size_t start_pos = 0, end_pos = Restore_List.find(";", start_pos);
2391 while (end_pos != string::npos && start_pos < Restore_List.size()) {
2392 restore_path = Restore_List.substr(start_pos, end_pos - start_pos);
bigbiff bigbiff19fb79c2016-09-05 21:04:51 -04002393 struct PartitionList part;
2394 if (restore_path.compare("ADB_Backup") == 0) {
2395 part.Display_Name = "ADB Backup";
2396 part.Mount_Point = "ADB Backup";
2397 part.selected = 1;
2398 Partition_List->push_back(part);
2399 break;
2400 }
Dees_Troy59df9262013-06-19 14:53:57 -05002401 if ((restore_part = Find_Partition_By_Path(restore_path)) != NULL) {
Dees Troy4159aed2014-02-28 17:24:43 +00002402 if ((restore_part->Backup_Name == "recovery" && !restore_part->Can_Be_Backed_Up) || restore_part->Is_SubPartition) {
Dees_Troya13d74f2013-03-24 08:54:55 -05002403 // Don't allow restore of recovery (causes problems on some devices)
Dees_Troy59df9262013-06-19 14:53:57 -05002404 // Don't add subpartitions to the list of items
Dees_Troya13d74f2013-03-24 08:54:55 -05002405 } else {
Dees_Troya13d74f2013-03-24 08:54:55 -05002406 part.Display_Name = restore_part->Backup_Display_Name;
2407 part.Mount_Point = restore_part->Backup_Path;
2408 part.selected = 1;
2409 Partition_List->push_back(part);
2410 }
2411 } else {
Ethan Yonker74db1572015-10-28 12:44:49 -05002412 gui_msg(Msg(msg::kError, "restore_unable_locate=Unable to locate '{1}' partition for restoring.")(restore_path));
Dees_Troya13d74f2013-03-24 08:54:55 -05002413 }
2414 start_pos = end_pos + 1;
2415 end_pos = Restore_List.find(";", start_pos);
2416 }
2417 }
2418 } else if (ListType == "wipe") {
2419 struct PartitionList dalvik;
Ethan Yonker74db1572015-10-28 12:44:49 -05002420 dalvik.Display_Name = gui_parse_text("{@dalvik}");
Dees_Troya13d74f2013-03-24 08:54:55 -05002421 dalvik.Mount_Point = "DALVIK";
2422 dalvik.selected = 0;
2423 Partition_List->push_back(dalvik);
2424 for (iter = Partitions.begin(); iter != Partitions.end(); iter++) {
2425 if ((*iter)->Wipe_Available_in_GUI && !(*iter)->Is_SubPartition) {
2426 struct PartitionList part;
2427 part.Display_Name = (*iter)->Display_Name;
2428 part.Mount_Point = (*iter)->Mount_Point;
2429 part.selected = 0;
2430 Partition_List->push_back(part);
2431 }
2432 if ((*iter)->Has_Android_Secure) {
2433 struct PartitionList part;
2434 part.Display_Name = (*iter)->Backup_Display_Name;
2435 part.Mount_Point = (*iter)->Backup_Path;
2436 part.selected = 0;
2437 Partition_List->push_back(part);
2438 }
Dees_Troy74fb2e92013-04-15 14:35:47 +00002439 if ((*iter)->Has_Data_Media) {
2440 struct PartitionList datamedia;
2441 datamedia.Display_Name = (*iter)->Storage_Name;
2442 datamedia.Mount_Point = "INTERNAL";
2443 datamedia.selected = 0;
2444 Partition_List->push_back(datamedia);
2445 }
Dees_Troya13d74f2013-03-24 08:54:55 -05002446 }
Ethan Yonker96af84a2015-01-05 14:58:36 -06002447 } else if (ListType == "flashimg") {
2448 for (iter = Partitions.begin(); iter != Partitions.end(); iter++) {
2449 if ((*iter)->Can_Flash_Img && (*iter)->Is_Present) {
2450 struct PartitionList part;
2451 part.Display_Name = (*iter)->Backup_Display_Name;
2452 part.Mount_Point = (*iter)->Backup_Path;
2453 part.selected = 0;
2454 Partition_List->push_back(part);
2455 }
2456 }
Ethan Yonker53796e72019-01-11 22:49:52 -06002457 if (DataManager::GetIntValue("tw_has_repack_tools") != 0 && DataManager::GetIntValue("tw_has_boot_slots") != 0) {
2458 TWPartition* boot = Find_Partition_By_Path("/boot");
2459 if (boot) {
2460 // Allow flashing kernels and ramdisks
2461 struct PartitionList repack_ramdisk;
2462 repack_ramdisk.Display_Name = gui_lookup("install_twrp_ramdisk", "Install Recovery Ramdisk");
2463 repack_ramdisk.Mount_Point = "/repack_ramdisk";
2464 repack_ramdisk.selected = 0;
2465 Partition_List->push_back(repack_ramdisk);
2466 /*struct PartitionList repack_kernel; For now let's leave repacking kernels under advanced only
2467 repack_kernel.Display_Name = gui_lookup("install_kernel", "Install Kernel");
2468 repack_kernel.Mount_Point = "/repack_kernel";
2469 repack_kernel.selected = 0;
2470 Partition_List->push_back(repack_kernel);*/
2471 }
2472 }
Dees_Troya13d74f2013-03-24 08:54:55 -05002473 } else {
Dees_Troy2673cec2013-04-02 20:22:16 +00002474 LOGERR("Unknown list type '%s' requested for TWPartitionManager::Get_Partition_List\n", ListType.c_str());
Dees_Troya13d74f2013-03-24 08:54:55 -05002475 }
2476}
2477
2478int TWPartitionManager::Fstab_Processed(void) {
2479 return Partitions.size();
2480}
Dees_Troyd93bda52013-07-03 19:55:19 +00002481
2482void TWPartitionManager::Output_Storage_Fstab(void) {
2483 std::vector<TWPartition*>::iterator iter;
2484 char storage_partition[255];
bigbiff bigbiffe4bdb152019-03-23 18:33:17 -04002485 std::string Temp;
bigbiff25d25b92020-06-19 16:07:38 -04002486 std::string cacheDir = TWFunc::get_log_dir();
bigbiff bigbiffe4bdb152019-03-23 18:33:17 -04002487
2488 if (cacheDir.empty()) {
2489 LOGINFO("Unable to find cache directory\n");
2490 return;
2491 }
bigbiff bigbiff19874f12019-01-08 20:06:57 -05002492
bigbiff25d25b92020-06-19 16:07:38 -04002493 std::string storageFstab = TWFunc::get_log_dir() + "recovery/storage.fstab";
bigbiff bigbiff19874f12019-01-08 20:06:57 -05002494 FILE *fp = fopen(storageFstab.c_str(), "w");
Dees_Troyd93bda52013-07-03 19:55:19 +00002495
2496 if (fp == NULL) {
bigbiff bigbiff19874f12019-01-08 20:06:57 -05002497 gui_msg(Msg(msg::kError, "unable_to_open=Unable to open '{1}'.")(storageFstab));
Dees_Troyd93bda52013-07-03 19:55:19 +00002498 return;
2499 }
2500
2501 // Iterate through all partitions
2502 for (iter = Partitions.begin(); iter != Partitions.end(); iter++) {
2503 if ((*iter)->Is_Storage) {
2504 Temp = (*iter)->Storage_Path + ";" + (*iter)->Storage_Name + ";\n";
2505 strcpy(storage_partition, Temp.c_str());
2506 fwrite(storage_partition, sizeof(storage_partition[0]), strlen(storage_partition) / sizeof(storage_partition[0]), fp);
2507 }
2508 }
2509 fclose(fp);
Vojtech Bocekfafb0c52013-07-25 22:53:02 +02002510}
Vojtech Bocek93cb1ef2014-05-12 15:41:52 +02002511
2512TWPartition *TWPartitionManager::Get_Default_Storage_Partition()
2513{
2514 TWPartition *res = NULL;
2515 for (std::vector<TWPartition*>::iterator iter = Partitions.begin(); iter != Partitions.end(); ++iter) {
Matt Mowera8a89d12016-12-30 18:10:37 -06002516 if (!(*iter)->Is_Storage)
Vojtech Bocek93cb1ef2014-05-12 15:41:52 +02002517 continue;
2518
Matt Mowera8a89d12016-12-30 18:10:37 -06002519 if ((*iter)->Is_Settings_Storage)
Vojtech Bocek93cb1ef2014-05-12 15:41:52 +02002520 return *iter;
2521
Matt Mowera8a89d12016-12-30 18:10:37 -06002522 if (!res)
Vojtech Bocek93cb1ef2014-05-12 15:41:52 +02002523 res = *iter;
2524 }
2525 return res;
2526}
bigbiff bigbiffc7eee6f2014-09-02 18:59:01 -04002527
2528bool TWPartitionManager::Enable_MTP(void) {
2529#ifdef TW_HAS_MTP
Ethan Yonker8dfa7772014-09-04 21:48:41 -05002530 if (mtppid) {
Ethan Yonker74db1572015-10-28 12:44:49 -05002531 gui_err("mtp_already_enabled=MTP already enabled");
bigbiff bigbiffc7eee6f2014-09-02 18:59:01 -04002532 return true;
2533 }
Ethan Yonker726a0202014-12-16 20:01:38 -06002534
2535 int mtppipe[2];
2536
2537 if (pipe(mtppipe) < 0) {
2538 LOGERR("Error creating MTP pipe\n");
2539 return false;
2540 }
2541
Ethan Yonkerdf7abac2014-12-29 10:48:17 -06002542 char old_value[PROPERTY_VALUE_MAX];
Matt Mowere07f0102017-02-23 17:40:00 -06002543 property_get("sys.usb.config", old_value, "");
2544 if (strcmp(old_value, "mtp,adb") != 0) {
Ethan Yonkerdf7abac2014-12-29 10:48:17 -06002545 char vendor[PROPERTY_VALUE_MAX];
2546 char product[PROPERTY_VALUE_MAX];
2547 property_set("sys.usb.config", "none");
2548 property_get("usb.vendor", vendor, "18D1");
2549 property_get("usb.product.mtpadb", product, "4EE2");
2550 string vendorstr = vendor;
2551 string productstr = product;
Ethan Yonker6e8c27a2016-12-22 17:55:57 -06002552 TWFunc::write_to_file("/sys/class/android_usb/android0/idVendor", vendorstr);
2553 TWFunc::write_to_file("/sys/class/android_usb/android0/idProduct", productstr);
Ethan Yonkerdf7abac2014-12-29 10:48:17 -06002554 property_set("sys.usb.config", "mtp,adb");
2555 }
Matt Mower653a1702017-02-16 10:38:52 -06002556 /* To enable MTP debug, use the twrp command line feature:
Ethan Yonker6d154c42014-09-03 14:19:43 -05002557 * twrp set tw_mtp_debug 1
2558 */
2559 twrpMtp *mtp = new twrpMtp(DataManager::GetIntValue("tw_mtp_debug"));
Ethan Yonker1b039202015-01-30 10:08:48 -06002560 mtppid = mtp->forkserver(mtppipe);
2561 if (mtppid) {
2562 close(mtppipe[0]); // Host closes read side
2563 mtp_write_fd = mtppipe[1];
2564 DataManager::SetValue("tw_mtp_enabled", 1);
2565 Add_All_MTP_Storage();
2566 return true;
Ethan Yonker726a0202014-12-16 20:01:38 -06002567 } else {
2568 close(mtppipe[0]);
2569 close(mtppipe[1]);
Ethan Yonker74db1572015-10-28 12:44:49 -05002570 gui_err("mtp_fail=Failed to enable MTP");
Ethan Yonker1b039202015-01-30 10:08:48 -06002571 return false;
bigbiff bigbiffc7eee6f2014-09-02 18:59:01 -04002572 }
bigbiff bigbiffc7eee6f2014-09-02 18:59:01 -04002573#else
Ethan Yonker74db1572015-10-28 12:44:49 -05002574 gui_err("no_mtp=MTP support not included");
bigbiff bigbiffc7eee6f2014-09-02 18:59:01 -04002575#endif
2576 DataManager::SetValue("tw_mtp_enabled", 0);
2577 return false;
2578}
2579
Ethan Yonker1b039202015-01-30 10:08:48 -06002580void TWPartitionManager::Add_All_MTP_Storage(void) {
2581#ifdef TW_HAS_MTP
2582 std::vector<TWPartition*>::iterator iter;
2583
2584 if (!mtppid)
2585 return; // MTP is not enabled
2586
2587 for (iter = Partitions.begin(); iter != Partitions.end(); iter++) {
2588 if ((*iter)->Is_Storage && (*iter)->Is_Present && (*iter)->Mount(false))
2589 Add_Remove_MTP_Storage((*iter), MTP_MESSAGE_ADD_STORAGE);
2590 }
2591#else
2592 return;
2593#endif
2594}
2595
bigbiff bigbiffc7eee6f2014-09-02 18:59:01 -04002596bool TWPartitionManager::Disable_MTP(void) {
Ethan Yonkerdf7abac2014-12-29 10:48:17 -06002597 char old_value[PROPERTY_VALUE_MAX];
bigbiff bigbiffaf32bb92018-12-18 18:39:53 -05002598 property_set("sys.usb.ffs.mtp.ready", "0");
Matt Mowere07f0102017-02-23 17:40:00 -06002599 property_get("sys.usb.config", old_value, "");
Ethan Yonkerdf7abac2014-12-29 10:48:17 -06002600 if (strcmp(old_value, "adb") != 0) {
2601 char vendor[PROPERTY_VALUE_MAX];
2602 char product[PROPERTY_VALUE_MAX];
2603 property_set("sys.usb.config", "none");
2604 property_get("usb.vendor", vendor, "18D1");
Matt Mowere07f0102017-02-23 17:40:00 -06002605 property_get("usb.product.adb", product, "D001");
Ethan Yonkerdf7abac2014-12-29 10:48:17 -06002606 string vendorstr = vendor;
2607 string productstr = product;
Ethan Yonker6e8c27a2016-12-22 17:55:57 -06002608 TWFunc::write_to_file("/sys/class/android_usb/android0/idVendor", vendorstr);
2609 TWFunc::write_to_file("/sys/class/android_usb/android0/idProduct", productstr);
Ethan Yonkerdf7abac2014-12-29 10:48:17 -06002610 usleep(2000);
2611 }
bigbiff bigbiffc7eee6f2014-09-02 18:59:01 -04002612#ifdef TW_HAS_MTP
Ethan Yonker8dfa7772014-09-04 21:48:41 -05002613 if (mtppid) {
Ethan Yonker8613dc02014-09-11 09:28:20 -05002614 LOGINFO("Disabling MTP\n");
2615 int status;
2616 kill(mtppid, SIGKILL);
Ethan Yonker8dfa7772014-09-04 21:48:41 -05002617 mtppid = 0;
Ethan Yonker8613dc02014-09-11 09:28:20 -05002618 // We don't care about the exit value, but this prevents a zombie process
2619 waitpid(mtppid, &status, 0);
Ethan Yonker726a0202014-12-16 20:01:38 -06002620 close(mtp_write_fd);
2621 mtp_write_fd = -1;
bigbiff bigbiffc7eee6f2014-09-02 18:59:01 -04002622 }
Ethan Yonkerdf7abac2014-12-29 10:48:17 -06002623#endif
bigbiff bigbiffc7eee6f2014-09-02 18:59:01 -04002624 property_set("sys.usb.config", "adb");
Ethan Yonkerdf7abac2014-12-29 10:48:17 -06002625#ifdef TW_HAS_MTP
bigbiff bigbiffc7eee6f2014-09-02 18:59:01 -04002626 DataManager::SetValue("tw_mtp_enabled", 0);
2627 return true;
bigbiff bigbiffc7eee6f2014-09-02 18:59:01 -04002628#endif
Ethan Yonkerdf7abac2014-12-29 10:48:17 -06002629 return false;
bigbiff bigbiffc7eee6f2014-09-02 18:59:01 -04002630}
Ethan Yonker726a0202014-12-16 20:01:38 -06002631
2632TWPartition* TWPartitionManager::Find_Partition_By_MTP_Storage_ID(unsigned int Storage_ID) {
2633 std::vector<TWPartition*>::iterator iter;
2634
2635 for (iter = Partitions.begin(); iter != Partitions.end(); iter++) {
2636 if ((*iter)->MTP_Storage_ID == Storage_ID)
2637 return (*iter);
2638 }
2639 return NULL;
2640}
2641
2642bool TWPartitionManager::Add_Remove_MTP_Storage(TWPartition* Part, int message_type) {
2643#ifdef TW_HAS_MTP
2644 struct mtpmsg mtp_message;
2645
2646 if (!mtppid)
2647 return false; // MTP is disabled
2648
2649 if (mtp_write_fd < 0) {
Ethan Yonkerd9ff3c52015-01-21 21:51:20 -06002650 LOGINFO("MTP: mtp_write_fd is not set\n");
Ethan Yonker726a0202014-12-16 20:01:38 -06002651 return false;
2652 }
2653
2654 if (Part) {
Ethan Yonker4bfabab2014-12-29 09:15:37 -06002655 if (Part->MTP_Storage_ID == 0)
2656 return false;
Ethan Yonker726a0202014-12-16 20:01:38 -06002657 if (message_type == MTP_MESSAGE_REMOVE_STORAGE) {
2658 mtp_message.message_type = MTP_MESSAGE_REMOVE_STORAGE; // Remove
2659 LOGINFO("sending message to remove %i\n", Part->MTP_Storage_ID);
2660 mtp_message.storage_id = Part->MTP_Storage_ID;
2661 if (write(mtp_write_fd, &mtp_message, sizeof(mtp_message)) <= 0) {
Ethan Yonkerd9ff3c52015-01-21 21:51:20 -06002662 LOGINFO("error sending message to remove storage %i\n", Part->MTP_Storage_ID);
Ethan Yonker726a0202014-12-16 20:01:38 -06002663 return false;
2664 } else {
2665 LOGINFO("Message sent, remove storage ID: %i\n", Part->MTP_Storage_ID);
2666 return true;
2667 }
2668 } else if (message_type == MTP_MESSAGE_ADD_STORAGE && Part->Is_Mounted()) {
2669 mtp_message.message_type = MTP_MESSAGE_ADD_STORAGE; // Add
2670 mtp_message.storage_id = Part->MTP_Storage_ID;
Ethan Yonker6e8c27a2016-12-22 17:55:57 -06002671 if (Part->Storage_Path.size() >= sizeof(mtp_message.path)) {
2672 LOGERR("Storage path '%s' too large for mtpmsg\n", Part->Storage_Path.c_str());
2673 return false;
2674 }
2675 strcpy(mtp_message.path, Part->Storage_Path.c_str());
2676 if (Part->Storage_Name.size() >= sizeof(mtp_message.display)) {
2677 LOGERR("Storage name '%s' too large for mtpmsg\n", Part->Storage_Name.c_str());
2678 return false;
2679 }
2680 strcpy(mtp_message.display, Part->Storage_Name.c_str());
Ethan Yonker726a0202014-12-16 20:01:38 -06002681 mtp_message.maxFileSize = Part->Get_Max_FileSize();
Ethan Yonker1b039202015-01-30 10:08:48 -06002682 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 -06002683 if (write(mtp_write_fd, &mtp_message, sizeof(mtp_message)) <= 0) {
Ethan Yonkerd9ff3c52015-01-21 21:51:20 -06002684 LOGINFO("error sending message to add storage %i\n", Part->MTP_Storage_ID);
Ethan Yonker726a0202014-12-16 20:01:38 -06002685 return false;
2686 } else {
Ethan Yonker6e8c27a2016-12-22 17:55:57 -06002687 LOGINFO("Message sent, add storage ID: %i '%s'\n", Part->MTP_Storage_ID, mtp_message.path);
Ethan Yonker726a0202014-12-16 20:01:38 -06002688 return true;
2689 }
2690 } else {
2691 LOGERR("Unknown MTP message type: %i\n", message_type);
2692 }
2693 } else {
2694 // This hopefully never happens as the error handling should
2695 // occur in the calling function.
Ethan Yonkerd9ff3c52015-01-21 21:51:20 -06002696 LOGINFO("TWPartitionManager::Add_Remove_MTP_Storage NULL partition given\n");
Ethan Yonker726a0202014-12-16 20:01:38 -06002697 }
2698 return true;
2699#else
Ethan Yonker74db1572015-10-28 12:44:49 -05002700 gui_err("no_mtp=MTP support not included");
Ethan Yonker726a0202014-12-16 20:01:38 -06002701 DataManager::SetValue("tw_mtp_enabled", 0);
2702 return false;
2703#endif
2704}
2705
2706bool TWPartitionManager::Add_MTP_Storage(string Mount_Point) {
2707#ifdef TW_HAS_MTP
2708 TWPartition* Part = PartitionManager.Find_Partition_By_Path(Mount_Point);
2709 if (Part) {
2710 return PartitionManager.Add_Remove_MTP_Storage(Part, MTP_MESSAGE_ADD_STORAGE);
2711 } else {
Ethan Yonkerd9ff3c52015-01-21 21:51:20 -06002712 LOGINFO("TWFunc::Add_MTP_Storage unable to locate partition for '%s'\n", Mount_Point.c_str());
Ethan Yonker726a0202014-12-16 20:01:38 -06002713 }
2714#endif
2715 return false;
2716}
2717
2718bool TWPartitionManager::Add_MTP_Storage(unsigned int Storage_ID) {
2719#ifdef TW_HAS_MTP
2720 TWPartition* Part = PartitionManager.Find_Partition_By_MTP_Storage_ID(Storage_ID);
2721 if (Part) {
2722 return PartitionManager.Add_Remove_MTP_Storage(Part, MTP_MESSAGE_ADD_STORAGE);
2723 } else {
Ethan Yonkerd9ff3c52015-01-21 21:51:20 -06002724 LOGINFO("TWFunc::Add_MTP_Storage unable to locate partition for %i\n", Storage_ID);
Ethan Yonker726a0202014-12-16 20:01:38 -06002725 }
2726#endif
2727 return false;
2728}
2729
2730bool TWPartitionManager::Remove_MTP_Storage(string Mount_Point) {
2731#ifdef TW_HAS_MTP
2732 TWPartition* Part = PartitionManager.Find_Partition_By_Path(Mount_Point);
2733 if (Part) {
2734 return PartitionManager.Add_Remove_MTP_Storage(Part, MTP_MESSAGE_REMOVE_STORAGE);
2735 } else {
Ethan Yonkerd9ff3c52015-01-21 21:51:20 -06002736 LOGINFO("TWFunc::Remove_MTP_Storage unable to locate partition for '%s'\n", Mount_Point.c_str());
Ethan Yonker726a0202014-12-16 20:01:38 -06002737 }
2738#endif
2739 return false;
2740}
2741
2742bool TWPartitionManager::Remove_MTP_Storage(unsigned int Storage_ID) {
2743#ifdef TW_HAS_MTP
2744 TWPartition* Part = PartitionManager.Find_Partition_By_MTP_Storage_ID(Storage_ID);
2745 if (Part) {
2746 return PartitionManager.Add_Remove_MTP_Storage(Part, MTP_MESSAGE_REMOVE_STORAGE);
2747 } else {
Ethan Yonkerd9ff3c52015-01-21 21:51:20 -06002748 LOGINFO("TWFunc::Remove_MTP_Storage unable to locate partition for %i\n", Storage_ID);
Ethan Yonker726a0202014-12-16 20:01:38 -06002749 }
2750#endif
2751 return false;
2752}
Ethan Yonker96af84a2015-01-05 14:58:36 -06002753
Ethan Yonkere080c1f2016-09-19 13:50:25 -05002754bool TWPartitionManager::Flash_Image(string& path, string& filename) {
bigbiffad58e1b2020-07-06 20:24:34 -04002755 twrpRepacker repacker;
Matt Mower23d8aae2017-01-06 14:30:33 -06002756 int partition_count = 0;
Ethan Yonker96af84a2015-01-05 14:58:36 -06002757 TWPartition* flash_part = NULL;
bigbiffce8f83c2015-12-12 18:30:21 -05002758 string Flash_List, flash_path, full_filename;
Ethan Yonker96af84a2015-01-05 14:58:36 -06002759 size_t start_pos = 0, end_pos = 0;
2760
Ethan Yonkere080c1f2016-09-19 13:50:25 -05002761 full_filename = path + "/" + filename;
Ethan Yonker96af84a2015-01-05 14:58:36 -06002762
bigbiffce8f83c2015-12-12 18:30:21 -05002763 gui_msg("image_flash_start=[IMAGE FLASH STARTED]");
2764 gui_msg(Msg("img_to_flash=Image to flash: '{1}'")(full_filename));
2765
2766 if (!TWFunc::Path_Exists(full_filename)) {
2767 if (!Mount_By_Path(full_filename, true)) {
Ethan Yonkerb78fbdf2016-01-15 16:46:35 -06002768 return false;
2769 }
bigbiffce8f83c2015-12-12 18:30:21 -05002770 if (!TWFunc::Path_Exists(full_filename)) {
2771 gui_msg(Msg(msg::kError, "unable_to_locate=Unable to locate {1}.")(full_filename));
Ethan Yonkerb78fbdf2016-01-15 16:46:35 -06002772 return false;
2773 }
2774 }
Ethan Yonker96af84a2015-01-05 14:58:36 -06002775
Ethan Yonker53796e72019-01-11 22:49:52 -06002776 DataManager::GetValue("tw_flash_partition", Flash_List);
2777 Repack_Type repack = REPLACE_NONE;
2778 if (Flash_List == "/repack_ramdisk;") {
2779 repack = REPLACE_RAMDISK;
2780 } else if (Flash_List == "/repack_kernel;") {
2781 repack = REPLACE_KERNEL;
2782 }
2783 if (repack != REPLACE_NONE) {
2784 Repack_Options_struct Repack_Options;
2785 Repack_Options.Type = repack;
2786 Repack_Options.Disable_Verity = false;
2787 Repack_Options.Disable_Force_Encrypt = false;
2788 Repack_Options.Backup_First = DataManager::GetIntValue("tw_repack_backup_first") != 0;
bigbiffad58e1b2020-07-06 20:24:34 -04002789 return repacker.Repack_Image_And_Flash(full_filename, Repack_Options);
Ethan Yonker53796e72019-01-11 22:49:52 -06002790 }
Ethan Yonkere080c1f2016-09-19 13:50:25 -05002791 PartitionSettings part_settings;
2792 part_settings.Backup_Folder = path;
2793 unsigned long long total_bytes = TWFunc::Get_File_Size(full_filename);
2794 ProgressTracking progress(total_bytes);
2795 part_settings.progress = &progress;
2796 part_settings.adbbackup = false;
2797 part_settings.PM_Method = PM_RESTORE;
Ethan Yonker74db1572015-10-28 12:44:49 -05002798 gui_msg("calc_restore=Calculating restore details...");
Ethan Yonker96af84a2015-01-05 14:58:36 -06002799 if (!Flash_List.empty()) {
2800 end_pos = Flash_List.find(";", start_pos);
2801 while (end_pos != string::npos && start_pos < Flash_List.size()) {
2802 flash_path = Flash_List.substr(start_pos, end_pos - start_pos);
2803 flash_part = Find_Partition_By_Path(flash_path);
2804 if (flash_part != NULL) {
2805 partition_count++;
2806 if (partition_count > 1) {
Ethan Yonker74db1572015-10-28 12:44:49 -05002807 gui_err("too_many_flash=Too many partitions selected for flashing.");
Ethan Yonker96af84a2015-01-05 14:58:36 -06002808 return false;
2809 }
2810 } else {
Ethan Yonker74db1572015-10-28 12:44:49 -05002811 gui_msg(Msg(msg::kError, "flash_unable_locate=Unable to locate '{1}' partition for flashing.")(flash_path));
Ethan Yonker96af84a2015-01-05 14:58:36 -06002812 return false;
2813 }
2814 start_pos = end_pos + 1;
2815 end_pos = Flash_List.find(";", start_pos);
2816 }
2817 }
2818
2819 if (partition_count == 0) {
Ethan Yonker74db1572015-10-28 12:44:49 -05002820 gui_err("no_part_flash=No partitions selected for flashing.");
Ethan Yonker96af84a2015-01-05 14:58:36 -06002821 return false;
2822 }
2823
2824 DataManager::SetProgress(0.0);
2825 if (flash_part) {
Ethan Yonkere080c1f2016-09-19 13:50:25 -05002826 flash_part->Backup_FileName = filename;
2827 if (!flash_part->Flash_Image(&part_settings))
Ethan Yonker96af84a2015-01-05 14:58:36 -06002828 return false;
2829 } else {
Ethan Yonker74db1572015-10-28 12:44:49 -05002830 gui_err("invalid_flash=Invalid flash partition specified.");
Ethan Yonker96af84a2015-01-05 14:58:36 -06002831 return false;
2832 }
Ethan Yonker74db1572015-10-28 12:44:49 -05002833 gui_highlight("flash_done=IMAGE FLASH COMPLETED]");
Ethan Yonker96af84a2015-01-05 14:58:36 -06002834 return true;
2835}
Ethan Yonker74db1572015-10-28 12:44:49 -05002836
2837void TWPartitionManager::Translate_Partition(const char* path, const char* resource_name, const char* default_value) {
2838 TWPartition* part = PartitionManager.Find_Partition_By_Path(path);
2839 if (part) {
Ethan Yonker66a19492015-12-10 10:19:45 -06002840 if (part->Is_Adopted_Storage) {
2841 part->Display_Name = part->Display_Name + " - " + gui_lookup("data", "Data");
2842 part->Backup_Display_Name = part->Display_Name;
2843 part->Storage_Name = part->Storage_Name + " - " + gui_lookup("adopted_storage", "Adopted Storage");
2844 } else {
2845 part->Display_Name = gui_lookup(resource_name, default_value);
2846 part->Backup_Display_Name = part->Display_Name;
2847 }
Ethan Yonker74db1572015-10-28 12:44:49 -05002848 }
2849}
2850
2851void TWPartitionManager::Translate_Partition(const char* path, const char* resource_name, const char* default_value, const char* storage_resource_name, const char* storage_default_value) {
2852 TWPartition* part = PartitionManager.Find_Partition_By_Path(path);
2853 if (part) {
Ethan Yonker66a19492015-12-10 10:19:45 -06002854 if (part->Is_Adopted_Storage) {
Ethan Yonker01f4e032017-02-03 15:30:52 -06002855 part->Backup_Display_Name = part->Display_Name + " - " + gui_lookup("data_backup", "Data (excl. storage)");
Ethan Yonker66a19492015-12-10 10:19:45 -06002856 part->Display_Name = part->Display_Name + " - " + gui_lookup("data", "Data");
Ethan Yonker66a19492015-12-10 10:19:45 -06002857 part->Storage_Name = part->Storage_Name + " - " + gui_lookup("adopted_storage", "Adopted Storage");
2858 } else {
2859 part->Display_Name = gui_lookup(resource_name, default_value);
2860 part->Backup_Display_Name = part->Display_Name;
2861 if (part->Is_Storage)
2862 part->Storage_Name = gui_lookup(storage_resource_name, storage_default_value);
2863 }
Ethan Yonker74db1572015-10-28 12:44:49 -05002864 }
2865}
2866
Ethan Yonker01f4e032017-02-03 15:30:52 -06002867void 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) {
2868 TWPartition* part = PartitionManager.Find_Partition_By_Path(path);
2869 if (part) {
2870 if (part->Is_Adopted_Storage) {
2871 part->Backup_Display_Name = part->Display_Name + " - " + gui_lookup(backup_name, backup_default);
2872 part->Display_Name = part->Display_Name + " - " + gui_lookup("data", "Data");
2873 part->Storage_Name = part->Storage_Name + " - " + gui_lookup("adopted_storage", "Adopted Storage");
2874 } else {
2875 part->Display_Name = gui_lookup(resource_name, default_value);
2876 part->Backup_Display_Name = gui_lookup(backup_name, backup_default);
2877 if (part->Is_Storage)
2878 part->Storage_Name = gui_lookup(storage_resource_name, storage_default_value);
2879 }
2880 }
2881}
2882
Ethan Yonker74db1572015-10-28 12:44:49 -05002883void TWPartitionManager::Translate_Partition_Display_Names() {
Ethan Yonker66a19492015-12-10 10:19:45 -06002884 LOGINFO("Translating partition display names\n");
Ethan Yonker74db1572015-10-28 12:44:49 -05002885 Translate_Partition("/system", "system", "System");
2886 Translate_Partition("/system_image", "system_image", "System Image");
2887 Translate_Partition("/vendor", "vendor", "Vendor");
2888 Translate_Partition("/vendor_image", "vendor_image", "Vendor Image");
2889 Translate_Partition("/cache", "cache", "Cache");
Ethan Yonker74db1572015-10-28 12:44:49 -05002890 Translate_Partition("/boot", "boot", "Boot");
2891 Translate_Partition("/recovery", "recovery", "Recovery");
2892 if (!datamedia) {
Ethan Yonker01f4e032017-02-03 15:30:52 -06002893 Translate_Partition("/data", "data", "Data", "internal", "Internal Storage");
Ethan Yonker74db1572015-10-28 12:44:49 -05002894 Translate_Partition("/sdcard", "sdcard", "SDCard", "sdcard", "SDCard");
2895 Translate_Partition("/internal_sd", "sdcard", "SDCard", "sdcard", "SDCard");
2896 Translate_Partition("/internal_sdcard", "sdcard", "SDCard", "sdcard", "SDCard");
2897 Translate_Partition("/emmc", "sdcard", "SDCard", "sdcard", "SDCard");
Ethan Yonker01f4e032017-02-03 15:30:52 -06002898 } else {
2899 Translate_Partition("/data", "data", "Data", "internal", "Internal Storage", "data_backup", "Data (excl. storage)");
Ethan Yonker74db1572015-10-28 12:44:49 -05002900 }
Ethan Yonker01f4e032017-02-03 15:30:52 -06002901 Translate_Partition("/external_sd", "microsd", "Micro SDCard", "microsd", "Micro SDCard", "data_backup", "Data (excl. storage)");
2902 Translate_Partition("/external_sdcard", "microsd", "Micro SDCard", "microsd", "Micro SDCard", "data_backup", "Data (excl. storage)");
Ethan Yonker74db1572015-10-28 12:44:49 -05002903 Translate_Partition("/usb-otg", "usbotg", "USB OTG", "usbotg", "USB OTG");
2904 Translate_Partition("/sd-ext", "sdext", "SD-EXT");
2905
2906 // Android secure is a special case
2907 TWPartition* part = PartitionManager.Find_Partition_By_Path("/and-sec");
2908 if (part)
2909 part->Backup_Display_Name = gui_lookup("android_secure", "Android Secure");
2910
Ethan Yonker6e8c27a2016-12-22 17:55:57 -06002911 std::vector<TWPartition*>::iterator sysfs;
2912 for (sysfs = Partitions.begin(); sysfs != Partitions.end(); sysfs++) {
2913 if (!(*sysfs)->Sysfs_Entry.empty()) {
2914 Translate_Partition((*sysfs)->Mount_Point.c_str(), "autostorage", "Storage", "autostorage", "Storage");
2915 }
2916 }
2917
Ethan Yonker74db1572015-10-28 12:44:49 -05002918 // This updates the text on all of the storage selection buttons in the GUI
2919 DataManager::SetBackupFolder();
2920}
Ethan Yonker66a19492015-12-10 10:19:45 -06002921
Ethan Yonker6e8c27a2016-12-22 17:55:57 -06002922bool TWPartitionManager::Decrypt_Adopted() {
Ethan Yonker66a19492015-12-10 10:19:45 -06002923#ifdef TW_INCLUDE_CRYPTO
Ethan Yonker6e8c27a2016-12-22 17:55:57 -06002924 bool ret = false;
Ethan Yonker66a19492015-12-10 10:19:45 -06002925 if (!Mount_By_Path("/data", false)) {
2926 LOGERR("Cannot decrypt adopted storage because /data will not mount\n");
Ethan Yonker6e8c27a2016-12-22 17:55:57 -06002927 return false;
Ethan Yonker66a19492015-12-10 10:19:45 -06002928 }
2929 LOGINFO("Decrypt adopted storage starting\n");
2930 char* xmlFile = PageManager::LoadFileToBuffer("/data/system/storage.xml", NULL);
2931 xml_document<> *doc = NULL;
2932 xml_node<>* volumes = NULL;
Ethan Yonker66a19492015-12-10 10:19:45 -06002933 string Primary_Storage_UUID = "";
2934 if (xmlFile != NULL) {
2935 LOGINFO("successfully loaded storage.xml\n");
2936 doc = new xml_document<>();
2937 doc->parse<0>(xmlFile);
2938 volumes = doc->first_node("volumes");
2939 if (volumes) {
2940 xml_attribute<>* psuuid = volumes->first_attribute("primaryStorageUuid");
2941 if (psuuid) {
2942 Primary_Storage_UUID = psuuid->value();
2943 }
2944 }
Ethan Yonker6e8c27a2016-12-22 17:55:57 -06002945 } else {
2946 LOGINFO("No /data/system/storage.xml for adopted storage\n");
2947 return false;
Ethan Yonker66a19492015-12-10 10:19:45 -06002948 }
2949 std::vector<TWPartition*>::iterator adopt;
2950 for (adopt = Partitions.begin(); adopt != Partitions.end(); adopt++) {
2951 if ((*adopt)->Removable && (*adopt)->Is_Present) {
2952 if ((*adopt)->Decrypt_Adopted() == 0) {
Ethan Yonker6e8c27a2016-12-22 17:55:57 -06002953 ret = true;
Ethan Yonker66a19492015-12-10 10:19:45 -06002954 if (volumes) {
2955 xml_node<>* volume = volumes->first_node("volume");
2956 while (volume) {
2957 xml_attribute<>* guid = volume->first_attribute("partGuid");
2958 if (guid) {
2959 string GUID = (*adopt)->Adopted_GUID.c_str();
2960 GUID.insert(8, "-");
2961 GUID.insert(13, "-");
2962 GUID.insert(18, "-");
2963 GUID.insert(23, "-");
2964
2965 if (strcasecmp(GUID.c_str(), guid->value()) == 0) {
2966 xml_attribute<>* attr = volume->first_attribute("nickname");
nkk71ffb02bd2017-06-04 23:12:16 +03002967 if (attr && attr->value() && strlen(attr->value()) > 0) {
Ethan Yonker66a19492015-12-10 10:19:45 -06002968 (*adopt)->Storage_Name = attr->value();
2969 (*adopt)->Display_Name = (*adopt)->Storage_Name;
2970 (*adopt)->Backup_Display_Name = (*adopt)->Storage_Name;
2971 LOGINFO("storage name from storage.xml is '%s'\n", attr->value());
2972 }
2973 attr = volume->first_attribute("fsUuid");
2974 if (attr && !Primary_Storage_UUID.empty() && strcmp(Primary_Storage_UUID.c_str(), attr->value()) == 0) {
2975 TWPartition* Dat = Find_Partition_By_Path("/data");
2976 if (Dat) {
2977 LOGINFO("Internal storage is found on adopted storage '%s'\n", (*adopt)->Display_Name.c_str());
2978 LOGINFO("Changing '%s' to point to '%s'\n", Dat->Symlink_Mount_Point.c_str(), (*adopt)->Storage_Path.c_str());
2979 (*adopt)->Symlink_Mount_Point = Dat->Symlink_Mount_Point;
2980 Dat->Symlink_Mount_Point = "";
2981 // Toggle mounts to ensure that the symlink mount point (probably /sdcard) is mounted to the right location
2982 Dat->UnMount(false);
2983 Dat->Mount(false);
2984 (*adopt)->UnMount(false);
2985 (*adopt)->Mount(false);
Ethan Yonker66a19492015-12-10 10:19:45 -06002986 }
2987 }
2988 break;
2989 }
2990 }
2991 volume = volume->next_sibling("volume");
2992 }
2993 }
nkk71ffb02bd2017-06-04 23:12:16 +03002994 Update_System_Details();
2995 Output_Partition((*adopt));
Ethan Yonker66a19492015-12-10 10:19:45 -06002996 }
2997 }
2998 }
2999 if (xmlFile) {
3000 doc->clear();
3001 delete doc;
3002 free(xmlFile);
3003 }
Ethan Yonker6e8c27a2016-12-22 17:55:57 -06003004 return ret;
Ethan Yonker66a19492015-12-10 10:19:45 -06003005#else
3006 LOGINFO("Decrypt_Adopted: no crypto support\n");
Ethan Yonker6e8c27a2016-12-22 17:55:57 -06003007 return false;
Ethan Yonker66a19492015-12-10 10:19:45 -06003008#endif
3009}
Ethan Yonkerfcf3f242016-02-16 12:30:26 -06003010
3011void TWPartitionManager::Remove_Partition_By_Path(string Path) {
3012 std::vector<TWPartition*>::iterator iter;
3013 string Local_Path = TWFunc::Get_Root_Path(Path);
3014
3015 for (iter = Partitions.begin(); iter != Partitions.end(); iter++) {
3016 if ((*iter)->Mount_Point == Local_Path || (!(*iter)->Symlink_Mount_Point.empty() && (*iter)->Symlink_Mount_Point == Local_Path)) {
3017 LOGINFO("Found and erasing '%s' from partition list\n", Local_Path.c_str());
3018 Partitions.erase(iter);
3019 return;
3020 }
3021 }
3022}
Ethan Yonker1b190162016-12-05 15:25:19 -06003023
3024void TWPartitionManager::Set_Active_Slot(const string& Slot) {
3025 if (Slot != "A" && Slot != "B") {
3026 LOGERR("Set_Active_Slot invalid slot '%s'\n", Slot.c_str());
3027 return;
3028 }
3029 if (Active_Slot_Display == Slot)
3030 return;
3031 LOGINFO("Setting active slot %s\n", Slot.c_str());
3032#ifdef AB_OTA_UPDATER
3033 if (!Active_Slot_Display.empty()) {
3034 const hw_module_t *hw_module;
3035 boot_control_module_t *module;
3036 int ret;
3037 ret = hw_get_module("bootctrl", &hw_module);
3038 if (ret != 0) {
3039 LOGERR("Error getting bootctrl module.\n");
3040 } else {
3041 module = (boot_control_module_t*) hw_module;
3042 module->init(module);
3043 int slot_number = 0;
3044 if (Slot == "B")
3045 slot_number = 1;
3046 if (module->setActiveBootSlot(module, slot_number))
3047 gui_msg(Msg(msg::kError, "unable_set_boot_slot=Error changing bootloader boot slot to {1}")(Slot));
3048 }
3049 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
3050 }
3051#else
3052 LOGERR("Boot slot feature not present\n");
3053#endif
3054 Active_Slot_Display = Slot;
3055 if (Fstab_Processed())
3056 Update_System_Details();
3057}
3058string TWPartitionManager::Get_Active_Slot_Suffix() {
3059 if (Active_Slot_Display == "A")
3060 return "_a";
3061 return "_b";
3062}
3063string TWPartitionManager::Get_Active_Slot_Display() {
3064 return Active_Slot_Display;
3065}
Ethan Yonker6e8c27a2016-12-22 17:55:57 -06003066
Captain Throwback9d6feb52018-07-27 10:05:24 -04003067string TWPartitionManager::Get_Android_Root_Path() {
bigbiff8da46fa2020-09-08 16:42:34 -04003068 return "/system_root";
Captain Throwback9d6feb52018-07-27 10:05:24 -04003069}
3070
Ethan Yonker6e8c27a2016-12-22 17:55:57 -06003071void TWPartitionManager::Remove_Uevent_Devices(const string& Mount_Point) {
3072 std::vector<TWPartition*>::iterator iter;
3073
3074 for (iter = Partitions.begin(); iter != Partitions.end(); ) {
3075 if ((*iter)->Is_SubPartition && (*iter)->SubPartition_Of == Mount_Point) {
3076 TWPartition *part = *iter;
3077 LOGINFO("%s was removed by uevent data\n", (*iter)->Mount_Point.c_str());
3078 (*iter)->UnMount(false);
3079 rmdir((*iter)->Mount_Point.c_str());
3080 iter = Partitions.erase(iter);
3081 delete part;
3082 } else {
3083 iter++;
3084 }
3085 }
3086}
3087
3088void TWPartitionManager::Handle_Uevent(const Uevent_Block_Data& uevent_data) {
3089 std::vector<TWPartition*>::iterator iter;
3090
3091 for (iter = Partitions.begin(); iter != Partitions.end(); iter++) {
3092 if (!(*iter)->Sysfs_Entry.empty()) {
3093 string device;
3094 size_t wildcard = (*iter)->Sysfs_Entry.find("*");
3095 if (wildcard != string::npos) {
3096 device = (*iter)->Sysfs_Entry.substr(0, wildcard);
3097 } else {
3098 device = (*iter)->Sysfs_Entry;
3099 }
3100 if (device == uevent_data.sysfs_path.substr(0, device.size())) {
3101 // Found a match
3102 if (uevent_data.action == "add") {
3103 (*iter)->Primary_Block_Device = "/dev/block/" + uevent_data.block_device;
3104 (*iter)->Alternate_Block_Device = (*iter)->Primary_Block_Device;
3105 (*iter)->Is_Present = true;
3106 LOGINFO("Found a match '%s' '%s'\n", uevent_data.block_device.c_str(), device.c_str());
3107 if (!Decrypt_Adopted()) {
3108 LOGINFO("No adopted storage so finding actual block device\n");
3109 (*iter)->Find_Actual_Block_Device();
3110 }
3111 return;
3112 } else if (uevent_data.action == "remove") {
3113 (*iter)->Is_Present = false;
3114 (*iter)->Primary_Block_Device = "";
3115 (*iter)->Actual_Block_Device = "";
3116 Remove_Uevent_Devices((*iter)->Mount_Point);
3117 return;
3118 }
3119 }
3120 }
3121 }
bigbiffee7b7ff2020-03-23 15:08:27 -04003122
3123 if (!PartitionManager.Get_Super_Status())
3124 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 -06003125}
3126
3127void TWPartitionManager::setup_uevent() {
3128 struct sockaddr_nl nls;
3129
3130 if (uevent_pfd.fd >= 0) {
3131 LOGINFO("uevent already set up\n");
3132 return;
3133 }
3134
3135 // Open hotplug event netlink socket
3136 memset(&nls,0,sizeof(struct sockaddr_nl));
3137 nls.nl_family = AF_NETLINK;
3138 nls.nl_pid = getpid();
3139 nls.nl_groups = -1;
3140 uevent_pfd.events = POLLIN;
3141 uevent_pfd.fd = socket(PF_NETLINK, SOCK_DGRAM, NETLINK_KOBJECT_UEVENT);
3142 if (uevent_pfd.fd==-1) {
3143 LOGERR("uevent not root\n");
3144 return;
3145 }
3146
3147 // Listen to netlink socket
3148 if (::bind(uevent_pfd.fd, (struct sockaddr *) &nls, sizeof(struct sockaddr_nl)) < 0) {
3149 LOGERR("Bind failed\n");
3150 return;
3151 }
3152 set_select_fd();
3153 Coldboot();
3154}
3155
3156Uevent_Block_Data TWPartitionManager::get_event_block_values(char *buf, int len) {
3157 Uevent_Block_Data ret;
3158 ret.subsystem = "";
3159 char *ptr = buf;
3160 const char *end = buf + len;
3161
3162 buf[len - 1] = '\0';
3163 while (ptr < end) {
3164 if (strncmp(ptr, "ACTION=", strlen("ACTION=")) == 0) {
3165 ptr += strlen("ACTION=");
3166 ret.action = ptr;
3167 } else if (strncmp(ptr, "SUBSYSTEM=", strlen("SUBSYSTEM=")) == 0) {
3168 ptr += strlen("SUBSYSTEM=");
3169 ret.subsystem = ptr;
3170 } else if (strncmp(ptr, "DEVTYPE=", strlen("DEVTYPE=")) == 0) {
3171 ptr += strlen("DEVTYPE=");
3172 ret.type = ptr;
3173 } else if (strncmp(ptr, "DEVPATH=", strlen("DEVPATH=")) == 0) {
3174 ptr += strlen("DEVPATH=");
3175 ret.sysfs_path += ptr;
3176 } else if (strncmp(ptr, "DEVNAME=", strlen("DEVNAME=")) == 0) {
3177 ptr += strlen("DEVNAME=");
3178 ret.block_device += ptr;
3179 } else if (strncmp(ptr, "MAJOR=", strlen("MAJOR=")) == 0) {
3180 ptr += strlen("MAJOR=");
3181 ret.major = atoi(ptr);
3182 } else if (strncmp(ptr, "MINOR=", strlen("MINOR=")) == 0) {
3183 ptr += strlen("MINOR=");
3184 ret.minor = atoi(ptr);
3185 }
3186 ptr += strlen(ptr) + 1;
3187 }
3188 return ret;
3189}
3190
3191void TWPartitionManager::read_uevent() {
3192 char buf[1024];
3193
3194 int len = recv(uevent_pfd.fd, buf, sizeof(buf), MSG_DONTWAIT);
3195 if (len == -1) {
Mauronofrio Matarresec1bb76e2019-08-04 17:02:41 +01003196 LOGINFO("recv error on uevent\n");
Ethan Yonker6e8c27a2016-12-22 17:55:57 -06003197 return;
3198 }
3199 /*int i = 0; // Print all uevent output for test /debug
3200 while (i<len) {
3201 printf("%s\n", buf+i);
3202 i += strlen(buf+i)+1;
3203 }*/
3204 Uevent_Block_Data uevent_data = get_event_block_values(buf, len);
3205 if (uevent_data.subsystem == "block" && uevent_data.type == "disk") {
3206 PartitionManager.Handle_Uevent(uevent_data);
3207 }
3208}
3209
3210void TWPartitionManager::close_uevent() {
3211 if (uevent_pfd.fd > 0)
3212 close(uevent_pfd.fd);
3213 uevent_pfd.fd = -1;
3214}
3215
3216void TWPartitionManager::Add_Partition(TWPartition* Part) {
3217 Partitions.push_back(Part);
3218}
3219
3220void TWPartitionManager::Coldboot_Scan(std::vector<string> *sysfs_entries, const string& Path, int depth) {
3221 string Real_Path = Path;
3222 char real_path[PATH_MAX];
3223 if (realpath(Path.c_str(), &real_path[0])) {
3224 string Real_Path = real_path;
3225 std::vector<string>::iterator iter;
3226 for (iter = sysfs_entries->begin(); iter != sysfs_entries->end(); iter++) {
3227 if (Real_Path.find((*iter)) != string::npos) {
3228 string Write_Path = Real_Path + "/uevent";
3229 if (TWFunc::Path_Exists(Write_Path)) {
3230 const char* write_val = "add\n";
3231 TWFunc::write_to_file(Write_Path, write_val);
3232 break;
3233 }
3234 }
3235 }
3236 }
3237
3238 DIR* d = opendir(Path.c_str());
3239 if (d != NULL) {
3240 struct dirent* de;
3241 while ((de = readdir(d)) != NULL) {
3242 if (de->d_name[0] == '.' || (de->d_type != DT_DIR && depth > 0))
3243 continue;
3244 if (strlen(de->d_name) >= 4 && (strncmp(de->d_name, "ram", 3) == 0 || strncmp(de->d_name, "loop", 4) == 0))
3245 continue;
3246
3247 string item = Path + "/";
3248 item.append(de->d_name);
3249 Coldboot_Scan(sysfs_entries, item, depth + 1);
3250 }
3251 closedir(d);
3252 }
3253}
3254
3255void TWPartitionManager::Coldboot() {
3256 std::vector<TWPartition*>::iterator iter;
3257 std::vector<string> sysfs_entries;
3258
3259 for (iter = Partitions.begin(); iter != Partitions.end(); iter++) {
3260 if (!(*iter)->Sysfs_Entry.empty()) {
3261 size_t wildcard_pos = (*iter)->Sysfs_Entry.find("*");
3262 if (wildcard_pos == string::npos)
3263 wildcard_pos = (*iter)->Sysfs_Entry.size();
3264 sysfs_entries.push_back((*iter)->Sysfs_Entry.substr(0, wildcard_pos));
3265 }
3266 }
3267
3268 if (sysfs_entries.size() > 0)
3269 Coldboot_Scan(&sysfs_entries, "/sys/block", 0);
3270}
Ethan Yonker53796e72019-01-11 22:49:52 -06003271
3272bool TWPartitionManager::Prepare_Empty_Folder(const std::string& Folder) {
3273 if (TWFunc::Path_Exists(Folder))
3274 TWFunc::removeDir(Folder, false);
3275 return TWFunc::Recursive_Mkdir(Folder);
3276}
3277
bigbiffee7b7ff2020-03-23 15:08:27 -04003278bool TWPartitionManager::Prepare_Super_Volume(TWPartition* twrpPart) {
3279 Fstab fstab;
3280 std::string bare_partition_name;
3281
3282 if (twrpPart->Get_Mount_Point() == "/system_root")
3283 bare_partition_name = "system";
3284 else
3285 bare_partition_name = TWFunc::Remove_Beginning_Slash(twrpPart->Get_Mount_Point());
3286
3287 LOGINFO("Trying to prepare %s from super partition\n", bare_partition_name.c_str());
3288
3289 std::string blk_device_partition;
3290#ifdef AB_OTA_UPDATER
3291 blk_device_partition = bare_partition_name + PartitionManager.Get_Active_Slot_Suffix();
3292#else
3293 blk_device_partition = bare_partition_name;
3294#endif
3295
3296 FstabEntry fstabEntry = {
3297 .blk_device = blk_device_partition,
3298 .mount_point = twrpPart->Get_Mount_Point(),
3299 .fs_type = twrpPart->Current_File_System,
3300 .fs_mgr_flags.logical = twrpPart->Is_Super,
3301 };
3302
3303 fstab.emplace_back(fstabEntry);
3304 if (!fs_mgr_update_logical_partition(&fstabEntry)) {
3305 LOGERR("unable to update logical partition: %s\n", twrpPart->Get_Mount_Point().c_str());
3306 return false;
3307 }
3308
bigbiff32cbabe2020-04-12 19:16:19 -04003309 while (access(fstabEntry.blk_device.c_str(), F_OK) != 0) {
3310 usleep(100);
3311 }
3312
bigbiffee7b7ff2020-03-23 15:08:27 -04003313 twrpPart->Set_Block_Device(fstabEntry.blk_device);
3314 twrpPart->Update_Size(true);
3315 twrpPart->Change_Mount_Read_Only(true);
3316 twrpPart->Set_Can_Be_Backed_Up(false);
3317 twrpPart->Set_Can_Be_Wiped(false);
3318 return true;
3319}
3320
3321bool TWPartitionManager::Prepare_All_Super_Volumes() {
3322 bool status = true;
3323 std::vector<TWPartition*>::iterator iter;
3324
3325 for (iter = Partitions.begin(); iter != Partitions.end(); iter++) {
3326 if ((*iter)->Is_Super) {
3327 if (!Prepare_Super_Volume(*iter)) {
3328 status = false;
3329 }
3330 PartitionManager.Output_Partition(*iter);
3331 }
3332 }
3333 Update_System_Details();
3334 return status;
3335}
3336
3337bool TWPartitionManager::Is_Super_Partition(const char* fstab_line) {
Mohd Faraze3948ec2020-08-14 01:40:59 +00003338 if (!Get_Super_Status())
3339 return false;
bigbiffee7b7ff2020-03-23 15:08:27 -04003340 std::vector<std::string> super_partition_list = {"system", "vendor", "odm", "product", "system_ext"};
3341
3342 for (auto&& fstab_partition_check: super_partition_list) {
3343 if (strncmp(fstab_line, fstab_partition_check.c_str(), fstab_partition_check.size()) == 0) {
3344 DataManager::SetValue(TW_IS_SUPER, "1");
3345 return true;
3346 }
3347 }
3348 return false;
3349}
3350
3351std::string TWPartitionManager::Get_Super_Partition() {
3352 int slot_number = Get_Active_Slot_Display() == "A" ? 0 : 1;
3353 std::string super_device = fs_mgr_get_super_partition_name(slot_number);
3354 return "/dev/block/by-name/" + super_device;
3355}
3356
3357void TWPartitionManager::Setup_Super_Devices() {
3358 std::string superPart = Get_Super_Partition();
3359 android::fs_mgr::CreateLogicalPartitions(superPart);
bigbiff7ba75002020-04-11 20:47:09 -04003360}
3361
3362void TWPartitionManager::Setup_Super_Partition() {
bigbiffee7b7ff2020-03-23 15:08:27 -04003363 TWPartition* superPartition = new TWPartition();
bigbiff7ba75002020-04-11 20:47:09 -04003364 std::string superPart = Get_Super_Partition();
3365
3366 superPartition->Backup_Path = "/super";
3367 superPartition->Mount_Point = "/super";
bigbiffee7b7ff2020-03-23 15:08:27 -04003368 superPartition->Actual_Block_Device = superPart;
3369 superPartition->Alternate_Block_Device = superPart;
Ian Macdonald160e8d32020-09-29 20:47:31 +02003370#ifdef BOARD_DYNAMIC_PARTITIONS_PARTITION_LIST
3371 superPartition->Backup_Display_Name = "Super (" BOARD_DYNAMIC_PARTITIONS_PARTITION_LIST ")";
3372#else
3373 superPartition->Backup_Display_Name = "Super";
3374#endif
bigbiffee7b7ff2020-03-23 15:08:27 -04003375 superPartition->Can_Flash_Img = true;
bigbiffee7b7ff2020-03-23 15:08:27 -04003376 superPartition->Current_File_System = "emmc";
3377 superPartition->Can_Be_Backed_Up = true;
3378 superPartition->Is_Present = true;
3379 superPartition->Is_SubPartition = false;
bigbiff7ba75002020-04-11 20:47:09 -04003380 superPartition->Setup_Image();
bigbiffee7b7ff2020-03-23 15:08:27 -04003381 Add_Partition(superPartition);
3382 PartitionManager.Output_Partition(superPartition);
3383 Update_System_Details();
3384}
3385
3386bool TWPartitionManager::Get_Super_Status() {
bigbiffdf8436b2020-08-30 16:22:34 -04003387 std::string fastboot_mode = android::base::GetProperty("sys.usb.config", "");
3388 if (fastboot_mode == "fastboot") {
3389 return false;
3390 }
3391 else
3392 return access(Get_Super_Partition().c_str(), F_OK) == 0;
bigbiffee7b7ff2020-03-23 15:08:27 -04003393}
bigbiff25d25b92020-06-19 16:07:38 -04003394
3395bool TWPartitionManager::Recreate_Logs_Dir() {
3396#ifdef TW_INCLUDE_FBE
3397 struct passwd pd;
3398 struct passwd *pwdptr = &pd;
3399 struct passwd *tempPd;
3400 char pwdBuf[512];
3401 int uid = 0, gid = 0;
3402
3403 if ((getpwnam_r("system", pwdptr, pwdBuf, sizeof(pwdBuf), &tempPd)) != 0) {
3404 LOGERR("unable to get system user id\n");
3405 return false;
3406 } else {
3407 struct group grp;
3408 struct group *grpptr = &grp;
3409 struct group *tempGrp;
3410 char grpBuf[512];
3411
3412 if ((getgrnam_r("cache", grpptr, grpBuf, sizeof(grpBuf), &tempGrp)) != 0) {
3413 LOGERR("unable to get cache group id\n");
3414 return false;
3415 } else {
3416 uid = pd.pw_uid;
3417 gid = grp.gr_gid;
3418 std::string abLogsRecoveryDir(DATA_LOGS_DIR);
3419 abLogsRecoveryDir += "/recovery/";
3420
3421 if (!TWFunc::Create_Dir_Recursive(abLogsRecoveryDir, S_IRWXU | S_IRWXG | S_IWGRP | S_IXGRP, uid, gid)) {
3422 LOGERR("Unable to recreate %s\n", abLogsRecoveryDir.c_str());
3423 return false;
3424 }
3425 if (setfilecon(abLogsRecoveryDir.c_str(), "u:object_r:cache_file:s0") != 0) {
3426 LOGERR("Unable to set contexts for %s\n", abLogsRecoveryDir.c_str());
3427 return false;
3428 }
3429 }
3430 }
3431#endif
3432 return true;
3433}